﻿

html {
    padding: 0;
    margin: 0;
}

body {
    font-family: "Roboto", "Segoe UI", Roboto;
    color: #2b180d;
    padding: 0;
}

a {
    color: #c47506;
    text-decoration: none;
}

    a:hover {
        color: #9a6316;
        text-decoration: none;
    }

    a.darker {
        color: #8a402c;
        text-decoration: none;
    }

        a.darker:hover {
            color: #73c5eb;
            text-decoration: none;
        }

.alcubtn {
    background: none;
    font-size: 16px;
    padding: 8px 20px;
    background: #c47506;
    color: #eee;
    transition: all 0.5s;
    border-radius: 50px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    border: solid 1px #eee;
    display: inline-block;
}

    .alcubtn:hover, .alcubtn-sm:hover {
        background: #db9d46;
        color: #fff;
        box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
    }

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
}

.disabled {
    pointer-events: none;
    color: silver;
}

.overly:before {
    content: '';
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Bordered Tabs */
.nav-tabs-bordered {
    border-bottom: 2px solid #ebeef4;
}

    .nav-tabs-bordered .nav-link {
        margin-bottom: -2px;
        border: none;
        color: #db9d46;
    }

        .nav-tabs-bordered .nav-link:hover,
        .nav-tabs-bordered .nav-link:focus {
            color: #ae8853;
        }

        .nav-tabs-bordered .nav-link.active {
            background-color: #fff;
            color: #c47506;
            border-bottom: 2px solid #ff6600;
            border-radius: 10px 10px 0 0;
        }
.form-control:focus, .form-select:focus, .form-check-input:focus {
    border-color: #FF0000;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 102, 0, 0.6);
}

.form-check-input {
    cursor:pointer;
    border: 0;
}
.form-check-input:checked {
    background-color: #c47506 !important;
    border: 0;
}

.form-group {
    margin-top: 20px;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
}

    #header.header-scrolled, #header.header-inner-pages {
        background: rgba(32, 34, 35, 0.9);
        box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
    }

    #header .logo {
        font-size: 24px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 100;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

        #header .logo a {
            color: #fff;
        }

        #header .logo img {
            max-height: 44px;
            margin-right: 7px;
        }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a, .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px 10px 20px;
        font-family: "Raleway";
        font-size: 18px;
        font-weight: 200;
        color: #fff;
        white-space: nowrap;
        transition: all 0.3s;
        text-align: center;
        letter-spacing: 0.5px;
    }
        .navbar a:before {
            content: "";
            position: absolute;
            left: 0;
            top: 100%;
            right: 0;
            bottom: 0;
            background: rgba(196, 196, 196, 0.01);
            transition: all 0.3s;
        }

        .navbar a i, .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
            color: #f8a42d;
           /* color: #db9d46;*/
            font-weight: 200;
        }
    .navbar a:hover::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.1);
    }

    .navbar .getstarted {
        padding: 8px 20px;
        margin-left: 30px;
        border-radius: 50px;
        color: #fff;
        font-size: 14px;
        border: 2px solid #47b2e4;
        font-weight: 600;
    }

        .navbar .getstarted:hover {
            color: #fff;
            background: #31a9e1;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
            position:relative;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            text-transform: none;
            font-weight: 500;
            color: #0c3c53;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
                color: #47b2e4;
            }


    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    background: none;
    border: 0;
}

    .mobile-nav-toggle.bx-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: 0.3s;
    /*z-index: 99999999;*/
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }
        .navbar-mobile .mobile-nav-toggle .bx-x {
            color: #333;
        }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 65px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        border-radius: 10px;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a {
        padding: 10px 20px;
        font-size: 16px;
        color: #333;
        opacity:1;
        font-weight:bold;
    }

        .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
            color: #c47506;
            font-weight: bold;
        }

    .navbar-mobile .getstarted {
        margin: 15px;
        color: #37517e;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
                color: #47b2e4;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

.mnu-login {  }
.mnu-login i { font-size:20px !important;   }

section {
    padding: 60px 0;
    /*overflow: hidden;*/
}

    section.inner-page {
        padding-top: 90px;
        /*overflow: hidden;*/
    }

.section-title { padding-bottom: 15px; margin-bottom:30px; }
/*.section-title::before { content:""; position:absolute; left:30%; right:30%; bottom:0; height:2px; background-color:#db9d46; opacity:0.2; }
.section-title::after { content:""; position:absolute; left:45%; right:55%; top:0; height:4px; background-color:#db9d46; opacity:0.9; }
*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 120px 0 60px;
    display: flex;
    align-items: center;
}

@media (min-width: 1200px) {
    .hero:after {
        position: absolute;
        content: "";
        width: 44%;
        background: rgba(32, 34, 35, 0.21);
        top: 0;
        bottom: 0;
        z-index: 2;
    }
}

.hero:before {
    position: absolute;
    content: "";
    background: rgba(32, 34, 35, 0.41);
    inset: 0;
    z-index: 2;
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

    .hero img:before {
        content: '';
        /*background: rgba(32, 34, 35, 0.51);*/
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }


