/*
Theme Name: Nicex (Child Theme)
Theme URI: http://madsparrow.us/
Author: Mad Sparrow
Author URI: https://themeforest.net/user/madsparrow
Description: Nicex – brings your site to life with immersive featured images and subtle animations. With a focus on portfolio sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our theme works great in many languages, for any abilities, and on any device.
Tags: one-column, two-columns, right-sidebar, custom-menu, post-formats, sticky-post, translation-ready, page transition
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nicex
Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
Template: nicex
*/

/* Add your own modification from here
-------------------------------------------------------------- */

.main-header__inner {
    padding-top: 50px !important;
}

.main-header.show-bg .main-header__layout::after {
	height: 125px !important;
}

h2.elementor-heading-title {
    font-size: 45px !important;
    font-weight: 500 !important;
}

.navbar-nav-button > .menu-item > a {
    font-family: 'Inter' !important;
    font-weight: 500 !important;
    font-size: 40px !important;
}

.navbar-nav > .menu-item > a {
    font-family: 'Inter' !important;
	text-transform: uppercase;
    font-weight: 400 !important;
    font-size: 18px !important;
}

.filmtape-top:before {
    content: ' ';
    height: 80px;
    width: 100%;
    display: flex;
    background-image: url(/wp-content/uploads/2025/10/film-tape-close.svg);
    background-repeat: repeat-x;
    margin-bottom: 50px;
    position: relative;
    animation: slideBackgroundtoRight 30s linear infinite;
}

/* Keyframe for sliding effect */
@keyframes slideBackgroundtoRight {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0;
    }
}

@keyframes slideBackgroundtoLeft {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -100% 0;
    }
}

.filmtape-bottom:after {
    content: ' ';
    height: 80px;
    width: 100%;
    display: flex;
    background-image: url(/wp-content/uploads/2025/10/film-tape-close.svg);
    background-repeat: repeat-x;
	margin-top: 50px;
	position: relative;
    animation: slideBackgroundtoLeft 30s linear infinite;
}