:root {
    --color-p: #ff751e;
    --color-p-d: #de5602;
    --color-s: #858585;
    --color-s-d: #8c8c8c;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    background-color: #fff;
    scroll-padding-top: 86px;
}
  
* {
    font-family: "Poppins", sans-serif;
}

*, ::after, ::before {
    box-sizing: border-box;
}
  
body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-color: #fff;
    max-width: 2200px;
    margin: 0 auto;
}

nav, header, main, footer {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
}

main {
    flex-grow: 1;
    background: #c9c9c9;
}

main section > div {
    background: #f2f2f2;
}

@media (max-width: 767px) {
    section {
        padding-top: 0;
        padding-bottom: 15px;
    }
}

@media (min-width: 768px) {
    section {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    section:first-of-type {
        padding-top: 30px;
    }
    
    section:last-of-type {
        padding-bottom: 30px;
    }
    
    section:only-of-type {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media (min-width: 992px) {
    section {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    section:first-of-type {
        padding-top: 50px;
    }

    section:last-of-type {
        padding-bottom: 50px;
    }

    section:only-of-type {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.button-click-area {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .block-shadow {
        box-shadow: 0 0 20px rgba(33, 33, 33, 0.6);
    }
}

/* Fonts */
.font-serif {
    font-family: "Abril Fatface", serif;
}

.font-shadow {
    text-shadow: 0.05em 0.05em 0.1em #000;
}

.font-text-center {
    text-align: center;
}

p, span, a, ul, ul li, ol, ol li {
    color: #000;
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: none;
}

.tr-link-a {
    color: #fff;
    position: relative;
    cursor: pointer;
    transition: color 0.3s;
}

.tr-link-active {
    color: var(--color-p) !important;
}

.tr-link-a:before,
.tr-link-a:after {
  content: '';
  position: absolute;
  height: 1px;
  width: auto;
  top: auto;
  bottom: -1px;
  left: 50%;
  right: 50%;
  transition: left 0.3s, right 0.3s;
  background: var(--color-p);
}

@media (max-width: 1023px) {
    .tr-link-a:before,
    .tr-link-a:after {
        display: none;
    }
}
@media (min-width: 1024px) {
    .tr-link-a:hover {
        color: var(--color-p) !important;
    }
    .tr-link-a:hover:after {
        left: 0;
        right: 0;
    }
}

a.logo {
    display: inline-block;
    width: auto;
    height: auto;
    text-decoration: none;
}

a.logo:hover {
    text-decoration: none;
}

p {
    margin-bottom: 0.8em;
}

p.small, span.small {
    font-size: 1rem;
}

p.bigger, span.bigger {
    font-size: 1.8rem;
}

p.big, a.big, span.big {
    font-size: 2rem;
}

h1, h1 *, .h1, .h1 *,
h2, h2 *, .h2, .h2 *,
h3, h3 *, .h3, .h3 *,
h4, h4 *, .h4, .h4 *,
h5, h5 *, .h5, .h5 *,
h6, h6 *, .h6, .h6 * {
    color: var(--color-p);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1, h1 *, .h1, .h1 * {
    font-size: 3.5rem;
}

h2, h2 *, .h2, .h2 * {
    font-size: 3rem;
}

h3, h3 *, .h3, .h3 * {
    font-size: 2.6rem;
}

h4, h4 *, .h4, .h4 * {
    font-size: 2.4rem;
}

h5, h5 *, .h5, .h5 * {
    font-size: 2.2rem;
}

h6, h6 *, .h6, .h6 * {
    font-size: 2.2rem;
}

.hm, .hm * {
    font-size: 2rem;
}

.hs, .hs * {
    font-size: 1.8rem;
}

@media (min-width: 576px) {
    h1, h1 *, .h1, .h1 * {
        font-size: 4rem;
    }
    
    h2, h2 *, .h2, .h2 * {
        font-size: 3.5rem;
    }
    
    h3, h3 *, .h3, .h3 * {
        font-size: 3rem;
    }
    
    h4, h4 *, .h4, .h4 * {
        font-size: 2.6rem;
    }
    
    h5, h5 *, .h5, .h5 * {
        font-size: 2.4rem;
    }
    
    h6, h6 *, .h6, .h6 * {
        font-size: 2.2rem;
    }

    .hm, .hm * {
        font-size: 2rem;
    }

    .hs, .hs * {
        font-size: 1.8rem;
    }
}

@media (min-width: 768px) {
    h1, h1 *, .h1, .h1 * {
        font-size: 4.5rem;
    }
    
    h2, h2 *, .h2, .h2 * {
        font-size: 4rem;
    }
    
    h3, h3 *, .h3, .h3 * {
        font-size: 3.5rem;
    }
    
    h4, h4 *, .h4, .h4 * {
        font-size: 3rem;
    }
    
    h5, h5 *, .h5, .h5 * {
        font-size: 2.6rem;
    }
    
    h6, h6 *, .h6, .h6 * {
        font-size: 2.2rem;
    }

    .hm, .hm * {
        font-size: 2rem;
    }

    .hs, .hs * {
        font-size: 1.8rem;
    }
}

@media (min-width: 992px) {
    h1, h1 *, .h1, .h1 * {
        font-size: 5rem;
    }
    
    h2, h2 *, .h2, .h2 * {
        font-size: 4.5rem;
    }
    
    h3, h3 *, .h3, .h3 * {
        font-size: 4rem;
    }
    
    h4, h4 *, .h4, .h4 * {
        font-size: 3.5rem;
    }
    
    h5, h5 *, .h5, .h5 * {
        font-size: 3rem;
    }
    
    h6, h6 *, .h6, .h6 * {
        font-size: 2.4rem;
    }

    .hm, .hm * {
        font-size: 2.2rem;
    }

    .hs, .hs * {
        font-size: 2rem;
    }

    p.bigger, span.bigger {
        font-size: 2rem;
    }
    
    p.big, a.big, span.big {
        font-size: 2.2rem;
    }
}

@media (min-width: 1280px) {
    h1, h1 *, .h1, .h1 * {
        font-size: 7rem;
    }
    
    h2, h2 *, .h2, .h2 * {
        font-size: 6rem;
    }
    
    h3, h3 *, .h3, .h3 * {
        font-size: 5rem;
    }
    
    h4, h4 *, .h4, .h4 * {
        font-size: 4.5rem;
    }
    
    h5, h5 *, .h5, .h5 * {
        font-size: 3.6rem;
    }
    
    h6, h6 *, .h6, .h6 * {
        font-size: 2.6rem;
    }

    .hm, .hm * {
        font-size: 2.4rem;
    }

    .hs, .hs * {
        font-size: 2rem;
    }

    p.big, a.big, span.big {
        font-size: 2.4rem;
    }
}

@media (min-width: 1400px) {
    h1, h1 *, .h1, .h1 * {
        font-size: 8rem;
    }
    
    h2, h2 *, .h2, .h2 * {
        font-size: 7rem;
    }
    
    h3, h3 *, .h3, .h3 * {
        font-size: 6rem;
    }
    
    h4, h4 *, .h4, .h4 * {
        font-size: 5rem;
    }
    
    h5, h5 *, .h5, .h5 * {
        font-size: 4rem;
    }
    
    h6, h6 *, .h6, .h6 * {
        font-size: 3rem;
    }

    .hm, .hm * {
        font-size: 2.6rem;
    }

    .hs, .hs * {
        font-size: 2.2rem;
    }

    p.big, a.big, span.big {
        font-size: 2.6rem;
    }
}

.f-w-n {
    font-weight: 400;
}

.f-w-m {
    font-weight: 500;
}

.f-w-b {
    font-weight: 600;
}
/* Fonts */

/* Base */
.bg-black {
    background-color: var(--color-s);
}

.bg-black p,
.bg-black span,
.bg-black a,
.bg-black ul,
.bg-black ul li,
.bg-black ol,
.bg-black ol li {
    color: #fff;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.container, .container-fluid {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.col,
.col-auto,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,

.col-sm,
.col-sm-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,

.col-md,
.col-md-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,

.col-lg,
.col-lg-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,

.col-xl,
.col-xl-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,

.col-xxl,
.col-xxl-auto,
.col-xxl-1,
.col-xxl-2,
.col-xxl-3,
.col-xxl-4,
.col-xxl-5,
.col-xxl-6,
.col-xxl-7,
.col-xxl-8,
.col-xxl-9,
.col-xxl-10,
.col-xxl-11,
.col-xxl-12 {
    display: block;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.col-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
}
.col-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
}
.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}
.col-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
}
.col-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
}
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
.col-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
}
.col-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
}
.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}
.col-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
}
.col-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
}
.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-sm-1 {
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%;
    }
    .col-sm-2 {
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
    }
    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-sm-4 {
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }
    .col-sm-5 {
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%;
    }
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-sm-7 {
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%;
    }
    .col-sm-8 {
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%;
    }
    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-sm-10 {
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%;
    }
    .col-sm-11 {
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%;
    }
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-md-1 {
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%;
    }
    .col-md-2 {
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
    }
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4 {
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }
    .col-md-5 {
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-7 {
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%;
    }
    .col-md-8 {
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%;
    }
    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-md-10 {
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%;
    }
    .col-md-11 {
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%;
    }
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-lg-1 {
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%;
    }
    .col-lg-2 {
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
    }
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }
    .col-lg-5 {
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%;
    }
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%;
    }
    .col-lg-8 {
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%;
    }
    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-10 {
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%;
    }
    .col-lg-11 {
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%;
    }
    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-xl-1 {
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%;
    }
    .col-xl-2 {
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
    }
    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xl-4 {
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }
    .col-xl-5 {
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%;
    }
    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xl-7 {
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%;
    }
    .col-xl-8 {
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%;
    }
    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xl-10 {
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%;
    }
    .col-xl-11 {
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%;
    }
    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-xxl-1 {
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%;
    }
    .col-xxl-2 {
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
    }
    .col-xxl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xxl-4 {
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }
    .col-xxl-5 {
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%;
    }
    .col-xxl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xxl-7 {
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%;
    }
    .col-xxl-8 {
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%;
    }
    .col-xxl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xxl-10 {
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%;
    }
    .col-xxl-11 {
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%;
    }
    .col-xxl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Base */

