/* ===================== Buttons ========================= */


/* ======================== */
/* === Button v1 === */
/* ======================== */

.btnv1 {
    display: inline-block;
    line-height: 1;
    border-radius: 0px;
    padding: 10px 20px;
    min-width: 125px;
    text-align: center;
    -webkit-transition: all .3s ease-out;
    transition: all .4s ease-out;
    -webkit-box-shadow: 0 7px 3px -3px rgba(0,0,0,0.09), 2px 12px 7px 0 rgba(0,0,0,0.06), -2px 9px 11px -1px rgba(0,0,0,0.12);
    box-shadow: 0 7px 3px -3px rgba(0,0,0,0.09), 2px 12px 7px 0 rgba(0,0,0,0.06), -2px 9px 11px -1px rgba(0,0,0,0.12);
}

.btnv1:hover {
    -webkit-box-shadow: 0 4px 2px 0 rgba(0,0,0,0.14), 0 4px 1px -2px rgba(0,0,0,0.12), 0 5px 5px 0 rgba(0,0,0,0.2);
    box-shadow: 0 4px 2px 0 rgba(0,0,0,0.14), 0 4px 1px -2px rgba(0,0,0,0.12), 0 5px 5px 0 rgba(0,0,0,0.2);
    -webkit-transition: all .3s ease-out;
    transition: all .2s ease-out;
    text-decoration: none;
}


/* When in card */
.cardv1 .btnv1 {
    margin-top: 10px;
}


/* === Button v1 Helper Classes === */

/* === Rounded Button v1 === */
.btnv1.btnRounded{
    border-radius: 50px;
}

/* === No Shadow Button v1 === */
.btnv1.btnNoShadow{
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* === Social Buttons v1 === */
a.btnv1.socialBtnv1 {
    min-width: 0px;
    height: 50px;
    width: 50px;
    font-size: 18px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
}


/* ===================== IMAGE CLUSTERS ========================= */


/* ======================== */
/* === Image Cluster v1 === */
/* ======================== */

/* ===
Image sizes:
Image 1 (imgClusterv1_1.jpg): 600x600px
Image 2 (imgClusterv1_2.jpg): 600x800px
Image 3 (imgClusterv1_3.jpg): 800x600px
===*/

.imgClusterv1 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 60px;
    flex: 0 0 50%;
    position: relative;
}

.imgClusterv1Image2 {
    width: 55%;
    margin-right: -20%;
    margin-left: 20%;
}


.imgClusterv1Image3 {
    width: 70%;
    margin-top: 30%;
    margin-right: -45%;
}



.imgClusterv1Image1 {
    width: 50%;
    margin-left: -60%;
    margin-top: 10%;
}

/* Drop Shadown 1 */
.imgClusterv1Image1 img {
    -moz-box-shadow: 5px 19px 20px 0px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 5px 19px 20px 0px rgba(0, 0, 0, 0.6);
    box-shadow: 5px 19px 20px 0px rgba(0, 0, 0, 0.6);
}

/* Drop Shadown 2 */
.imgClusterv1Image2 img {
    -moz-box-shadow: 10px 9px 22px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 10px 9px 22px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 10px 9px 22px 0px rgba(0, 0, 0, 0.2);
}

/* Drop Shadown 3 */
.imgClusterv1Image3 img {
    -moz-box-shadow: 20px 15px 26px 0px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 20px 15px 26px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 20px 15px 26px 0px rgba(0, 0, 0, 0.3);
}

/* === Image Cluster v1 on Dark section === */

/* Border element for desktop when in dark section */
@media (min-width: 993px) {
    .fullWidthDarkv1 .imgClusterv1BorderBox {
        border: 3px solid rgba(255, 255, 255, 0.5);
        left: 20%;
        right: 20%;
        top: 20%;
        bottom: 20%;
        position: absolute;
        max-height: 300px;
    }
}

