﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
/*@import url('https://fonts.googleapis.com/css?family=Montserrat');*/
@font-face {
    font-family: 'Montserrat';
    src: url('../content/fonts/Montserrat-Regular.ttf');
}
/*HTML BODY*/
body {
    font-family: 'Montserrat', sans-serif !important;
}

html, body {
    width: 100%;
    font-size: 1.2rem;
}

@media screen and (max-width: 980px) {
    html, body {
        font-size: 1rem;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 100px;
    background-color: black !important;
}

/*footer*/
footer {
    position: absolute;
    width: 100%;
    white-space: nowrap;
    /* Set the fixed height of the footer here */
    height: 60px;
    line-height: 60px; /* Vertically center the text there */
    color: white !important;
    background-color: black !important;
    font-size: 0.9rem;
}
/*Headers*/
@media screen and (max-width: 980px) {
    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }
}

/*links*/
a {
    color: #aaa !important;
}

    a:hover {
        color: red !important;
    }


/* Sticky footer styles
-------------------------------------------------- */
.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 0.8rem;
    line-height: inherit;
}

/*modal dialog*/
.modal-dialog {
    font-size: 0.8rem;
}

@media screen and (max-width: 980px) {
    .modal-dialog {
        font-size: 1rem;
    }

    button.accept-policy {
        font-size: 1rem;
        line-height: inherit;
    }
}

.btn-modal {
    padding: 0.2rem 0.7rem !important;
    background-color: black !important;
    outline: 2px solid black !important;
    border-radius: 0px !important;
    color: white !important;
}

    .btn-modal:hover {
        background-color: black !important;
        outline: 2px solid red !important;
        border-radius: 0px !important;
        color: white !important;
    }


/*Margins*/
.margin-top-2rem {
    margin-top: 2rem;
}

.margin-top-05rem {
    margin-top: 0.5rem;
}

.margin-top-1rem {
    margin-top: 1rem;
}
/*Paddings*/
.padding-top-2rem {
    padding-top: 2rem;
}

.padding-top-1rem {
    padding-top: 1rem;
}


/*Toggler button and image for menu*/
.toggler-button {
    /*height: 3em;*/
    height: 9vh;
    max-height: 100px;
    padding: 0px !important;
    margin: 0px !important;
    
}

    .toggler-button > img {
        height: inherit;
        min-height: inherit;
        max-height: inherit;
        border-radius: 100%;
    }

    .toggler-button:focus {
    }

button:focus {
    outline: none !important;
}

@media screen and (max-width: 980px) {
    .toggler-button {
        /*height: 2.5em !important;*/
        height: 7.5vh;
        max-height: 100px !important;
        padding: 0px !important;
        margin: 0px !important;
    }
}

.glowing {
    border: 0px solid transparent;
    -webkit-transition: border 1s linear, box-shadow 1s linear;
    -moz-transition: border 1s linear, box-shadow 1s linear;
    transition: border 1s linear, box-shadow 1s linear;
}

.glowing.active {
    border-color: red;
    -webkit-box-shadow: 0 0 2rem 0.4rem red;
    -moz-box-shadow: 0 0 2rem 0.4rem red;
    box-shadow: 0 0 2rem 0.4rem red;
}


/*items in menu must be centered*/
.nav-item {
    text-align: center;
}


/*custom navbar theme*/
nav {
    background-color: black !important;
    z-index: 1;
}

.nav-item > a {
    font-size: 1.2rem !important;
    color: #aaa !important;
    padding: 0.5rem 0.2rem !important;
}

@media screen and (max-width: 980px) {
    .nav-item > a {
        font-size: 1.2rem !important;
        padding: 0.5rem 0.2rem !important;
    }
}

.nav-item > a:hover {
    color: white !important
}

.navbar {
    max-width: 100%;
}

/*emblem as landing page*/
.bg-emblem {
    background: url("../content/images/stanko_solutions_emblem.png") no-repeat center;
    background-size: contain;
    background-color: rgba(0,0,0,1.0);
}

canvas {
    margin: 0;
    width: 100%;
    height: 100% !important;
}

/*solution container style*/
.solution-container {
    background-color: black !important;
    width: 100% !important;
}

.solution-title {
    color: red !important;
    font-weight: bold !important;
}

.solution-menu {
}

.solution-menu-item:hover {
    color: white !important;
    border: 2px solid red !important;
}

a.solution-menu-item.active {
    color: red !important;
    border: 2px solid red !important;
}

.solution-pane {
    background-color: black !important;
    color: white;
}

.solution-subtitle {
    font-weight: bold;
}

.jumbotron {
    margin: 0px !important;
}

/*disabled effects for links*/
a {
    text-decoration: none !important;
}

/*Contact forms style*/
.contact-form {
}

    .contact-form > label {
    }

input.form-control {
    background-color: #aaa;
    color: white;
    border-radius: 0px !important;
}

    input.form-control :focus {
        color: #282828 !important;
        background-color: #fff !important;
    }

textarea.form-control {
    background-color: #aaa;
    color: white;
    border-radius: 0px !important;
}

    textarea.form-control :focus {
        color: #282828 !important;
        background-color: white !important;
    }

@media screen and (max-width: 980px) {
    input.form-control {
        font-size: 1rem !important;
    }

    textarea.form-control {
        font-size: 1rem !important;
    }
}


.submit-button {
    border: 1px solid white !important;
    color: white !important;
    background-color: black;
    border-radius: 0px !important;
}

    .submit-button:hover {
        color: white !important;
        border: 1px solid red !important;
    }

    .submit-button:active {
        color: red !important;
        border: 1px solid red;
    }

@media screen and (max-width: 980px) {
    .submit-button {
        font-size: 1.2rem !important;
    }
}

label.error {
    color: red !important;
}

label.control-label {
    font-weight: bold;
}

/*social media buttons*/
.social-media {
    border: 2px solid black;
}

    .social-media:hover {
        border: 2px solid red;
    }

/*navpills*/
ul.nav-pills {
}

    ul.nav-pills > li {
        margin-bottom: 2rem;
    }


/*nav pill option to give each the same size*/
.nav-pills {
    display: flex;
}

    .nav-pills li {
        display: flex;
        flex: 1;
    }

        .nav-pills li a {
            flex: 1;
            text-align: center;
        }


.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

hr {
    border: 1px solid !important;
    color: white !important;
}


.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none !important;
    outline-style: none !important;
    /*box-shadow: none !important;*/
    box-shadow: 0 0 0 0.2rem rgba(170, 170, 170, 0.25);
    border: 1px solid rgba(170, 170, 170, 0.25) !important;
}

a.mail-link > img {
    height: 1.3rem;
}

.carousel-caption > h5 {
    color:white;
    background-color:rgba(170, 170, 170, 0.50);
}