.hero .container,
.hero .container-fluid {
    z-index: 3;
    position: relative;
}

.hero h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.hero blockquote {
    color: #fff;
    padding-left: 20px;
    border-left: 2px solid red;
    margin: 40px 0;
}

.hero .btn-get-started {
    color: #fff;
    background: red;
    font-family: "RaleWay";
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
}

    .hero .btn-get-started:hover {
        background: #f85555;
    }

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: #eee;
    font-weight: 600;
}

    .hero .btn-watch-video i {
        color: #eee;
        font-size: 32px;
        transition: 0.3s;
        line-height: 0;
        margin-right: 8px;
    }

    .hero .btn-watch-video:hover {
        color: #fff;
    }

        .hero .btn-watch-video:hover i {
            color: #fff;
        }

@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 13px;
    }
}

.hero-area-contact, .hero-area-about {
    position: relative;
    background: url("/content/img/kontakt-bg.jpg") no-repeat center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0;
    margin: 0;
    color: #fff;
    min-height: 600px;
}

.hero-area-about {
    background: url("/content/img/about-bg.jpg") no-repeat center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-area-contact h2 {
    margin-top: 60px;
    text-align: center;
}

/*
    ABOUT
*/

.about {
    background: url("/content/img/alu-back.jpg") no-repeat center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top:85px;
}

/*
    hp-box
*/


.hp-box {
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0px 0px 10px #eee;
    border: solid 1px #eee;
    padding:10px;
    transition: all 0.5s;
    border-radius: 20px;
    position:relative;
    overflow: hidden;
}
    .hp-box .hp-head {
        height: 120px;
        position: relative;
        border: solid 1px #eee;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        transition: all 0.5s;
        text-align: center;
        overflow: hidden;
    }
        .hp-box .hp-head:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.5);
        }
    .hp-box .hp-body {
        height: 200px;
        background-color: #eee;
        padding-top: 20px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        overflow: hidden;
    }
    .hp-box .hp-head i {
        font-size: 60px;
        color: red;
        padding: 10px;
        position: absolute;
        left: 0;
        top: 20px;
        text-align: center;
        border: solid 3px #fff;
        left: 40%;
        transition: all 0.5s;
        border-radius: 50%;
    }
    .hp-box:hover .hp-head i {
        border: solid 3px red;
        background-color: #fff;
        transform: scale(1.1);
    }
    .hp-box .hp-body label {
        font-weight: bold;
        display: block;
        font-size: 20px;
        color: #333;
        transition: all 0.5s;
    }
    .hp-box:hover .hp-body label {
        color: rgb(0, 0, 0);
        font-size: 22px;
    }
    .hp-box:before {
        content: '';
        position: absolute;
        left: 0;
        top: 100%;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.2);
        transition: all 0.5s;
        z-index: 500;
    }

    .hp-box:hover {
        box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
        border: solid 1px #eee;
    }
    .hp-box:hover .hp-head {
        border: solid 1px silver;
    }
    .hp-box:hover::before {
        top: 0;
    }

.hp-box .hp-body p {
    margin: 5px;
    min-height:50px;
    background-color: #eee;
    z-index: 1000;
}


