/*
Theme Name: Furstenberg
Theme URI: https://fürstenberg.dk
Description: Custom wordpress theme Developed by Mandip Luitel
Author: Mandip Luitel
Author URI: https://mandipluitel.com
Text Domain: furstenberg
Version: 1.0
*/
:root {
    --siteWidth: 1440px;
    --fluidSiteWidth: 1660px;
    --primaryColor: #222126;
    --accentColor: #81d742;
    --whiteColor: #ffffff;
    --blackColor: #000000;
    --bodyColor: #999999;
    --primaryFont: Georgia, Times New Roman, Times, serif;
}
*,
:after,
:before {
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
    display: block;
}
audio,
canvas,
video {
    display: inline-block;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
[hidden] {
    display: none;
}
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    color: var(--whiteColor);
    font-family: var(--primaryFont);
    writing-mode: horizontal-tb;
}
body,
html {
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
    height: 100%;
    width: 100%;
}
body {
    clear: both;
    color: var(--bodyColor);
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background: var(--blackColor);
}
body,
dd,
dl,
html,
menu,
ol,
ul {
    margin: 0;
    padding: 0;
}
nav ol,
nav ul {
    list-style: none;
    list-style-image: none;
}
img {
    -ms-interpolation-mode: bicubic;
    border: 0;
}
form {
    margin: 0;
}
legend {
    border: 0;
    *margin-left: -7px;
    padding: 0;
    white-space: normal;
}
button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
    *vertical-align: middle;
}
button,
input {
    line-height: normal;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    appearance: button;
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
input[disabled] {
    cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
    padding: 0;
}
input[type="search"] {
    appearance: textfield;
    -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
input::placeholder,
textarea::placeholder {
    color: var(--whiteColor);
}
textarea {
    overflow: auto;
    vertical-align: top;
}
a {
    color: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--bodyColor);
    font-family: var(--primaryFont);
    font-weight: 400;
    line-height: 1;
    margin-block-end: 1.5rem;
    margin-block-start: 0;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}
h1 a:focus,
h1 a:hover,
h2 a:focus,
h2 a:hover,
h3 a:focus,
h3 a:hover,
h4 a:focus,
h4 a:hover,
h5 a:focus,
h5 a:hover,
h6 a:focus,
h6 a:hover {
    opacity: 0.9;
}
.h1,
h1 {
    font-size: 3.5rem;
}
.h2,
h2 {
    font-size: 2rem;
}
.h3,
h3 {
    font-size: 1.75rem;
}
.h4,
h4 {
    font-size: 1.2rem;
    font-weight: 600;
}
.h5,
h5 {
    font-size: 1.25rem;
}
.h6,
h6 {
    font-size: 1.15rem;
}
p {
    margin-block-end: 1.5rem;
    margin-block-start: 0;
}
p:last-of-type {
    margin-block-end: 0 !important;
}
.img-fluid {
    display: block;
    height: auto;
    max-width: 100%;
}
.clearfix:after {
    clear: both;
    content: "";
    display: block;
}
.btn-hold {
    margin-block-start: 2rem;
    text-align: center;
}
a.btn-default {
    font-family: var(--primaryFont);
    color: var(--whiteColor);
    font-size: 1.15rem;
    text-transform: uppercase;
    background: var(--primaryColor);
    padding: 0.8rem 2.25rem;
    letter-spacing: 0.0625rem;
    text-align: center;
    transition: all 0.25s ease-in-out;
    display: inline-block;
}
a.btn-default:hover {
    background-color: rgba(72, 69, 55, 0.7);
    transition: all 0.2s ease-in-out;
}
a.btn-default.btn-large {
    min-width: 50%;
    text-transform: uppercase;
}
a.btn-default.btn-wide {
    width: 100%;
}

.global-wrapper {
    flex: 1 0 auto;
    padding-inline: 1rem;
}
.container,
.container-liquid {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}
.container {
    max-width: var(--siteWidth);
}
.container-liquid {
    max-width: var(--fluidSiteWidth);
}
.hamburger {
    cursor: pointer;
    display: none;
    margin-inline-start: 18px;
}
.hamburger .line {
    background-color: var(--whiteColor);
    height: 0.1875rem;
    margin-bottom: 0.25rem;
    width: 1.5rem;
    border-radius: 1rem;
}
.hamburger .line,
.hamburger .line:last-child {
    transition: transform 0.15s ease-out;
    -webkit-transition: transform 0.15s ease-out;
}
.hamburger .line:last-child {
    margin-bottom: 0;
}
.hamburger:hover .line {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}
.hamburger-close {
    cursor: pointer;
    height: auto;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 18px;
    top: 18px;
    width: 15px;
}
.hamburger-close img {
    transition: transform 0.15s ease-out;
    -webkit-transition: transform 0.15s ease-out;
}
.hamburger-close:hover img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}
.slidemenu {
    bottom: 0;
    color: var(--whiteColor);
    left: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}