@media (max-width: 992px) {
    .fullWidthDarkv1 .mobileOrder1 > .imgClusterv1 {
        padding: 0px 60px 60px 60px;
    }
}

/* ===================== CARDS ========================= */

/* === Generic Card Styles === */
a.cardLink {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

/* ================ */
/* === Cards v1 === */
/* ================ */

/* === Flex Car Box v1 === */

.flexCardBoxv1 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 40px;
    justify-content: flex-start;
}

/* === Title Card === */

.cardv1TitleCard {
    flex: 0 0 calc(33% - 20px);
    padding: 20px 7% 20px 20px;
    margin: 10px;
}

.cardv1TitleCard h2 {
    margin-bottom: 20px;
    font-size: 42px;
}

@media (min-width: 768px) and (max-width: 992px) {
    .cardv1TitleCard {
        flex: 0 0 calc(100% - 20px);
    }
}

@media (max-width: 767px) {
    .cardv1TitleCard {
        flex: 0 0 calc(100% - 20px);
    }
}

/* === Standard Vertical Card v1 === */

.cardv1 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: relative;
    -webkit-flex-flow: column nowrap;
    flex-direction: column;
    overflow: hidden;
    margin: 10px;
    border: 1px solid #ddd;
    flex: 0 0 calc(33% - 20px);
    max-width: calc(33% - 20px);
    background: #fff;
}

.cardv1 .cardBtmIcon {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    font-size: 25px;
    opacity: 0.2;
    transition: all 0.5s;
    right: 10px;
    bottom: 10px;
}

.cardv1ImageContainer i {
    font-size: 90px;
}

.cardv1ImageContainer {
    align-items: center;
    justify-content: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    height: 130px;
    overflow: hidden;
    background: #eee;
    color: #323232;
}

.cardv1text {
    padding: 30px 30px 50px 30px;
}


