* {
    margin: 0 auto;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    overflow-x: hidden;
}

.lexend-zetta-main {
    font-family: "Lexend Zetta", sans-serif;
    font-style: normal;
}

body {
    background-color: rgb(0, 0, 0);
    transition: 0.5s;
    position: relative;
}

.header {
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    z-index: 8;
    margin: 0 auto;
    width: 100vw;
    padding: 0;
    background-color: #000;
    border-bottom: solid 0.125rem white;
}

.header-wrap {
    position: relative;
    margin: 0 auto;
    width: 100vw;
}

.header-title-box {
    display: flex;
    margin: 0.5vw 0;
    margin-left: 2rem;
    justify-content: left;
    align-items: end;
}

.header-title-box h1 {
    color: white;
    font-weight: 200;
    font-size: clamp(0.5rem, 2vw, 2rem);
}

.header-title-box h2 {
    color: goldenrod;
    font-weight: 200;
    margin-left: 1vw;
    font-size: clamp(0.75rem, 1vw, 1rem);
}

.header-links-box {
    display: flex;
    gap: 0.5vw;
    width: 6vw;
    margin: 0;
    margin-right: 1vw;
    justify-content: right;
    align-items: center;
}

.reg-contacts {
    display: flex;
}

.menu-contacts {
    display: none;
}

.NavSocialButtons {
    background-color: rgba(164, 21, 21, 0);
    border: none;
    color: white;
    transition: 200ms;
    align-items: center;
    width: 100%;
}

.NavSocialButtons img {
    width: 100%;
}

.NavSocialButtons:hover {
    cursor: pointer;
    color: #000;
    scale: 0.88;
}

.hamburger {
    display: none;
    justify-content: right;
    margin-right: 1rem;
    width: 25px;
    height: 30px;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: 2px;
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 6px;
}

.hamburger span:nth-child(2) {
    top: 13px;
}

