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

html {
    overscroll-behavior: none;
    scroll-behavior: smooth;
    scroll-padding-top: 89px
}

body {
    background-color: #111;
    padding: 0;
    scroll-behavior: smooth;
    font-family: "Satoshi-Variable", "Satoshi-Regular", sans-serif;
    -webkit-font-smoothing: antialiased
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%
}

.container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px
}

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    overflow: hidden
}

@media(min-width: 768px) {
    .hero-section {
        height: 100svh
    }
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/hero.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation: subtle-zoom 15s ease-in-out infinite;
    z-index: 0
}

.hero-section:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 1
}

.hero-section .claim {
    position: relative;
    z-index: 2;
    padding-top: 153px;
    padding-bottom: 64px
}

.hero-section h1 {
    width: fit-content;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text;
    margin-bottom: 16px
}

@media(min-width: 768px) {
    .hero-section h1 {
        font-size: 80px
    }
}

@media(min-width: 1024px) {
    .hero-section h1 {
        font-size: 110px
    }
}

.hero-section .desc-wrapper {
    position: relative;
    max-width: 100%;
    width: 910px
}

.hero-section p {
    width: 580px;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.5;
    color: hsla(0, 0%, 100%, .6)
}

@media(min-width: 768px) {
    .hero-section p {
        font-size: 18px
    }
}

.hero-section .arrow-icon {
    margin: 0 auto;
    width: 76px;
    height: 76px;
    margin-top: 42px
}

@media(min-width: 768px) {
    .hero-section .arrow-icon {
        position: absolute;
        top: 74px;
        right: 0;
        width: 140px;
        height: 140px
    }
}

.about-section {
    background: #000;
    padding: 42px 0
}

@media(min-width: 768px) {
    .about-section {
        padding: 84px 0
    }
}

.about-section .flex {
    display: flex;
    flex-direction: column
}

@media(min-width: 768px) {
    .about-section .flex {
        flex-direction: row;
        justify-content: space-between
    }
}

.about-section .w-3-12 {
    width: 100%;
    max-width: 100%
}

@media(min-width: 768px) {
    .about-section .w-3-12 {
        width: 25%
    }
}

.about-section .w-3-12 .desc-wrapper {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #a0a0a0;
    margin-top: 32px
}

@media(min-width: 768px) {
    .about-section .w-3-12 .desc-wrapper {
        margin-top: 64px
    }
}

@media(min-width: 1024px) {
    .about-section .w-3-12 .desc-wrapper {
        margin-top: 170px
    }
}

.about-section .w-3-12 .button {
    margin-top: 32px;
    background-color: #ffcb1f;
    display: block;
    width: fit-content;
    padding: 18px 46px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 800;
    color: #000;
    text-decoration: none;
    transition: 180ms ease-in-out
}

.about-section .w-3-12 .button:hover {
    background-color: #fff
}

@media(min-width: 768px) {
    .about-section .w-3-12 .button {
        margin-top: 48px
    }
}

.about-section .w-7-12 {
    width: 100%;
    max-width: 100%;
    margin-top: 24px
}

@media(min-width: 768px) {
    .about-section .w-7-12 {
        width: 58.3333333333%;
        margin-top: 0
    }
}

.about-section .w-7-12 h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text;
    text-transform: uppercase;
    margin-bottom: 18px
}

@media(min-width: 768px) {
    .about-section .w-7-12 h2 {
        font-size: 48px
    }
}

@media(min-width: 1024px) {
    .about-section .w-7-12 h2 {
        font-size: 64px
    }
}

.about-section .w-7-12 .desc-wrapper {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #a0a0a0
}

@media(min-width: 768px) {
    .about-section .w-7-12 .desc-wrapper {
        font-size: 18px
    }
}

.about-section .w-7-12 .counter-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 32px
}

@media(min-width: 1024px) {
    .about-section .w-7-12 .counter-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        margin-top: 48px
    }
}