/* Loading effects */
    .on-scroll-loader-hidden {
        opacity: 0;
        transition: all 0.5s;
    }

    .on-scroll-loader-hidden.on-scroll-loader-hidden-popup:not(.on-scroll-loader-show) {
        transform: scale(0);
    }

    .on-scroll-loader-hidden.on-scroll-loader-hidden-side-left:not(.on-scroll-loader-show),
    .on-scroll-loader-hidden.on-scroll-loader-hidden-side:nth-of-type(odd):not(.on-scroll-loader-show) {
        transform: translateX(-100%);
    }

    .on-scroll-loader-hidden.on-scroll-loader-hidden-side-right:not(.on-scroll-loader-show),
    .on-scroll-loader-hidden.on-scroll-loader-hidden-side:nth-of-type(even):not(.on-scroll-loader-show) {
        transform: translateX(100%);
    }

    @media(prefers-reduced-motion) {
        .on-scroll-loader-hidden {
            transition: none;
        }
    }

    .on-scroll-loader-show {
        opacity: 1;
    }

    .on-scroll-loader-hidden.on-scroll-loader-hidden-popup.on-scroll-loader-show {
        transform: scale(1);
    }

    .on-scroll-loader-hidden.on-scroll-loader-hidden-side-left.on-scroll-loader-show,
    .on-scroll-loader-hidden.on-scroll-loader-hidden-side:nth-of-type(odd).on-scroll-loader-show,
    .on-scroll-loader-hidden.on-scroll-loader-hidden-side-right.on-scroll-loader-show,
    .on-scroll-loader-hidden.on-scroll-loader-hidden-side:nth-of-type(even).on-scroll-loader-show {
        transform: translateX(0);
    }
