/* Fonts */
@font-face {
    font-family: 'Noto Sans';
    src: url('../fonts/NotoSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('../fonts/NotoSans-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Saira';
    src: url('../fonts/Saira-VariableFont_wdth,wght.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Saira';
    src: url('../fonts/Saira-Italic-VariableFont_wdth,wght.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

.bodycolor {
    background: #ffaa00;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    width: 8px;
    background:white;
    border-left: 0 solid white;
    border-right: 0 solid white;
}
::-webkit-scrollbar-thumb {
    background: #cd001a;
    width: 0;
    height: 25%;
    transition: .5s ease;
    cursor: pointer;
}

/* General */
body {
    position: relative;
    color: #fff;
    font-size: 16px;
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    width: 100%; 
    overflow-x: hidden;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
.h1, .h2, .h3, .h4, .h5, h1, h2, h3, h4, h5 {
    line-height: 1.2; 
    font-family: 'Saira', sans-serif;
    text-transform: uppercase;
    font-weight: 900;
}
h1 {
    overflow-wrap: normal;
}
a, input, button, .navbar, .fixedmenu, .tp-bullet, .owl-dot, .owl-prev, .owl-next {
    transition: ease-in-out 0.3s;
    -webkit-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
    -ms-transition: ease-in-out 0.3s;
    -o-transition: ease-in-out 0.3s;
}
section, .section-padding {
    position: relative;
}
a {
    color: inherit;
    text-decoration: none;
}
.hidden {
    display: none;
}
a:active, a:hover {
    color: #d41120;
}

.btn.focus, .btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

p:last-child {
    margin-bottom: 0 !important; 
}
.fa, .far, .fas {
    display: inline;
}
.relative {
    position: relative;
}
.hidden {
    display: none;
}
section {
    padding: 7.5rem 0;
}
.padding-bottom {
    padding-bottom: 7.5rem;
}
.padding-top {
    padding-top: 7.5rem;
}
.container-fluid {
    max-width: 1920px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-80 {
    margin-bottom: 80px;
}

/* Background colors */
.bg-black {
    background: #000;
}
.bg-red-dark {
    background: #62170f;
}

/* Header */
.logo {
    margin-top: 45px;
    z-index: 100;
}
.logo img {
    width: 100%;
    height: auto;
}
.logo-head {
    position: absolute;
    top: 0;
    z-index: 80;
    height: 200px;
    width: 100%;
    padding: 0;
}
.logo-head .container {
    position: relative;
    height: 200px;
    display: flex;
    align-items: normal;
}
.header-bg {
    background-image: url(../img/header.png);
    background-size: cover;
    background-position: right top;
    position: absolute;
    width: 1840px;
    height: 391px;
    top: 0;
    right: 0;
}
.main {
    flex: 1;
}

/* Side Menu */
.side-menu {
    width: 380px;
    position: fixed;
    top: 50px;
    right: 20px;
    z-index: 90;
    height: auto;
    transition: all .5s ease;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
}
.menu-head {
    width: 100%;
    height: auto;
}
.menu-bg {
    width: 100%;
    height: auto;
    background: #cd001a;
    border-radius: 0 0 15px 15px;
    padding: 25px;
    position: relative;
    margin-top: -5px;
}

.side-menu.side-menu-active {
    visibility: visible; 
    opacity: 1;
    z-index: 101;
}
.side-menu .navbar-brand {
    margin: 0 0 2.5rem 0;
}
/* --- Side menu dropdown overrides --- */
.side-menu .dropdown-menu {
    display: none !important;
}

.side-menu .dropdown.show>.dropdown-menu {
    display: block !important;
}

/* --- Side menu dropdown static override --- */
.side-menu .dropdown-menu {
    position: static !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    float: none !important;
    min-width: 100%;
    background: #cd001b !important;
    color: #fff !important;
    box-shadow: none !important;
    border: none;
    border-radius: 0;
    margin: 0;
}

.side-menu .dropdown {
    position: relative;
}

/* menu close btn */
.side-menu .btn-close {
    height: 33px;
    width: 33px;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 30px;
    right: 45px;
    cursor: pointer;
}
.side-menu.before-side .btn-close{
    display: none;
}
.side-menu .btn-close::before, .side-menu .btn-close::after {
    position: absolute;
    left: 16px;
    content: ' ';
    height: 24px;
    width: 2px;
    background: #ffffff;
    top: 5px;
}
.side-menu .btn-close:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.side-menu .btn-close:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* menu open btn */
.nav-icon {
    cursor: pointer;
    width: 37px;
    height: 37px;
    transform: skewY(-12deg); 
    position: absolute;
    display: inline-block;
}
.nav-icon:after, .nav-icon:before, .nav-icon div {
    background-color: #cd001a;
    content: '';
    display: block;
    height: 6px;
    border-radius: 3px;
    margin: 5px 0;
    transition: all 0.2s ease-in-out;
}
.nav-open .nav-icon:before {
    background-color: #fff;
    transform: translateY(13px) rotate(135deg);
}
.nav-open .nav-icon div {
    transform: scale(0);
}
.nav-open .nav-icon:after {
    background-color: #fff;
    transform: translateY(-13px) rotate(-135deg);
}
.sidemenu-btn {
    position: fixed;
    top: 90px;
    right: 80px;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    z-index: 9010;
}
.side-menu .inner-wrapper {
    height: 100%;
    position: relative;
    overflow-y: auto;
}
.side-nav .navbar-nav {
    border-top: #fff solid 1px;
}
.side-nav .navbar-nav .nav-item {
    display: block;
    text-transform: uppercase;
    margin: 0;
    padding: 0 !important;
    border-bottom: #fff solid 1px;
    -webkit-transition: all 0.8s ease 500ms;
    -o-transition: all 0.8s ease 500ms;
    transition: all 0.8s ease 500ms;
    
}
.menu-icon {
    width: 40px;
    height: 27px;
    margin-right: 15px;
    display: flex;
    align-items: center;
}
.side-nav .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    color: #ffffff;
    padding: 0;
    font-size: 20px;
    font-family: 'Saira', sans-serif;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 2.2;
    position: relative;
    border-radius: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.side-nav .navbar-nav .nav-link:hover, 
.side-nav .navbar-nav .nav-link.active,
.dropdown-menu a:hover,
.dropdown-menu a:focus {
    color: #fff;
    background-color: #ab2229;
}
.dropdown-menu a.dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 20px 4px 56px;
}
.dropdown-menu a.dropdown-item {
    color: #fff;
    font-size: 16px;
    font-family: 'Saira', sans-serif;
    font-weight: 700;
    text-transform: none;
    line-height: 2.5;
    position: relative;
}
/*
.dropdown-menu a.dropdown-item::after {
    content: "\f105";
    font: normal normal normal 20px / 1 FontAwesome;
    position: absolute;
    right: 20px;
}
 */
.menu-footer {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 14px;
}
.menu-footer a {
    color: #fff;
}
.menu-footer a:hover,
.menu-footer a:focus {
    color: #ffaa00;
}
.menu-left {
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.menu-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.menu-footer .footer-social {
    justify-content: flex-start;
}
.menu-footer .footer-social a {
    margin-right: 20px;
    margin-left: 0;
}

@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* Index Banner Section */
.banner {
    padding: 0;
    position: relative;
}
.banner-btn {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: 100;
}
.banner-title {
    position: absolute;
    z-index: 2;
    top: 50px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    text-align: center;
}
.banner-title h1 {
    font-size: 40px;
    color: #fff;
    padding: 0 15px;
}
.product-area,
.categorie-area {
    position: relative;
}
.big-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
}
.category-banner .big-bg {
    z-index: -1;
}
.banner-gradient {
    padding-top: 175px;
    padding-bottom: 150px;
    background: radial-gradient(circle, rgba(225, 94, 99, 0.3) 0%, rgba(212, 144, 144, 0) 30%);
}
.categorie-gradient {
    padding-top: 80px;
    padding-bottom: 100px;
    background: radial-gradient(circle, rgba(225, 94, 99, 0.3) 0%, rgba(212, 144, 144, 0) 30%);
}
.hero-gradient {
    padding-top: 100px;
    padding-bottom: 0px;
    background: radial-gradient(circle, rgba(225, 94, 99, 0.3) 0%, rgba(212, 144, 144, 0) 30%);
}
.head-gradient {
    text-align: center;
    padding-top: 300px;
    padding-bottom: 240px;
    background: radial-gradient(circle, rgba(225, 94, 99, 0.3) 0%, rgba(212, 144, 144, 0) 30%);
}
.head-gradient h1 {
    color: #f8a906;
}
.product-back {
    position: relative;
    width: 470px;
    height: 470px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}
.product-skew {
    position: relative;
    width: 215px;
    height: 335px;
    perspective: 1000px;
        
}
.product-skew .img-skew {
    width: 215px;
    height: 335px;
    animation: img-skew 5s infinite ease-in-out;
    z-index: 10;
}
@keyframes img-skew {

    0% {
        transform: rotateY(-10deg) rotateX(10deg);
    }

    50% {
        transform: rotateY(20deg) rotateX(20deg);
    }

    100% {
        transform: rotateY(-10deg) rotateX(10deg);
    }
}

.product-skew .img-turning {
    width: 215px;
    height: 335px;
    transform-origin: center center;
    animation: img-turning 10s infinite linear;
    z-index: 10;
}

@keyframes img-turning {

    0% {
        transform: translateY(0) rotate(10deg) rotateX(-15deg) rotateY(-5deg);
    }

    25% {
        transform: translateY(-10px) rotate(0deg) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: translateY(0) rotate(-10deg) rotateX(15deg) rotateY(5deg);
    }

    75% {
        transform: translateY(10px) rotate(0deg) rotateX(0deg) rotateY(0deg);
    }

    100% {
        transform: translateY(0) rotate(10deg) rotateX(-15deg) rotateY(-5deg);
    }
}

.product-front-static {
    position: absolute;
    right: 50px;
}
.product-front-dynamic {
    position: absolute;
    right: 50px;
    bottom: 0px;
}
.product-front-dynamic .img-rotating,
.product-front-dynamic .img-circular {
    width: 200px;
    height: 200px;
    animation: img-rotating 20s infinite ease-in-out;
    z-index: 10;
}

@keyframes img-rotating {
    0% {
        transform: translate(50px, 0) rotate(0deg);
    }
    25% {
        transform: translate(0px, 20px) rotate(90deg);
    }
    50% {
        transform: translate(-50px, 30px) rotate(180deg);
    }
    75% {
        transform: translate(0px, 20px) rotate(270deg);
    }
    100% {
        transform: translate(50px, 0) rotate(360deg);
    }
}

.product-front-dynamic .img-circling,
.product-front-dynamic .img-skew {
    width: 200px;
    height: 200px;
    animation: img-circling 15s infinite ease-in-out;
    z-index: 10;
}

@keyframes img-circling {
    0% {
        transform: translate(50px, 0) rotate(20deg);
    }

    50% {
        transform: translate(-50px, 30px) rotate(40deg);
    }

    75% {
        transform: translate(0px, 20px) rotate(10deg);
    }

    100% {
        transform: translate(50px, 0) rotate(20deg);
    }
}

.product-img {
    height: auto;
    display: flex;
    justify-content: center;
}
.owl-carousel .owl-item img {
    width: auto;
}

/* Slider */
.product-links-left {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -430px;
    z-index: 100;
    cursor: pointer;
}
.product-links-right {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translateX(-50%);
    margin-right: -480px;
    z-index: 100;
    cursor: pointer;
}
.product-links-left a i,
.product-links-right a i {
    color: #ffffff;
    font-size: 30px;
    transition: .5s ease;
}
.product-links-right a:hover i, 
.product-links-left a:hover i {
    color: #d41120;
}
.customPrevBtn, 
.customNextBtn {
    display: block;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 3px solid #fff;
    border-radius: 8px;
    position: relative;
}
.customPrevBtn i {
    position: absolute;
    top: 7px;
    left: 14px;
}
.customPrevBtn:hover i {
    left: 10px;
}
.customNextBtn i {
    position: absolute;
    top: 7px;
    left: 19px;
}
.customNextBtn:hover i {
    left: 23px;
}
.owl-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
    z-index: 1;
}
.owl-carousel button.owl-dot {
    color: #fff;
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-radius: 4px;
    margin: 0 5px;
}
.owl-carousel button.owl-dot.active {
    background: #fff;
}

/* Index Banner Ads */
.banner-ads h1 {
    color: #cd001a;
}
.banner-ads h3 {
    color: #62170f;
    font-size: 24px;
}
.ads .row,
.recipes .row {
    margin: 0 !important;
}
.add-img img {
    border-radius: 15px;
}

/* Product */
section.product {
    padding: 0 0 7.5rem;
}
.product-title {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.product-title h1 {
    font-size: 40px;
}
.product-title h3 {
    color: #f8a906;
    font-size: 20px;
    text-transform: none;
}
.product-title-line {
    color: #f8a906;
    margin-bottom: 60px;
}
.product-gradient {
    padding-top: 175px;
    padding-bottom: 20px;
    background: radial-gradient(circle, rgba(225, 94, 99, 0.3) 0%, rgba(212, 144, 144, 0) 30%);
}
.product-gradient-holder {
    padding-top: 175px;
    padding-bottom: 20px;
}
.product-gradient-only {
    background: radial-gradient(circle, rgba(225, 94, 99, 0.3) 0%, rgba(212, 144, 144, 0) 30%);
}
.product-packaging {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}
.product-packaging-item {
    width: 100px;
    text-align: center;
}
.product-packaging-item img, .product-packaging-item svg {
    margin-bottom: 5px;
    max-width: 40px;
}

.product-packaging-item p {
    font-size: 10px;
}
.product-holder {
    padding: 0;
    flex: 1;
}
.product-content {
    padding: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-top: -100px;
}
.product-holder h2 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 15px;
}
.product-holder h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}
.product-holder p {
    font-weight: 300;
    margin-bottom: 20px;
}
.product-checks {
    margin-bottom: 70px;
}
.product-checks ul li {
    display: flex;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 5px;
}
.check-icon {
    margin-right: 15px;
    width: 25px;
    height: 25px;
}
/* Product Table */
.table-container {
    overflow-x: auto;
    margin-bottom: 20px;
}
.table-title {
    display: flex;
    margin-bottom: 10px;
}
.table-title div:first-child {
    flex: 2;
    text-align: left;
    padding-left: 15px;
}
.table-title div:nth-child(2) {
    flex: 1;
    text-align: right;
    padding-right: 15px;
}
.table-title div:nth-child(3) {
    flex: 1;
    text-align: right;
    padding-right: 15px;
}
.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Noto Sans', sans-serif;
    background-color: #40850c;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin: 0;;
    overflow: hidden;
}
.nutrition-table td {
    text-align: left;
    padding: 10px 15px;
    font-size: 14px;
    color: #fff;
    border: none;
    text-transform: lowercase;
}
.nutrition-table td:nth-child(2),
.nutrition-table td:nth-child(3) {
    text-align: right !important;
}
/* Percentage */
.percentage-container {
    background-color: #40850c;
    padding: 20px 15px 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.percentage-text {
    margin-bottom: 10px;
}
.percentage-holder {
    display: flex;
    justify-content: center;
    align-items: center;
}
.percentage-item {
    width: 110px;
    height: 141px;
    margin: 0 3px 10px;
    padding: 15px 5px 0;
    position: relative;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.1;
}
.percentage-title {
    height: 48px;
}
.percentage-value {
    height: 62px;
}
.percentage {
    height: auto;
    font-size: 16px;
    font-weight: 400;
}
.percentage-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.percentage-title,
.percentage-value,
.percentage {
    position: relative;
    z-index: 1;
}
.product-end-text {
    font-weight: 300;
    margin-bottom: 10px;
    padding: 0 15px;
}


/* Sub Recipes */
.sub {
    margin-top: 50px;
    padding-top: 250px;
    padding-bottom: 100px;
    background: none;
    position: relative;
}
.sub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 700px;
    background-size: 100% auto;
    background: radial-gradient(circle, rgba(225, 94, 99, 0.3) 0%, rgba(212, 144, 144, 0) 30%) no-repeat top center;
    z-index: -1;
}
.sub h1 {
    color: #f8a906;
    font-size: 40px;
}
.sub h3 {
    font-size: 20px;
}
.sub-title {
    margin-bottom: 80px;
    text-align: center;
}
.list-recipes {
    margin-bottom: 50px;
    text-align: center;
}
.list-recipes a img {
    border: 5px #fff solid;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all .3s ease;
}
.list-recipes a:hover img {
    border: 5px #f8a906 solid;
}
.list-recipes a .list-recipes-title {
    font-size: 24px;
    color: #fff;
    font-family: "Saira", sans-serif;
    font-weight: 900;
    transition: all .3s ease;
}
.list-recipes a:hover .list-recipes-title {
    color: #f8a906;
}
section.recipe {
    padding: 0 0 7.5rem;
    margin-top: -200px;
}
section.recipe ul {
    list-style-position: outside;
    margin-left: 1.5rem;
}
.recipe-spec {
    text-align: center;
    font-size: 18px;
    font-family: "Saira", sans-serif;
    font-weight: 900;
}
.recipe-holder {
    padding: 60px 60px 0;
}
.recipe-holder h3 {
    color: #f8a906;
    text-transform: none;
}
.recipe-holder ul {
    list-style-type: disc;
}

.sub-content h1 {
    color: #fff;
    margin-bottom: 50px;
}
.sub-content h2 {
    color: #fff;
    margin-bottom: 15px;
}
.date {
    color: #fff;
    margin-bottom: 15px;
}
.btn-center {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.promo-list .container {
    margin-bottom: 80px;
}
.promo-img {
    padding: 0 60px ;
    margin-top: 35px;
}
.promo-img img {
    border: 5px #fff solid;
    border-radius: 15px;
    margin-bottom: 30px;
}


/* Contact */
body.contact,
body.portal {
    background: #ffd965;
}
.contact-main {
    padding: 200px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.contact-text {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.contact-text p {
    font-size: 28px;
}

/* Nagradna */
body.nagradna {
    background: #f9e4b7;
}
.nagradna-main {
    padding: 200px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-position: bottom left;
    background-repeat: no-repeat;
}
.nagradna-text {
    width: 40%;
    margin-left: 55%;
}
.nagradna-text p {
    font-size: 24px;
}

/* buttons */
.btn-red {
    height: 54px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    line-height: 54px;
    font-family: 'saira', sans-serif;
    font-weight: 900;
    background: linear-gradient(to bottom, #f00000 0%, #e30000 25%, #6e0d08 50%, #cf0000 51%, #e30000 75%, #500804 100%);
    background-size: 100% 200%;
    background-position: 0% 0%;
    display: block;
    padding-left: 40px;
    padding-right: 40px;
    border: none;
    border-radius: 5px;
}
.btn-red:hover, 
.btn-red:focus, 
.btn-red:active {
    color: #fff;
    background-position: 0% 100%;
}
.btn-yellow {
    height: 54px;
    color: #62170f;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    line-height: 54px;
    font-family: 'saira', sans-serif;
    font-weight: 900;
    background: linear-gradient(to bottom, #ffd885 0%, #ffbe2a 25%, #ffa500 50%, #f1aa14 51%, #ffbe2a 75%, #cb7700 100%);
    background-size: 100% 200%;
    background-position: 0% 0%;
    display: block;
    padding-left: 40px;
    padding-right: 40px;
    border: none;
    border-radius: 5px;
}

.btn-yellow:hover,
.btn-yellow:focus,
.btn-yellow:active {
    color: #62170f;
    background-position: 0% 100%;
}

/* Footer */
footer {
    position: relative;
    z-index: 80;
    overflow: hidden;
    height: 466px;
    margin-top: -100px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    background: url(../img/footer.png) top center no-repeat;
    background-size: cover;
}
.footer-logo {
    position: absolute;
    left: 80px;
    bottom: 145px;
    transform: translateX(-50%);
    z-index: 1;
}
.footer-logo img {
    width: 120px;
    height: auto;
}
.footer-ins {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 220px;
    padding-bottom: 55px;
}
.footer-social {
    display: flex;
    justify-content: flex-end;
    margin: 20px 0 10px;
}
.footer-social a {
    color: #fff;
    font-size: 28px;
    margin-left: 20px;
    transition: .3s ease;
}
.footer-social a:hover {
    color: #ffaa00;
}
.footer-data {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-align: right;
    
}
.footer-data a {
    color: #fff;
}
.footer-data a:hover {
    color: #ffaa00;
}

/* Scroll to Top */
.go-top {
    position: fixed;
    cursor: pointer;
    bottom: 15px;
    right: 15px;
    
    background-color: #ffffff;
    border-radius: 50%;
    z-index: 100;
    width: 40px;
    text-align: center;
    height: 42px;
    line-height: 42px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .9s;
    -o-transition: .9s;
    transition: .9s;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
}
.go-top.active {
    -webkit-animation: fadeIn 2s;
    animation: fadeIn 2s;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.go-top i {
    position: absolute;
    color: #202020;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.go-top:hover,
.go-top:focus {
    background: #202020;
}
.go-top:hover i, .go-top:focus i {
    color: #ffffff;
}


/* Loader */
.loader-bg {
    position: fixed;
    z-index: 99999;
    background-color: #202020;
    width: 100%;
    height: 100%;
}

.svg-loader {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-bg svg {
    width: 200px;
}

.svg-loader circle {
    fill: none;
    stroke: #d41120;
    stroke-width: 10px;
    animation: circle-animation 3s infinite;
    transform-origin: center center;
}

@keyframes circle-animation {
    0%, 20%, 100% {
        stroke-dasharray: 0.1;
        transform: rotate(0);
    }
    10% {
        stroke-dasharray: 0.05;
    }
    70% {
        stroke-dasharray: 50;
        transform: rotate(60deg);
    }
}

/* Sticky Menu */
.sticky-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #cd001a;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none; /* Hide by default */
}

@media (max-width: 575px) {
    .sticky-menu {
        display: block; /* Show only on mobile */
    }
}

.sticky-menu.active {
    transform: translateY(0);
}

.sticky-menu-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.sticky-logo {
    display: block;
}

.sticky-logo img {
    width: 120px;
    height: auto;
}

.sticky-menu .nav-icon {
    margin: 0;
}

.sticky-menu .nav-icon:after, 
.sticky-menu .nav-icon:before, 
.sticky-menu .nav-icon div {
    background-color: #fff;
}

.sticky-menu .nav-open .nav-icon:before,
.sticky-menu .nav-open .nav-icon:after {
    background-color: #fff;
}

/* modal */
.modal-content {
    background-color: #cd001a;
    color: #fff;
}
.modal-content a {
    text-decoration: underline;
}
.modal-content a:hover {
    color: #ffaa00;
}
.modal-content h2,
.modal-content div {
    color: #fff;
}

.text-page a {
    text-decoration: underline;
}

.big-link a {
    color: #ffaa00;
    font-size: 1.2rem;
}


