@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&display=swap');

/* -------------------------------- */
/* Common Start */
/* -------------------------------- */
:root {
    --primary-font: "Oswald", sans-serif;
    --secondary-font: "Inter", sans-serif;
    --orange: #f8941e;
    --black: #000000;
    --white: #ffffff;
}
body {
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 18px;
    color: #1a1a1a;
}
.post, .page {
    margin: 0;
}
.container {
	width: 100%;
    max-width: 1640px;
	margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
a {
	transition: all 0.5s;
}
a.btn {
    background: var(--orange);
    padding: 10px 40px;
    font-weight: 600;
    font-family: var(--primary-font);
    text-transform: uppercase;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    display: inline-block;
}
a.btn:hover {
    background: var(--black);
}
h1 {
    font-family: var(--primary-font);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
}
h2 {
    font-family: var(--primary-font);
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
}
h3 {
    font-family: var(--primary-font);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
}
h4 {
    font-family: var(--primary-font);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
}
h5 {
    font-family: var(--primary-font);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
}
h6 {
    font-family: var(--primary-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}
/* --------------------------------- */
/* Common End */
/* -------------------------------- */

/* -------------------------------- */
/* Header Start */
/* -------------------------------- */
header {
	position: relative;
}
body.scroll-lock {
  	overflow: hidden !important;
  	touch-action: none;
  	-ms-scroll-chaining: none;
   	overscroll-behavior: none;
}
header ul {
    padding: 0;
    margin: 0;
}
header ul li {
    list-style: none;
}
.navbar {
  	display: flex;
  	flex-wrap: wrap;
  	align-content: center;
  	align-items: center;
  	justify-content: space-between;
  	width: 100%;
  	margin: 0 auto;
	padding: 0;
}
.navbar .inner-menu {
    padding: 12px 15px;
    max-width: 1640px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.navbar .navbar__left {
  	display: flex;
  	align-items: center;
}
.navbar .menu-mega {
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
}
.menu-mega .menu__inner > li.menu__item > a.menu__link {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    font-family: var(--primary-font);
    letter-spacing: 0.5px;
    padding: 15px;
    gap: 4px;
}
.menu-mega .menu__inner > li.menu__item > a.menu__link:hover, .menu-mega .menu__inner > li.menu__item:hover > a.menu__link {
    background: var(--black);
    color: white;
}
.navbar .inner-menu .logo-part {
    display: flex;
    align-items: center;
    gap: 60px;
}
.navbar .inner-menu .logo-part .search form.search-form input {
    padding: 12px 25px;
    border: 1px solid #8b8b8b;
    border-radius: 100px;
    font-family: var(--secondary-font);
    width: 380px;
	outline: none;
}
.navbar .inner-menu .logo-part .search form.search-form {
    position: relative;
}
.navbar .inner-menu .logo-part .search form.search-form input.search-submit {
    font-size: 0;
    background: url(/wp-content/uploads/2025/12/search-interface-symbol.png);
    border: none;
    width: 20px !important;
    height: 20px;
    background-size: cover;
    padding: 0;
    background-position: center;
    border-radius: 0;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
header .top-menu nav ul > li > a {
    font-size: 16px;
    margin: 0 10px;
    color: var(--black);
    font-weight: 600;
    text-transform: capitalize;
}
header .top-menu nav ul > li > a:hover {
    color: var(--orange);
}
header .cart a.cart-set {
    color: var(--orange);
    border: 1px solid var(--orange);
    padding: 8px 8px 6px 8px;
    display: inline-flex;
    text-decoration: none;
    border-radius: 6px;
}
header .cart a.cart-set:hover {
    background: var(--orange);
    color: white;
}
header .right-part {
    display: flex;
    align-items: center;
    gap: 8px;
}
header .main-mega-top .main-mega-inner .main-mega .main-top {
    margin-bottom: 3px;
}
.navbar .navbar__center {
    display: flex;
    width: 100%;
    background: var(--orange);
}
.navbar .navbar__right {
  	display: flex;
  	align-items: center;
  	justify-content: flex-end;
}
.brand {
  	display: flex;
  	align-items: center;
  	order: 1;
    max-width: 210px;
}
.brand svg {
  	width: 60px;
  	height: 60px;
}
.menu-mega .menu__inner .menu__item {
  	position: relative;
}
.menu-mega .menu__inner .menu__item .menu__link {
  	display: flex;
  	align-items: center;
  	justify-content: space-between;
  	color: #000;
  	text-decoration: none;
  	transition: all 0.3s ease;
  	cursor: pointer;
  	pointer-events: auto;
}
.menu-mega .menu__inner .menu__item .menu__link:hover {
  	color: var(--primary-color);
}
.menu-mega .menu__inner .menu__item .menu__link i {
  	font-size: 14px;
  	transition: transform 0.3s ease;
}
.menu-mega .menu__inner .menu__item.back-btn {
  	display: flex;
  	align-items: center;
  	justify-content: flex-start;
  	border-bottom: 1px solid #eee;
  	margin-bottom: 10px;
  	position: sticky;
  	top: 0;
  	background-color: #fff;
}
.menu-mega .menu__inner .menu__item.back-btn .menu__link {
  	padding: 15px;
  	font-weight: 500;
}
.menu-mega .menu__inner .menu__item.back-btn .menu__link:hover {
  	color: var(--primary-color);
}
.menu-mega .menu__inner .menu__item.back-btn .menu__link i {
    margin-right: 8px;
    transform: rotate(90deg);
}
header .submenu.megamenu__text .submenu__inner .submenu__title {
    background: #ffffff57;
    padding: 12px 20px;
    color: white;
    font-size: 20px;
    margin-bottom: 26px;
    letter-spacing: 0.5px;
    margin-top: 0;
}
header .main-mega-top .main-mega-inner .main-mega .main-top a {
    color: white;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}
header .main-mega-top .main-mega-inner .main-mega .main-top a:hover {
	 color: var(--orange);
}
header .main-mega-top .main-mega-inner .main-mega ul li a.menu__link {
    color: white;
    font-size: 15px;
    padding: 5px 0 !important;
    line-height: 1.3;
}
header .main-mega-top .main-mega-inner .main-mega ul li a.menu__link:hover {
    color: var(--orange);
}
header .main-mega-top .main-mega-inner .main-mega > ul {
    padding-left: 18px;
}
header .main-mega-top .main-mega-inner .main-mega:last-child {
    margin-bottom: 0;
}
header .main-mega-top .main-mega-inner .main-mega {
    margin-bottom: 20px;
}
header .main-mega-top {
    display: flex;
	flex-wrap: wrap;
    gap: 16px;
}
header .main-mega-top .main-mega-inner {
    width: calc(50% - 8px);
}
.submenu.megamenu__text.col-4 .submenu__inner {
    width: 25%;
}
.submenu.megamenu__text .submenu__inner {
    width: 33.33%;
    padding: 26px 20px 50px 20px;
    z-index: 99;
    border-right: 1px solid #ffffff;
}
.submenu.megamenu__text .submenu__inner .submenu__title, .submenu.megamenu__image .submenu__inner .submenu__title {
  	margin-bottom: 5px;
  	font-size: 16px;
  	font-weight: 500;
  	color: var(--primary-color);
  	text-transform: uppercase;
  	transition: all 0.3s ease;
}
.submenu.megamenu__text .submenu__list li, .submenu.megamenu__image .submenu__list li {
  	display: block;
  	line-height: 1;
  	margin: 0 auto;
}
.submenu.megamenu__text .submenu__list li .menu__link, .submenu.megamenu__image .submenu__list li .menu__link {
  	padding: 10px 0 !important;
}
.submenu.megamenu__image .submenu__inner a {
  	display: flex;
  	flex-flow: column;
  	align-items: center;
}
.submenu.megamenu__image .submenu__inner a img {
  	display: block;
  	width: 100%;
  	height: 150px;
  	margin-bottom: 15px;
  	-o-object-fit: cover;
     object-fit: cover;
  	border-radius: 10px;
}
.burger {
  	position: relative;
  	cursor: pointer;
  	width: 32px;
    height: 18px;
  	display: none;
}
.burger .burger-line {
  	position: absolute;
  	display: block;
  	left: 0;
  	width: 100%;
  	height: 2px;
  	opacity: 1;
  	border-radius: 15px;
  	background: #000;
}
.burger .burger-line:nth-child(1) {
  	top: 0px;
}
.burger .burger-line:nth-child(2) {
  	top: 8px;
  	width: 70%;
}
.burger .burger-line:nth-child(3) {
  	top: 16px;
}
.overlay {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 0.45s ease-in-out;
    pointer-events: none;
}
@media (min-width: 1025px) {
.menu-mega .menu__inner .menu__item:hover > .menu__link i {
    transform: rotate(-180deg);
}	
.submenu {
    position: absolute;
    z-index: 1000;
    top: 100%;
    left: 50%;
    min-width: 200px;
    padding: 15px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}
.submenu.is-current-slide {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}	
.submenu .submenu {
    top: 0;
    left: 100%;
    transform: translateX(-5px);
}
.submenu .menu__item .menu__link i {
    transform: rotate(-90deg) !important;
}
.submenu .menu__item:hover > .menu__link i {
    transform: rotate(90deg) !important;
}
.submenu.megamenu__normal {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    top: calc(100% + 12px);
    padding: 15px 5px;
}
.submenu.megamenu__text, .submenu.megamenu__image {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin: 0 auto;
    overflow-x: hidden;
}	
.menu-mega .menu__inner .menu__item .menu__link {
    padding: 10px 15px;
}
.menu-mega .menu__inner > .menu__item:hover > .submenu {
    opacity: 1;
    visibility: visible;
    z-index: 99;
}
.menu-mega .menu__inner .menu__item:has(.megamenu__text), .menu-mega .menu__inner .menu__item:has(.megamenu__image) {
    position: static;
}	
.menu-mega .menu__inner {
	display: flex;
	gap: 5px;
	transform: none !important;
	margin-bottom: 0;
	justify-content: center;
}	
.submenu.megamenu__text {
	max-width: 100%;
	background-size: cover !important;
	background-position: center !important;
	padding: 0;
}
.submenu.megamenu__text:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    left: 0;
    top: 0;
    opacity: 0.75;
}	
}
@media (max-width: 1024px) {	
.submenu.megamenu__text .submenu__inner, .submenu.megamenu__image .submenu__inner {
    width: 100%;
    padding: 0 15px;
}
.submenu.megamenu__text .submenu__inner:first-of-type, .submenu.megamenu__image .submenu__inner:first-of-type {
    padding-top: 15px;
}
.submenu.megamenu__text .submenu__list, .submenu.megamenu__image .submenu__list {
    margin-bottom: 20px;
}	
.submenu.megamenu__image .submenu__inner a {
    flex-flow: row;
    align-items: center;
    padding-bottom: 20px;
}	
.submenu.megamenu__image .submenu__inner a img {
    width: 30%;
    height: 80px;
    margin-bottom: 0;
    margin-right: 15px;
}	
.burger {
    display: block;
}	
.submenu {
    position: fixed;
    z-index: 2000;
    left: 100%;
    top: 0;
    display: none;
    width: 100%;
    height: 100vh;
    padding: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
}
.submenu.is-current-slide {
    pointer-events: auto;
    z-index: 2010;
    opacity: 1;
    display: block;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.submenu.is-current-parent {
    display: block;
    z-index: 2005;
}	
.overlay.is-active {
	opacity: 1;
	visibility: visible;
}
.overlay {
	cursor: url(https://i.imgur.com/cPh9Zm5.png), zoom-out;
	pointer-events: visible;
}	
.menu-mega {
    position: fixed;
    top: 0;
    left: 0;
    width: 350px !important;
    max-width: 85% !important;
    height: 100%;
    z-index: 9999999;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #fff;
    transform: translate(-100%);
    transition: all 0.4s ease-in-out;
    -webkit-overflow-scrolling: touch;
}
.menu-mega.is-active {
    transform: translate(0%);
}	
.menu-mega .menu__inner .menu__item .menu__link {
    font-size: 16px;
    padding: 10px 15px;
}
.menu-mega .menu__inner .menu__item .menu__link i {
    transform: rotate(-90deg);
}	
.navbar .navbar__center {
    flex: 0 0 100%;
    order: 3;
    align-items: center;
}
.navbar .navbar__left {
    flex: 0 0 auto;
}	
.navbar .navbar__right {
    flex: 0 0 auto;
    align-items: center;
}	
.menu-mega .menu__inner {
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 30px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
    -ms-overflow-style: -ms-autohiding-scrollbar;
    scrollbar-width: none;
}
.menu-mega .menu__inner.is-current-slide {
    display: flex;
    flex-flow: column;
    gap: 10px;
}
.menu-mega .menu__inner.is-sliding {
    transform: translateX(-100%);
}	
}
/* -------------------------------- */
/* Header End */
/* -------------------------------- */

/* -------------------------------- */
/* Homepage Start */
/* -------------------------------- */
section.hero-sec {
    padding: 120px 0;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 520px;
}
section.hero-sec:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--black);
    top: 0;
    left: 0;
    opacity: 0.4;
}
section.hero-sec .content {
    position: relative;
    color: var(--white);
}
section.hero-sec .content h3 {
    margin-top: 0;
    margin-bottom: 0;
}
section.hero-sec .content h2 {
    color: #ffff99;
    margin-bottom: 0;
    margin-top: 20px;
}
section.services-sec .inner-row .inner-col, section.brand-sec .inner-row .inner-col {
    width: calc(33.33% - 20px);
}
section.services-sec .content a {
    display: flex;
    overflow: hidden;
    text-decoration: none;
    color: var(--orange);
}
section.services-sec .inner-row, section.brand-sec .inner-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
section.services-sec {
    padding: 80px 0;
}
section.services-sec .content h5 {
    margin-top: 26px;
    margin-bottom: 0;
}
section.services-sec .content p {
    font-size: 16px;
}
section.services-sec .content .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    position: absolute;
    width: calc(100% - 40px);
    bottom: 30px;
}
section.services-sec .content .btn-group a.btn {
    background: var(--black);
    padding: 10px 40px;
    font-weight: 600;
    font-family: var(--primary-font);
    text-transform: uppercase;
    border-radius: 5px;
    color: white;
    width: 100%;
    justify-content: center;
}
section.services-sec .content .btn-group a.btn:hover {
    background: var(--orange);
	color: var(--black);
}
section.services-sec .content .btn-group a.btn:last-child {
    background: var(--orange);
    color: var(--black);
}
section.services-sec .content .btn-group a.btn:last-child:hover {
    background: var(--black);
    color: var(--white);
}
section.services-sec .content {
    background: white;
    padding: 20px 20px 145px 20px;
    border: 1px solid #b1b1b1;
    box-shadow: 0 0 20px 2px #0000001f;
    height: 100%;
    position: relative;
}
section.services-sec .content img {
    transition: all 0.5s;
}
section.services-sec .content:hover img {
    transform: scale(1.2);
}
section.services-sec .content:hover a: {
    color: var(--black);
}
section.brand-sec .content .inner-set {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--orange);
}
section.brand-sec .content .inner-set a:first-child:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    left: 0;
    top: 0;
}
section.brand-sec .content .inner-set a.btn {
    background: var(--orange);
    padding: 10px 40px;
    font-weight: 600;
    font-family: var(--primary-font);
    text-transform: uppercase;
    color: white;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    width: 100%;
    text-align: center;
    border-radius: 0;
}
section.brand-sec .content .inner-set a {
    display: flex;
    justify-content: center;
    overflow: hidden;
}
section.brand-sec .content .inner-set a:first-child {
    transition: all 0.5s;
}
section.brand-sec .content .inner-set:hover a:first-child {
    transform: scale(1.2);
}
section.brand-sec {
    padding: 80px 0;
    background: var(--black);
    position: relative;
}
section.brand-sec .content .inner-set:hover a.btn {
    background: var(--white);
    color: var(--black);
}
section.brand-sec:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(https://dev.sportieftilburg.nl/wp-content/uploads/2025/12/new-pattern-img.png);
    top: 0;
    left: 0;
}
.blog-sec .content p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-sec .content {
    padding: 0 !important;
    box-shadow: none !important;
    background: #f8941e26 !important;
    border: 1px solid #f8941e !important;
}
.blog-sec .content .inner-content {
    padding: 0 25px 80px 25px;
}
section.blog-sec .content .btn-group a.btn {
    background: var(--black) !important;
    color: white !important;
    width: auto;
}
section.blog-sec .content .btn-group a.btn:hover {
    background: var(--orange) !important;
    color: var(--black) !important;
}
section.wintersport-sec .inner-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-end;
    background: #f8941e;
    position: relative;
    padding: 50px;
	background-size: cover !important;
    background-position: center !important;
}
section.wintersport-sec .inner-row:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    outline: 2px solid #000000;
    outline-offset: -25px;
    top: 0;
    left: 0;
}
section.wintersport-sec .inner-row .right-content {
    width: calc(60% - 40px);
    position: relative;
    display: flex;
    z-index: 99;
}
section.wintersport-sec .inner-row .right-content img {
    width: 100%;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}