.slidemenu--open {
    pointer-events: all;
}
.slidemenu-nav {
    background: var(--primaryColor);
    bottom: 0;
    overflow: auto;
    padding: 3.1875rem 1.875rem 2.8125rem;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    width: 300px;
}
.slidemenu--open .slidemenu-nav {
    transform: translateX(0);
}
.slidemenu-overlay {
    background: rgba(0, 0, 0, 0.75);
    bottom: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.slidemenu--open .slidemenu-overlay {
    opacity: 1;
}
.slidemenu-nav ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.slidemenu-nav ul li {
    font-size: 1rem;
    text-transform: uppercase;
    list-style: none;
    letter-spacing: 0.0625rem;
}
.slidemenu-nav ul li a {
    color: var(--whiteColor);
}
.slidemenu-nav ul li > ul.sub-menu {
    padding-block-start: 1rem;
}
.slidemenu-nav ul li > ul.sub-menu li {
    padding-inline: 0.5rem;
}
.slidemenu-nav ul li > ul.sub-menu li a {
    padding: 0;
}
/* Header */
.admin-bar .header {
    top: 32px;
}
.header-grid {
    display: flex;
    justify-content: space-between;
    padding-block: 2rem;
}
#logo-text {
    font-size: 1.3rem;
    text-transform: uppercase;
    font-family: Georgia, Times New Roman, Times, serif;
}
#logo-text span:nth-child(1) {
    background-color: var(--bodyColor);
    color: var(--blackColor);
    display: inline-block;
    width: 1.8rem;
    text-align: center;
    margin-inline-end: 0.125rem;
}
#logo-text:hover span {
    color: var(--accentColor);
}
#logo-text:hover span:nth-child(1) {
    background-color: var(--accentColor);
    color: var(--blackColor);
}
.header-navigation {
    display: flex;
    align-items: center;
}
.header-navigation ul.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    list-style: none;
}
.header-navigation .main-menu li {
    display: flex;
}
.header-navigation .main-menu li a {
    color: var(--bodyColor);
    font-size: 1rem;
    letter-spacing: 0.0625rem;
    text-transform: uppercase;
}
.header-navigation ul.main-menu > li.menu-item-has-children {
    position: relative;
}
.header-navigation ul.main-menu > li.menu-item-has-children a {
    position: relative;
    padding-inline-end: 1.5rem;
}
.header-navigation ul.main-menu > li.menu-item-has-children > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 0.75rem;
    height: 0.75rem;
    background: url("assets/img/icon-caret.svg") no-repeat right center;
    background-size: 0.75rem;
    transform: translateY(-50%);
}
.header-navigation ul.main-menu > li .sub-menu {
    position: absolute;
    left: -2rem;
    top: 100%;
    background-color: var(--blackColor);
    padding: 1rem 0;
    transform: rotateX(90deg);
    transition: transform 0.5s ease-in-out;
    perspective: 1000px;
    z-index: 99;
    list-style: none;
    min-width: 16rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
        rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}
.header-navigation ul.main-menu > li:hover .sub-menu {
    animation: rotateMenu 400ms ease-in-out forwards;
    transform-origin: top center;
}
@keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg);
    }
    70% {
        transform: rotateX(20deg);
    }
    100% {
        transform: rotateX(0deg);
    }
}
.header-navigation ul.main-menu > li:last-child > .sub-menu {
    left: auto;
    right: 0;
}
.sub-menu li a {
    padding: 0 2rem;
    display: block;
    font-size: 0.9rem !important;
    white-space: nowrap;
    color: var(--whiteColor);
}
.header-navigation .main-menu > li:hover > a,
.header-navigation .main-menu > li.current-menu-item > a,
.header-navigation .main-menu > li.current-menu-parent > a,
.sub-menu li:hover a,
.sub-menu li.current-menu-item a {
    color: var(--accentColor);
}

/* Hero Section */
.hero-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-block: 4rem 3rem;
    position: relative;
}
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 5;
}
.hero-content h1 {
    color: var(--whiteColor);
    text-transform: uppercase;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
    padding-block-end: 2rem;
    margin-block-end: 2rem;
    position: relative;
    text-align: center;
}
.hero-content h1::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 9rem;
    height: 0.125rem;
    background: var(--whiteColor);
}
.hero-content p {
    font-size: 1.25rem;
    color: var(--whiteColor);
}

/* Intro Section */
.intro-section {
    margin-block: 5rem;
}
.intro-info {
    columns: 3;
    column-gap: 5rem;
}
.intro-info p {
    color: var(--whiteColor);
}

/* Coaching Section */
.coaching-section {
    margin-block: 3rem 5rem;
}
.coaching-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
.image-ratio-box {
    position: relative;
    width: 100%;
    height: 0;
    padding-block-start: 45%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-ratio-box h4 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 5;
    color: var(--whiteColor);
    text-align: center;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}
.image-ratio-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 4;
}
.image-ratio-box:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(129, 215, 66, 0.5);
    z-index: 4;
    transition: all 0.5s ease-in-out;
}
.image-ratio-box img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 3;
}