.about-section .w-7-12 .counter-wrapper .counter {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.about-section .w-7-12 .counter-wrapper .counter .number {
    font-size: 56px;
    font-weight: 800;
    color: #fff
}

.about-section .w-7-12 .counter-wrapper .counter .number .color {
    color: #ffcb1f
}

.about-section .w-7-12 .counter-wrapper .counter .label {
    font-size: 16px;
    font-weight: 500;
    color: #a0a0a0
}

@media(min-width: 768px) {
    .about-section .w-7-12 .counter-wrapper .counter .label {
        font-size: 18px
    }
}

.projects-section {
    position: relative;
    background: #424242;
    padding-top: 42px;
    padding-bottom: 24px
}

@media(min-width: 768px) {
    .projects-section {
        padding-top: 72px;
        padding-bottom: 36px
    }
}

.gallery-section {
    position: relative;
    background: #353535;
    padding: 42px 0
}

@media(min-width: 768px) {
    .gallery-section {
        padding: 84px 0
    }
}

.gallery-section .flex {
    display: flex;
    flex-direction: column
}

@media(min-width: 768px) {
    .gallery-section .flex {
        flex-direction: row
    }
}

.gallery-section .w-half {
    width: 100%
}

@media(min-width: 768px) {
    .gallery-section .w-half {
        width: 50%
    }
}

.gallery-section .w-half .title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text;
    text-transform: uppercase;
    margin-bottom: 18px
}

@media(min-width: 768px) {
    .gallery-section .w-half .title {
        font-size: 48px
    }
}

@media(min-width: 1024px) {
    .gallery-section .w-half .title {
        font-size: 64px
    }
}

.gallery-section .w-half .desc-wrapper {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #a0a0a0;
    margin-top: 24px
}

@media(min-width: 768px) {
    .gallery-section .w-half .desc-wrapper {
        margin-top: 36px
    }
}

.gallery-section .w-half .button {
    margin-top: 32px;
    background-color: #ffcb1f;
    display: block;
    width: fit-content;
    padding: 18px 46px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 800;
    color: #000;
    text-decoration: none;
    transition: 180ms ease-in-out
}

.gallery-section .w-half .button:hover {
    background-color: #fff
}

@media(min-width: 768px) {
    .gallery-section .w-half .button {
        margin-top: 64px
    }
}

.gallery-section .gallery-slider-wrapper {
    margin-top: 32px;
    position: relative
}

@media(min-width: 768px) {
    .gallery-section .gallery-slider-wrapper {
        margin-top: 0;
        padding-left: 40px
    }
}

.gallery-section .gallery-slider-wrapper .gallery-swiper {
    overflow: hidden
}

.gallery-section .gallery-slider-wrapper .gallery-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center
}

.gallery-section .gallery-slider-wrapper .gallery-slide-content {
    position: relative;
    width: 100%;
    padding-bottom: 32px;
    transition: all .3s ease
}

@media(min-width: 768px) {
    .gallery-section .gallery-slider-wrapper .gallery-slide-content {
        padding-bottom: 70px
    }
}

.gallery-section .gallery-slider-wrapper .gallery-slide-content img {
    aspect-ratio: 9/10;
    width: 100%;
    height: auto;
    object-position: center;
    object-fit: cover;
    border-radius: 1000px
}

.gallery-section .gallery-slider-wrapper .gallery-slide-content .arrow-link {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.gallery-section .gallery-slider-wrapper .gallery-slide-content .arrow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 64px;
    height: 64px;
    cursor: pointer;
    transition: all .6s ease;
    z-index: 10;
    transform: translateY(0);
    opacity: 1
}

@media(min-width: 768px) {
    .gallery-section .gallery-slider-wrapper .gallery-slide-content .arrow {
        width: 140px;
        height: 140px
    }
}

.projects-section .inner,
.gallery-section .inner {
    position: relative;
    z-index: 2
}

.projects-section .lines,
.gallery-section .lines {
    pointer-events: none;
    width: 1248px;
    padding: 0 16px;
    margin: auto;
    max-width: 100%;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 1
}

.projects-section .lines .line,
.gallery-section .lines .line {
    width: 1px;
    height: calc(100% - 42px);
    background-color: hsla(0, 0%, 100%, .2)
}

.projects-section .lines .line.line-md,
.gallery-section .lines .line.line-md {
    display: none
}

@media(min-width: 768px) {

    .projects-section .lines .line.line-md,
    .gallery-section .lines .line.line-md {
        display: block
    }
}

.projects-section .lines .line.line-xl,
.gallery-section .lines .line.line-xl {
    display: none
}

@media(min-width: 1024px) {

    .projects-section .lines .line.line-xl,
    .gallery-section .lines .line.line-xl {
        display: block
    }
}

.projects-slider-wrapper {
    position: relative;
    z-index: 2;
    margin-top: 32px
}

@media(min-width: 768px) {
    .projects-slider-wrapper {
        margin-top: 72px
    }
}

.projects-swiper {
    overflow: hidden
}