section.wintersport-sec {
    padding-top: 80px;
}
section.wintersport-sec .inner-row .left-content h3 {
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 28px;
}
section.wintersport-sec .inner-row .left-content a.btn {
    background: var(--black);
}
section.wintersport-sec .inner-row .left-content a.btn:hover {
    background: var(--white);
    color: #000;
}
section.wintersport-sec .inner-row .left-content {
    width: 40%;
    padding-bottom: 40px;
    padding-left: 25px;
    position: relative;
    z-index: 99;
}
section.wintersport-sec .inner-row:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--orange);
    background-size: cover;
    background-position: center;
    left: 0;
    top: 0;
    opacity: 0.9;
}
section.wild-sec .inner-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: var(--black);
    position: relative;
}
section.wild-sec .inner-row:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(https://dev.sportieftilburg.nl/wp-content/uploads/2025/12/new-pattern-img.png);
    background-size: cover;
}
section.wild-sec .inner-row .left-content {
    width: calc(60% - 40px);
    display: flex;
    position: relative;
}
section.wild-sec .inner-row .right-content {
    width: 40%;
    padding-right: 50px;
    padding-left: 30px;
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    position: relative;
}
section.wild-sec .inner-row .right-content h3 {
    margin-top: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: white;
}
section.wild-sec .inner-row .right-content p {
    color: white;
    width: 100%;
}
section.wild-sec .inner-row .left-content:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--black);
    opacity: 0.4;
}
section.wild-sec .inner-row .right-content a.btn:hover {
    background: white;
    color: #000;
}
section.wild-sec .inner-row .left-content img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 16 / 10;
}
section.wild-sec {
    padding-bottom: 80px;
}
section.top-block-sec {
    padding-bottom: 80px;
}
section.top-block-sec .inner-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
section.top-block-sec .inner-row .inner-col {
    width: calc(50% - 15px);
}
section.top-block-sec .content {
    aspect-ratio: 16 / 11;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
    padding: 15px 35px 55px 55px;
    position: relative;
    text-decoration: none;
}
section.top-block-sec .content h3 {
    width: 100%;
    margin-top: 0;
    margin-bottom: 30px;
    color: white;
    text-transform: uppercase;
	position: relative;
	transition: all 0.5s;
}
section.top-block-sec .content:hover h3 {
	color: var(--orange);
}
section.top-block-sec .content:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000;
    top: 0;
    left: 0;
    opacity: 0.6;
}
section.top-block-sec .content:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    outline: 2px solid #ffffff;
    outline-offset: -25px;
    top: 0;
    left: 0;
	transition: all 0.5s;
}
section.top-block-sec .content:hover:after {
    outline-color: var(--orange);
}
section.top-block-sec .content span.btn {
    background: var(--orange);
    padding: 10px 40px;
    font-weight: 600;
    font-family: var(--primary-font);
    text-transform: uppercase;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    display: inline-block;
    position: relative;
	transition: all 0.5s;
}
section.top-block-sec .content:hover span.btn {
    background: white;
    color: black;
}
/* -------------------------------- */
/* Homepage End */
/* -------------------------------- */

