:root {
    --navbar-height: 80px;
}

#promo {
    min-height: calc((100vh - var(--navbar-height)) / 2);
    min-height: calc((100dvh - var(--navbar-height)) / 2);
}

.uk-section[id] {
    scroll-margin-top: var(--navbar-height);
}

/* --- ACCORDION --- */
/*.uk-accordion li {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 15px 15px;
    margin-bottom: 10px;
}
.uk-accordion-title:hover {
    text-decoration: none;
}
.uk-accordion-title::before {
    content: "";
    width: 1.4em;
    height: 1.4em;
    margin-left: 10px;
    float: right;
    background-image: url(data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%221%22%20height%3D%2213%22%20x%3D%226%22%20y%3D%220%22%20%2F%3E%0A%3C%2Fsvg%3E);
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.uk-open>.uk-accordion-title {
    text-decoration: none;
}
.uk-open>.uk-accordion-title::before {
    background-image: url(data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%3C%2Fsvg%3E);
}*/

/* --- ACCORDION v2 --- */
ul.uk-accordion > li {
    background: #fff !important;
    margin-bottom: 15px;
    /*padding: 8px 15px;*/
}
ul.uk-accordion > li > a,
ul.uk-accordion > li.uk-open > a {
    background: #f1c40f url(../img/pattern.png) !important;
    border: 1px solid rgba(0,0,0,0.25);
    border-radius: 5px;
    padding: 8px 15px;
    text-decoration: none;
}
ul.uk-accordion > li > .uk-accordion-content {
    /*background: transparent !important;*/
    margin: 0;
    /*padding: 8px 15px;*/
}
.uk-accordion-content {
    background: transparent !important;
    padding: 8px 15px;
}

/*
 * Nav items
 */
.uk-navbar-nav > li > a {
    /*color: #000;*/
    color: #333333;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.1s ease-in-out;
    transition-property: color, background-color;

    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .3s;
}
/*
 * Hover
 * Apply hover style also to focus state and if dropdown is opened
 */
.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li > a:focus,
.uk-navbar-nav > li > a.uk-open {
    color: red;
    outline: none;
    background-size: 100% 3px;
}
/* OnClick */
.uk-navbar-nav > li > a:active {
    color: red;
}
/* Active */
.uk-navbar-nav > li.uk-active > a {
    /*color: rgba(224,67,27,1);*/
    color: red;
}

.uk-offcanvas-bar .uk-nav-primary > li > a {
    font-size: 1rem;
    line-height: 1.2;
    color: #999;
}
.uk-offcanvas-bar .uk-nav-primary > li > a:hover,
.uk-offcanvas-bar .uk-nav-primary > li > a:focus {
    color: red;
}

/* --- HEADERS --- */
h2.tm-header-1 {
    font-size: 24px;
    color: #111;
    /*text-transform: uppercase;*/
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}
h2.tm-header-1::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 4px;
    background: orangered;
    bottom: 1px;
    left: calc(50% - 60px);
}

h2.tm-header-2 {
    font-size: 24px;
    /*color: #111;*/
    /*text-transform: uppercase;*/
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}
h2.tm-header-2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 2px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}
h2.tm-header-2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 4px;
    background: orangered;
    bottom: 0;
    left: calc(50% - 20px);
}

/* --- HIDE ON HOVER EFFECT --- */
.tm-transition-slide-bottom {
    transform: translateY(0);
    opacity: 1;
    transition: all .3s ease;
}
.uk-transition-toggle:hover .tm-transition-slide-bottom,
.uk-transition-toggle:focus .tm-transition-slide-bottom {
    transform: translateY(100%);
    opacity: 0;
}