.project-image {
    width: 100%;
    position: relative
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1279 407' preserveAspectRatio='none'><path d='M54.4405 57.4907C61.179 24.0511 90.5602 0 124.672 0H1153.67C1187.78 0 1217.16 24.0511 1223.9 57.4908L1276.91 320.524C1285.85 364.885 1251.93 406.319 1206.67 406.319H71.6679C26.4153 406.319 -7.50283 364.885 1.43641 320.524L54.4405 57.4907Z' fill='white'/></svg>") no-repeat center/100% 100%;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1279 407' preserveAspectRatio='none'><path d='M54.4405 57.4907C61.179 24.0511 90.5602 0 124.672 0H1153.67C1187.78 0 1217.16 24.0511 1223.9 57.4908L1276.91 320.524C1285.85 364.885 1251.93 406.319 1206.67 406.319H71.6679C26.4153 406.319 -7.50283 364.885 1.43641 320.524L54.4405 57.4907Z' fill='white'/></svg>") no-repeat center/100% 100%
}

@supports not (mask: url("data:image/svg+xml")) {
    .project-image img {
        clip-path: polygon(9.7% 0%, 90.3% 0%, 95.5% 14%, 99.9% 78.8%, 94.3% 100%, 5.6% 100%, 0.1% 78.8%, 4.5% 14%)
    }
}

.project-image img {
    aspect-ratio: 13/4
}

.swiper-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px
}

@media(min-width: 768px) {
    .swiper-navigation {
        margin-top: 40px;
        gap: 24px
    }
}

.projects-button-next,
.projects-button-prev {
    margin-top: 0 !important;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0);
    border: 1px solid hsla(0, 0%, 100%, .5);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    z-index: 10
}

@media(min-width: 768px) {

    .projects-button-next,
    .projects-button-prev {
        width: 64px;
        height: 64px
    }
}

.projects-button-next:after,
.projects-button-prev:after {
    display: none !important
}

.projects-button-next:hover,
.projects-button-prev:hover {
    border-color: #fff;
    border-width: 2px
}

.projects-button-next.swiper-button-disabled,
.projects-button-prev.swiper-button-disabled {
    opacity: .3;
    cursor: not-allowed;
    pointer-events: none
}

.projects-button-next svg,
.projects-button-prev svg {
    width: 18px;
    height: auto
}

.project-card {
    display: none
}

.contact-section {
    background: #000;
    padding: 42px 0
}

@media(min-width: 768px) {
    .contact-section {
        padding: 84px 0
    }
}

@media(min-width: 1024px) {
    .contact-section {
        padding: 100px 0
    }
}

.contact-section h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text
}

@media(min-width: 768px) {
    .contact-section h2 {
        font-size: 80px
    }
}

@media(min-width: 1024px) {
    .contact-section h2 {
        font-size: 120px
    }
}

.contact-section form {
    max-width: 100%;
    width: 515px;
    margin: auto;
    margin-top: 42px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

@media(min-width: 768px) {
    .contact-section form {
        gap: 42px;
        margin-top: 84px
    }
}

.contact-section form .row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px
}

@media(min-width: 768px) {
    .contact-section form .row {
        flex-direction: row;
        gap: 24px
    }
}

.contact-section form .row .input-wrapper {
    flex: 1
}

.contact-section form .row .input-wrapper.error input,
.contact-section form .row .input-wrapper.error textarea {
    border-bottom-color: red
}

.contact-section form .row .input-wrapper.error .error-message {
    display: block;
    font-size: 12px;
    color: red;
    margin-top: 4px
}

.contact-section form .row .input-wrapper:not(.contact-section form .row .input-wrapper.error) .error-message {
    display: none
}

.contact-section form input,
.contact-section form textarea {
    font-family: "Satoshi-Variable", "Satoshi-Regular", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 0;
    border-bottom: 1px solid #b8b8bf;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    outline: none;
    border-radius: 0
}

.contact-section form input::placeholder,
.contact-section form textarea::placeholder {
    color: #b8b8bf
}

.contact-section form input:focus,
.contact-section form textarea:focus {
    border-bottom-color: #ffcb1f
}

.contact-section form textarea {
    resize: vertical;
    min-height: 120px
}

.contact-section form button.submit {
    width: fit-content;
    margin: auto;
    padding: 18px 36px;
    min-width: 161px;
    max-width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    border-radius: 100px;
    color: #111;
    background-color: #ffcb1f;
    border: none;
    cursor: pointer;
    transition: background-color .3s ease
}