/* -------------------------------- */
/* Footer Start */
/* -------------------------------- */
footer .main-footer {
    padding: 60px 0;
    background: url(https://dev.sportieftilburg.nl/wp-content/uploads/2025/12/new-pattern-img.png);
    background-color: #000;
    background-size: cover;
    background-position: center;
}
footer .main-footer .inner-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
footer .main-footer .inner-row .inner-col {
    width: calc(33.33% - 20px);
}
footer .main-footer .inner-row .inner-col .logo {
    max-width: 280px;
    margin-bottom: 20px;
}
footer .main-footer .contact-details ul {
    margin: 0;
    padding: 0;
}
footer .main-footer .contact-details ul li a {
    display: flex;
    text-decoration: none;
    color: white;
    gap: 12px;
    max-width: 380px;
}
footer .main-footer .contact-details ul li a i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.5s;
}
footer .main-footer .contact-details ul li a span {
    width: calc(100% - 47px);
    display: flex;
    align-items: center;
    transition: all 0.5s;
    font-size: 16px;
}
footer .main-footer .contact-details ul li {
    margin-bottom: 18px;
}
footer .main-footer .contact-details ul li a:hover i {
    color: var(--orange);
    border-color: var(--orange);
}
footer .main-footer .contact-details ul li a:hover span {
    color: var(--orange);
}
footer .main-footer h5 {
    margin-top: 0;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 20px;
}
footer .main-footer .time .inner-time {
    display: flex;
    justify-content: space-between;
    color: white;
    border-bottom: 1px solid #fff;
    padding: 9px 0;
    font-size: 16px;
}
footer .main-footer .time {
    max-width: 420px;
}
footer .main-footer .time:last-child .inner-time {
    border: none;
}
footer .main-footer .link-set ul {
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}
footer .main-footer .link-set ul li {
    list-style: none;
}
footer .main-footer .link-set ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}
footer .main-footer .link-set ul li a:hover {
    color: var(--orange);
}
footer .main-footer .link-set span {
    color: white;
    font-size: 16px;
    width: 100%;
    display: block;
}
footer .main-footer .ti-widget-container {
    display: flex !important;
    margin-top: 25px;
}
footer .main-footer .ti-widget-container .ti-text span:before {
    content: "Gebaseerd op";
}
footer .main-footer .ti-widget-container .ti-text span {
    display: flex;
    flex-wrap: wrap;
    gap: 4px !important;
}
footer .main-footer .ti-widget-container .ti-large-logo .ti-v-center {
    display: flex;
    justify-content: center;
}
footer .main-footer .ti-widget-container span.ti-stars {
    text-align: center;
}
footer .main-footer a.ti-header {
    border-radius: 0 !important;
    outline: 1px solid #000;
    outline-offset: -9px;
}
.copyright {
    background: var(--orange);
    text-align: center;
}
.copyright p {
    margin: 0;
    padding: 12px 0;
    font-weight: 500;
}
/* -------------------------------- */
/* Footer End */
/* -------------------------------- */