@media (min-width: 768px) and (max-width: 992px) {
    .cardv1 {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 767px) {
    .cardv1 {
        flex: 0 0 calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
}


/* === Card v1 Helper Classes === */

/* === Linked Cards v1 === */


.cardv1.cardLinked {
    transition: all 0.3s;
}

.cardv1.cardLinked:hover {
    transform: scale(1.02);
    -moz-box-shadow: 8px 20px 20px rgba(0, 0, 0, 0.1), -20px 28px 23px rgba(0, 0, 0, 0.04), 0px 12px 10px -5px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 8px 20px 20px rgba(0, 0, 0, 0.06), -20px 28px 23px rgba(0, 0, 0, 0.04), 0px 10px 10px -5px rgba(0, 0, 0, 0.2);
    box-shadow: 8px 20px 20px rgba(0, 0, 0, 0.06), -20px 28px 23px rgba(0, 0, 0, 0.04), 0px 10px 10px -5px rgba(0, 0, 0, 0.2);
    transition: all 0.5s;
}


.cardv1.cardLinked .cardv1text h3{
    transition: all 1s;
}

.cardv1.cardLinked:hover .cardv1text h3 {
    color: #323232;
    transition: all 0.3s;
}


.cardv1.cardLinked div.cardBtmIcon {
    transition: all 1s;
}


.cardv1.cardLinked:hover div.cardBtmIcon {
    opacity: 1;
    transition: all 0.3s;
    transform: scale(1.2);
    color: #323232;
}


/* === Card v1 No Border === */

.cardv1.cardNoBorder {
    border: none;
}

.cardv1.cardNoBorder:hover {
    border: none;
}

/* === Card v1 Rounded Corners === */

.cardv1.cardRounded {
    border-radius: 20px;
    overflow: hidden;
}

/* === Call-out Card v1 === */

.cardv1.cardCallout {
    background: #323232;
}

.cardv1.cardCallout *{
    color: #fff;
}

.cardv1.cardCallout h3 {
    font-weight: bold;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-size: 32px;
    border-bottom: 3px solid white;
}

/* ===================== Sections ========================= */


/* ========================= */
/* === Full Width Dark v1 === */
/* ========================= */

.fullWidthDarkv1 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 40px;
    background: #323232;
    flex-wrap: wrap;
}

.fullWidthDarktextv1 {
    padding: 20px;
    color: white;
    flex: 0 0 calc(50% - 20px);
    /*max-width: calc(50% - 20px);*/
}

.fullWidthDarktextv1 h3 {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .fullWidthDarkv1 .mobileOrder2 > .fullWidthDarktextv1 {
        flex: 0 0 100%;
        max-width: calc(100% - 20px);
        order: 2;
        padding: 120px 40px 40px 40px;
        margin-top: -150px;
        border: 3px solid rgba(255, 255, 255, 0.5);
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .fullWidthDarkv1 {
        justify-content: space-around;
    }

    .mobileOrder2 > .fullWidthDarktextv1 {
        margin-top: -90px;
    }
}


/* ===================== Helper Classes ========================= */

/* ============================ */
/* === Basic Flex Divisions === */
/* ============================ */

@media (min-width: 993px){
    .flexDesktopHalf {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
        margin: 10px;
    }
    .flexDesktopTwoThirds {
        flex: 0 0 calc((100%/3)*2 - 20px);
        max-width: calc((100%/3)*2 - 20px);
        margin: 10px;
    }
    .flexDesktopFull {
        flex: 0 0 calc(100% - 20px);
        max-width: calc(100% - 20px);
        margin: 10px;
    }
}

@media (max-width: 992px){
    .flexMobileHalf {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
        margin: 10px;
    }
    .flexMobileTwoThirds {
        flex: 0 0 calc((100%/3)*2 - 20px);
        max-width: calc((100%/3)*2 - 20px);
        margin: 10px;
    }
    .flexMobileFull {
        flex: 0 0 calc(100% - 20px);
        max-width: calc(100% - 20px);
        margin: 10px;
    }
}



/* ============================ */
/* ===== Flex iE11+ Fixes ===== */
/* ============================ */

@media all and (min-width: 993px) {
    .flexDesktopHalf {
        flex: 1 0 45%;
        max-width: 1 0 45%;
    }
}

@media all and (max-width: 992px) {
    .flexDesktopHalf {
        flex: 1 0 90%;
        max-width: 1 0 90%;
    }
}



/* ========================= */
/* === Order of elements === */
/* ========================= */

@media (max-width: 992px){
    .mobileOrder1{
        order: 1;
    }

    .mobileOrder2{
        order: 2;
    }

    .mobileOrder3{
        order: 3;
    }

    .mobileOrder4{
        order: 4;
    }

    .mobileOrder5{
        order: 5;
    }

    .mobileOrder6{
        order: 6;
    }

    .mobileOrder7{
        order: 7;
    }

    .mobileOrder8{
        order: 8;
    }

    .mobileOrder9{
        order: 9;
    }

    .mobileOrder10{
        order: 10;
    }
}


/* =================== CSS Extras Framework Styles ===================== */

.img-responsive {
    /* width: auto; */
}

.img-responsive.headerlogo {
    max-width: none;
}

#content-container .container {
    padding: 0px;
}

div#ctl00_dvContent {
    padding: 0px;
}

div#breadcrumb {
    padding: 20px;
}

.btnExamples {
    padding: 0px 30px;
    text-align: center;
}

.btnExamples a {
    margin-bottom: 20px;
}

h1.Example {
    flex-basis: calc(100% - 20px);
    text-transform: uppercase;
    font-size: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin: 30px 10px 20px 10px;
    text-shadow: none;
}

h1.Example:first-child {
    flex-basis: calc(100% - 20px);
    text-transform: uppercase;
    font-size: 30px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin: 10px 10px 20px 10px;
    text-shadow: none;
}

.cardv1TitleCard h2 {
    font-size: 25px;
}