.contact-section form button.submit:hover {
    background-color: #e6b817
}

.footer {
    background-color: #424242
}

.footer .social-media-wrapper {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: center;
    padding: 42px 0
}

.footer .social-media-wrapper a {
    display: block;
    width: fit-content
}

.footer .social-media-wrapper a svg {
    max-width: 20px;
    height: auto
}

.footer .social-media-wrapper a svg path {
    transition: all .3s ease
}

.footer .social-media-wrapper a:hover svg path {
    fill: #ffcb1f
}

.footer .line {
    width: 100%;
    height: 1px;
    background-color: hsla(0, 0%, 100%, .5)
}

.footer nav.menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    padding: 42px 0
}

@media(min-width: 768px) {
    .footer nav.menu ul {
        flex-direction: row
    }
}

.footer nav.menu ul li a {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: all .3s ease
}

.footer nav.menu ul li a:hover {
    color: #ffcb1f
}

.footer .copy {
    font-size: 14px;
    font-weight: 400;
    color: hsla(0, 0%, 100%, .5);
    text-align: center;
    padding: 24px 0
}

.footer .copy a {
    color: inherit;
    transition: 180ms ease-in-out;
    text-decoration: none
}

.footer .copy a:hover {
    color: #ffcb1f
}

@keyframes subtle-zoom {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.03)
    }
}

.header-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px
}

@media(min-width: 768px) {
    .header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 64px;
        margin-bottom: 64px
    }
}

@media(min-width: 1024px) {
    .header-inner {
        padding-right: 64px
    }
}

.heading-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px
}

.heading-wrapper :is(h1, h2, h3, h4, h5, h6) {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: #fff
}

@media(min-width: 768px) {
    .heading-wrapper :is(h1, h2, h3, h4, h5, h6) {
        font-size: 32px
    }
}

@media(min-width: 1024px) {
    .heading-wrapper :is(h1, h2, h3, h4, h5, h6) {
        font-size: 40px
    }
}

.heading-wrapper .heading-icon {
    width: 64px;
    height: 64px
}

@media(min-width: 768px) {
    .heading-wrapper .heading-icon {
        width: 112px;
        height: 112px
    }
}

.header-desc {
    width: 430px;
    max-width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: #fff
}

@media(min-width: 768px) {
    .header-desc {
        font-size: 18px
    }
}

.page-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 900;
}

.page-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    z-index: -1
}

@media(min-width: 768px) {
    .page-header .scroll {
        background: rgba(0, 0, 0, .32);
        backdrop-filter: blur(10px)
    }
}

.page-header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px
}

.page-header .side-wrapper {
    width: 175px;
    position: relative;
    z-index: 1003
}

.page-header .side-wrapper.right {
    display: none
}

@media(min-width: 1024px) {
    .page-header .side-wrapper.right {
        display: block
    }
}

.page-header .side-wrapper .logo {
    display: block;
    width: fit-content;
    max-width: 175px;
    height: auto
}

.page-header .nav {
    display: none;
    background-color: #e6e8ee;
    border-radius: 100px
}

@media(min-width: 1024px) {
    .page-header .nav {
        display: block
    }
}

.page-header .nav.mobile-open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(17, 17, 17, .95);
    backdrop-filter: blur(10px);
    border-radius: 0;
    z-index: 999;
    padding: 89px 16px 16px
}

.page-header .nav.mobile-open ul {
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px
}

.page-header .nav.mobile-open ul li a {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 0;
    padding: 16px 24px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.page-header .nav.mobile-open ul li a:hover {
    color: #ffcb1f;
    background-color: rgba(0, 0, 0, 0)
}

.page-header .nav ul {
    padding: 8px;
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 16px
}

.page-header .nav ul li a {
    display: block;
    padding: 11px 21px;
    color: #050505;
    font-size: 16px;
    line-height: 21px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 100px;
    transition: background-color .3s ease, color .3s ease
}

.page-header .nav ul li a:hover {
    background-color: #0c0c0c;
    color: #fff
}

@media(min-width: 1024px) {
    .page-header .nav ul li.only-mobile {
        display: none
    }
}

.page-header .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 42px;
    background-color: #fff;
    border: none;
    cursor: pointer;
    transition: 180ms ease-in-out;
    position: relative;
    z-index: 1001
}

.page-header .menu-button:hover {
    background: #0c0c0c;
    color: #ffcb1f
}