@media(max-width: 1330px) {
.navbar .inner-menu .logo-part {
    gap: 30px;
}	
.brand {
    max-width: 190px;
}	
.navbar .inner-menu .logo-part .search form.search-form input {
    width: 300px;
}	
header .top-menu nav ul > li > a {
    font-size: 15px;
    margin: 0 6px;
}	
}

@media(max-width: 1150px) {
.menu-mega .menu__inner > li.menu__item > a.menu__link {
    font-size: 18px;
    padding: 15px 10px;
}
.brand {
	max-width: 160px;
}	
.navbar .inner-menu .logo-part .search form.search-form input {
	width: 260px;
}	
header .top-menu nav ul > li > a {
	font-size: 14px;
	margin: 0 5px;
}	
section.top-block-sec .content {
	aspect-ratio: 16 / 13;
}
header .main-mega-top .main-mega-inner {
    width: 100%;
}	
}

@media(max-width: 1024px) {
header .top-menu {
    display: none;
}	
.brand {
	max-width: 200px;
}	
.navbar .inner-menu .logo-part .search form.search-form input {
	width: 350px;
}	
header .right-part .cart {
    padding-right: 12px;
}	
.menu-mega .menu__inner .menu__item .submenu.megamenu__text {
	background: transparent !important;
	padding-bottom: 30px;
}	
header .submenu.megamenu__text .submenu__inner .submenu__title {
    color: #000;
    background: #f8941e2e;
    margin-bottom: 18px;
}	
header .main-mega-top .main-mega-inner .main-mega ul li a.menu__link {
    color: #000;
    font-size: 16px;
}	
header .main-mega-top .main-mega-inner {
    width: 100%;
}	
header .main-mega-top .main-mega-inner .main-mega .main-top a {
    color: #000;
}	
header .main-mega-top .main-mega-inner .main-mega .main-top a:hover, header .main-mega-top .main-mega-inner .main-mega ul li a.menu__link:hover {
	color: var(--orange);
}
header .main-mega-top {
    flex-wrap: wrap;
}	
.submenu.megamenu__text.col-4 .submenu__inner {
    width: 100%;
}	
.overlay {
    background-image: url(/wp-content/uploads/2025/12/close.png);
    background-repeat: no-repeat;
    background-position: 370px 18px;
    background-size: 20px;
}	
section.services-sec {
    padding: 60px 0;
}	
section.wintersport-sec {
    padding-top: 60px;
}	
section.wild-sec, section.top-block-sec {
    padding-bottom: 60px;
}	
section.services-sec .inner-row .inner-col, section.brand-sec .inner-row .inner-col {
    width: calc(50% - 15px);
}	
section.hero-sec {
    min-height: 420px;
}	
section.services-sec .inner-row, section.brand-sec .inner-row {
    justify-content: center;
}	
h3 {
    font-size: 32px;
}	
section.wintersport-sec .inner-row {
    flex-direction: column-reverse;
}
section.wintersport-sec .inner-row .left-content {
    width: 100%;
    padding-left: 0;
    padding-bottom: 20px;
    text-align: center;
}
section.wintersport-sec .inner-row .right-content {
    width: 100%;
}	
section.wild-sec .inner-row {
    gap: 20px;
}	
section.wild-sec .inner-row .right-content {
    padding-right: 20px;
    padding-top: 80px;
    padding-bottom: 80px;
}	
section.wild-sec .inner-row .right-content p {
    margin-top: 8px;
}	
section.top-block-sec .inner-row .inner-col {
    width: 100%;
}	
section.top-block-sec .content {
	aspect-ratio: 16 / 10;
}	
footer .main-footer .inner-row .inner-col:first-child {
    width: 100%;
}	
footer .main-footer .inner-row .inner-col:nth-child(2), footer .main-footer .inner-row .inner-col:last-child {
    width: calc(50% - 15px);
}	
footer .main-footer .inner-row .inner-col:last-child {
    padding-left: 20px;
}	
footer .main-footer .contact-details ul li a {
    max-width: 100%;
}	
}