/* Page Content */
.page-content,
.default-section,
.two-column-section {
    margin-block: 5rem;
}
.page-content ul,
.default-section ul,
.two-column-section ul {
    margin-block-end: 1.75rem;
    margin-inline-start: 1.35rem;
}
.page-content p,
.page-content ul li,
.default-section p,
.default-section ul li,
.two-column-section p,
.two-column-section ul li {
    font-size: 1.2rem;
}

/* Related Section */
.related-section {
    margin-block: 5rem;
}
.related-grid {
    display: flex;
    width: 100%;
}
.related-slider {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
}
/* Navigation buttons styling */
.related-slider .swiper-button-next,
.related-slider .swiper-button-prev {
    color: var(--primaryColor);
}

.related-slider .swiper-button-next:after,
.related-slider .swiper-button-prev:after {
    font-size: 24px;
}
.related-ratio-box {
    position: relative;
    width: 100%;
    height: 0;
    padding-block-start: 56.25%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.related-ratio-box h6 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 5;
    color: var(--whiteColor);
    text-align: center;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}
.related-ratio-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 4;
}
.related-ratio-box img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 3;
}

/* Two Column Grid */
.two-column-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-block: 4rem;
}
.two-column-grid.image-left {
    grid-template-columns: 1fr 3fr;
}
.two-column-grid.image-right {
    grid-template-columns: 3fr 1fr;
}

.default-content {
    text-align: center;
}
.text-left {
    text-align: left;
}

/* Info Grid */
.info-section {
    padding: 3rem 1rem;
    margin-block: 3rem;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 2rem;
}
.info-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}
.info-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.info-content h2 {
    font-size: 2rem;
    color: var(--whiteColor);
    margin-block-end: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
}
.info-content h3 {
    font-size: 1.5rem;
    color: var(--blackColor);
    margin-block-end: 0;
    line-height: 1.2;
}
.info-details ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.info-details p,
.info-details ul li {
    color: var(--whiteColor);
    font-size: 1.25rem;
    margin-bottom: 0;
}

/* Logoes Slider */
.references-slider {
    margin-block: 5rem;
}
.logo-grid .swiper-slide {
    background: var(--whiteColor);
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
}
.logo-grid .swiper-slide img {
    height: 5rem;
    width: auto;
}

/* Footer */
.footer {
    background: var(--primaryColor);
    padding-block: 3rem;
    border-top: 0.0625rem solid var(--bodyColor);
}
.footer-grid {
    display: grid;
    grid-template-columns: 18rem 1fr 18rem;
    gap: 3rem;
}
.footer-grid * {
    color: var(--bodyColor);
}
.footer-grid h5,
.footer-grid p,
.footer-menu ul li {
    font-size: 1rem;
    letter-spacing: 0.0625rem;
}
.footer-contact {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}
.footer-menu ul {
    display: flex;
    flex-direction: column;
    text-align: right;
    list-style: none;
    gap: 0.25rem;
    text-transform: uppercase;
}
.footer-address-two {
    text-align: right;
    margin-block-end: 2rem;
}
.footer-contact > p,
.footer-contact > p a {
    color: var(--whiteColor);
    font-size: 1.125rem;
}
.footer-contact a:hover,
.footer-menu ul li:hover a {
    color: var(--accentColor);
}
@media (max-width: 1510px) {
    :root {
        --siteWidth: 1360px;
        --fluidSiteWidth: var(--siteWidth);
    }
    h1 {
        font-size: 3rem;
    }
    .info-content h2 {
        font-size: 1.75rem;
    }
}
@media (max-width: 1440px) {
    :root {
        --siteWidth: 1280px;
    }
    .header-navigation ul.main-menu {
        gap: 2rem;
    }
    .info-content h2 {
        font-size: 1.5rem;
    }
    .info-content h3 {
        font-size: 1.25rem;
    }
    .info-details p,
    .info-details ul li {
        font-size: 1.15rem;
    }
}
@media (max-width: 1280px) {
    :root {
        --siteWidth: 1170px;
    }
}
@media (max-width: 1199px) {
    h1 {
        font-size: 2.5rem;
    }
    h4 {
        font-size: 1rem;
    }
    :root {
        --siteWidth: 970px;
    }
    .hamburger {
        display: block;
    }
    .header-navigation ul.main-menu {
        display: none;
    }
    .coaching-grid {
        gap: 1.5rem;
    }
    .two-column-grid.image-left {
        grid-template-columns: 1fr 2fr;
    }
    .two-column-grid.image-right {
        grid-template-columns: 2fr 1fr;
    }
}
@media (max-width: 991px) {
    :root {
        --siteWidth: 720px;
    }
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .info-icons {
        grid-column: 1/3;
    }
    .info-icons img {
        width: 15rem;
    }
    .coaching-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .two-column-grid.image-left,
    .two-column-grid.image-right {
        grid-template-columns: 1fr;
    }
    .two-column-grid.image-right .right-column {
        order: -1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid * {
        text-align: center;
    }
}
@media (max-width: 767px) {
    :root {
        --siteWidth: 540px;
    }
    h1 {
        font-size: 1.75rem;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
    .info-icons {
        grid-column: 1/2;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .coaching-grid {
        grid-template-columns: 1fr;
    }
}