.hamburger span:nth-child(3) {
    top: 20px;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 13px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 13px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu {
    display: none;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    justify-content: space-between;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(20px);
    padding: 0;
    transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.close-btn::before,
.close-btn::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #333;
    border-radius: 1px;
}

.close-btn::before {
    transform: rotate(45deg);
}

.close-btn::after {
    transform: rotate(-45deg);
}

.menu-items {
    margin-top: 40px;
}

.menu.active {
    right: 0;
    color: gold;
}

.menu-item {
    display: block;
    padding: 15px 0;
    margin: 0 auto;
    color: black;
    text-decoration: none;
    font-size: clamp(1.25rem, 6vw, 30rem);
    font-weight: 400;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.name-banner {
    position: relative;
    place-content: end;
    place-items: end;
    width: 80%;
    margin: 0 auto;
    bottom: 0;
}

.full-image-wrap {
    z-index: 11;
    background-color: rgba(0, 0, 0, 0.75);
    border: none;
    display: none;
    margin: 0 auto;
    width: 100vw;
    height: 100vh;
    padding: 0;
    position: fixed;
    align-items: center;
    transition: 0.5s;
    backdrop-filter: blur(5px);
}

.gallery-arrow-full {
    z-index: 12;
    height: 50vh;
    margin: 0 auto;
    display: flex;
    padding: 0;
    position: relative;
    align-items: center;
}

.left-button {
    font-size: clamp(2rem, 4vw, 6rem);
    font-weight: 100;
    margin-bottom: 0.8rem;
    background-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    color: white;
    padding: 0;
    border: none;
    transition: 0.5s;
}

.left-button:hover {
    cursor: pointer;
    scale: 0.9;
}

.left-button:active {
    scale: 0.6;
}

.right-button {
    font-size: clamp(2rem, 4vw, 6rem);
    font-weight: 100;
    margin-bottom: 0.8rem;
    background-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    color: white;
    padding: 0;
    border: none;
    transition: 0.5s;
}

.right-button:hover {
    cursor: pointer;
    scale: 0.9;
}

.right-button:active {
    scale: 0.6;
}

.full-image-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.full-image-container {
    display: flex;
    margin: 0 auto;
    padding: 0;
    align-items: center;
    outline: none;
    position: relative;
}

.full-image-box img {
    display: none;
    background-color: #000;
    max-height: 35vw;
    transition: 0.5s;
}

.fullVideoHorz {
    display: none;
    border: none;
    width: 65vw;
    aspect-ratio: 16/9;
    transition: 0.5s;
}

.fullVideoVert {
    display: none;
    border: none;
    width: 20vw;
    aspect-ratio: 9/16;
    transition: 0.5s;
}

.close-box {
    width: 100%;
    position: relative;
    display: flex;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 2vw;
}

.close {
    margin: 0 auto;
    font-size: clamp(1rem, 2vw, 4rem);
    color: white;
    cursor: pointer;
    transition: 0.5s;
}

.full-image-box .close:hover {
    scale: 0.9;
}

.full-image-box .close:active {
    scale: 0.8;
}

.full-image-second {
    display: flex;
    margin: 0 auto;
    align-items: center;
}

/* CONTENT BOX */
.content-box {
    z-index: 5;
    color: ivory;
    background-color: rgb(0, 0, 0);
    width: 100vw;
    margin: 0 auto;
    padding: 0;
    filter: blur(0px);
}

.section-couple {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    text-align: center;
    flex-wrap: wrap;
    position: relative;
    align-items: flex-start;
    padding: 0;
}

.section-couple .section-background {
    align-items: center;
    max-width: 40%;
}

.section-couple .section-box {
    flex-direction: column;
    margin-top: 1vw;
}

.section-couple .scroll-box {
    margin-top: 0;
}

.section-couple .section-content iframe {
    width: 100%;
    aspect-ratio: 16/9;
    margin: 0 auto;
    border: none;
}

.section-couple .image-box {
    margin: 0 auto;
    margin-bottom: 1vw;
}

.section-background {
    max-width: 95%;
    display: flex;
    flex-direction: column;
    margin: 1vw auto;
    justify-content: center;
    padding: 0;
    background-color: #000000;
    align-items: flex-start;
    position: relative;
}

.category-box {
    display: flex;
    margin: 0 auto;
    /* padding: 1.5rem; */
    align-items: start;
    flex-direction: column;
    position: relative;
    text-align: center;
}

.category-box h1 {
    font-size: clamp(1rem, 1vw, 2rem);
    /* text-decoration: underline; */
    color: white;
    margin: 0 auto;
    margin-top: 1rem;
    font-weight: 300;
}

.category-box h2 {
    font-size: clamp(0.5rem, 1vw, 1rem);
    color: white;
    margin: 0 auto;
    margin-top: 0.5rem;
    font-weight: 300;
}

.category-box p {
    font-size: clamp(0.1rem, 1vw, 2rem);
    /* white-space: nowrap; */
}

.category-line {
    width: 98%;
    display: flex;
    margin-top: 1rem;
    margin-bottom: 0;
    border: 1px solid white;
}

.section-content hr {
    opacity: 75%;
}

.buffer-box {
    display: flex;
    position: relative;
    flex-direction: column;
    text-align: center;
    width: 25%;
    height: 100%;
    margin: auto;
    padding: 0;
}

.buffer-box h1 {
    font-size: clamp(1rem, 2vw, 5rem);
    font-weight: 200;
    color: white;
    text-align: center;
    margin: auto;
}

.vertical-line {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    width: 1px;
    color: white;
    background-color: white;
    height: 100%;
}

.vertical-line p {
    opacity: 0;
}

.category-image {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    position: relative;
}

.category-image img {
    max-width: 10rem;
    /* outline: solid 1rem rgb(39, 39, 39); */
}

.section-box {
    width: 90%;
    display: flex;
    margin: 0 auto;
    margin-top: 1vw;
    padding: 1.5rem;
    padding-top: 0;
    align-items: center;
    text-align: center;
    position: relative;
}

.section-box p {
    font-size: clamp(0.5rem, 1vw, 1.25rem);
    font-weight: 200;
    margin: 1vw;
    color: white;
    line-height: 2vw;
}

.scroll-box {
    background-color: rgb(10, 10, 10);
    text-align: left;
    margin: 1vw;
    width: 95%;
    padding: 0;
    max-height: 20vw;
    overflow-y: auto;
}

.column {
    position: relative;
    flex-direction: column;
}

.section-title {
    display: none;
}

.photography-section {
    z-index: 6;
    display: none;
    color: ivory;
    background-color: rgb(0, 0, 0);
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: left;
    opacity: 100%;
}

.film-section {
    z-index: 6;
    display: none;
    color: ivory;
    background-color: rgb(0, 0, 0);
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    outline-width: 0.125rem;
    text-align: left;
    opacity: 100%;
}

.digital-section {
    z-index: 6;
    display: none;
    color: ivory;
    background-color: rgb(0, 0, 0);
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    outline-width: 0.125rem;
    text-align: left;
    opacity: 100%;
}

.about-section {
    z-index: 6;
    display: block;
    color: ivory;
    background-color: rgb(0, 0, 0);
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    outline-width: 0.125rem;
    text-align: left;
    opacity: 100%;
}

.contacts-section {
    z-index: 6;
    display: none;
    color: ivory;
    background-color: rgb(0, 0, 0);
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    outline-width: 0.125rem;
    text-align: left;
    opacity: 100%;
}

.section-bar {
    display: flex;
    margin: 0 auto;
    padding: 0;
    align-items: flex-start;
    border-top: solid 0.125rem white;
    border-bottom: solid 0.125rem white;
    position: relative;
    text-align: center;
    background-color: black;
    justify-content: center;
}

.section-button {
    background: none;
    border: none;
    margin: 0.5vw auto;
    transition: all 0.3s ease;
    font: inherit;
    color: white;
    font-size: clamp(0.5rem, 1vw, 1.25rem);
    font-weight: 200;
    text-align: center;
    justify-content: center;
}

.section-button:hover {
    cursor: pointer;
    scale: 0.9;
}

.section-button.active {
    color: goldenrod;
    font-weight: 500;
}

.header-image-box {
    position: relative;
    z-index: 8;
    display: flex;
    width: 100vw;
    margin: 0 auto;
    height: 30vw;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.header-image-cover {
    display: flex;
    align-items: center;
    transition: all 1s;
    overflow: hidden;
    margin: 0 auto;
}

.header-image-cover::-webkit-scrollbar {
    display: none;
}

.header-image-cover img {
    filter: grayscale(1);
    transition: all 1s;
    margin: 0 auto;
    width: 100%;
    height: auto;
}

.header-image {
    transition: all 1s;
    display: block;
}

.header-arrow {
    display: none;
    z-index: 10;
    background-color: rgb(0, 0, 0);
    display: flex;
    padding: 0;
    align-items: center;
    position: relative;
}

.arrow {
    display: none;
    position: relative;
    font-size: clamp(1rem, 2vw, 4rem);
    font-weight: 100;
    background-color: rgba(0, 0, 0, 0);
    color: white;
    padding: 0;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    margin-top: 15%;
    border: none;
    transition: 0.5s;
}

.arrow:hover {
    cursor: pointer;
    scale: 0.9;
}

.section-content {
    position: relative;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
}

.section-content h1 {
    font-size: clamp(0.5rem, 1vw, 2rem);
    color: white;
    text-align: center;
    margin: 0 auto;
    margin-top: 1rem;
    font-weight: 300;
    align-items: start;
}

.section-content h2 {
    font-size: clamp(1rem, 1vw, 3rem);
}

.section-content p {
    font-size: clamp(0.5rem, 1vw, 1.25rem);
    margin: 0 auto;
    text-align: center;
    line-height: 2.5rem;
    font-weight: 200;
}

.image-box {
    max-width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    place-content: center;
    place-items: center;
    flex-wrap: wrap;
}

.image-box img {
    width: auto;
    max-height: clamp(10rem, 12vw, 30rem);
    margin: clamp(1px, 0.5vw, 2px);
    padding: 0;
    transition: all 0.25s;
}

.digital-box img {
    width: auto;
    max-height: clamp(10rem, 10vw, 15rem);
}

.digital-box iframe {
    margin: clamp(1px, 0.5vw, 2px);
    width: auto;
    max-height: clamp(10rem, 10vw, 15rem);
    /* max-width: clamp(5rem, 10vw, 8rem); */
    /* aspect-ratio: 9/16; */
    transition: all 0.25s;
}

.digital-box iframe:hover {
    cursor: pointer;
    transform: scale(0.98);
}

.image-box img:hover {
    cursor: pointer;
    transform: scale(0.98);
}

.video-horz {
    margin: 0;
    padding: 0;
    width: 100%;
    transition: all 0.25s;
    z-index: 6;
}

.video-horz:hover {
    cursor: pointer;
    transform: scale(0.98);
}

.video-vert {
    margin: 0;
    padding: 0;
    width: 75%;
    transition: all 0.25s;
    z-index: 6;
}

.video-vert:hover {
    cursor: pointer;
    transform: scale(0.98);
}

.video-cover {
    margin: 0;
    position: relative;
    place-content: center;
    place-items: center;
    transition: all 0.25s;
}

.video-cover p {
    z-index: 12;
    width: 100%;
    height: 100%;
    place-content: center;
    place-items: center;
    position: absolute;
    font-size: clamp(2rem, 4vw, 10rem);
    font-weight: 600;
    transition: all 0.25s;
    pointer-events: none;
}

.video-cover:hover {
    cursor: pointer;
    transform: scale(0.98);
}

.video-cover p:hover {
    color: rgb(119, 119, 119);
}

.digital-box .video-cover {
    margin: clamp(1px, 0.5vw, 2px);
}

.digital-box .video-cover p {
    font-size: clamp(0.5rem, 2vw, 6rem);
}

.contacts-section .section-box {
    align-items: start;
}

.contact-box {
    width: 100%;
    margin: 1vw auto;
    padding: 0;
    place-content: center;
    place-items: center;
    align-items: start;
}

.contact-box h1 {
    text-align: left;
    margin: 0;
    margin-top: 4vw;
    font-size: clamp(0.5rem, 1vw, 1rem);
    font-weight: 400;
}

.contact-box h1:first-of-type {
    margin-top: 0;
}

.contact-box .socials-container:first-of-type {
    margin-top: 0;
}

.contact-box-inner {
    width: 100%;
    position: relative;
    display: flex;
    margin: 2vw;
    height: auto;
    place-content: center;
    place-items: center;
    text-align: center;
    flex-direction: column;
    background-color: rgb(10, 10, 10);
    background-color: rgb(53, 53, 53);
    padding: 1.5vw;
}

.contact-form {
    width: 100%;
    display: flex;
    margin: 0;
    flex-direction: column;
    text-align: left;
    place-items: start;
    place-content: start;
    font-size: clamp(0.5rem, 1vw, 1rem);
    font-weight: 200;
    font: inherit;
    padding: 0;
    transition: all 0.25s;
}

.contact-input {
    width: 100%;
    text-align: left;
    height: 2vw;
    margin: 0 auto;
    border: none;
    border-bottom: 1px solid white;
    outline: none;
    background-color: rgba(0, 0, 0, 0);
}

.contact-form textarea {
    min-width: 100%;
    resize: vertical;
    min-height: 2vw;
    margin: 0 auto;
    font-size: clamp(0.5rem, 1vw, 2rem);
    font-weight: 300;
    font: inherit;
    color: white;
}

.contact-input::placeholder {
    font-size: clamp(0.5rem, 1vw, 2rem);
    font-weight: 300;
    color: white;
}

.contact-form input {
    font-size: clamp(0.5rem, 1vw, 2rem);
    font-weight: 300;
    font: inherit;
    color: white;
}

.contact-form button {
    text-align: center;
    max-width: 50%;
    margin: 2vw auto;
    margin-bottom: 0;
    padding: 1vw;
    border: none;
    background-color: white;
    border-radius: 5px;
    font-size: clamp(1rem, 1vw, 3rem);
    font: inherit;
    font-weight: 400;
    transition: all 0.25s;
}

.contact-form button:hover {
    cursor: pointer;
    background-color: rgb(193, 193, 193);
}

.socials-container {
    display: flex;
    border: 1px solid white;
    width: 100%;
    position: relative;
    margin: 0 auto;
    margin-top: 2vw;
    text-align: center;
    align-items: center;
    transition: all 0.25s;
}

.socials-container p {
    margin: 0;
    margin-left: 1vw;
    text-align: right;
    align-items: center;
    white-space: nowrap;
    font-size: clamp(0.5rem, 1vw, 1rem);
    font-weight: 400;
    padding: 0;
}

.socials-container:hover {
    cursor: pointer;
    color: #000;
    scale: 0.98;
}

.ContactSocialButtons {
    margin: 0;
    margin-left: 10vw;
    background-color: rgba(164, 21, 21, 0);
    align-items: center;
    text-align: center;
    border: none;
    color: white;
    transition: 200ms;
    width: 4vw;
}

.ContactSocialButtons img {
    width: 100%;
}

.ContactSocialButtons:hover {
    cursor: pointer;
}

.submit-message {
    display: none;
    flex-direction: column;
    position: absolute;
    z-index: 8;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    width: 100%;
    transition: all 0.25s;
}

.submit-message p {
    text-align: center;
    color: white;
    font-size: clamp(0.5rem, 1vw, 2rem);
    font-weight: 300;
}

footer {
    display: flex;
    margin: 0 auto;
    color: ivory;
    background-color: rgba(0, 0, 0);
    width: 100vw;
    height: 4vw;
    text-align: center;
    overflow: hidden;
    align-items: center;
}

footer img {
    position: relative;
    margin: 0 auto;
    width: 20vw;
}

::-webkit-scrollbar {
    width: 0.5vw;
}

::-webkit-scrollbar-track {
    background: rgb(41, 41, 41);
}

::-webkit-scrollbar-thumb {
    background: #dedede;
}

::-webkit-scrollbar-thumb:hover {
    background: #828282;
}

::-webkit-scrollbar-corner {
    background: none;
}

.mobile {
    display: none;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header-title-box {
        margin-left: 0.5rem;
    }

    .header-title-box h1 {
        font-size: clamp(1rem, 1vw, 1.5rem);
    }

    .header-title-box h2 {
        font-size: clamp(0.5rem, 1vw, 1rem);
        margin-left: 0.25rem;
    }

    .header-links-box {
        margin-right: 0.5rem;
        width: 4rem;
    }

    .header-image-box {
        height: 56vw;
    }

    .section-background {
        flex-direction: column;
        max-width: 90%;
        padding: 0;
        margin: 3vw auto;
    }

    .section-couple {
        flex-direction: column;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    .section-couple .section-background {
        flex-direction: column;
        max-width: 90%;
        padding: 0;
    }

    .section-couple .section-box {
        flex-direction: column;
        margin: 0 auto;
    }

    .section-couple .section-box p {
        font-size: 0.6rem;
        line-height: 1.5rem;
        color: white;
    }

    .section-couple .scroll-box {
        margin: 0 auto;
        margin-top: 2vw;
        padding: 0.5rem;
    }

    .section-couple .section-content {
        margin: 2vw auto;
    }

    .section-couple .section-content iframe {
        width: 100%;
        aspect-ratio: 16/9;
        margin: 0 auto;
        border: none;
    }

    .scroll-box {
        margin: 0 auto;
        padding: 0.5rem;
    }

    .section-box {
        flex-direction: column;
        margin: 0 auto;
    }

    .section-box p {
        font-size: 0.6rem;
        line-height: 1.5rem;
        color: white;
    }

    .section-content {
        margin: 2vw auto;
    }

    .section-content h1 {
        font-size: 0.9rem;
        margin: 0 auto;
        margin-top: 4vw;
        font-weight: 400;
    }

    .section-column-box {
        max-width: 100%;
        min-width: 100%;
    }

    .category-box {
        text-align: center;
        width: 100%;
    }

    .category-box h1 {
        font-size: 1.5rem;
    }

    .category-box h2 {
        margin-top: 0;
        margin-bottom: 1vw;
        font-size: 0.7rem;
    }

    .category-line {
        width: 100%;
        margin: 0 auto;
    }

    .contact-box {
        margin: 0 auto;
    }

    .contact-box h1 {
        margin-top: 6vw;
        text-align: left;
    }

    .contact-box-inner {
        min-height: 60vw;
        padding: 1.5vw 3vw;
    }

    .contact-input {
        height: 5vw;
    }

    .contact-form textarea {
        min-height: 4vw;
    }

    .contact-form button {
        padding: 1.5vw;
    }

    .socials-container {
        margin-top: 5vw;
    }

    .socials-container p {
        font-size: 0.7rem;
    }

    .ContactSocialButtons {
        margin: 0;
        margin-left: 20vw;
        width: 7vw;
    }

    .section-couple .video-cover p, .video-cover p{
        font-size: 5rem;
    }

    .image-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        grid-gap: 0.5rem;
    }

    .section-bar {
        padding: 0.5rem;
        gap: 0.25rem;
    }

    .section-button {
        font-size: clamp(0.4rem, 1.5vw, 1rem);
        padding: 0;
        margin: 0.25rem auto;
    }

    .full-image-box img {
        max-height: 45vw;
    }

    .gallery-arrow-left-full,
    .gallery-arrow-right-full {
        padding: 0.5rem;
    }

    footer {
        height: 15vw;
    }

    footer img {
        width: 60vw;
    }
}

@media screen and (max-width: 480px) {

    .mobile {
        display: flex;
    }

    .header {
        margin: 0 auto;
        height: 10vw;
    }

    .header-title-box {
        margin: 0 auto;
        margin-left: 0.5rem;
    }

    .header-title-box h1 {
        font-size: 1.5rem;
        text-align: left;
    }

    .header-title-box h2 {
        display: none;
    }

    .header-links-box {
        display: flex;
    }

    .reg-contacts {
        display: none;
    }

    .menu-contacts {
        display: flex;
        margin: 1rem auto;
        width: 100%;
    }

    .menu-contacts img {
        width: 2rem;
        filter: invert(1);
    }

    .hamburger {
        display: flex;
    }

    .menu {
        display: flex;
        flex-direction: column;
        width: 100vw;
        right: -200vw;
        margin: 0 auto;
    }

    .image-box {
        margin: 0 auto;
        padding: 0;
        place-content: center;
        text-align: center;
    }

    .image-box img {
        max-height: 8rem;
    }

    .section-bar {
        display: none;
    }

    .section-button {
        display: none;
    }

    .section-background {
        justify-content: center;
        margin-top: 0;
        width: 85vw;
    }

    .scroll-box {
        justify-content: center;
        margin: 0.5vw auto;
        width: 90%;
        max-height: 25vh;
        padding: 0.5rem;
    }

    .section-title {
        display: flex;
        color: white;
        font-size: 1.25rem;
        font-weight: 400;
        margin: 0.5rem auto;
        margin-bottom: 0;
        justify-content: center;
    }

    .category-box h1 {
        font-size: 1rem;
        color: white;
    }

    .category-box h2 {
        font-size: 0.75rem;
        margin-top: 1.5vw;
        color: white;
    }

    .section-box {
        flex-direction: column;
        padding: 0;
    }

    .section-box p {
        font-size: 0.6rem;
        line-height: 1.5rem;
        color: white;
    }

    .section-content {
        width: 90%;
        margin: 0.5rem auto;
        justify-content: center;
        text-align: center;
    }

    .section-content h1 {
        font-size: 0.9rem;
        margin: 0 auto;
        margin-top: 0.5rem;
    }

    .section-content iframe {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .photography-section {
        border-top: 0.125rem solid white;
    }

    .film-section {
        border-top: 0.125rem solid white;
    }

    .digital-section {
        border-top: 0.125rem solid white;
    }

    .about-section {
        border-top: 0.125rem solid white;
    }

    .contacts-section {
        border-top: 0.125rem solid white;
    }

    .category-box {
        padding: 0rem;
    }

    .category-line {
        margin: 0.5rem auto;
        width: 100%;
    }

    .contact-box h1 {
        margin: 4vw auto;
        text-align: left;
    }

    .section-couple .video-cover p, .video-cover p{
        font-size: 2rem;
    }

    .contact-box-inner {
        min-height: 60vw;
        padding: 4vw;
    }

    .contact-input {
        height: 8vw;
    }

    .contact-form textarea {
        min-height: 4vw;
    }

    .contact-form button {
        padding: 1.5vw;
    }

    .socials-container {
        text-align: center;
        place-content: center;
        place-items: center;
        margin-top: 5vw;
        border: none;
    }

    .socials-container p {
        display: none;
    }

    .ContactSocialButtons {
        place-content: center;
        place-items: center;
        margin: 0 auto;
        margin-left: 45%;
        width: 10vw;
    }
}