@import url('https://fonts.googleapis.com/css?family=Work+Sans:300,regular,800%7CShadows+Into+Light:regular');

.uk-navbar-container {
    transition: background 0.3s ease-in-out;
}

.uk-navbar-container:hover {
    background: var(--orange-color);
}

.uk-navbar-dropdown .sj-dropdown {

    .el-item {
        padding: 12px;
    }

    .el-item:hover {
        background: var(--global-secondary-color-200);
    }

    .uk-active {
        background: var(--global-secondary-color-200);
    }
}


.sj-footer {
    background:#f8f8f8
}



/* BUTTON */
.sj-button {
    transition: all 0.3s ease-in-out;
}
.sj-button:hover {
    scale: 1.05;
}


.sj-button-1 {
    width: min-content;

    line-height: inherit;
    cursor: pointer;
    background-color: #3898ec;
    border: 0;
    border-radius: 0;
	
    background-color: var(--global-secandary-color);
    background-image: linear-gradient(159deg, var(--global-secandary-color), #8c59f5);
    color: #fff;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    min-width: 50px;
    min-height: 50px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: all .4s ease-out;
    display: flex;
    box-shadow: inset -1px -1px 5px 2px #4428524d, inset 1px 1px 3px #eee6ff70, 1px 1px 2px #4e3172;

}

.sj-button-1, .sj-button-1:hover, .sj-button-1:active, .sj-button-1:visited, .sj-button-1:focus {
        color: #fff !important;
        text-decoration: none;
}

.sj-button-1:hover {
    box-shadow: inset 6px 6px 8px 6px #201b3d38, inset -4px -4px 4px #eee6ff00, 1px 1px 3px 1px #5b3acc;
  }




.hero-title {
    color: #fff;
}


.regal-h1 {
    color:  var(--regal-color);
    font-size: var(--regal-h1-font-size);
    font-weight: var(--regal-h1-font-weight);

    margin:0;
    padding:0;
}

.regal-h4 {
    color:  var(--regal-color);
    font-size: var(--regal-h4-font-size);
    font-weight: var(--regal-h4-font-weight);
    text-transform: none;
    margin: 10px 0px 10px 0px;
    padding:0;
}

.regal-p {
    color:  var(--regal-color);
    font-size: var(--regal-p-font-size);
    font-weight: var(--regal-p-font-weight);
    margin: 10px 0px 10px 0px;
    padding:0;
}

.regal-bg {
    background-color: var(--regal-sienna-color);
}

.regal-balken-top {
    border-top: 10px solid var(--regal-hell);
}

.regal-balken-left {
    border-left: 10px solid var(--regal-hell);
}








.regal-container {
    position: relative;
}

.regal-content {
    max-width: 1200px;
    box-sizing: border-box;
}

.regal-left {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.regal-left:after {
    content: "";
    border-left: 20px solid var(--regal-hell);
    background-image: url("https://cdn.prod.website-files.com/6145b41cb7209c5a3fd862e9/6150973a481e2c431789a908_stickjoe_Regal1.svg");
    background-position: 0 0;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;

    width: 950px;
    height: 100%;

    left:0;
    top: 0;
}

.regal-right {
    position: relative;
    overflow: hidden;
}

.regal-right:after {
    content: "";
    border-right: 20px solid var(--regal-hell);
    background-image: url("https://cdn.prod.website-files.com/6145b41cb7209c5a3fd862e9/6150973a481e2c431789a908_stickjoe_Regal1.svg");
    background-position: 0 0;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;

    width: 950px;
    height: 100%;

    right:0;
    top: 0;
}










.hero-overlay {
    background-image: linear-gradient(#afaeae99, #afaeae99);
    justify-content: center;
    align-items: center;
    height: 90vh;
    max-height: 780px;
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
}






/* CARD */

.stickjoe-card .uk-grid .el-item {
    transition: all 0.3s ease-in-out;

    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background: var(--white-smoke);

    img {
        object-fit: contain;
        object-position: 50% 50%;

        width: 100%;
    }
}
.stickjoe-card .uk-grid .el-item:hover {
    transform: scale(1.05);
    background: var(--global-secondary-color-200);
    color: var(--global-secandary-color) !important;
}
.stickjoe-card .uk-grid .el-item:hover .el-title {
    color: var(--global-secandary-color);
}