/* Loading effects */

/* Nav */
#menu-placeholder {
    position: relative;
    width: 100%;
    height: 84px;
    background: var(--color-s);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0 auto;
    padding-top: 15px;
    padding-bottom: 15px;
    z-index: 10000;
}

nav.navbar-top {
    position: absolute;
}

nav .navbar {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

nav .navbar-logo {
    display: inline-block;
    width: auto;
}

nav .navbar-logo .logo {
    display: inline-block;
    width: auto;
    max-width: 50%;
}

nav .navbar-logo .logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 200px;
    transition: max-width 0.3s;
}

nav.navbar-top .navbar-logo .logo img {
    max-width: 250px;
}

.navbar-list {
    background-color: var(--color-s);
    position: fixed;
    top: 0;
    right: -400px;
    left: auto;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-width: 400px;
    overflow: auto;
    transition: right 0.3s;
    padding: 30px;
    z-index: 9999;
}

.navbar-list.navbar-list-active {
    right: 0;
}

.navbar-close-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 5px;
    left: 5px;
    right: auto;
    bottom: auto;
    width: 30px;
    height: 30px;
}

.navbar-close-button:before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    transform: rotate(45deg);
}

.navbar-close-button:after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    transform: rotate(-45deg);    
}

.navbar-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 30px;
    height: 20px;
}

