﻿html {
    position: relative;
    min-height: 100%;
}
.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

body {
    margin-bottom: 30px;
    font-family: Trebuchet MS;
    font-style: normal;
    font-weight: 500;
}
.bg-light {
    background-color:white !important;
}

/* #region Navbar styles */
.navbar-header {
    border-bottom: 1px solid rgba(255,255,255, 0.1);
}

.navbar-brand {
    font-size: 1.25em;
    font-weight: lighter;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    opacity: .96;
    padding-right: 1.5rem;

    border-bottom: inset;
    border-color: #a9aba0;
    border-width: 1px;
}

.navbar-brand {
    margin-left: 30px;
}

/* #endregion */


/* #region Footer styles */
.footer {
    bottom: 0;
    width: 100%;
    font-size: 1rem;
    color: white;
}

.footer-container {
    padding-top: 15px;
    width:100%;
    display: grid;
    background-color: #2551a3;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto 30px;
    /**  grid-auto-rows: minmax(100px, auto); **/
    grid-template-areas:
        "useful    site    social"
        "cp    cp    cp";
}

.footer-useful-links-container {
    grid-area: useful;
}

.footer-site-links-container {
    grid-area: site;
}


.footer-social-media-links-container {
    grid-area: social;
}

.footer-social-media-links-list-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footer-social-media-icon{
    margin-top:10px;
}

.footer-copyright-container {
    grid-area: cp;
    font-size: 1rem;
}

.footer-menu-text-header {
    font-weight: 800;
    color: white;
    text-align: center
}


/* #endregion */

/* #region custom Kendo UI styles */

h1 {
   font-family: Korolev Compressed;
   font-weight: 800;
   color: #2551a3;
}
h2 {
    font-family: Korolev Compressed;
    font-weight: 800;
    color: #2551a3;
}
h3 {
    font-family: Korolev Compressed;
    font-weight: 800;
    color: #2551a3;
}
h4 {
    font-family: Korolev Compressed;
    font-weight: 800;
    color: #2551a3;
}
h5 {
    font-family: Korolev Compressed;
    font-weight: 800;
    color: #2551a3;
}
p{
    font-size: 1.2rem;
}

p .k-button {
    margin: 0 15px 0 0;
}

h1 a {
    color: #fff;
    text-decoration: none;
}

.placeholder img {
    display: inline-block;
}

#configure {
    display: none;
}


.k-state-active .label {
    font-size: 1.5em;
}

#responsive-panel {
    padding: 0;
    width: 100%;
}

#responsive-panel .k-menu {
    padding: .5rem;
}
/* #endregion */

