@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap");

@font-face {
    font-family: "Rustica";
    src: url("https://grupovisualmente.com/css/fonts/RusticaBlack.woff2") format("woff2"),
        url("https://grupovisualmente.com/css/fonts/RusticaBlack.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    vertical-align: baseline;
}

html {
    height: 100%;
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    height: 100%;
    background-color: #FFFFFF;
    color: #000000;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    cursor: default;
    scroll-behavior: smooth;
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    font-variant-numeric: lining-nums;
    border: none;
    outline: none;
    background: none;
}

div:focus,
span:focus,
input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
    background-image: none;
}

div,
span,
a,
input,
textarea,
select,
button {
    -webkit-tap-highlight-color: transparent;
}

div::-moz-focus-inner,
span::-moz-focus-inner,
input::-moz-focus-inner,
textarea::-moz-focus-inner,
select::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
form {
    display: block;
}

.touch {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* BAR */

.bar {
    position: fixed;
    top: 16px;
    left: 0;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    z-index: 10;
}

.bar-layout {
    display: flex;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.25s;
}

.bar-compact .bar-layout {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    box-shadow: 4px 4px 30px -6px rgba(36, 32, 33, 0.15);
}

.bar-compact .bar-buttons,
.bar-compact .bar-actions {
    padding-top: 14px;
    padding-bottom: 14px;
}

.bar-brand {
    flex: none;
    display: flex;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 14px;
    padding-right: 14px;
}

.bar-brand img {
    display: block;
    width: auto;
    height: 72px;
    transition: 0.25s;
}

.bar-compact .bar-brand img {
    height: 48px;
}

.bar-buttons {
    flex: auto;
    display: flex;
    justify-content: center;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 24px;
    padding-right: 24px;
}

.bar-buttons-items {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    max-width: 460px;
}

.bar-actions {
    flex: none;
    display: flex;
    align-items: center;
    column-gap: 12px;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-right: 14px;
}

.bar-link,
.bar-link:link,
.bar-link:visited {
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    color: #264394;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: 0.25s;
}

.bar-link-on,
.bar-link-on:link,
.bar-link-on:visited {
    opacity: 0.45;
}

.bar-link-label {
    padding-left: 4px;
    padding-right: 4px;
    opacity: 1;
    transform: translateX(0);
    transform-origin: left center;
    transition: 0.55s;
}

.bar-link:hover .bar-link-label {
    opacity: 0;
    transform: translateX(100%);
}

.touch .bar-link:hover .bar-link-label {
    opacity: 1;
    transform: translateX(0);
}

.bar-link:active .bar-link-label,
.touch .bar-link:active .bar-link-label {
    opacity: 0;
    transform: translateX(100%);
}

.bar-link-on:hover .bar-link-label {
    opacity: 1;
    transform: translateX(0);
}

.touch .bar-link-on:hover .bar-link-label {
    opacity: 1;
    transform: translateX(0);
}

.bar-link-on:active .bar-link-label,
.touch .bar-link-on:active .bar-link-label {
    opacity: 1;
    transform: translateX(0);
}

.bar-link-label-alt {
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 4px;
    padding-right: 4px;
    color: #59C1DB;
    opacity: 0;
    transform: translateX(-100%);
    transform-origin: left center;
    transition: 0.55s;
}

.bar-link:hover .bar-link-label-alt {
    opacity: 1;
    transform: translateX(0%);
}

.touch .bar-link:hover .bar-link-label-alt {
    opacity: 0;
    transform: translateX(-100%);
}

.bar-link:active .bar-link-label-alt,
.touch .bar-link:active .bar-link-label-alt {
    opacity: 1;
    transform: translateX(0%);
}

.bar-link-on:hover .bar-link-label-alt {
    opacity: 0;
    transform: translateX(-100%);
}

.touch .bar-link-on:hover .bar-link-label-alt {
    opacity: 0;
    transform: translateX(-100%);
}

.bar-link-on:active .bar-link-label-alt,
.touch .bar-link-on:active .bar-link-label-alt {
    opacity: 0;
    transform: translateX(-100%);
}

.bar-link-alt,
.bar-link-alt:link,
.bar-link-alt:visited {
    color: #C2106C;
}

.bar-link-alt:hover {
    color: #A45CA0;
}

.touch .bar-link-alt:hover {
    color: #C2106C;
}

.bar-link-alt:active,
.touch .bar-link-alt:active {
    color: #A45CA0;
}

.bar-contact,
.bar-contact:link,
.bar-contact:visited {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    padding-bottom: 2px;
    padding-left: 26px;
    padding-right: 26px;
    margin-left: 10px;
    border-radius: 100px;
    background-color: #59C1DB;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: 0.55s;
}

.bar-contact:hover {
    background-color: #C2106C;
    color: #FFFFFF;
}

.touch .bar-contact:hover {
    background-color: #59C1DB;
    color: #FFFFFF;
}

.bar-contact:active,
.touch .bar-contact:active {
    background-color: #C2106C;
    color: #FFFFFF;
}

.bar-contact-label {
    position: relative;
    z-index: 2;
}

.bar-contact-shape {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    background-color: #C2106C;
    opacity: 0;
    transform: scale(0);
    transition: 0.55s;
}

.bar-contact:hover .bar-contact-shape {
    opacity: 1;
    transform: scale(1.25);
}

.touch .bar-contact:hover .bar-contact-shape {
    opacity: 0;
    transform: scale(0);
}

.bar-contact:active .bar-contact-shape,
.touch .bar-contact:active .bar-contact-shape {
    opacity: 1;
    transform: scale(1.25);
}

.bar-menu {
    flex: auto;
    display: none;
    justify-content: flex-end;
    align-items: center;
    padding-right: 18px;
}

.bar-menu-button,
.bar-menu-button:link,
.bar-menu-button:visited {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 52px;
    height: 50px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 12px;
    padding-right: 12px;
    cursor: pointer;
    transition: 0.25s;
}

.bar-menu-button:hover {
    padding-left: 9px;
    padding-right: 9px;
}

.touch .bar-menu-button:hover {
    padding-left: 12px;
    padding-right: 12px;
}

.bar-menu-button:active,
.touch .bar-menu-button:active {
    padding-left: 9px;
    padding-right: 9px;
}

.bar-menu-button-line {
    width: 100%;
    height: 2px;
    border-radius: 20px;
    background-color: #264394;
    transition: 0.25s;
}

.bar-menu-button:hover .bar-menu-button-line {
    background-color: #A45CA0;
}

.touch .bar-menu-button:hover .bar-menu-button-line {
    background-color: #264394;
}

.bar-menu-button:active .bar-menu-button-line,
.touch .bar-menu-button:active .bar-menu-button-line {
    background-color: #A45CA0;
}

.bar-menu-actions {
    display: flex;
    column-gap: 16px;
    padding-right: 8px;
}

/* MENU */

.menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    z-index: 12;
    animation: menu-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes menu-anima {
    0% {
        transform: rotateY(20deg) rotateX(35deg) translate(300px, -300px) skew(-35deg, 10deg);
        opacity: 0;
    }

    100% {
        transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
        opacity: 1;
    }
}

.menu-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.menu-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 15%;
    padding-right: 15%;
}

.menu-actions {
    display: flex;
    justify-content: flex-end;
    column-gap: 16px;
    margin-bottom: 18px;
}

.menu-close {
    display: inline-flex;
    padding: 12px;
    padding-top: 20px;
    padding-bottom: 20px;
    cursor: pointer;
}

.menu-close img {
    display: block;
    width: 20px;
    height: 20px;
    transition: 0.35s;
}

.menu-close:hover img {
    transform: rotate(180deg);
}

.touch .menu-close:hover img {
    transform: rotate(0deg);
}

.menu-close:active img,
.touch .menu-close:active img {
    transform: rotate(180deg);
}

.menu-action,
.menu-action:link,
.menu-action:visited {
    position: relative;
    display: inline-block;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: 10px;
    color: #C2106C;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s;
}

.menu-action:hover {
    color: #A45CA0;
}

.touch .menu-action:hover {
    color: #C2106C;
}

.menu-action:active,
.touch .menu-action:active {
    color: #A45CA0;
}

.menu-contact {
    flex: none;
    display: flex;
    justify-content: flex-end;
}

.menu-buttons {
    flex: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 24px;
}

.menu-buttons-layout {
    display: flex;
    flex-direction: column;
    row-gap: 0px;
    text-align: right;
}

.menu-networks {
    flex: none;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 10px;
}

.menu-link,
.menu-link:link,
.menu-link:visited {
    position: relative;
    display: inline-block;
    color: #264394;
    font-family: "Rustica", sans-serif;
    font-size: 48px;
    line-height: 48px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-32px);
    animation-name: menu-link-anima;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    transition: 0.25s;
}

.menu-link:hover {
    color: #59C1DB;
}

.touch .menu-link:hover {
    color: #264394;
}

.menu-link:active,
.touch .menu-link:active {
    color: #59C1DB;
}

.menu-link-on,
.menu-link-on:link,
.menu-link-on:visited {
    color: #A45CA0;
}

.menu-link-on:hover {
    color: #A45CA0;
}

.touch .menu-link-on:hover {
    color: #A45CA0;
}

.menu-link-on:active,
.touch .menu-link-on:active {
    color: #A45CA0;
}

.menu-link:nth-child(1) {
    animation-delay: 0.2s;
}

.menu-link:nth-child(2) {
    animation-delay: 0.3s;
}

.menu-link:nth-child(3) {
    animation-delay: 0.4s;
}

.menu-link:nth-child(4) {
    animation-delay: 0.5s;
}