.navbar-button .navbar-button-line {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: #fff;
}

.navbar-list ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: auto;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-list ul li {
    width: 100%;
    padding: 5px;
    margin: 0;
}

.navbar-list ul li a {
    display: inline-block;
    width: 100%;
    padding: 0;
    margin: 0;
    color: #fff;
}

@media (min-width: 992px) {
    .navbar-list {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        width: auto;
        height: auto;
        max-width: unset;
        overflow: visible;
        transition: none;
        padding: 0;
        z-index: 0;
    }
    
    .navbar-list.navbar-list-active {
        right: auto;
    }

    .navbar-close-button {
        display: none;
    }

    .navbar-button {
        display: none;
    }

    .navbar-list ul {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: auto;
    }

    .navbar-list ul li {
        width: auto;
        padding: 0 15px;
    }
    
    .navbar-list ul li a {
        width: auto;
    }

    .navbar-list ul li a:hover {
        color: var(--color-p);
    }
}

.main-navbar-page-loading {
    width: 100%;
    height: 2px;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background: var(--color-s-d);
}

.main-navbar-page-loading #main-navbar-page-loading-bar {
    width: 0;
    height: 100%;
    background: var(--color-p);
}
/* Nav */

/* Header */
header #header-banner {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
}

header #header-banner .swiper-button-next,
header #header-banner .swiper-button-prev {
    color: var(--color-p);
}

header #header-banner .swiper-slide {
    position: relative;
    width: 100%;
    /*
    height: auto;
    */
    height: 0;
    padding-top: 25%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

header #header-banner .swiper-slide.swiper-slide-shadow:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #000;
    opacity: 0.5;
}

header #header-banner .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}

header #header-banner .swiper-slide .swiper-slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

header #header-banner .swiper-slide a.swiper-slide-content {
    cursor: pointer;
}

header #header-banner .swiper-slide .swiper-slide-content * {
    margin: 0;
}

header #header-banner .swiper-slide .slide-text {
    display: none;
}

header #header-banner .swiper-slide .slide-text p {
    color: #fff;
}

header #header-banner .swiper-slide .slide-text.slide-text--visible {
    display: block;
}

@media (min-width: 992px) {
    header #header-banner .swiper-slide .slide-text {
        display: block;
    }
}
/* Header */

/* Reference */
#references #reference-banner {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
}

#references #reference-banner .swiper-wrapper {
    height: auto;
}

#references #reference-banner .swiper-button-next,
#references #reference-banner .swiper-button-prev {
    color: var(--color-p);
}

#references #reference-banner .swiper-slide {
    position: relative;
    width: 100%;
    /*
    height: auto;
    */
    height: 0;
    padding-top: 25%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#references #reference-banner .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}

#references #reference-banner .swiper-slide a,
#references #reference-banner .swiper-slide > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*
    background-color: rgba(0,0,0,0.7);
    */
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 15px 50px;
    cursor: pointer;
}

#references #reference-banner .swiper-slide a *,
#references #reference-banner .swiper-slide > div * {
    padding: 15px;
    margin: 0;
    background-color: rgba(0,0,0,0.5);
}

#references #reference-banner .swiper-slide .slide-text {
    display: none;
}

#references #reference-banner .swiper-slide .slide-text p {
    color: #fff;
}


@media (min-width: 992px) {
    #references #reference-banner .swiper-slide .slide-text {
        display: block;
    }
}
/* Reference */

/* Footer */
footer {
    padding-top: 30px;
    padding-bottom: 30px;
}

footer .footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: 2px solid var(--color-p);
    padding-bottom: 15px;
}

footer .footer .footer-logo {
    display: inline-block;
    width: 100%;
    height: auto;
}

footer .footer .footer-logo .logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 150px;
}

footer .footer .footer-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: auto;
}