.btn-success{
    background-color: #245d38;

}
.wizard-step {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
}

    @media screen and (max-width: 600px) {
        .wizard-step {
            flex-direction: column;
        }

        .k-wizard {    
            padding-block: 0px;
            padding-inline: 0px;
        }

        .index-program-how-it-works-step-image-section{
            height: 200px;
        }

        .k-step-label{
            font-size:.7rem;
        }

        .footer-social-media-links-list-container {
            flex-direction: column;
        }

        /**We are hiding the total results panel for the resources page on small devices.*/
        .ResourcesResultsTotalPanel{
            display:none;
        }
        .k-chip-sm {
            font-size: .85rem !important;
        }
        .k-card-title {
            font-size: 95rem;
        }

        p {
            font-size: 1rem;
        }
        
        .other-description {
            font-size: 1rem !important;
        }

        .resource-card-category-icons {
            height: 25px !important;
        }

        .k-listview-item.k-card {
            width: 100% !important;
            margin-bottom: 25px;
        }
    }

    .footer-item {
            border: 0;
            padding-top: .25em;
            padding-bottom: .25em;
            font-family: montserrat;
            font-style: normal;
            font-weight: 400;
            color: #fff;
            font-size: .9em;
    }

    .footer-link {
        color: #fff;
    }
    .footer-link:hover {
        text-decoration: none;
        background: none;
        border: none !important;
    }
    
    .footer_icon{
        height:20px;
        margin-right:10px;
    }


    /**** Section dealing with the two orgs working together *****/
    .about-our-org-wide {
        background-image: url("../images/tree.png");
        grid-area: us;
        background-position-x: right;
        background-position-y: bottom;
        background-repeat: no-repeat;
        min-height: 400px;
    }

    .about-foco-sustainability {
        margin-top: 20px;
        width: 70%;
        min-width: 350px;
        float: left;
    }


    /* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
    .flip-card {
        background-color: transparent;
        border: 1px solid #f1f1f1;
        perspective: 1000px; /* Remove this if you don't want the 3D effect */
    }

    /* This container is needed to position the front and back side */
    .flip-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: transform 0.8s;
        transform-style: preserve-3d;
    }

    /* Do an horizontal flip when you move the mouse over the flip box container */
    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
    }

    /* Position the front and back side */
    .flip-card-front, .flip-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        -webkit-backface-visibility: hidden; /* Safari */
        backface-visibility: hidden;
    }

    /* Style the front side (fallback if image is missing) */
    .flip-card-front {
    }

    /* Style the back side */
    .flip-card-back {
        background-color: #2551a3;
        color: white;
        transform: rotateY(180deg);
    }




    /** here we are removing the tree image from above if the screen resolution falls below a threshold */
    @media screen and (max-width: 1350px) {
        .about-our-org-wide {
            background-image: none;
        }
        .about-foco-sustainability {
            width: 100%;
        }
    }


    @media (max-width: 800px) {
        #responsive-panel {
            transition: all linear .2s;
        }

        #configure {
            display: block;
            float: right;
        }

        .k-rpanel {
            padding: 0 1rem;
        }

        .k-rpanel-expanded {
            padding: .5rem 1rem;
        }

        .navbar-header {
            width: 100%;
        }

        .navbar-brand {
            font-size: 1.5rem;
        }

        h2 {
            font-size: 2rem;
        }

        .k-menu .k-item,
        .k-menu .k-link {
            width: 100%;
        }

        .k-widget.k-menu-horizontal > .k-item {
            border: none;
        }

        .k-menu .k-link {
            box-sizing: border-box;
        }

        .k-rpanel-expanded ul {
            flex-direction: column;
        }
    }

    .k-menu-link-text {
        color: #2351A2; /* Blue from the NoCoBizConnect logo */
        font-weight: 800;
        font-size: 1.5em;
    }

        .k-menu-link-text:hover {
            color: #70BF49; /* Green from the NoCoBizConnect logo */
        }

    .k-hover {
        color: yellow;
    }

    .video-container {
        border: 1px solid #DDDDDD;
        position: relative;
    }

    .fp-video {
        position: relative;
        right: 0;
        bottom: 0;
        z-index: -1;
    }


    .index-cards-panel {
        z-index: 1;
        width: 100%;
        height: auto;
    }

    .index-card {
        z-index: 1;
        border: solid;
        border-color: black;
        background-color: white;
        height: auto;
    }

        .index-card p {
            margin: 1rem;
        }

        .index-card h2 {
            margin: 10px;
            font-weight: 600;
            text-align: center;
            width: 100%;
        }

    .index-card-monarca {
        z-index: 1;
        border: solid;
        border-color: black;
        background-color: white;
        width: 50%;
        height: auto;
        margin-top: 20px;
    }

        .index-card-monarca p {
            margin: 10px;
        }

        .index-card-monarca h2 {
            margin: 10px;
            font-weight: 600;
            text-align: center;
        }

    @media (min-aspect-ratio: 16/9) {
        .fp-video {
            width: 100%;
            height: auto;
            opacity: 0.25;
        }
    }

    @media (max-aspect-ratio: 16/9) {
        .fp-video {
            width: auto;
            height: 100%;
            opacity: 0.25;
        }
    }

    .contact-section {
        width: 500px;
    }

    .k-picker-solid {
        background: #424242 !important;
        color: white !important;
    }

    .k-stepper .k-step-done .k-step-indicator {
        border-color: #2551a3;
        color: white;
        background-color: #009add;
    }


    /**
 * ----------------------------------------
 * animation slide-in-left
 * ----------------------------------------
 */
    @-webkit-keyframes slide-in-left {
        0% {
            -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
            opacity: 0;
        }

        100% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes slide-in-left {
        0% {
            -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
            opacity: 0;
        }

        100% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
            opacity: 1;
        }
    }