@keyframes menu-link-anima {
    from {
        opacity: 0;
        transform: translateY(-32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SPINNER */

.spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.spinner-circle {
    width: 54px;
    height: 54px;
    animation: spinner-rotate 1.75s linear infinite;
}

.spinner-path {
    stroke: #59C1DB;
    stroke-linecap: round;
    animation: spinner-dash 1.3125s ease-in-out infinite;
}

@keyframes spinner-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinner-dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* NETWORKS */

.networks {
    position: fixed;
    top: 50%;
    right: 10px;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    padding: 9px;
    border-radius: 16px;
    background-color: rgba(83, 83, 83, 0.25);
    transform: translateY(-50%);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    z-index: 10;
}

.networks-footer {
    display: inline-flex;
    column-gap: 8px;
    margin-top: 6px;
}

.networks-contact {
    display: inline-flex;
    column-gap: 8px;
    padding: 20px;
}

.networks-menu {
    display: inline-flex;
    column-gap: 8px;
}

.networks-btn,
.networks-btn:link,
.networks-btn:visited {
    position: relative;
    color: #FFFFFF;
    text-decoration: none;
}

.networks-btn-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 100px;
    background-color: #000000;
    transition: all 0.3s;
    transform-origin: 100% 50%;
}

.networks-btn-icon img {
    display: block;
    width: 100%;
    height: 100%;
}

.networks-btn:hover .networks-btn-icon {
    margin: 1.1em 0;
    background-color: #385CAD;
    transform: scale(1.9);
}

.touch .networks-btn:hover .networks-btn-icon {
    margin: 0;
    background-color: #000000;
    transform: scale(1);
}

.networks-btn:active .networks-btn-icon,
.touch .networks-btn:active .networks-btn-icon {
    margin: 1.1em 0;
    background-color: #385CAD;
    transform: scale(1.9);
}

.networks-btn:hover+.networks-btn .networks-btn-icon,
.networks-btn.prev .networks-btn-icon {
    margin: 0.6em 0;
    transform: scale(1.4);
}

.touch .networks-btn:hover+.networks-btn .networks-btn-icon,
.networks-btn.prev .networks-btn-icon {
    margin: 0;
    transform: scale(1);
}

.networks-btn:active+.networks-btn .networks-btn-icon,
.touch .networks-btn:active+.networks-btn .networks-btn-icon,
.networks-btn.prev .networks-btn-icon {
    margin: 0.6em 0;
    transform: scale(1.4);
}

.networks-footer-btn,
.networks-footer-btn:link,
.networks-footer-btn:visited {
    width: 34px;
    height: 34px;
    border-radius: 100px;
    background-color: #A45CA0;
    cursor: pointer;
    transition: 0.25s;
}

.networks-footer-btn img {
    display: block;
    width: 100%;
    height: 100%;
}

.networks-footer-btn:hover {
    background-color: #264394;
    transform: scale(1.2);
}

.touch .networks-footer-btn:hover {
    background-color: #A45CA0;
    transform: scale(1);
}

.networks-footer-btn:active,
.touch .networks-footer-btn:active {
    background-color: #264394;
    transform: scale(1.2);
}

.networks-contact-btn,
.networks-contact-btn:link,
.networks-contact-btn:visited {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: #000000;
    cursor: pointer;
    transition: 0.25s;
}

.networks-contact-btn img {
    display: block;
    width: 100%;
    height: 100%;
}

.networks-contact-btn:hover {
    background-color: #385CAD;
    transform: scale(1.2);
}

.touch .networks-contact-btn:hover {
    background-color: #000000;
    transform: scale(1);
}

.networks-contact-btn:active,
.touch .networks-contact-btn:active {
    background-color: #385CAD;
    transform: scale(1.2);
}

.networks-menu-btn,
.networks-menu-btn:link,
.networks-menu-btn:visited {
    width: 44px;
    height: 44px;
    border-radius: 100px;
    background-color: #000000;
    cursor: pointer;
    transition: 0.25s;
}

.networks-menu-btn img {
    display: block;
    width: 100%;
    height: 100%;
}

.networks-menu-btn:hover {
    background-color: #A45CA0;
    transform: scale(1.2);
}

.touch .networks-menu-btn:hover {
    background-color: #000000;
    transform: scale(1);
}

.networks-menu-btn:active,
.touch .networks-menu-btn:active {
    background-color: #A45CA0;
    transform: scale(1.2);
}

/* CONTACT */

.contact-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    cursor: pointer;
    z-index: 10;
}

.contact-button-icon {
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border-bottom-right-radius: 6px;
    background-color: #C2106C;
    box-shadow: 0px 3px 20px -2px rgba(194, 16, 108, 0.75);
    transform-origin: right bottom;
    transition: 0.3s;
}

.contact-button-icon:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-button:hover .contact-button-icon {
    transform: scale(1.25);
    box-shadow: 0px 3px 20px -2px rgba(194, 16, 108, 0.95);
}

.touch .contact-button:hover .contact-button-icon {
    transform: scale(1);
    box-shadow: 0px 3px 20px -2px rgba(194, 16, 108, 0.75);
}

.contact-button:active .contact-button-icon,
.touch .contact-button:active .contact-button-icon {
    transform: scale(1.25);
    box-shadow: 0px 3px 20px -2px rgba(194, 16, 108, 0.95);
}

.contact-button-dot {
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #FFFFFF;
    opacity: 1;
    transform: translateX(0%) translateY(-50%);
    animation: contact-button-blink 3s ease infinite;
    transition: all 0.3s ease;
}

.contact-button-dot:nth-child(1) {
    left: 15px;
    animation-delay: 0s;
}

.contact-button-dot:nth-child(2) {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    animation-delay: 0.4s;
}

.contact-button-dot:nth-child(3) {
    right: 15px;
    animation-delay: 0.8s;
}

@keyframes contact-button-blink {
    50% {
        opacity: 0.25;
    }
}

.contact-button-label {
    position: absolute;
    top: 37%;
    right: 100px;
    height: 40px;
    padding-top: 10px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 50px;
    background-color: #385CAD;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-50%) scale(0);
    transform-origin: right center;
    transition: 0.3s;
}

.contact-button:hover .contact-button-label {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.touch .contact-button:hover .contact-button-label {
    opacity: 0;
    transform: translateY(-50%) scale(0);
}

.contact-button:active .contact-button-label,
.touch .contact-button:active .contact-button-label {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

/* CONTACT CENTER */

.contact-center {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.contact-center-hidden {
    display: none;
}

.contact-brand {
    position: absolute;
    right: 20px;
    bottom: 22px;
    z-index: 1;
}

.contact-brand img {
    display: block;
    width: 40px;
    height: 40px;
    height: auto;
}

.contact-header {
    flex: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 40px;
    padding-left: 24px;
    padding-right: 24px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background: #A45CA0;
    background: linear-gradient(45deg, #264394 0%, #A45CA0 100%);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
}

.contact-header-text {
    position: relative;
}

.contact-header-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background: radial-gradient(100% 100% at 20% 80%, #59C1DB 0%, transparent), radial-gradient(100% 100% at 80% 20%, #A45CA0 0%, transparent), #264394;
    inset: 0;
    opacity: 1;
}

@supports (background: radial-gradient(circle at var(--test-x) var(--test-y), red, transparent)) {
    .contact-header-gradient {
        --features-gradient-x1: 20%;
        --features-gradient-y1: 80%;
        --features-gradient-x2: 80%;
        --features-gradient-y2: 20%;
        background: radial-gradient(100% 100% at var(--features-gradient-x1) var(--features-gradient-y1), #59C1DB 0%, transparent), radial-gradient(100% 100% at var(--features-gradient-x2) var(--features-gradient-y2), #A45CA0 0%, transparent), #264394;
        animation: features-gradient-animation 7s infinite ease-in;
    }
}

.contact-close {
    position: absolute;
    top: 4px;
    right: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    cursor: pointer;
}

.contact-close img {
    display: block;
    width: 16px;
    height: 16px;
    transition: 0.35s;
}

.contact-close:hover img {
    transform: rotate(180deg);
}

.touch .contact-close:hover img {
    transform: rotate(0deg);
}

.contact-close:active img,
.touch .contact-close:active img {
    transform: rotate(180deg);
}

.contact-back {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 22px;
    display: none;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin: auto;
    border-radius: 100px;
    background-color: rgba(36, 32, 33, 0.25);
    opacity: 0;
    transform: scale(0.75);
    animation: contact-back-anima 0.5s ease-in-out forwards;
    cursor: pointer;
    transition: 0.35s;
}

@keyframes contact-back-anima {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.contact-back img {
    display: block;
    width: 16px;
    height: 16px;
}

.contact-back:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.touch .contact-back:hover {
    background-color: rgba(36, 32, 33, 0.25);
}

.contact-back:active,
.touch .contact-back:active {
    background-color: rgba(255, 255, 255, 0.25);
}

.contact-layout {
    flex: auto;
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.9);
    animation: contact-layout-anima 0.45s ease-in-out forwards;
    overflow: hidden;
    z-index: 2;
}

@keyframes contact-layout-anima {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.contact-content {
    width: 100%;
    height: 100%;
    padding: 20px;
    padding-bottom: 40px;
    overflow: auto;
}

.contact-content::-webkit-scrollbar {
    width: 15px;
    height: 15px;
    background: transparent;
}

.contact-content::-webkit-scrollbar-thumb {
    background: #59C1DB;
    border-radius: 100px;
    border: solid 5px #FFFFFF;
}

.contact-content::-webkit-scrollbar-thumb:hover {
    background: #59C1DB;
}

.contact-content::-webkit-scrollbar-track {
    background: transparent;
}

.contact-options {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.contact-option,
.contact-option:link,
.contact-option:visited {
    position: relative;
    height: 58px;
    padding: 8px;
    border-radius: 100px;
    background-color: rgba(194, 16, 108, 0.17);
    color: #C2106C;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: 0.65s;
}

.contact-option-icon {
    position: absolute;
    top: 7px;
    left: 7px;
    width: calc(100% - 14px);
    transition: 0.65s;
}

.contact-option-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 100px;
    background-color: #C2106C;
}

.contact-option-graphic img {
    display: block;
    width: 28px;
    height: 28px;
}

.contact-option-label {
    order: 2;
    display: flex;
    align-items: center;
    height: 100%;
    padding-bottom: 1px;
    padding-left: 56px;
    color: #C2106C;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    transition: 0.65s;
}

.contact-option:hover {
    background-color: rgba(194, 16, 108, 1);
}

.touch .contact-option:hover {
    background-color: rgba(194, 16, 108, 0.17);
}

.contact-option:active,
.touch .contact-option:active {
    background-color: rgba(194, 16, 108, 1);
}

.contact-option:hover .contact-option-icon {
    transform: translateX(calc(100% - 44px));
}

.touch .contact-option:hover .contact-option-icon {
    transform: translateX(0);
}

.contact-option:active .contact-option-icon,
.touch .contact-option:active .contact-option-icon {
    transform: translateX(calc(100% - 44px));
}

.contact-option:hover .contact-option-label {
    padding-left: 18px;
    color: #FFFFFF;
}

.touch .contact-option:hover .contact-option-label {
    padding-left: 56px;
    color: #C2106C;
}

.contact-option:active .contact-option-label,
.touch .contact-option:active .contact-option-label {
    padding-left: 18px;
    color: #FFFFFF;
}

.contact-message {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.contact-textbox {
    display: block;
    width: 100%;
    height: 50px;
    padding-bottom: 1px;
    padding-left: 14px;
    padding-right: 14px;
    border-radius: 8px;
    border: solid 2px transparent;
    background-color: rgba(36, 32, 33, 0.1);
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    transition: 0.25s;
}

.contact-textbox::placeholder {
    opacity: 0.45;
    color: #000000;
    font-size: 18px;
    line-height: 18px;
}

.contact-textbox:focus {
    border-color: #000000;
}

.contact-textarea {
    display: block;
    width: 100%;
    height: 200px;
    padding-top: 8px;
    padding-bottom: 10px;
    padding-left: 13px;
    padding-right: 13px;
    border-radius: 8px;
    border: solid 2px transparent;
    background-color: rgba(36, 32, 33, 0.1);
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    resize: none;
    transition: 0.25s;
}

.contact-textarea::placeholder {
    opacity: 0.45;
    color: #000000;
    font-size: 18px;
    line-height: 26px;
}

.contact-textarea:focus {
    border-color: #000000;
}

.contact-submit {
    display: block;
    width: 100%;
    height: 50px;
    padding-bottom: 1px;
    padding-left: 13px;
    padding-right: 13px;
    border-radius: 100px;
    border: none;
    background-color: #C2106C;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0px 6px 20px rgba(194, 16, 108, 0.5);
    transition: 0.25s;
}

.contact-submit:hover {
    background-color: #385CAD;
    box-shadow: 0px 6px 20px rgba(56, 92, 173, 0.5);
}

.touch .contact-submit:hover {
    background-color: #C2106C;
    box-shadow: 0px 6px 20px rgba(194, 16, 108, 0.5);
}

.contact-submit:active,
.touch .contact-submit:active {
    background-color: #385CAD;
    box-shadow: 0px 6px 20px rgba(56, 92, 173, 0.5);
}

.contact-error {
    display: none;
    margin-bottom: 0px;
    color: #C2106C;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
}

.contact-sent {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    padding-top: 24px;
    color: #C2106C;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
}

.contact-sent strong {
    font-weight: 700;
}

/* FRONT GLOBALS */

.frame {
    width: 100%;
    max-width: 1300px;
    padding-left: 32px;
    padding-right: 32px;
    margin: 0 auto;
}

.heading {
    font-family: "Rustica", sans-serif;
    font-weight: 900;
    font-size: 56px;
    line-height: 58px;
    text-transform: uppercase;
}

.heading-alt {
    font-family: "Rustica", sans-serif;
    font-weight: 900;
    font-size: 64px;
    line-height: 70px;
    text-transform: uppercase;
}

.subheading {
    padding-top: 20px;
    padding-bottom: 22px;
    font-weight: 600;
    font-size: 28px;
    line-height: 38px;
    text-transform: uppercase;
}

.subheading-alt {
    padding-top: 10px;
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    text-transform: uppercase;
}

.text {
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
}

.white {
    color: #FFFFFF;
}

.green {
    color: #59C1DB;
}

.fucsia {
    color: #C2106C;
}

.purple {
    color: #A45CA0;
}

.blue {
    color: #264394;
}

.text-gradient {
    background: #A45CA0;
    background: linear-gradient(45deg, #264394 0%, #59C1DB 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.center {
    text-align: center;
}

.emoji {
    display: inline-block;
    width: auto;
    height: 2.6ex;
    margin: 0 0 0;
    margin-top: 0ex;
    margin-left: 0.8ex;
    margin-right: 0ex;
    font-size: inherit;
    line-height: normal;
    vertical-align: middle;
}

.emoji-alt {
    height: 2ex;
    margin-top: -0.4ex;
    margin-left: 0ex;
}

.button,
.button:link,
.button:visited {
    display: inline-flex;
    align-items: center;
    height: 48px;
    padding-bottom: 2px;
    padding-left: 21px;
    padding-right: 21px;
    margin-top: 32px;
    border-radius: 100px;
    border: solid 2px #385CAD;
    background-color: transparent;
    color: #385CAD;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0px 0px 0px 0px rgba(38, 67, 148, 0.6);
}

@keyframes button-anima {
    to {
        box-shadow: 0px 0px 70px 25px rgba(38, 67, 148, 0);
    }
}

.button:hover {
    border-color: transparent;
    background-color: #264394;
    color: #FFFFFF;
    animation: button-anima 0.65s ease-in-out forwards;
}

.touch .button:hover {
    border-color: #385CAD;
    background-color: transparent;
    color: #385CAD;
    animation: none;
}

.button:active,
.touch .button:active {
    border-color: transparent;
    background-color: #385CAD;
    color: #FFFFFF;
    animation: button-anima 0.65s ease-in-out forwards;
}

.button-alt,
.button-alt:link,
.button-alt:visited {
    border: solid 2px #C2106C;
    background-color: transparent;
    color: #C2106C;
    box-shadow: 0px 0px 0px 0px rgba(194, 16, 108, 0.6);
}

@keyframes button-anima-alt {
    to {
        box-shadow: 0px 0px 70px 25px rgba(194, 16, 108, 0);
    }
}

.button-alt:hover {
    border-color: transparent;
    background-color: #C2106C;
    color: #FFFFFF;
    animation: button-anima-alt 0.65s ease-in-out forwards;
}

.touch .button-alt:hover {
    border-color: #C2106C;
    background-color: transparent;
    color: #C2106C;
    animation: none;
}

.button-alt:active,
.touch .button-alt:active {
    border-color: transparent;
    background-color: #C2106C;
    color: #FFFFFF;
    animation: button-anima-alt 0.65s ease-in-out forwards;
}

.button-alt-2,
.button-alt-2:link,
.button-alt-2:visited {
    border-color: transparent;
    background-color: #C2106C;
    color: #FFFFFF;
    box-shadow: 0px 0px 55px 10px rgba(194, 16, 108, 0.7);
    transition: 0.5s;
}

@keyframes button-anima-alt-2 {
    to {
        box-shadow: 0px 0px 55px 10px rgba(164, 92, 160, 0.7);
    }
}

.button-alt-2:hover {
    border-color: transparent;
    background-color: #A45CA0;
    color: #FFFFFF;
    animation: none;
    box-shadow: 0px 0px 55px 10px rgba(164, 92, 160, 1);
}

.touch .button-alt-2:hover {
    border-color: transparent;
    background-color: #C2106C;
    color: #FFFFFF;
    animation: none;
    box-shadow: 0px 0px 55px 10px rgba(194, 16, 108, 0.7);
}

.button-alt-2:active,
.touch .button-alt-2:active {
    border-color: transparent;
    background-color: #A45CA0;
    color: #FFFFFF;
    animation: none;
    box-shadow: 0px 0px 55px 10px rgba(164, 92, 160, 1);
}

.button-alt-3,
.button-alt-3:link,
.button-alt-3:visited {
    border-color: transparent;
    background-color: #C2106C;
    color: #FFFFFF;
    box-shadow: 0px 0px 55px 10px rgba(194, 16, 108, 0.7);
    transition: 0.5s;
}

@keyframes button-anima-alt-2 {
    to {
        box-shadow: 0px 0px 55px 10px rgba(164, 92, 160, 0.7);
    }
}

.button-alt-3:hover {
    border-color: transparent;
    background-color: #385CAD;
    color: #FFFFFF;
    animation: none;
    box-shadow: 0px 0px 55px 10px rgba(56, 92, 173, 1);
}

.touch .button-alt-3:hover {
    border-color: transparent;
    background-color: #C2106C;
    color: #FFFFFF;
    animation: none;
    box-shadow: 0px 0px 55px 10px rgba(194, 16, 108, 0.7);
}

.button-alt-3:active,
.touch .button-alt-3:active {
    border-color: transparent;
    background-color: #385CAD;
    color: #FFFFFF;
    animation: none;
    box-shadow: 0px 0px 55px 10px rgba(56, 92, 173, 1);
}

/* INTRO */

.intro {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 100%;
}

.intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.intro-shadow {
    position: absolute;
    bottom: -25%;
    left: -25%;
    width: 85%;
    height: 85%;
    filter: blur(100px);
    background-image: linear-gradient(rgba(89, 193, 219, 0.75), rgba(194, 16, 108, 0.75));
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    animation: intro-shadow-anima 5s cubic-bezier(0.8, 0.2, 0.2, 0.8) alternate infinite;
}

@keyframes intro-shadow-anima {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.intro-content {
    position: relative;
    padding-top: 112px;
    padding-bottom: 64px;
    padding-left: 90px;
    padding-right: 90px;
    text-align: right;
    z-index: 2;
}

.intro-content-space {
    display: inline-block;
    padding-left: 0.25em;
}

.intro-sliding {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    color: #000000;
    font-family: "Rustica", sans-serif;
    font-weight: 900;
    font-size: 72px;
    line-height: 72px;
    text-transform: uppercase;
}

.intro-sliding-frame {
    display: inline-flex;
    flex-direction: column;
    height: 72px;
    overflow: hidden;
}

.intro-sliding-words {
    display: flex;
    flex-direction: column;
    animation: intro-sliding-anima 4s infinite;
}

.intro-sliding-words div {
    height: 72px;
}

.intro-sliding-words div:nth-child(1) {
    color: #59C1DB;
}

.intro-sliding-words div:nth-child(2) {
    color: #C2106C;
}

.intro-sliding-words div:nth-child(3) {
    color: #264394;
}

.intro-sliding-words div:nth-child(4) {
    color: #A45CA0;
}

.intro-sliding-words div:nth-child(5) {
    color: #59C1DB;
}

@keyframes intro-sliding-anima {

    15%,
    25% {
        transform: translateY(-20%);
    }

    40%,
    50% {
        transform: translateY(-40%);
    }

    65%,
    75% {
        transform: translateY(-60%);
    }

    90%,
    100% {
        transform: translateY(-80%);
    }
}

/* FEATURES */

.features {
    overflow: hidden;
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    column-gap: 40px;
    width: 100%;
    max-width: 1300px;
    padding: 32px;
    padding-top: 96px;
    padding-bottom: 96px;
    margin: 0 auto;
}

.features-content {
    display: flex;
    align-items: center;
    padding-bottom: 32px;
}

.features-boxes {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    row-gap: 10px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.features-box {
    display: flex;
    column-gap: 12px;
}

.features-icon {
    flex: none;
    display: flex;
}

.features-circle {
    width: 20px;
    height: 20px;
    border-radius: 100px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 10px -2px rgba(194, 16, 108, 1);
    transform: translateY(4px);
}

.features-circle img {
    display: block;
    width: 100%;
    height: 100%;
}

.features-text {
    flex: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 40px;
    min-width: 0;
    min-height: 0;
}

.features-grid-1 {
    position: relative;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
    min-width: 0;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
}

.features-grid-2 {
    position: relative;
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
    height: 510px;
    border-radius: 16px;
    overflow: hidden;
}

.features-grid-3 {
    position: relative;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 4;
    height: 510px;
    border-radius: 16px;
}

.features-grid-4 {
    position: relative;
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 4;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
}

@property --features-gradient-x1 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 20%;
}

@property --features-gradient-y1 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 80%;
}

@property --features-gradient-x2 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 80%;
}

@property --features-gradient-y2 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 20%;
}

.features-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(100% 100% at 20% 80%, #59C1DB 0%, transparent), radial-gradient(100% 100% at 80% 20%, #A45CA0 0%, transparent), #264394;
    inset: 0;
    opacity: 1;
}

@supports (background: radial-gradient(circle at var(--test-x) var(--test-y), red, transparent)) {
    .features-gradient {
        --features-gradient-x1: 20%;
        --features-gradient-y1: 80%;
        --features-gradient-x2: 80%;
        --features-gradient-y2: 20%;
        background: radial-gradient(100% 100% at var(--features-gradient-x1) var(--features-gradient-y1), #59C1DB 0%, transparent), radial-gradient(100% 100% at var(--features-gradient-x2) var(--features-gradient-y2), #A45CA0 0%, transparent), #264394;
        animation: features-gradient-animation 4s infinite ease-in;
    }
}

@keyframes features-gradient-animation {
    25% {
        --features-gradient-x1: 15%;
        --features-gradient-y1: 15%;
        --features-gradient-x2: 85%;
        --features-gradient-y2: 80%;
    }

    50% {
        --features-gradient-x1: 80%;
        --features-gradient-y1: 15%;
        --features-gradient-x2: 15%;
        --features-gradient-y2: 85%;
    }

    100% {
        --features-gradient-x1: 20%;
        --features-gradient-y1: 80%;
        --features-gradient-x2: 80%;
        --features-gradient-y2: 20%;
    }
}

@property --features-gradient-alt-x1 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 87.96875%;
}

@property --features-gradient-alt-y1 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 91.1328125%;
}

@property --features-gradient-alt-x2 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 13.3984375%;
}

@property --features-gradient-alt-y2 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 82.734375%;
}

.features-gradient-alt {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(100% 100% at 4% 3%, #264394 0%, transparent), radial-gradient(100% 100% at 88% 91%, #59C1DB -32%, transparent), radial-gradient(100% 100% at 13% 83%, #A45CA0 0%, transparent), #A45CA0;
    inset: 0;
    opacity: 1;
}

@supports (background: radial-gradient(circle at var(--test-x) var(--test-y), red, transparent)) {
    .features-gradient-alt {
        --features-gradient-alt-x1: 87.96875%;
        --features-gradient-alt-y1: 91.1328125%;
        --features-gradient-alt-x2: 13.3984375%;
        --features-gradient-alt-y2: 82.734375%;
        background: radial-gradient(100% 100% at 4% 3%, #264394 0%, transparent), radial-gradient(100% 100% at var(--features-gradient-alt-x1) var(--features-gradient-alt-y1), #59C1DB -32%, transparent), radial-gradient(100% 100% at var(--features-gradient-alt-x2) var(--features-gradient-alt-y2), #A45CA0 0%, transparent), #A45CA0;
        animation: features-gradient-alt-animation 7s infinite ease-in-out;
    }
}

@keyframes features-gradient-alt-animation {
    50% {
        --features-gradient-alt-x1: 15%;
        --features-gradient-alt-y1: 15%;
        --features-gradient-alt-x2: 61.21%;
        --features-gradient-alt-y2: 13.75%;
    }

    100% {
        --features-gradient-alt-x1: 87.96875%;
        --features-gradient-alt-y1: 91.1328125%;
        --features-gradient-alt-x2: 13.3984375%;
        --features-gradient-alt-y2: 82.734375%;
    }
}

.features-word {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #FFFFFF;
    font-family: "Rustica", sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 32px;
    text-transform: uppercase;
    text-align: center;
}

.features-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background-color: #DADBDA;
    background-image: url(../assets/features-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.features-picture-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background-color: #DADBDA;
    background-image: url(../assets/features-2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* SERVICES */

.services {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
}

.services-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
}

.services-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #24378B;
}

.services-content {
    position: relative;
    width: 100%;
    max-width: 700px;
    padding-bottom: 72px;
    padding-left: 32px;
    padding-right: 32px;
    margin: 0 auto;
}

.services-space {
    margin-top: 32px;
}

.services-items {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px;
    width: 100%;
    max-width: 1780px;
    padding-left: 100px;
    padding-right: 100px;
    margin: 0 auto;
}

.services-item,
.services-item:link,
.services-item:visited {
    position: relative;
    display: block;
    padding: 48px;
    padding-top: 132px;
    padding-bottom: 132px;
    border-radius: 28px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    z-index: 0;
}

.services-item-on {
    cursor: default !important;
}

.services-item-on .services-bg {
    filter: brightness(170%);
}

.services-item::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-color: #24378B;
    background-image: conic-gradient(transparent, #59C1DB, transparent 30%);
    background-repeat: no-repeat;
    background-position: 0 0;
    animation: services-item-anima 3s linear infinite;
    z-index: -2;
}

.services-item:nth-child(even)::before {
    background-image: conic-gradient(transparent, #59C1DB, transparent 30%);
}

@keyframes services-item-anima {
    100% {
        transform: rotate(1turn);
    }
}

.services-item:hover .services-overlay {
    opacity: 0.25;
}

.touch .services-item:hover .services-overlay {
    opacity: 0.6;
}

.services-item:active .services-overlay,
.touch .services-item:active .services-overlay {
    opacity: 0.25;
}

.services-item:hover .services-btn {
    color: #59C1DB;
}

.touch .services-item:hover .services-btn {
    color: #FFFFFF;
}

.services-item:active .services-btn,
.touch .services-item:active .services-btn {
    color: #59C1DB;
}

.services-item-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
}

.services-bg {
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 28px;
    background: linear-gradient(135deg, #264394 0%, #A45CA0 100%);
    opacity: 1;
    overflow: hidden;
}

.services-item:nth-child(even) .services-bg {
    background: linear-gradient(135deg, #264394 0%, #59C1DB 100%);
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0;
    transition: 0.6s;
}

.services-name {
    padding-bottom: 16px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-transform: uppercase;
}

.services-btn {
    display: inline-block;
    padding: 12px;
    padding-bottom: 15px;
    padding-left: 28px;
    padding-right: 28px;
    border-radius: 100px;
    background: #000000;
    color: #A45CA0;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0.3rem 0.3rem 0.5rem rgba(20, 20, 20, 0.1), -0.2rem -0.2rem 0.4rem rgba(20, 20, 20, 0.3);
    transition: 0.75s;
}

/* WORKS */

.works-header {
    width: 100%;
    max-width: 740px;
    padding-top: 90px;
    padding-bottom: 80px;
    padding-left: 32px;
    padding-right: 32px;
    margin: 0 auto;
    text-align: right;
}

.works-header .heading {
    display: inline-block;
    max-width: 500px;
    padding-bottom: 16px;
}

.works-ticker-frame {
    width: 100%;
    height: 500px;
}

.works-ticker {
    width: 100%;
    height: 500px;
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

.work-item {
    display: block;
    width: 500px;
    height: 500px;
    padding-left: 10px;
    padding-right: 10px;
}

.work-item-alt {
    width: 420px;
}

.work-item-alt-2 {
    width: 470px;
}

.work-item-layout {
    width: 100%;
    height: 100%;
}

.work-item-layout-alt {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    row-gap: 20px;
}

.work-item-frame,
.work-item-frame:link,
.work-item-frame:visited {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background-color: #E9E9E9;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
}

.work-item-frame:hover .work-item-gradient {
    opacity: 1;
}

.touch .work-item-frame:hover .work-item-gradient {
    opacity: 0.6;
}

.work-item-frame:active .work-item-gradient,
.touch .work-item-frame:active .work-item-gradient {
    opacity: 1;
}

.work-item-frame:hover .work-item-more img {
    transform: translateX(6px);
}

.touch .work-item-frame:hover .work-item-more img {
    transform: translateX(0);
}

.work-item-frame:active .work-item-more img,
.touch .work-item-frame:active .work-item-more img {
    transform: translateX(6px);
}

.work-item-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.work-item-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0.6;
    transition: 0.5s;
}

.work-item-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.work-item-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    padding-bottom: 22px;
}

.work-item-title {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.work-item-more {
    display: inline-flex;
    padding-top: 3px;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    opacity: 0.6;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
}

.work-item-more img {
    display: block;
    width: auto;
    height: 10px;
    margin-top: 4px;
    margin-left: 4px;
    transition: 0.5s;
}

/* PARALLAX TEXT */

.parallax {
    padding-top: 114px;
    padding-bottom: 60px;
    overflow: hidden;
}

.marquee {
    position: relative;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.marquee-color-1 {
    color: #C2106C;
}

.marquee-color-2 {
    color: #59C1DB;
}

.marquee-group {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    white-space: nowrap;
    padding-right: 0.7rem;
}

.marquee-group span {
    font-family: "Rustica", sans-serif;
    font-weight: 900;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

/* SERVICES SECTION */

.services-hero {
    position: relative;
    width: 100%;
    height: auto;
    border-bottom-right-radius: 96px;
    border-bottom-left-radius: 96px;
    margin-bottom: 96px;
    overflow: hidden;
}

.services-hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(100% 100% at 20% 80%, #264394 0%, transparent), radial-gradient(100% 100% at 80% 20%, #A45CA0 0%, transparent), #264394;
    inset: 0;
    border-bottom-right-radius: 96px;
    border-bottom-left-radius: 96px;
}

@supports (background: radial-gradient(circle at var(--test-x) var(--test-y), red, transparent)) {
    .services-hero-gradient {
        --features-gradient-x1: 20%;
        --features-gradient-y1: 80%;
        --features-gradient-x2: 80%;
        --features-gradient-y2: 20%;
        background: radial-gradient(100% 100% at var(--features-gradient-x1) var(--features-gradient-y1), #264394 0%, transparent), radial-gradient(100% 100% at var(--features-gradient-x2) var(--features-gradient-y2), #A45CA0 0%, transparent), #264394;
        animation: features-gradient-animation 3.5s infinite ease-in;
    }
}

.services-hero-gradient-alt {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(100% 100% at 20% 80%, #264394 0%, transparent), radial-gradient(100% 100% at 80% 20%, #59C1DB 0%, transparent), #264394;
    inset: 0;
    border-bottom-right-radius: 96px;
    border-bottom-left-radius: 96px;
}

@supports (background: radial-gradient(circle at var(--test-x) var(--test-y), red, transparent)) {
    .services-hero-gradient-alt {
        --features-gradient-x1: 20%;
        --features-gradient-y1: 80%;
        --features-gradient-x2: 80%;
        --features-gradient-y2: 20%;
        background: radial-gradient(100% 100% at var(--features-gradient-x1) var(--features-gradient-y1), #264394 0%, transparent), radial-gradient(100% 100% at var(--features-gradient-x2) var(--features-gradient-y2), #59C1DB 0%, transparent), #264394;
        animation: features-gradient-animation 3.5s infinite ease-in;
    }
}

.services-hero-content {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 180px;
    padding-bottom: 120px;
    padding-left: 48px;
    padding-right: 48px;
}

.services-hero-intro {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.services-tags {
    padding-top: 48px;
    text-align: center;
}

.services-products {
    position: relative;
    display: inline-flex;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    row-gap: 12px;
    padding: 32px;
    padding-bottom: 36px;
    padding-left: 42px;
    padding-right: 42px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 100%);
    border-radius: 38px;
    box-shadow: 0px 0px 48px 16px rgba(0, 0, 0, 0.2);
}

.services-products::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 38px;
    background: linear-gradient(45deg, rgba(89, 193, 219, 1), rgba(89, 193, 219, 0));
    -webkit-mask: linear-gradient(#FFFFFF 0 0) content-box, linear-gradient(#FFFFFF 0 0);
    mask: linear-gradient(#FFFFFF 0 0) content-box, linear-gradient(#FFFFFF 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.services-product {
    color: #FFFFFF;
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
}

.services-product-divisor {
    color: #FFFFFF;
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
}

.services-product-divisor:last-child {
    display: none;
}

.services-materials {
    display: inline-flex;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 32px;
    gap: 12px;
    row-gap: 8px;
}

.services-material {
    color: #FFFFFF;
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
}

.services-material-divisor {
    color: #FFFFFF;
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
}

.services-material-divisor:last-child {
    display: none;
}

.services-gallery {
    display: flex;
    gap: 24px;
    width: 100%;
    justify-content: center;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0 auto;
}

.services-gallery-small {
    max-width: 1400px;
}

.services-gallery-xsmall {
    max-width: 840px;
}

.services-gallery-picture {
    overflow: hidden;
    border-radius: 16px;
    background-color: #EFEFEF;
}

.services-gallery-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-machines {
    position: relative;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 100px;
    padding-bottom: 120px;
}

.services-machines-title {
    margin: 0 auto;
    width: 100%;
    max-width: 780px;
    padding-bottom: 64px;
}

.service-items {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.services-block {
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 32px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 28px -7px rgba(36, 32, 33, 0.2);
    overflow: hidden;
}

.services-machine {
    flex: none;
    padding: 24px;
    padding-top: 36px;
}

.services-machine-picture {
    width: 100%;
    padding-bottom: 66.66666666666667%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.services-title {
    padding-bottom: 18px;
    color: #264394;
    font-family: "Rustica", sans-serif;
    font-weight: 800;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    text-transform: uppercase;
}

.services-elements {
    flex: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 52px;
    padding-top: 0px;
    padding-bottom: 52px;
    text-align: center;
}

.services-elements>div:nth-child(1) {
    flex: auto;
    height: 100%;
}

.services-elements>div:nth-child(2) {
    flex: none;
}

.services-element {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}

.services-button,
.services-button:link,
.services-button:visited {
    display: inline-flex;
    column-gap: 6px;
    padding: 10px;
    padding-bottom: 11px;
    padding-left: 22px;
    padding-right: 22px;
    margin-top: 24px;
    border-radius: 100px;
    background-color: rgba(194, 16, 108, 0.1);
    color: #C2106C;
    font-weight: 600;
    font-size: 17px;
    line-height: 25px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0px 0px 0px 0px rgba(194, 16, 108, 0.6);
}

@keyframes services-button-anima {
    to {
        box-shadow: 0px 0px 70px 25px rgba(194, 16, 108, 0);
    }
}

.services-button:hover {
    animation: services-button-anima 0.65s ease-in-out forwards;
}

.touch .services-button:hover {
    animation: none;
}

.services-button:active,
.touch .services-button:active {
    animation: services-button-anima 0.65s ease-in-out forwards;
}

.services-button-arrow {
    display: flex;
    align-items: center;
    padding-top: 1px;
}

.services-button-arrow img {
    display: block;
    width: auto;
    height: 10px;
    opacity: 0.35;
    transition: 0.65s;
}

.services-button:hover img {
    opacity: 1;
}

.touch .services-button:hover img {
    opacity: 0.35;
}

.services-button:active img,
.touch .services-button:active img {
    opacity: 1;
}

/* WORKS SECTION */

.works-hero {
    position: relative;
    width: 100%;
    height: 75%;
    background: #59C1DB;
    background: linear-gradient(45deg, #59C1DB 0%, #C2106C 100%);
    border-bottom-right-radius: 96px;
    border-bottom-left-radius: 96px;
    overflow: hidden;
}

.works-intro {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 132px;
    padding-bottom: 64px;
    padding-left: 48px;
    padding-right: 48px;
    text-align: right;
    z-index: 4;
}

.works-intro .subheading-alt {
    padding-left: 30%;
    color: #1C2B6E;
}

.works-clouds {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80%;
    margin: auto;
    overflow: hidden;
    animation: works-clouds-anima 3.1s ease-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@keyframes works-clouds-anima {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.works-cloud {
    position: absolute;
    width: 100%;
    height: 70px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    animation-duration: 120s;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-name: works-cloud-anima-1, works-cloud-anima-2;
    z-index: 1;
}

.works-cloud {
    background-image: url(../assets/cloud.svg);
}

.works-cloud.works-cloud-background {
    background-image: url(../assets/cloud-alt.svg);
}

@keyframes works-cloud-anima-1 {
    from {
        transform: translateX(100%) translateZ(0);
    }

    to {
        transform: translateX(-15%) translateZ(0);
    }
}

@keyframes works-cloud-anima-2 {

    0%,
    100% {
        opacity: 0;
    }

    5%,
    90% {
        opacity: 0.75;
    }
}

.works-cloud.works-cloud-foreground {
    height: 10%;
    min-height: 20px;
    z-index: 3;
}

.works-cloud.works-cloud-background {
    height: 9.09090909%;
    min-height: 8px;
    animation-duration: 210s;
}

.works-cloud:nth-child(10) {
    animation-delay: -184.61538462s;
    top: 60%;
}

.works-cloud.works-cloud-foreground:nth-child(10) {
    animation-duration: 80s;
    height: 35%;
}

.works-cloud.works-cloud-background:nth-child(10) {
    animation-duration: 110s;
    height: -3.40909091%;
}

.works-cloud:nth-child(9) {
    animation-delay: -166.15384615s;
    top: 54%;
}

.works-cloud.works-cloud-foreground:nth-child(9) {
    animation-duration: 84s;
    height: 32.5%;
}

.works-cloud.works-cloud-background:nth-child(9) {
    animation-duration: 114s;
    height: -2.15909091%;
}

.works-cloud:nth-child(8) {
    animation-delay: -147.69230769s;
    top: 48%;
}

.works-cloud.works-cloud-foreground:nth-child(8) {
    animation-duration: 88s;
    height: 30%;
}

.works-cloud.works-cloud-background:nth-child(8) {
    animation-duration: 118s;
    height: -0.90909091%;
}

.works-cloud:nth-child(7) {
    animation-delay: -129.23076923s;
    top: 42%;
}

.works-cloud.works-cloud-foreground:nth-child(7) {
    animation-duration: 92s;
    height: 27.5%;
}

.works-cloud.works-cloud-background:nth-child(7) {
    animation-duration: 122s;
    height: 0.34090909%;
}

.works-cloud:nth-child(6) {
    animation-delay: -110.76923077s;
    top: 36%;
}

.works-cloud.works-cloud-foreground:nth-child(6) {
    animation-duration: 96s;
    height: 25%;
}

.works-cloud.works-cloud-background:nth-child(6) {
    animation-duration: 126s;
    height: 1.59090909%;
}

.works-cloud:nth-child(5) {
    animation-delay: -92.30769231s;
    top: 30%;
}

.works-cloud.works-cloud-foreground:nth-child(5) {
    animation-duration: 100s;
    height: 22.5%;
}

.works-cloud.works-cloud-background:nth-child(5) {
    animation-duration: 130s;
    height: 2.84090909%;
}

.works-cloud:nth-child(4) {
    animation-delay: -73.84615385s;
    top: 24%;
}

.works-cloud.works-cloud-foreground:nth-child(4) {
    animation-duration: 104s;
    height: 20%;
}

.works-cloud.works-cloud-background:nth-child(4) {
    animation-duration: 134s;
    height: 4.09090909%;
}

.works-cloud:nth-child(3) {
    animation-delay: -55.38461538s;
    top: 18%;
}

.works-cloud.works-cloud-foreground:nth-child(3) {
    animation-duration: 108s;
    height: 17.5%;
}

.works-cloud.works-cloud-background:nth-child(3) {
    animation-duration: 138s;
    height: 5.34090909%;
}

.works-cloud:nth-child(2) {
    animation-delay: -36.92307692s;
    top: 12%;
}

.works-cloud.works-cloud-foreground:nth-child(2) {
    animation-duration: 112s;
    height: 15%;
}

.works-cloud.works-cloud-background:nth-child(2) {
    animation-duration: 142s;
    height: 6.59090909%;
}

.works-cloud:nth-child(1) {
    animation-delay: -18.46153846s;
    top: 6%;
}

.works-cloud.works-cloud-foreground:nth-child(1) {
    animation-duration: 116s;
    height: 12.5%;
}

.works-cloud.works-cloud-background:nth-child(1) {
    animation-duration: 146s;
    height: 7.84090909%;
}

.works-frame {
    width: 100%;
    max-width: 1480px;
    padding-top: 48px;
    padding-left: 32px;
    padding-right: 32px;
    margin: 0 auto;
}

.works-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.works-category,
.works-category:link,
.works-category:visited {
    display: inline-flex;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 100px;
    background-color: rgba(164, 92, 160, 0.1);
    color: #385CAD;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s;
}

.works-category:hover {
    background-color: rgba(164, 92, 160, 0.25);
}

.touch .works-category:hover {
    background-color: rgba(164, 92, 160, 0.1);
}

.works-category:active,
.touch .works-category:active {
    background-color: rgba(164, 92, 160, 0.25);
}

.works-category-on,
.works-category-on:link,
.works-category-on:visited {
    color: #FFFFFF;
    background-color: rgba(164, 92, 160, 1);
}

.works-category-on:hover {
    color: #FFFFFF;
    background-color: rgba(164, 92, 160, 1);
}

.touch .works-category-on:hover {
    color: #FFFFFF;
    background-color: rgba(164, 92, 160, 1);
}

.works-category-on:active,
.touch .works-category-on:active {
    color: #FFFFFF;
    background-color: rgba(164, 92, 160, 1);
}

.works-grid {
    margin-top: 48px;
    column-count: 3;
    column-gap: 24px;
}

.works-grid-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 24px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
}

.works-grid-item.hidden {
    display: none;
}

@media (max-width: 880px) {
    .works-grid {
        column-count: 2;
    }
}

@media (max-width: 680px) {
    .works-grid {
        column-count: 1;
    }
}

.works-item,
.works-item:link,
.works-item:visited {
    display: block;
    position: relative;
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0px 0px 16px -4px rgba(36, 32, 33, 0.25);
    transition: 0.5s;
    animation: works-grid-anima 1s;
}

@keyframes works-grid-anima {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.works-item:hover {
    box-shadow: 0px 0px 24px -4px rgba(36, 32, 33, 0.65);
}

.touch .works-item:hover {
    box-shadow: 0px 0px 16px -4px rgba(36, 32, 33, 0.25);
}

.works-item:active,
.touch .works-item:active {
    box-shadow: 0px 0px 24px -4px rgba(36, 32, 33, 0.65);
}

.works-item-picture {
    display: block;
    width: 100%;
    height: auto;
    transition: 0.5s;
}

.works-item:hover .works-item-picture {
    transform: scale(1.1);
    filter: brightness(115%);
}

.touch .works-item:hover .works-item-picture {
    transform: scale(1);
    filter: brightness(100%);
}

.works-item:active .works-item-picture,
.touch .works-item:active .works-item-picture {
    transform: scale(1.1);
    filter: brightness(115%);
}

.works-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    padding-top: 32px;
    background: rgba(36, 32, 33, 0);
    background: linear-gradient(to bottom, rgba(36, 32, 33, 0) 0%, rgba(36, 32, 33, 0.75) 100%);
}

.work-item-info-title {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    opacity: 1;
}

.work-item-info-subtitle {
    display: inline-flex;
    padding-top: 3px;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    opacity: 0.6;
}

.work-item-play {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    border-radius: 200px;
    background-color: rgba(36, 32, 33, 0.7);
    animation: work-item-play-anima 1s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.work-item-play img {
    display: block;
    width: 100%;
    height: 100%;
}

@keyframes work-item-play-anima {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(0.75);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* BLOG */

.blog-hero {
    position: relative;
    height: 75%;
}

.blog-hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(100% 100% at 20% 80%, #59C1DB 0%, transparent), radial-gradient(100% 100% at 80% 20%, #A45CA0 0%, transparent), #264394;
    inset: 0;
    border-bottom-right-radius: 96px;
    border-bottom-left-radius: 96px;
}

@supports (background: radial-gradient(circle at var(--test-x) var(--test-y), red, transparent)) {
    .blog-hero-gradient {
        --features-gradient-x1: 20%;
        --features-gradient-y1: 80%;
        --features-gradient-x2: 80%;
        --features-gradient-y2: 20%;
        background: radial-gradient(100% 100% at var(--features-gradient-x1) var(--features-gradient-y1), #59C1DB 0%, transparent), radial-gradient(100% 100% at var(--features-gradient-x2) var(--features-gradient-y2), #A45CA0 0%, transparent), #264394;
        animation: features-gradient-animation 3.5s infinite ease-in;
    }
}

.blog-hero-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 72px;
}

.blog-hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.blog-intro {
    width: 100%;
    max-width: 800px;
    padding-top: 72px;
    padding-bottom: 72px;
    margin: 0 auto;
    color: #264394;
    font-size: 34px;
    line-height: 42px;
    font-weight: 600;
    text-align: center;
}

.blog-articles {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 30px;
    column-gap: 30px;
}

.blog-article,
.blog-article:link,
.blog-article:visited {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding-bottom: 23px;
    border-radius: 16px;
    background-color: #FFFFFF;
    color: #000000;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    box-shadow: 6px 6px 54px 0px rgba(36, 32, 33, 0.1);
    cursor: pointer;
    transition: 0.35s;
}

.blog-article:hover {
    box-shadow: 6px 6px 54px 0px rgba(36, 32, 33, 0.35);
}

.touch .blog-article:hover {
    box-shadow: 6px 6px 54px 0px rgba(36, 32, 33, 0.1);
}

.blog-article:active,
.touch .blog-article:active {
    box-shadow: 6px 6px 54px 0px rgba(36, 32, 33, 0.35);
}

.blog-article>div:nth-child(1) {
    flex: none;
}

.blog-article>div:nth-child(2) {
    flex: auto;
}

.blog-article>div:nth-child(3) {
    flex: none;
    padding-top: 16px;
}

.blog-article-picture {
    width: 100%;
    padding-bottom: 75%;
    background-color: #E9E9E9;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 0.25s;
}

.blog-article:hover .blog-article-picture {
    filter: brightness(93%);
}

.touch .blog-article:hover .blog-article-picture {
    filter: brightness(100%);
}

.blog-article:active .blog-article-picture,
.touch .blog-article:active .blog-article-picture {
    filter: brightness(93%);
}

.blog-article-tagline {
    padding-top: 17px;
    padding-bottom: 7px;
    padding-left: 24px;
    padding-right: 24px;
    color: #59C1DB;
    font-size: 17px;
    line-height: 23px;
    font-weight: 500;
    text-transform: uppercase;
}

.blog-article-title {
    padding-left: 24px;
    padding-right: 24px;
    font-size: 20px;
    line-height: 27px;
    font-weight: 600;
}

.blog-article-button {
    margin-left: 25px;
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.blog-article:hover .blog-article-button {
    color: #C2106C;
}

.touch .blog-article:hover .blog-article-button {
    color: #000000;
}

.blog-article:active .blog-article-button,
.touch .blog-article:active .blog-article-button {
    color: #C2106C;
}

.blog-article-button-arrow {
    display: inline-block;
    transition: 0.25s;
}

.blog-article:hover .blog-article-button-arrow {
    transform: translateX(4px);
}

.touch .blog-article:hover .blog-article-button-arrow {
    transform: translateX(0px);
}

.blog-article:active .blog-article-button-arrow,
.touch .blog-article:active .blog-article-button-arrow {
    transform: translateX(4px);
}

/* ARTICLE */

.article-intro {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 75%;
    border-bottom-right-radius: 96px;
    border-bottom-left-radius: 96px;
    overflow: hidden;
}

.article-intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #264394;

}

.article-intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(36, 32, 33, 0) 0%, rgba(36, 32, 33, 0.8) 100%);
}

.article-intro-picture {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.article-intro-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 32px;
    padding-right: 32px;
}

.article-intro-content>div {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.article-intro-tagline {
    padding-top: 96px;
    padding-bottom: 18px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    font-size: 26px;
    line-height: 32px;
    font-weight: 400;
    text-align: center;
    text-shadow: 0px 0px 16px rgba(36, 32, 33, 0.25);
}

.article-intro-title {
    color: #FFFFFF;
    font-size: 58px;
    line-height: 68px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0px 0px 16px rgba(36, 32, 33, 0.25);
}

.article-suggestions {
    padding-top: 8px;
    padding-bottom: 64px;
    background-color: #F6EFF6;
}

.article-suggestions-all {
    padding-top: 16px;
    text-align: center;
}

.article-content-summary {
    padding-top: 20px !important;
    padding-bottom: 28px !important;
    color: #59C1DB;
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
}

.article-content {
    display: block;
    width: 100%;
    padding-top: 32px;
    padding-bottom: 100px;
    background-color: #FFFFFF;
}

.article-content h2,
.article-content h3,
.article-content p,
.article-content ul,
.article-content ol,
.article-content-summary,
.article-image,
.article-content-embed {
    display: block;
    width: 100%;
    max-width: 840px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 48px;
    padding-right: 48px;
    margin: 0 auto;
}

.article-content-embed {
    padding-top: 22px;
    padding-bottom: 22px;
}

.article-content-embed-frame {
    position: relative;
    padding-bottom: 56.25%;
    width: 100%;
}

.article-content-embed-frame-youtube {
    border-radius: 16px;
    overflow: hidden;
}

.article-content-embed iframe {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.article-content-embed-frame iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.article-content p,
.article-content ul,
.article-content ol {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}

.article-content ul,
.article-content ol {
    padding-left: 96px;
    padding-right: 96px;
}

.article-content li {
    padding: 0;
    margin: 0;
}

.article-content h2 {
    padding-top: 20px;
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
}

.article-content h3 {
    padding-top: 20px;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
}

.article-content a,
.article-content a:link,
.article-content a:visited {
    color: #385CAD;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
}

.article-content a:hover {
    text-decoration: underline;
}

.touch .article-content a:hover {
    text-decoration: none;
}

.article-content a:active,
.touch .article-content a:active {
    text-decoration: underline;
}

.article-image {
    padding-top: 24px;
    padding-bottom: 24px;
}

.article-content img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto;
    border-radius: 16px;
}

.article-image-full {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.article-image-full img {
    width: 100%;
    max-width: none;
    border-radius: 0;
}

.article-image-with-border img {
    border: solid 2px #E9E9E9;
}

.article-image-with-bg img {
    padding: 32px;
    background-color: #EFEFEF;
}

.article-content figcaption {
    padding-top: 10px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    text-align: center;
    opacity: 0.7;
}

.article-content-embed figcaption {
    text-align: left;
    padding-left: 0px;
    padding-right: 0px;
}

/* FAQS SECTION */

.faq-items {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.faq-item {
    border-radius: 10px;
    border: solid 2px #E9E9E9;
    transition: 0.25s;
}

.faq-item:hover {
    border-color: #A45CA0;
}

.touch .faq-item:hover {
    border-color: #E9E9E9;
}

.faq-item:active,
.touch .faq-item:active {
    border-color: #A45CA0;
}

.faq-item-shown {
    border-color: transparent;
    background-color: #EFEFEF;
}

.faq-item-shown:hover {
    border-color: transparent;
    background-color: #EFEFEF;
}

.touch .faq-item-shown:hover {
    border-color: transparent;
    background-color: #EFEFEF;
}

.faq-item-shown:active,
.touch .faq-item-shown:active {
    border-color: transparent;
    background-color: #EFEFEF;
}

.faq-question {
    display: flex;
    column-gap: 10px;
    padding-top: 10px;
    padding-bottom: 12px;
    padding-left: 16px;
    padding-right: 16px;
    color: #000000;
    font-weight: 500;
    font-size: 17px;
    line-height: 25px;
    cursor: pointer;
}

.faq-item:hover .faq-question {
    color: #A45CA0;
}

.touch .faq-item:hover .faq-question {
    color: #000000;
}

.faq-item:active .faq-question,
.touch .faq-item:active .faq-question {
    color: #A45CA0;
}

.faq-question-text {
    flex: auto;
}

.faq-question-arrow {
    flex: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-question-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 6px;
    border-color: transparent transparent transparent #AAAAAA;
    transition: 0.25s;
}

.faq-item:hover .faq-question-triangle {
    border-color: transparent transparent transparent #A45CA0;
}

.touch .faq-item:hover .faq-question-triangle {
    border-color: transparent transparent transparent #AAAAAA;
}

.faq-item:active .faq-question-triangle,
.touch .faq-item:active .faq-question-triangle {
    border-color: transparent transparent transparent #A45CA0;
}

.faq-item-shown .faq-question-triangle {
    transform: rotate(90deg);
}

.faq-answer {
    display: none;
    padding-top: 0px;
    padding-bottom: 18px;
    padding-left: 22px;
    padding-right: 22px;
    color: #535353;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    animation: faq-answer-anima 0.25s ease-in-out forwards;
}

.faq-answer p {
    margin: 0;
    padding: 0;
    padding-bottom: 8px;
}

.faq-answer p:last-of-type {
    padding-bottom: 0;
}

.faq-item-shown .faq-answer {
    display: block;
}

@keyframes faq-answer-anima {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* BANNER */

.banner {
    position: relative;
    width: 100%;
    height: 480px;
    margin-top: 96px;
    border-radius: 16px;
    background-color: #A45CA0;
    box-shadow: 0px 0px 30px -2px rgba(36, 32, 33, 0.5);
    overflow: hidden;
}

.banner-pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/banner.jpg);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    animation-name: banner-pic-anima;
    animation-duration: 32s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes banner-pic-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: 36, 32, 33;
    background: linear-gradient(to top, rgba(36, 32, 33, 0.1) 0%, rgba(36, 32, 33, 1) 100%);
    opacity: 1;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px;
    text-align: center;
}

.banner-content>div {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.banner-title {
    color: #FFFFFF;
    font-family: "Rustica", sans-serif;
    font-weight: 900;
    font-size: 64px;
    line-height: 72px;
    text-transform: uppercase;
    text-shadow: 0px 0px 16px rgba(36, 32, 33, 0.25);
}

/* FOOTER */

.footer {
    position: relative;
    margin-top: 130px;
    padding-top: 64px;
    background-color: #A45CA0;
    background: linear-gradient(135deg, #264394 0%, #A45CA0 100%);
}

.footer-brand a {
    display: inline-block;
}

.footer-brand img {
    height: 64px;
    width: auto;
}

.footer-content {
    margin-top: 4px;
    margin-bottom: 32px;
}

.footer-layout {
    display: inline-flex;
    flex-wrap: wrap;
    column-gap: 48px;
    row-gap: 32px;
    width: auto;
    padding-top: 32px;
    padding-bottom: 48px;
    font-size: 16px;
    line-height: 24px;
}

.footer-about {
    width: 400px;
    color: #59C1DB;
    font-size: 18px;
}

.footer-section {
    padding-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    row-gap: 3px;
}

.footer-section-title {
    display: inline-block;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
}

.footer-link,
.footer-link:link,
.footer-link:visited {
    display: inline-flex;
    column-gap: 5px;
    color: #000000;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    text-decoration: none;
    transition: 0.25s;
}

.footer-link:hover {
    color: #FFFFFF;
}

.touch .footer-link:hover {
    color: #000000;
}

.footer-link:active,
.touch .footer-link:active {
    color: #FFFFFF;
}

.footer-link svg {
    display: block;
    width: 16px;
    height: auto;
}

.footer-link path {
    fill: #000000;
    transition: 0.25s;
}

.footer-link:hover path {
    fill: #FFFFFF;
}

.touch .footer-link:hover path {
    fill: #000000;
}

.footer-link:active path,
.touch .footer-link:active path {
    fill: #FFFFFF;
}

.footer-qr img {
    display: block;
    width: 148px;
    height: 148px;
}

.footer-copy {
    width: 100%;
    max-width: 1300px;
    padding-top: 32px;
    padding-bottom: 48px;
    padding-left: 80px;
    padding-right: 80px;
    color: #FFFFFF;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    opacity: 0.75;
}

.footer-copy strong {
    font-weight: 400;
}

/* PANEL */

.panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 11;
}

.panel-show {
    display: block;
}

.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(36, 32, 33, 0.85);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    transition: 0.25s;
}

.panel-show .panel-overlay {
    opacity: 1;
}

.panel-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 480px;
    height: 100%;
    padding: 24px;
}

.panel-window {
    position: relative;
    height: 100%;
    border-radius: 32px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    background-color: #FFFFFF;
    opacity: 0;
    box-shadow: 0px 0px 30px -2px rgba(36, 32, 33, 0.4);
    transform: scale(0.9);
    transition: 0.25s;
}

.panel-show .panel-window {
    opacity: 1;
    transform: scale(1);
}

/* RESPONSIVE */

@media (max-width: 1390px) {

    .services-items {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 1170px) {

    .bar-buttons {
        display: none;
    }

    .bar-actions {
        display: none;
    }

    .bar-menu {
        display: flex;
    }

}

@media (max-width: 1060px) {

    .footer-about {
        width: auto;
    }

}

@media (max-width: 1020px) {

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-articles {
        grid-template-columns: 1fr 1fr;
    }

    .services-gallery {
        flex-direction: column;
    }

}

@media (max-width: 1000px) {

    .features-layout {
        grid-template-columns: 1fr;
        row-gap: 14px;
    }

    .features-grid {
        column-gap: 32px;
        row-gap: 32px;
    }

}

@media (max-width: 920px) {

    .faq-items {
        order: 1;
    }

}

@media (max-width: 880px) {

    .services-items {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 800px) {

    .intro-sliding {
        font-size: 56px;
        line-height: 56px;
    }

    .intro-sliding-frame {
        height: 56px;
    }

    .banner-title {
        font-size: 44px;
        line-height: 44px;
    }

}

@media (max-width: 780px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .heading-alt {
        font-size: 42px;
        line-height: 42px;
    }

    .subheading-alt {
        font-size: 22px;
        line-height: 32px;
    }

    .blog-articles {
        grid-template-columns: 1fr;
        row-gap: 24px;
        column-gap: 24px;
    }

    .blog-intro {
        padding-top: 56px;
        padding-bottom: 56px;
        font-size: 26px;
        line-height: 34px;
    }

}

@media (max-width: 640px) {

    .intro-content {
        padding-left: 48px;
        padding-right: 48px;
    }

    .intro-sliding {
        font-size: 50px;
        line-height: 50px;
    }

    .intro-sliding-frame {
        height: 50px;
    }

    .features-layout {
        row-gap: 0px;
        padding: 24px;
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        column-gap: 24px;
        row-gap: 24px;
    }

    .features-grid-1 {
        order: 2;
        grid-column-start: unset;
        grid-column-end: unset;
        grid-row-start: unset;
        grid-row-end: unset;
    }

    .features-grid-2 {
        order: 3;
        grid-column-start: unset;
        grid-column-end: unset;
        grid-row-start: unset;
        grid-row-end: unset;
        height: 400px;
    }

    .features-grid-3 {
        order: 1;
        grid-column-start: unset;
        grid-column-end: unset;
        grid-row-start: unset;
        grid-row-end: unset;
        height: 440px;
    }

    .features-grid-4 {
        order: 4;
        grid-column-start: unset;
        grid-column-end: unset;
        grid-row-start: unset;
        grid-row-end: unset;
    }

    .features-graphic {
        top: 0%;
        left: 0%;
        width: 100%;
    }

    .features-graphic img {
        width: auto;
        height: 100%;
        left: 0;
        right: 0;
        margin: auto;
    }

    .footer-qr img {
        margin-left: -8px;
    }

    .footer-copy {
        padding-left: 24px;
        padding-right: 24px;
    }

}

@media (max-width: 580px) {

    .blog-hero-gradient {
        border-bottom-right-radius: 64px;
        border-bottom-left-radius: 64px;
    }

    .article-intro {
        border-bottom-right-radius: 64px;
        border-bottom-left-radius: 64px;
    }

    .works-hero {
        height: auto;
        min-height: 75%;
        border-bottom-right-radius: 64px;
        border-bottom-left-radius: 64px;
    }

    .services-hero {
        border-bottom-right-radius: 64px;
        border-bottom-left-radius: 64px;
    }

    .services-items {
        gap: 24px;
        padding-left: 24px;
        padding-right: 24px;
    }

}

@media (max-width: 490px) {

    .bar {
        top: 8px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .bar-brand {
        padding-top: 14px;
        padding-bottom: 14px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .bar-brand img {
        height: 54px;
    }

    .bar-compact .bar-brand img {
        height: 42px;
    }

    .bar-menu {
        padding-right: 8px;
    }

    .menu-layout {
        padding-top: 10%;
        padding-bottom: 10%;
        padding-left: 8%;
        padding-right: 8%;
    }

    .menu-link,
    .menu-link:link,
    .menu-link:visited {
        font-size: 44px;
        line-height: 44px;
    }

    .networks {
        display: none;
        right: 8px;
        row-gap: 3px;
        padding: 6px;
        border-radius: 14px;
    }

    .networks-btn-icon {
        width: 35px;
        height: 35px;
    }

    .contact-button {
        bottom: 16px;
        right: 16px;
    }

    .panel-frame {
        padding: 12px;
    }

    .intro-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .intro-shadow {
        bottom: 0%;
        left: -35%;
        width: 75%;
        height: 100%;
        animation: intro-shadow-anima 4s cubic-bezier(0.8, 0.2, 0.2, 0.8) alternate infinite;
    }

    .intro-sliding {
        font-size: 40px;
        line-height: 40px;
    }

    .intro-sliding-frame {
        height: 40px;
    }

    .button,
    .button:link,
    .button:visited {
        padding: 11px;
        padding-left: 17px;
        padding-right: 17px;
        margin-top: 30px;
        font-size: 17px;
    }

    .heading {
        font-size: 36px;
        line-height: 38px;
    }

    .subheading {
        padding-top: 16px;
        padding-bottom: 18px;
        font-size: 20px;
        line-height: 30px;
    }

    .text {
        font-size: 20px;
        line-height: 28px;
    }

    .services {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .services-content {
        padding-bottom: 64px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .works-header {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .works-ticker-frame {
        height: 320px;
    }

    .works-ticker {
        height: 320px;
    }

    .work-item {
        width: 340px;
        height: 320px;
    }

    .work-item-alt {
        width: 230px;
    }

    .work-item-alt-2 {
        width: 270px;
    }

    .work-item-title {
        font-size: 18px;
        line-height: 24px;
    }

    .work-item-info-title {
        font-size: 18px;
        line-height: 24px;
    }

    .parallax {
        padding-top: 84px;
        padding-bottom: 70px;
    }

    .banner-content {
        padding: 24px;
    }

    .banner {
        height: 480px;
        margin-top: 64px;
        margin-bottom: 64px;
    }

    .banner-title {
        font-size: 32px;
        line-height: 32px;
    }

    .frame {
        padding-left: 24px;
        padding-right: 24px;
    }

    .services-hero {
        margin-bottom: 48px;
    }

    .services-hero-content {
        padding-top: 152px;
        padding-bottom: 100px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .heading-alt {
        font-size: 40px;
        line-height: 40px;
    }

    .subheading-alt {
        font-size: 18px;
        line-height: 28px;
    }

    .services-machines {
        padding-top: 64px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .services-machines-title {
        padding-bottom: 48px;
        font-size: 32px;
        line-height: 34px;
    }

    .services-grid {
        column-gap: 24px;
        row-gap: 24px;
    }

    .services-elements {
        padding: 24px;
        padding-top: 0px;
        padding-bottom: 40px;
    }

    .services-title {
        padding-bottom: 14px;
        font-size: 18px;
        line-height: 24px;
    }

    .services-tags {
        padding-top: 32px;
    }

    .services-products::before {
        padding: 2px;
    }

    .services-products {
        row-gap: 8px;
        padding: 24px;
        padding-bottom: 28px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .services-product {
        font-size: 18px;
        line-height: 20px;
    }

    .services-product-divisor {
        font-size: 18px;
        line-height: 20px;
    }

    .services-material {
        font-size: 18px;
        line-height: 20px;
    }

    .services-material-divisor {
        font-size: 18px;
        line-height: 20px;
    }

    .works-intro {
        padding-left: 0px;
        padding-right: 0px;
    }

    .works-clouds {
        height: 60%;
    }

    .works-frame {
        padding-left: 24px;
        padding-right: 24px;
    }

    .works-item,
    .works-item:link,
    .works-item:visited {
        margin-bottom: 0px;
    }

    .blog-articles {
        row-gap: 18px;
        column-gap: 18px;
    }

    .blog-intro {
        padding-top: 48px;
        padding-bottom: 48px;
        font-size: 24px;
        line-height: 32px;
    }

    .blog-article-tagline {
        font-size: 16px;
        line-height: 22px;
    }

    .blog-article-title {
        font-size: 18px;
        line-height: 25px;
    }

    .article-intro-tagline {
        font-size: 16px;
        line-height: 22px;
    }

    .article-intro-title {
        font-size: 32px;
        line-height: 38px;
    }

    .article-content-summary {
        padding-top: 16px !important;
        padding-bottom: 24px !important;
        font-size: 22px;
        line-height: 30px;
    }

    .article-content h2,
    .article-content h3,
    .article-content p,
    .article-content ul,
    .article-content ol,
    .article-content-summary,
    .article-image,
    .article-content-embed {
        padding-left: 24px;
        padding-right: 24px;
    }

    .article-content ul,
    .article-content ol {
        padding-left: 64px;
        padding-right: 24px;
    }

    .article-content h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .article-content h3 {
        font-size: 17px;
        line-height: 25px;
    }

    .article-image-full {
        padding-left: 0;
        padding-right: 0;
    }

    .footer {
        margin-top: 100px;
    }

    .footer-layout {

        display: grid;
        grid-template-columns: 1fr 1fr;

        justify-content: center;
        column-gap: 48px;
        row-gap: 32px;
        padding: 22px;
        padding-bottom: 38px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .footer-legal-layout {
        padding-top: 24px;
        padding-bottom: 180px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .footer-layout> :nth-child(1) {
        grid-column: 1 / -1;
    }

    .footer-layout> :nth-child(4) {
        grid-column: 1 / -1;
    }

    .footer-qr img {
        margin-left: 0px;
        margin: 0 auto;
    }

    .faq-question {
        column-gap: 10px;
        padding-top: 10px;
        padding-bottom: 12px;
        padding-left: 16px;
        padding-right: 16px;
        font-size: 16px;
        line-height: 24px;
    }

}