footer .footer .footer-items ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin: 0;
    margin-bottom: 15px;
    padding: 0;
    list-style: none;
}

footer .footer .footer-items:last-of-type ul:last-of-type {
    margin: 0;
}

footer .footer .footer-items ul li {
    display: inline-block;
    width: 100%;
    height: auto;
}

footer .footer .footer-items ul li a {
    display: inline-block;
    width: auto;
    height: auto;
    text-decoration: none;
}

@media (max-width: 1023px) {
    footer .footer .footer-items ul li a {
        text-decoration: underline;
    }
}

@media (min-width: 576px) {
    footer .footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    footer .footer .footer-logo {
        width: auto;
    }

    footer .footer .footer-logo .logo img {
        max-width: 200px;
    }
    
    footer .footer .footer-items {
        flex-direction: row;
        width: 100%;
    }

    footer .footer .footer-items ul {
        width: 100%;
        padding-right: 30px;
    }

    footer .footer .footer-items ul:last-of-type {
        padding-right: 0;
    }

    footer .footer .footer-items ul li {
        width: auto;
    }
}

@media (min-width: 992px) {
    footer {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (min-width: 1200px) {    
    footer .footer .footer-items {
        width: auto;
        max-width: 50%;
    }

    footer .footer .footer-items ul {
        width: auto;
        padding-right: 30px;
        margin: 0;
    }
}
/* Footer */

/* HP */
#services {

}

#services .container {
    padding: 0;
}

.advantage-item {
    padding: 15px;
}

.advantage-item .advantage-item-frame {
    padding: 15px;
    background: #f2f2f2;
    transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-item .advantage-item-frame .advantage-item-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    margin: 0 auto;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-item .advantage-item-frame .advantage-item-image.advantage-item-image-active {
    border: 2px solid var(--color-p);
}

.advantage-item .advantage-item-frame .advantage-item-image img,
.advantage-item .advantage-item-frame .advantage-item-image svg {
    display: block;
    width: 100%;
    height: auto;
    max-width: 200px;
    max-height: 200px;
    aspect-ratio: 1;
    opacity: 1;
    transition: opacity 0.3s;
}

.advantage-item .advantage-item-frame .advantage-item-image .advantage-item-image-text {
    text-align: center;
    font-size: 1.6rem;
    opacity: 1;
    transition: opacity 0.3s;
}

@media (max-width: 499px) {
    .advantage-item .advantage-item-frame .advantage-item-image .advantage-item-image-text {
        position: relative;
        margin-top: -20%;
    }    
}

@media (min-width: 500px) {
    .advantage-item .advantage-item-frame .advantage-item-image .advantage-item-image-text {
        position: absolute;
        bottom: 0;
        left: auto;
        right:auto;
        top: auto;
    }    
}

.advantage-item .advantage-item-frame .advantage-item-image .advantage-item-image-text h3 {
    font-size: 1.6rem;
    margin: 0;
}

@media (min-width: 1024px) {
    .advantage-item {
        border-left: 2px solid var(--color-s);
        border-right: 2px solid var(--color-s);
    }

    .advantage-item:first-of-type {
        border-left: none;
    }

    .advantage-item:last-of-type {
        border-right: none;
    }

    .advantage-item .advantage-item-frame .advantage-item-image:not(:hover) {
        cursor: pointer;
        transform: scale(1);
        box-shadow: none;
    }

    .advantage-item .advantage-item-frame .advantage-item-image:hover {
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(33, 33, 33, 0.6);
    }
}

.service-item {
    padding: 15px;
}

.service-item .service-item-frame {
    padding: 15px;
}

.service-item .service-item-frame .service-item-image {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 180px;
    padding: 15px;
    margin: 0 auto;
    border: 2px solid #fff;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item .service-item-frame .service-item-image.service-item-image-active {
    border: 2px solid var(--color-p);
}

.service-item .service-item-frame .service-item-image img,
.service-item .service-item-frame .service-item-image svg {
    display: block;
    width: 100%;
    height: auto;
    max-width: 200px;
    max-height: 200px;
    aspect-ratio: 1;
    opacity: 1;
    transition: opacity 0.3s;
}

.service-item .service-item-frame .service-item-image .service-item-image-text {
    text-align: center;
    position: absolute;
    font-size: 1.6rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-item .service-item-frame .service-item-image .service-item-image-text h3 {
    font-size: 1.6rem;
    margin: 0;
}

@media (min-width: 1024px) {
    .service-item {
        border-left: 2px solid var(--color-p);
        border-right: 2px solid var(--color-p);
    }

    .service-item:first-of-type {
        border-left: none;
    }

    .service-item:last-of-type {
        border-right: none;
    }

    .service-item .service-item-frame .service-item-image {
        cursor: pointer;
    }

    .service-item .service-item-frame .service-item-image:not(:hover) {
        transform: scale(1);
        box-shadow: none;
    }

    .service-item .service-item-frame .service-item-image:hover {
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(33, 33, 33, 0.6);
    }

    .service-item .service-item-frame .service-item-image:hover img,
    .service-item .service-item-frame .service-item-image:hover svg {
        opacity: 0.2;
    }

    .service-item .service-item-frame .service-item-image:hover .service-item-image-text {
        opacity: 1;
    }
}

#news {

}

#news .news-item {
    padding: 15px;
}