.kat-mat { transition: all 0.5s; position:relative; top: 0px;border-top: solid 5px #fff;}
.kat-mat div h2 { padding-left:30px; }
.kat-mat div i { font-size: 20px; margin-left: 30px; color:silver; transition: all 0.7s; }
.kat-mat:hover {  box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset, rgba(0, 0, 0, 0.45) 0px 25px 20px -20px; top: -10px; border-top: solid 3px #fff; }
.kat-mat:hover div i { color:#fff; }
.kat-mat div ul { line-height:32px; text-align:left; list-style:none; font-size:14pt; font-weight: bold; }
.kat-mat div ul li a { text-shadow: 1px 1px 1px #fff; }


/*
    Quote
*/
.quote-alu, .quote-aluminijum {
    background-color: #808284;
    position: relative;
    width: 40px;
    height: 80px;
}

    .quote-alu:before, .quote-aluminijum:before {
        content: "";
        background-color: #006dad;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 55%;
        z-index: 100;
    }

.quote-bakar {
    background-color: #7f8183;
    position: relative;
    width: 40px;
    height: 80px;
}

    .quote-bakar:before {
        content: "";
        background-color: #c3112d;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 55%;
        z-index: 100;
    }

.quote-mesing {
    background-color: #c4122e;
    position: relative;
    width: 40px;
    height: 80px;
}

    .quote-mesing:before {
        content: "";
        background-color: #f4c900;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 55%;
        z-index: 100;
    }

.quote-bronza {
    background-color: #f4c900;
    position: relative;
    width: 40px;
    height: 80px;
}

    .quote-bronza:before {
        content: "";
        background-color: #96784e;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 55%;
        z-index: 100;
    }

.quote-olovo {
    background-color: #babdbf;
    position: relative;
    width: 40px;
    height: 80px;
}

    .quote-olovo:before {
        content: "";
        background-color: #7f8183;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 55%;
        z-index: 100;
    }

.quotes {
    position: absolute;
    left: 0;
    top: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    /*padding-top: 25px;*/
    /*background: #f3f5fa;*/
/*    background-color: #b8c6db;
    background-image: linear-gradient(315deg, #b8c6db 0%, #f5f7fa 74%);
*/
    background-color: #ffffff;
    background-image: linear-gradient(315deg, #ffffff 0%, #d7e1ec 74%);

    min-height: 40px;
    display: block;
    /*margin-top: 105px !important;*/
}

@media (max-width: 992px) {
    .breadcrumbs {
        padding-top: 125px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
}
    .breadcrumbs h2 i {
        font-size: 10px;
        color: gray;
        position: relative;
        top: -3px;
    }

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 15px;
    color:gray
}

    .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .breadcrumbs ol li + li::before {
            display: inline-block;
            padding-right: 10px;
            color: red;
            content: "/";
        }


.aluminijum-kat, .bakar-kat, .mesing-kat, .bronza-kat, .olovo-kat, .kat-back1 {
    background: url("/content/img/back-aluminijum.jpg") no-repeat center center;
    background-size: cover;
    padding: 10px;
    color: #fff;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10;
    min-height: 300px;
    padding-top: 30px;
    padding-bottom: 30px;
    border: solid 0px red;
    position: relative;
}
.bakar-kat {
    background: url("/content/img/back-bakar.jpg") no-repeat center center;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
}
.mesing-kat {
    background: url("/content/img/back-mesing.jpg") no-repeat center center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
}
.bronza-kat {
    background: url("/content/img/back-bronza.jpg") no-repeat center center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
}
.olovo-kat {
    background: url("/content/img/back-olovo.jpg") no-repeat center center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
}
.kat-back {
    padding: 10px;
    color: #fff;
    background: url("/content/img/kat-back.jpg") no-repeat center center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    padding-top: 80px;
}
.kat-back1 {
    background: url("/content/img/kat-back2.jpg") no-repeat center center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}
.kat-back h2, .kat-back1 h2 {
    text-shadow: 2px 2px 2px black;
}
.kat-back h4, .kat-back1 h4 {
    text-shadow: 2px 2px 2px black;
}

.teh-pod {
    background: url("/content/img/img-alcu-back.jpg") no-repeat center center;
    background-size: cover;
    padding: 10px;
    color: #fff;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10;
    min-height: 300px;
    padding-top: 50px;
    padding-bottom: 50px;
    border: solid 0px red;
    position: relative;
}

.klg-title { letter-spacing: 4px; text-align: center; }
.bot-rad { border-radius: 0 0 15px 15px; box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px; }

.sm-menu { margin-bottom:30px; padding-bottom:40px; }
.sm-menu ul { }
.sm-menu ul li { list-style: none; }
.sm-menu ul li a { font-weight: normal; font-size: 14pt; position:relative; color: #fff; transition: all 0.5s; padding-bottom:3px; text-shadow: 1px 1px 1px #333; display: block; }
.sm-menu ul li a i { font-size: 12px; color:#db9d46; display:none; position:absolute; left:-18px; top: 7px; transition: all 0.5s; }
.sm-menu ul li a:hover i { font-size: 14px; color: #fff; opacity:0.3; display:inline-block; }
.sm-menu ul li a:hover { color: #de9630; }
.sm-menu ul li a.active { color: #fff; }
.sm-menu ul li a.active i { color: #fff; display: inline-block; opacity: 0.5; }



.mat-box { min-height: 300px; }
.mat-box .mat-head { position: relative; padding-left: 60px; border:solid 1px red; }
    .mat-box .mat-head .quote-alu, .mat-box .mat-head .quote-bakar, .mat-box .mat-head .quote-mesing, .mat-box .mat-head .quote-bronza, .mat-box .mat-head .quote-olovo {
        position: absolute;
        left: 0;
        top: 0;
        width:44px;
    }
.mat-box .mat-body { position: relative; padding-left: 40px; border:solid 1px red; }
.mat-img { position: relative; top: -10px; border-radius: 50%; margin-bottom:20px; border:solid 7px #fff; }
@media (max-width: 640px) {
    .mat-img { top: 0px;  }
}

.mat-title { position: relative; padding-left: 50px; }
.mat-title a { font-size:18pt; color:#fff; }
.mat-quote { position: absolute; border:solid 1px white; top: 0; left: 0; width:24px; height:50px; background: rgba(255,255,255,0.2); }

.kats-list { list-style: none; padding-left:60px; }
.kats-list li { padding: 3px 5px; }
.kats-list li a { color: #fff; font-size: 16pt; transition:all 0.3s; }
.kats-list li a.selected { border: solid 1px #fff; padding: 3px 8px; border-radius:50px; }
.kats-list li a i { color: #eee; font-size: 12pt; position: absolute; left:-20px; top: 8px; display:none; transition: all 0.5s; }
.kats-list li a:hover i { color: #fff; display: inline-block; }
.kats-list li a:hover { font-weight: bold; }

.ppost {
    border: solid 1px #eee;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    box-shadow:  rgba(0, 0, 0, 0.25) 0px 25px 20px -20px;
    transition:all 0.3s;
}
    .ppost:hover {
        box-shadow: rgba(0, 0, 0, 0.55) 0px 25px 20px -20px;
    }
.ppost img {width:100%; transition:all 0.3s; border-bottom: solid 5px #999;}
    .ppost:hover img {
        opacity:0.8;
    }
.ppost h4 { margin-top: 15px; padding:5px 10px; }
.ppost p { font-size:13pt; padding:0px 10px; min-height: 100px; }
.ppost div a i { position:relative; top:2px; }
.hppost .ppost { }


.kat-kat { position: absolute; left: 0; top: 20px; right: 0; text-align: center; color: #fff; font-size: 18pt; font-weight: bold;  }
.kat-katalog { margin: 30px 30px 30px 30px; padding: 3px 7px; background: rgba(255,255,255,0.3); color: #333; border-radius: 50px; }

.page-txt { min-height: 500px; position: relative; font-size: 13pt; }
.page-txt .pg-quote { position: absolute; left: 0px; top: 8px; }
.page-txt h1 { position: relative; padding-left: 60px !important; margin-bottom: 20px; min-height: 94px; }

.pweight {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    font-size: 16pt;
    padding: 0 !important;
    min-height: auto;
    margin: 0 auto !important;
    padding-top: 70px !important;
    box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset, rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    
}
.pweight label { font-size: 16pt;  color: #333; display: block; }
.pweight .pw-val { font-size: 30pt; color: #333; }
.pweight .pw-jm { font-size: 22pt; color: gray; }
/*.page-txt h1:before { content:""; position: relative; padding-left: 60px; }*/

#brand-table { }
#brand-table i { color: silver; }

.pp-img { text-align:left; margin-top:30px; }
.pp-img img { width:50%; opacity:0.3; }
@media (max-width: 640px) {
    .pp-img { text-align: center; }
}

footer {  background: rgba(32, 34, 35, 0.9); color: #fff; border-top: solid 5px silver }


.form-control:focus {
    outline: none !important;
    border-color: #f6f2f2 !important;
    box-shadow: inset 0 1px 1px #eea117, 0 0 8px #bf7f0a;
}

.xhid {
    display: none;
}

.lout {
    padding: 30px 50px;
    border: solid 1px #e7e7e7;
    border-radius: 10px;
    height: 100%;
}

    .lout .profile-img-card {
        text-align: center;
        color: #c47506;
    }

        .lout .profile-img-card i {
            font-size: 84px;
            margin: 30px auto;
            opacity: 0.8;
        }

    .lout .profile-name-card {
        font-size: 14pt;
        text-align: center;
    }

.form-row {
    margin-top: 20px;
    font-size: 13pt;
}

    .form-row input {
        font-size: 13pt;
    }

    .form-row label {
        position: relative;
        top: -5px;
    }

    .form-row .small {
        display: block;
        margin-top: 5px;
        font-size: 12pt;
        font-style: italic;
    }

#inputEmail, #inputPassword, #forgEmail, #inputPassword2 {
    font-weight: bold !important;
    font-size: 12pt !important;
}

.linfo-box {
    margin: 30px;
    margin-top: 50px;
    border: solid 0px red;
    font-size: 13pt;
}

.loader {
    text-align: center;
    margin-top: 180px;
}

    .loader i {
        color: #015198;
    }


/*.alcucard { border:solid 2px #eee; padding: 10px; margin:10px; border-radius:10px; transition: all 0.3s; background-color:#fff;}
*//*.alcucard:hover { box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px; }*/
.alcucard { position:relative; margin-top:10px; padding-left:40px; }
.alcucard .leg { position:absolute; top:0px; left:0; height: 185px; width:20px; background: rgba(255,255,255,0.3); border: solid 1px silver;}
.alcucard i { color: silver;  }
.alcucard h5 { color: gray; }
.alcucard p { font-size:20px; margin-top:10px; line-height:35px; }

.katlogo { width: 100%; }

.pull-left { float:left; }
.pull-right { float:right; }

.pcode-badge { display: inline-block;  background-color: #eee; color: #333; border-radius: 8px; padding: 0 5px;}

.prod-leg-box { padding:20px 10px;}

.mini-nav { position: relative; }
.mini-nav .prod-icon { position: absolute; left:46%; top: -5px; }
.mini-nav .prod-nav { background-color:#c47506; color:#fff; padding:6px 7px 3px 7px; display:inline-block; box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); border-radius: 5px; transition:all 0.7s; }
.mini-nav .prod-nav i { font-size: 12                       px; }
.mini-nav .prod-nav:hover { background-color:#db9d46; color:#fff; box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);}

/* gal*/
.galeryimgs { margin-top: 19px; display:inline-block; }
.galeryimgs img { width:100%; border-radius: 10px; border: solid 2px #eee; }



/* ab */
.contact {
}
.contact p { line-height: 35px; font-size: 14pt; }
.contact h5 { color: gray; }
.contact h4 { background: rgba(0,0,0,0.05); padding:3px 5px; padding-left: 20px;}
.contact h4:before { content: ""; position: absolute; left:0; top:0; bottom:0; width:3px; background-color: silver; opacity:0.3;}
.side-box { text-align: left; }
@media (max-width: 640px) {
    .side-box {
        text-align: center;
    }
    .contact {
        text-align: center;
    }
}



/* FOOTER*/

.footer-links { margin-top: 30px; padding-bottom:50px; }
.footer-links ul { }
.footer-links ul li { list-style: none; padding:4px 0;}
.footer-links ul li a { font-size: 14pt;}
@media (max-width: 640px) {
    .footer-links {
        text-align: center;
    }
        .footer-links ul {
            padding:0;
        }
}

.foot-msg { font-size: 44px; font-weight: bold; opacity: 0.25; }
.foot-credits { font-size:11pt; color:#eee; opacity:0.8; }

.foot-logo { opacity:0.7; }
.stay-in-touch { margin-left:30px; }
.stay-in-touch i { font-size:30px;  }





















/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #34393b;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
    text-align: center;
    padding-top: 12px;
}

    .back-to-top i {
        font-size: 24px;
        color: #db9d46;
        line-height: 0;
        position:relative;
        top: 2px;
    }

    .back-to-top:hover {
        background: #eea117;
        /*color: #fff;*/
    }
    .back-to-top:hover i {
        color: #333;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }


/*
.hero .hero-waves {
    display: block;
    width: 100%;
    height: 60px;
    position: relative;
}

.hero .wave1 use {
    animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
    fill: var(--default-color);
    opacity: 0.6;
}

.hero .wave2 use {
    animation: move-forever2 8s linear infinite;
    animation-delay: -2s;
    fill: var(--default-color);
    opacity: 0.4;
}

.hero .wave3 use {
    animation: move-forever3 6s linear infinite;
    animation-delay: -2s;
    fill: var(--default-color);
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}
*/