.page-header .menu-button .svg-open,
.page-header .menu-button .svg-close {
    transition: 180ms ease-in-out;
    position: absolute;
    inset: 0;
    margin: auto
}

.page-header .menu-button .svg-close {
    transform: scale(0);
    opacity: 0
}

.page-header .menu-button[aria-expanded=true] {
    background: #ffcb1f;
    color: #111
}

.page-header .menu-button[aria-expanded=true] .svg-open {
    transform: scale(0);
    opacity: 0
}

.page-header .menu-button[aria-expanded=true] .svg-close {
    transform: scale(1);
    opacity: 1
}

.page-header .menu-button svg {
    transition: transform .3s ease
}

@media(min-width: 1024px) {
    .page-header .menu-button {
        display: none
    }
}

.page-header .cta-button {
    display: block;
    width: fit-content;
    padding: 8px;
    border-radius: 100px;
    background-color: #fff;
    margin-left: auto
}

.page-header .cta-button a {
    display: block;
    padding: 11px 21px;
    background-color: #0c0c0c;
    color: #fff;
    font-size: 16px;
    line-height: 21px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 100px;
    transition: background-color .3s ease, color .3s ease
}

.page-header .cta-button a:hover {
    background-color: #ffcb1f;
    color: #0c0c0c
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.page-header-simple {
    position: relative;
    overflow: hidden;
    padding-top: 121px;
    padding-bottom: 32px;
    text-align: center
}

@media(min-width: 768px) {
    .page-header-simple {
        padding-top: 153px;
        padding-bottom: 64px
    }
}

.page-header-simple::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/hero.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation: subtle-zoom 15s ease-in-out infinite;
    z-index: 0
}

.page-header-simple:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 1
}

.page-header-simple :is(h1, h2, h3, h4, h5, h6) {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text;
    text-transform: uppercase
}

@media(min-width: 768px) {
    .page-header-simple :is(h1, h2, h3, h4, h5, h6) {
        font-size: 48px
    }
}

@media(min-width: 1024px) {
    .page-header-simple :is(h1, h2, h3, h4, h5, h6) {
        font-size: 64px
    }
}

.desc {
    max-width: 960px;
    margin: 0 auto;
    padding: 32px 0
}

@media(min-width: 768px) {
    .desc {
        padding: 48px 0
    }
}

.desc p {
    margin-bottom: 16px
}

.desc :is(h1, h2, h3, h4, h5, h6) {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff
}

.desc :is(h1, h2, h3, h4, h5, h6):not(:first-child) {
    margin-top: 32px
}

@media(min-width: 768px) {
    .desc :is(h1, h2, h3, h4, h5, h6):not(:first-child) {
        margin-top: 48px
    }
}

.desc p,
.desc li,
.desc a {
    font-size: 16px;
    line-height: 1.5;
    color: #a0a0a0
}

@media(min-width: 768px) {

    .desc p,
    .desc li,
    .desc a {
        font-size: 18px
    }
}

.desc ul,
.desc ol {
    padding-left: 24px;
    margin-bottom: 16px;
    list-style-position: inside
}

.desc ul li,
.desc ol li {
    margin-bottom: 8px
}

.desc :is(a) {
    transition: 180ms ease-in-out
}

.desc :is(a):hover {
    color: #ffcb1f
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 48px
}

@media(min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 64px
    }
}

@media(min-width: 1280px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 80px
    }
}

.gallery-item {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: transform .3s ease-in-out
}

.gallery-item:hover {
    transform: scale(1.02)
}

.gallery-item:hover .gallery-overlay {
    opacity: 1
}

.gallery-item:hover img {
    transform: scale(1.1)
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease-in-out
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease-in-out
}

.gallery-overlay svg {
    color: #fff;
    width: 32px;
    height: 32px
}

@media(min-width: 768px) {
    .gallery-overlay svg {
        width: 40px;
        height: 40px
    }
}

.lg-custom .lg-backdrop {
    background-color: rgba(0, 0, 0, .95)
}

.lg-custom .lg-toolbar {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent)
}

.lg-custom .lg-counter,
.lg-custom .lg-close,
.lg-custom .lg-zoom-in,
.lg-custom .lg-zoom-out,
.lg-custom .lg-download {
    color: #fff
}

.lg-custom .lg-thumb-outer {
    background-color: rgba(0, 0, 0, .9)
}

.lg-custom .lg-thumb-item {
    border-color: #ffcb1f
}

.lg-custom .lg-thumb-item.active {
    border-color: #ffcb1f
}