#news .news-item .news-item-frame {
    display: block;
    padding: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

#news .news-item .news-item-frame .news-item-image {
    display: inline-block;
    width: auto;
    border: 1px solid var(--color-s);
    margin-bottom: 15px;
}

#news .news-item .news-item-frame .news-item-title {
    height: 64.8px;
    overflow: hidden;
    margin-bottom: 10px;
}

#news .news-item .news-item-frame .news-item-title h3 {
    margin: 0;
}

#news .news-item .news-item-frame .news-item-text {
    height: 153.6px;
    overflow: hidden;
    margin-bottom: 0;
}

#news .news-item .news-item-frame .news-item-text p {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    #news .news-item .news-item-frame .news-item-title {
        height: 72px;
    }
}

@media (min-width: 1024px) {
    #news .news-item .news-item-frame:not(:hover) {
        transform: scale(1);
        box-shadow: none;
    }

    #news .news-item .news-item-frame:hover {
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(33, 33, 33, 0.6);
    }
}

@media (min-width: 1400px) {
    #news .news-item .news-item-frame .news-item-title {
        height: 79.2px;
    }
}
/* HP */

/* Kontakt */
.contact-item {
    padding: 15px;
}

.contact-item .contact-item-frame {
    background: var(--color-s);
    padding: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item .contact-item-frame .contact-item-row {
    display: inline-flex;
    flex-direction: row;
    gap: 5px;
    width: auto;
    height: auto;
}

.contact-item .contact-item-frame .contact-item-row span {
    transition: color 0.3s, text-shadow 0.3s;
}

.contact-item .contact-item-frame .contact-item-row svg {
    width: 26px;
    height: 26px;
    transition: fill 0.3s;
}

@media (min-width: 1024px) {
    .contact-item .contact-item-frame .contact-item-row:hover span,
    .contact-item .contact-item-frame:hover .contact-item-row.contact-item-row--person span {
        color: var(--color-p);
        text-shadow: 0.05em 0.05em 0.1em #000;
    }

    .contact-item .contact-item-frame .contact-item-row:hover svg,
    .contact-item .contact-item-frame:hover .contact-item-row.contact-item-row--person svg {
        filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.3));
    }
    
    .contact-item .contact-item-frame .contact-item-row:hover svg path,
    .contact-item .contact-item-frame:hover .contact-item-row.contact-item-row--person svg path {
        fill: var(--color-p);
    }
}

.contact-item .contact-item-frame .contact-item-text {
    display: flex;
    flex-direction: column;
}

.contact-item .contact-item-frame .contact-item-text,
.contact-item .contact-item-frame .contact-item-text * {
    color: #fff;
}

.contact-item .contact-item-frame .contact-item-text .contact-item-name {
    font-weight: bold;
}

@media (min-width: 1024px) {
    .contact-item .contact-item-frame:not(:hover) {
        transform: scale(1);
        box-shadow: none;
    }

    .contact-item .contact-item-frame:hover {
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(33, 33, 33, 0.6);
    }
}
/* Kontakt */

button.fl-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 10px;
    background: none;
    border: 2px solid var(--color-p);
    color: var(--color-p);
    outline: none;
    box-shadow: none;
    transition: color 0.3s, background 0.3s;
    cursor: pointer;
}

button.fl-btn:hover {
    background: var(--color-p);
    color: #fff;
}