@media(max-width: 767px) {
.brand {
	max-width: 160px;
}
.navbar .inner-menu {
    padding-bottom: 85px;
}	
.navbar .inner-menu .search {
	position: absolute;
	bottom: 15px;
	width: calc(100% - 30px);
}	
.navbar .inner-menu .logo-part .search form.search-form input {
	width: 100%;
}
.overlay {
	background-position: 95% 18px;
}	
h2 {
    font-size: 38px;
}	
h3 {
	font-size: 28px;
}	
section.hero-sec {
	min-height: 380px;
}	
section.services-sec .inner-row .inner-col, section.brand-sec .inner-row .inner-col {
    width: 100%;
}	
section.services-sec .content {
    padding: 15px 15px 140px 15px;
}	
section.brand-sec {
    padding: 50px 0;
}	
section.wintersport-sec .inner-row {
    padding: 40px 30px 30px 30px;
    outline-offset: -15px;
}	
section.wild-sec .inner-row .left-content {
    width: 100%;
}	
section.wild-sec .inner-row .right-content {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 25px 20px 40px 20px;
}		
section.top-block-sec .content {
	aspect-ratio: 16 / 18;
	padding: 15px 40px 55px 40px;
}	
section.top-block-sec .content:after {
    outline-offset: -20px;
}
section.wild-sec .inner-row .left-content img {
    aspect-ratio: 16 / 12;
}	
footer .main-footer .inner-row .inner-col:nth-child(2), footer .main-footer .inner-row .inner-col:last-child {
	width: 100%;
}	
footer .main-footer .inner-row .inner-col:last-child {
	padding-left: 0;
	padding-top: 12px;
}	
}	
	
