
/*!
 * My custom CSS.
 */


/* Vertical Center */
.vcenter {
    top: 50%;
    min-height: 28vh; /* Height of item */
    /* height: 400px; /* Height of item */
    /* margin-top: -50px; /* account for padding and border if not using box-sizing: border-box; */
}

*/
/* Big Triangle */
svg#bigTriangleColor {
    pointer-events: none;
}

#bigTriangleColor path {
    fill: #0070B9;
}

#header, #navigation-top, #navigation-bottom {
    -webkit-box-shadow: 0 8px 6px -6px #999;
    -moz-box-shadow: 0 8px 6px -6px #999;
    box-shadow: 0 8px 6px -6px #999;
}

.navbar-default {
    background-color: #fff;
    border-color: transparent;
}

    .navbar-default .navbar-nav > li > a {
        color: #44464C;
    }

.img-responsive-nav {
    padding: 10px;
    display: block;
    max-width: 100%;
    height: auto;
    padding: 0px !important;
    margin-top: auto !important;
    float: right;
}

/* Tablet and smaller for images - all images and icons */
@media only screen and (max-width: 767px) {
    img {
        /*max-width: 45% !important;*/
        /* max-width: 60% !important; */
        margin-left: auto;
        margin-right: auto;
    }
}

/* Tablet and larger for images */
@media only screen and (min-width: 768px) {
    img.responsive2 {
        /* max-width: 75% !important;*/
        margin-left: auto;
        margin-right: auto;
    }
}

/* Portrait phones and smaller */
@media only screen and (max-width: 480px) {
    .dropdown-menu {
        display: block;
        position: static;
        background-color: transparent;
        border: 0 none;
        box-shadow: none;
        margin-top: 0;
        position: static;
        width: 100%;
    }

    .navbar-nav .dropdown-menu > li > a,
    .navbar-nav .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px;
    }

    .navbar-nav .dropdown-menu > li > a {
        line-height: 20px;
    }

    .navbar-default .navbar-nav .dropdown-menu > li > a {
        color: #777;
    }
}

/*.vimeoOverlay {
  background-color: black;
	background-repeat: repeat;
	padding: 20px 20px 20px 30px;
	color: #FFF;
	font-weight: 300;
	font-size: 1.3em;
	text-align:left;
	width: 480px;
	position: absolute;
	left: 50px;
	top: 115px;
	z-index: 9999;
	font-size: 44px;
	font-family: "Open Sans", sans-serif;
	font-weight: 300;
	line-height: 52px;
}*/

/* FontsAwesome */
.fa-custom {
    font-size: 2.6em;
    font-weight: 900;
    padding: 15px 15px 0 0;
}

.fa-color-pdf {
    color: #f15642;
}

#fa-color-pdf::before {
    content: '\f067';
    font-size: 5.6em;
    font-family: FontAwesome;
}

.fa-color-word {
    color: #2a5699;
}

#fa-color-word::before {
    content: '\f1c2';
    font-size: 5.6em;
    font-family: FontAwesome;
}

.fa-color-powerpoint {
    color: #cb4a32;
}

#fa-color-powerpoint::before {
    content: '\f1c4';
    font-size: 5.6em;
    font-family: FontAwesome;
}

.fa-color-image {
    color: #a7a7a7;
}

/* set minimum - vw/vh viewport height and width - https://snook.ca/archives/html_and_css/vm-vh-units*/
.vh-sm {
    clear: both;
    min-height: 100px;
    /*  border: 1px black;
  border-style: solid;*/
    /* height: 7vw; */
}

.vh-md {
    height: 14vw;
}

.vh-lg {
    height: 27vw;
}

.div-padding-sm {
    padding-bottom: 25px;
    /*  border: 3px black;
  border-style: solid;*/
}

.div-padding-md {
    padding-bottom: 150px;
}

.div-padding-lg {
    padding-bottom: 250px;
}

/* Cards for bootstrap 3 */

.card-document {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    background-clip: border-box;
    box-sizing: border-box;
    -webkit-box-sizing: border-box; /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-sizing: border-box; /* Firefox 3.5 - 3.6 */
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    /* CSS Hover Animation */
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    -webkit-transition: .1s ease-in-out;
    transition: .1s ease-in-out;
}

    .card-document:hover {
        -webkit-transform: rotate(0) scale(1.03);
        transform: rotate(0) scale(1.03);
        background-color: rgba(220,220,220,.6);
        /* background-color: #00bcf2; */
    }

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    /*
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  */
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-title {
    margin-bottom: 0.75rem;
}

.card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

    .card-header:first-child {
        border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
    }

.card-footer {
    /*padding: 0.75rem 1.25rem;*/
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

    .card-footer:last-child {
        border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
    }
/* Buttons primary button */
/*.btn-primary {
    color: #44464C;
    background-color: #fff;
    border-color: #2c3e50;
    */
}

*/

.btn {
    /*    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 10px 15px;
    font-size: 15px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;*/
}

/* Home button */
.navbar-default .navbar-brand {
    color: #44464C;
}

    /* Home button hover custom */
    .navbar-default .navbar-brand:focus, .navbar-default .navbar-brand:hover {
        color: #ff9900;
        background-color: transparent;
    }

/* links hover custom */
.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover {
    color: #ff9900;
    background-color: #ecf0f1;
}


/* adding a border to the videos */
.embed-responsive-16by9 {
    border: .25px solid #2c3e50;
}

/* iframe embed-container for media */
.embed-container {
    /* margin-top: 0px; border: 15px solid #000;*/
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

    .embed-container iframe, .embed-container object, .embed-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/* CSS Custom Dropdown Menu List Item Design */
.dropdown-menu > li > a:hover {
    color: #000;
    text-decoration: none;
    background-color: rgba(128,128,128,0.5);
}

/* All in one dropdown icon design */
.dropdown-icon {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 24px; /* Width of new image */
    height: 24px; /* Height of new image */
    padding-left: 28px; /* Equal to width of new image */
    padding-bottom: 28px; /* Equal to width of new image*/
    margin-right: 7px;
}

/* Standard icons */
.puzzle {
    content: url(../../Images/puzzle.svg);
    max-width: 140px; /* Maimum width of image */
}

.trivia {
    content: url(../../Images/trivia.svg);
    max-width: 140px; /* Maimum width of image */
}

.controller {
    content: url(../../Images/controller.svg);
    max-width: 140px; /* Maimum width of image */
}

.video {
    content: url(../../Images/video.svg);
    max-width: 140px; /* Maimum width of image */
}

.elearning {
    content: url(../../Images/elearning.svg);
    max-width: 140px; /* Maimum width of image */
}

.dashboard {
    content: url(../../Images/dashboard.svg);
    max-width: 140px; /* Maimum width of image */
}

.checklist {
    content: url(../../Images/checklist.svg);
    max-width: 160px; /* Maimum width of image */
    /* padding-bottom: 5%; /* This helps the spacing with double line titles */
}

/* Large Screens */
@media only screen and (min-width: 768px) {
    .checklist {
        content: url(../../Images/checklist.svg);
        max-height: 140px; /* Maimum width of image */
        padding-bottom: 5%; /* This helps the spacing with double line titles */
    }

    .dashboard {
        content: url(../../Images/dashboard.svg);
        max-height: 140px; /* Maimum width of image */
        padding-bottom: 5%; /* This helps the spacing with double line titles */
    }
}

.video-process {
    content: url(../../Images/video-process.svg);
    max-width: 140px; /* Maimum width of image */
}

.pdf {
    content: url(../../Images/pdf.svg);
    max-width: 140px; /* Maimum width of image */
}

.doc {
    content: url(../../Images/doc.svg);
    max-width: 140px; /* Maimum width of image */
}

.file {
    content: url(../../Images/file.svg);
    max-width: 140px; /* Maimum width of image */
}
/* Standard icons */

/* All in one dropdown icon design based on iso language code */
/*.dropdown-icon.agent-iso {
    background: url(https://use.fontawesome.com/releases/v5.0.9/svgs/brands/black-tie.svg) no-repeat;
}*/

/*.dropdown-icon.agent-iso {
    content: "\f005";
    font-family: FontAwesome;
    display: inline-block;
    padding-right: 6px;
    vertical-align: middle;
}*/

/* custom icon alignment */
.icon-alignment {
    margin: 0 auto;
    width: 196px;
}

/* custom breadcrumb generic */

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 21px;
    list-style: none;
    border-radius: 4px;
    justify-content: center;
}

    .breadcrumb a:link {
        color: #333333;
    }

    .breadcrumb a:visited {
        color: #333333;
    }

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0;
}

    .breadcrumb-item + .breadcrumb-item::before {
        content: "\025B8";
        padding: 0 3px;
        color: #959595;
    }


.breadcrumb > li + li:before {
    content: "\025B8";
    padding: 0 3px;
    color: #959595;
}

.breadcrumb li {
    font-size: 90%;
    font-weight: 600;
    display: inline-block;
}

.breadcrumb-item {
    text-transform: uppercase;
}

.dropdown-icon.menu-active {
    background: url(../../Images/client/tmo-icon.png) no-repeat;
}

.dropdown-icon.menu {
    background: url(../../Images/caret-right.svg) no-repeat;
}

.dropdown-icon.assurant-icon {
    background: url(../../Images/client/icons/assurant-icon.png) no-repeat;
    margin-bottom: -2px;
}

.dropdown-icon.assurant-dark-icon {
    background: url(../../Images/client/icons/assurant-dark-icon.png) no-repeat;
    margin-bottom: -2px;
}

figure {
    overflow: hidden;
}

    figure:hover + span {
        opacity: 1;
    }

.imgMedium {
    max-width: 140px;
}

/* CSS Hover01 Animation */
.hover01 figure img {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover01 figure:hover img {
    -webkit-transform: rotate(0) scale(1.1);
    transform: rotate(0) scale(1.1);
}

.hovereffect {
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
}

    .hovereffect .overlay {
        width: 100%;
        height: 100%;
        position: absolute;
        overflow: hidden;
        top: 0;
        left: 0;
    }

    .hovereffect img {
        display: block;
        position: relative;
        -webkit-transition: all 0.4s ease-in;
        transition: all 0.4s ease-in;
    }

    .hovereffect:hover img {
        filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0" /><feGaussianBlur stdDeviation="3" /></filter></svg>#filter');
        filter: grayscale(1) blur(3px);
        -webkit-filter: grayscale(1) blur(3px);
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2);
    }

    .hovereffect h2 {
        text-transform: uppercase;
        text-align: center;
        position: relative;
        font-size: 17px;
        padding: 10px;
        background: rgba(0, 0, 0, 0.6);
    }

    .hovereffect a.info {
        display: inline-block;
        text-decoration: none;
        padding: 7px 14px;
        border: 1px solid #fff;
        margin: 50px 0 0 0;
        background-color: transparent;
    }

        .hovereffect a.info:hover {
            box-shadow: 0 0 5px #fff;
        }

    .hovereffect a.info, .hovereffect h2 {
        -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
        -webkit-transition: all 0.4s ease-in;
        transition: all 0.4s ease-in;
        opacity: 0;
        filter: alpha(opacity=0);
        color: #fff;
        text-transform: uppercase;
    }

    .hovereffect:hover a.info, .hovereffect:hover h2 {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }


/* application based headers / fontsawesome */
@media (min-width: 767px) {
    .headerCustom .container {
        /*padding-top: 75px;*/
        padding-bottom: 20px;
    }

    .headerCustom .intro-text .name {
        display: block;
        text-transform: uppercase;
        font-family: "Open Sans", sans-serif;
        font-size: 1.75em;
        font-weight: 700;
    }

    .headerCustom .intro-text .skills {
        font-size: 1.75em;
        font-weight: 300;
        letter-spacing: 0.0425em;
    }
}


@media (max-width: 767px) {
    .headerCustom .container {
        /*padding-top: 20px;*/
        padding-bottom: 20px;
    }

    .headerCustom .intro-text .name {
        display: block;
        text-transform: uppercase;
        font-family: "Open Sans", sans-serif;
        font-size: 1.75em;
        font-weight: 700;
    }

    .headerCustom .intro-text .skills {
        font-size: 1.75em;
        font-weight: 300;
        letter-spacing: 0.0425em;
    }
}



hr.star-light-app {
    margin: 25px auto 30px;
    padding: 0;
    max-width: 250px;
    border: 0;
    border-top: solid 5px;
    text-align: center;
    font-weight: 900;
}

    hr.star-light-app:after {
        /* content: "\f005"; */
        content: "\f144";
        display: inline-block;
        position: relative;
        top: -.8em;
        padding: 0 .25em;
        font-family: FontAwesome;
        font-size: 2em;
        font-weight: 900;
    }

span.roll {
    background: center center no-repeat #fff;
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
}

/* add the font awesome icon */

.roll:before {
    content: "\f00e";
    /*	content: "\f144";*/
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    /*    opacity: .0015;
    -webkit-transition: top .3s ease,opacity .3s ease;
    -moz-transition: top .3s ease,opacity .3s ease;
    -ms-transition: top .3s ease,opacity .3s ease;
    transition: top .3s ease,opacity .3s ease;*/
    /*--adjust as necessary--*/
    /*    color: #d93726;*/
    color: #3C98DB;
    font-size: 45px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -45px 0 0 -35px;
}

.roll2:before {
    content: "\f16a";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    /*--adjust as necessary--*/
    /*    color: #d93726;*/
    color: #3C98DB;
    font-size: 45px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -35px 0 0 -35px;
}
/*!
 * My custom CSS. END
 */


/*!
 * Start Bootstrap - Freelancer Bootstrap Theme (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */

body {
    overflow-x: hidden;
    text-align: center;
}

p {
    font-size: 20px;
}

    p.small {
        font-size: 16px;
    }

a,
a:hover,
a:focus,
a:active,
a.active {
    outline: 0;
    /* color: rgb(235,60,0); */
    color: #ff9f00;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
}


hr.videoIcon {
    margin: 25px auto 30px;
    padding: 0;
    max-width: 250px;
    border: 0;
    border-top: solid 5px;
    text-align: center;
    font-weight: 900;
}

    hr.videoIcon:after {
        font-family: "Font Awesome 5 Brands";
        font-weight: 900;
        content: "\f167";
        text-decoration: inherit;
        /*--adjust as necessary--*/
        font-size: 26px;
        margin-left: -30px;
        /* width padding */
        padding: 0 .6em;
        position: absolute;
        top: 77.5px;
        /* Added overflow property and set to 'visible' */
        overflow: visible;
    }

hr.videoIcon {
    border-color: #2c3e50;
}

    hr.videoIcon:after {
        color: #2c3e50;
        background-color: #fff;
    }

hr.star-light,
hr.star-primary {
    margin: 25px auto 30px;
    padding: 0;
    max-width: 250px;
    border: 0;
    border-top: solid 5px;
    text-align: center;
    font-weight: 900;
}

    hr.star-light:after,
    hr.star-primary:after {
        font-family: "Font Awesome 5 Pro";
        font-weight: 900;
        content: "\f144";
        text-decoration: inherit;
        /*--adjust as necessary--*/
        font-size: 26px;
        margin-left: -25px;
        /* width padding */
        padding: 0 .6em;
        position: absolute;
        top: 77.5px;
        /* Added overflow property and set to 'visible' */
        overflow: visible;
    }

hr.star-light {
    border-color: #fff;
}

    hr.star-light:after {
        color: #fff;
        /* background-color: rgb(235,60,0); */
        background: #d93726;
    }

hr.star-primary {
    border-color: #2c3e50;
}

    hr.star-primary:after {
        color: #2c3e50;
        background-color: #fff;
    }

.img-centered {
    margin: 0 auto;
}

header {
    text-align: center;
    color: #fff;
    /* background: rgb(235,60,0); */
    background: #FF9F00;
}

    header .container {
        /*padding-top: 100px;*/
        padding-bottom: 50px;
    }

    header img {
        display: block;
        margin: 0 auto 20px;
    }

    header .intro-text .name {
        display: block;
        text-transform: uppercase;
        font-family: "Open Sans", sans-serif;
        font-size: 2em;
        font-weight: 700;
        /* text-align: left; */
    }

    header .intro-text .subname {
        display: block;
        font-family: "Open Sans", sans-serif;
        font-size: 1.5em;
    }

    header .intro-text .skills {
        font-size: 1.2em;
        font-weight: 500;
        font-style: italic;
        letter-spacing: 0.0425em;
    }

/* Portrait tablets and small desktops */
@media (min-width: 768px) {
    header .container {
        /*padding-top: 150px;*/
        padding-bottom: 50px;
    }

    /* HEADER NAME FONT SIZE */
    header .intro-text .name {
        /*font-size: 4.75em; */
        font-size: 48px;
    }

    header .intro-text .skills {
        font-size: 1.75em;
    }

    .col-md-offset-3c {
        margin-left: 25%;
        margin-top: -55px;
    }
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) {
    .navbar-fixed-top {
        padding: 25px 0;
        -webkit-transition: padding .3s;
        -moz-transition: padding .3s;
        transition: padding .3s;
    }

        .navbar-fixed-top .navbar-brand {
            font-size: 2em;
            -webkit-transition: all .3s;
            -moz-transition: all .3s;
            transition: all .3s;
        }

        .navbar-fixed-top.navbar-shrink {
            padding: 10px 0;
        }

            .navbar-fixed-top.navbar-shrink .navbar-brand {
                font-size: 1.5em;
            }
}

.navbar {
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
    font-weight: bolder;
}

.navbar {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    /* the rest of your styling */
}

    .navbar a:focus {
        outline: 0;
    }

    .navbar .navbar-nav {
        letter-spacing: 1px;
    }

        .navbar .navbar-nav li a:focus {
            outline: 0;
        }

.navbar-default,
.navbar-inverse {
    border: 0;
}

section {
    padding: 30px 0;
}

.section-small {
    padding: 25px 0;
}

section h2 {
    margin: 0;
    font-size: 3em;
}

section.success {
    color: #fff;
    background-color: #FF9F00 !important;
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
    section {
        padding: 75px 0;
    }

        section.first {
            padding-top: 75px;
        }

    /* header customizations max-width:767px - bm */
    header .container {
        /*padding-top: 100px;*/
        padding-bottom: 40px;
    }

    header .intro-text .name {
        font-size: 2em;
    }

    header .intro-text .skills {
        font-size: 1.5em;
    }
}
/* header customizations max-width:767px - bm */

.videoShadow {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#portfolio .portfolio-item {
    right: 0;
    margin: 0 0 15px;
}

    #portfolio .portfolio-item .portfolio-link {
        display: block;
        position: relative;
        margin: 0 auto;
        max-width: 400px;
    }

        #portfolio .portfolio-item .portfolio-link .caption {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            background: rgba(24,188,156,.9);
            -webkit-transition: all ease .5s;
            -moz-transition: all ease .5s;
            transition: all ease .5s;
        }

            #portfolio .portfolio-item .portfolio-link .caption:hover {
                opacity: 1;
            }

            #portfolio .portfolio-item .portfolio-link .caption .caption-content {
                position: absolute;
                top: 50%;
                width: 100%;
                height: 20px;
                margin-top: -12px;
                text-align: center;
                font-size: 20px;
                color: #fff;
            }

                #portfolio .portfolio-item .portfolio-link .caption .caption-content i {
                    margin-top: -12px;
                }

                #portfolio .portfolio-item .portfolio-link .caption .caption-content h3,
                #portfolio .portfolio-item .portfolio-link .caption .caption-content h4 {
                    margin: 0;
                }

#portfolio * {
    z-index: 2;
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) {
    #portfolio .portfolio-item {
        margin: 0 0 30px;
    }
}

.btn-outline {
    margin-top: 15px;
    border: solid 2px #fff;
    font-size: 20px;
    color: #fff;
    background: 0 0;
    transition: all .3s ease-in-out;
}

    .btn-outline:hover,
    .btn-outline:focus,
    .btn-outline:active,
    .btn-outline.active {
        border: solid 2px #fff;
        color: #FF9F00;
        /*    color: rgb(235,60,0);*/
        background: #fff;
    }

.floating-label-form-group {
    position: relative;
    margin-bottom: 0;
    padding-bottom: .5em;
    border-bottom: 1px solid #eee;
}

    .floating-label-form-group input,
    .floating-label-form-group textarea {
        z-index: 1;
        position: relative;
        padding-right: 0;
        padding-left: 0;
        border: 0;
        border-radius: 0;
        font-size: 1.5em;
        background: 0 0;
        box-shadow: none !important;
        resize: none;
    }

    .floating-label-form-group label {
        display: block;
        z-index: 0;
        position: relative;
        top: 2em;
        margin: 0;
        font-size: .85em;
        line-height: 1.764705882em;
        vertical-align: middle;
        vertical-align: baseline;
        opacity: 0;
        -webkit-transition: top .3s ease,opacity .3s ease;
        -moz-transition: top .3s ease,opacity .3s ease;
        -ms-transition: top .3s ease,opacity .3s ease;
        transition: top .3s ease,opacity .3s ease;
    }

    .floating-label-form-group::not(:first-child) {
        padding-left: 14px;
        border-left: 1px solid #eee;
    }

.floating-label-form-group-with-value label {
    top: 0;
    opacity: 1;
}

.floating-label-form-group-with-focus label {
    color: #FF9F00;
    /*    color: rgb(235,60,0);*/
}

form .row:first-child .floating-label-form-group {
    border-top: 1px solid #eee;
}

/* Sticky footer styles */
/*.footer {
    position: absolute;
    bottom: 0;
    width: 100%;*/
/* Set the fixed height of the footer here */
/*height: 460px;
    background-color: #f5f5f5;
}*/

footer {
    color: #fff;
}

    footer h3 {
        margin-bottom: 30px;
    }

    footer .footer-above {
        background-color: #2c3e50;
    }

    footer .footer-col {
        margin-top: 10px;
    }

    footer .footer-below {
        padding: 25px 0;
        /* background-color: #233140; */
        background-color: #44464b;
    }

/* This works if row has 1 icon and less text */
@media (max-width: 1200px) {
    .footer-sticky1 {
        position: absolute;
        bottom: 0;
        width: 100%;
        /* Set the fixed height of the footer here */
        /* height: 230px; */
    }
}

/* This works if row has 1 icon and less text */
@media (min-width: 768px) {
    .footer-sticky1 {
        position: absolute;
        bottom: 0;
        width: 100%;
        /* Set the fixed height of the footer here */
        /* height: 230px; */
    }
}

/* This works if row has 2 or 3 icons */
@media (min-width: 768px) {
    .footer-sticky2 {
        position: absolute;
        bottom: 0;
        width: 100%;
        /* Set the fixed height of the footer here */
        /* height: 230px; */
    }
}

/* This works if row has 2 icons */
@media (min-width: 1200px) {
    .footer-sticky2 {
        position: absolute;
        bottom: 0;
        width: 100%;
        /* Set the fixed height of the footer here */
        /* height: 230px; */
    }
}

/* This works if row has 3 icons */
@media (min-width: 1200px) {
    .footer-sticky3 {
        position: absolute;
        bottom: 0;
        width: 100%;
        /* Set the fixed height of the footer here */
        /* height: 230px; */
    }
}

.btn-social {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 100%;
    text-align: center;
    font-size: 20px;
    line-height: 45px;
}

.btn:focus,
.btn:active,
.btn.active {
    outline: 0;
}

.scroll-top {
    z-index: 1049;
    position: fixed;
    right: 2%;
    bottom: 2%;
    width: 50px;
    height: 50px;
}

    .scroll-top .btn {
        width: 50px;
        */ height: 50px;
        */ border-radius: 100%;
        font-size: 20px;
        line-height: 28px;
    }

        .scroll-top .btn:focus {
            outline: 0;
        }

#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #FF9F00;
    /*    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);*/
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
    /* Return to top icon settings */
    #return-to-top i {
        color: #fff;
        margin: 0;
        position: relative;
        left: 0px;
        top: 15px;
        font-size: 19px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    #return-to-top:hover {
        background: rgba(0, 0, 0, 0.9);
    }

        #return-to-top:hover i {
            color: #fff;
            top: 5px;
        }

.portfolio-modal .modal-content {
    padding: 100px 0;
    min-height: 100%;
    border: 0;
    border-radius: 0;
    text-align: center;
    background-clip: border-box;
    -webkit-box-shadow: none;
    box-shadow: none;
}

    .portfolio-modal .modal-content h2 {
        margin: 0;
        font-size: 3em;
    }

    .portfolio-modal .modal-content img {
        margin-bottom: 30px;
    }

    .portfolio-modal .modal-content .item-details {
        margin: 30px 0;
    }

.portfolio-modal .close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 55px; /* (org 75)set modal close size 1 of 2 */
    height: 75px; /* (org 75)set modal close size 1 of 2 */
    background-color: transparent;
    cursor: pointer;
}

    .portfolio-modal .close-modal:hover {
        opacity: .3;
    }

    .portfolio-modal .close-modal .lr {
        z-index: 1051;
        width: 1px;
        height: 25px; /* (org 75)set modal close size 1 of 2 */
        margin-left: 35px;
        background-color: #2c3e50;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

        .portfolio-modal .close-modal .lr .rl {
            z-index: 1052;
            width: 1px;
            height: 25px; /* (org 75)set modal close size 2 of 2 */
            background-color: #2c3e50;
            -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            transform: rotate(90deg);
        }

.portfolio-modal .modal-backdrop {
    display: none;
    opacity: 0;
}


.navbar {
    border-radius: 0;
}

/*.navbar-new {
    background-color: #23BAB5;
    border-color: #0FA6A1;
}*/


.navbar-new .navbar-brand,
.navbar-new .navbar-brand:hover,
.navbar-new .navbar-brand:focus {
    color: #FFF;
}

.navbar-new .navbar-nav > li > a {
    color: #FFF;
}

    .navbar-new .navbar-nav > li > a:hover,
    .navbar-new .navbar-nav > li > a:focus {
        background-color: #0FA6A1;
    }

.navbar-new .navbar-nav > .active > a,
.navbar-new .navbar-nav > .active > a:hover,
.navbar-new .navbar-nav > .active > a:focus {
    color: #FFF;
    background-color: #0FA6A1;
}

.navbar-new .navbar-text {
    color: #FFF;
}

.navbar-new .navbar-toggle {
    border-color: #0FA6A1;
}

    .navbar-new .navbar-toggle:hover,
    .navbar-new .navbar-toggle:focus {
        background-color: #0FA6A1;
    }

    .navbar-new .navbar-toggle .icon-bar {
        background-color: #FFF;
    }

.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background-color: #ecf0f1;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #44464C;
}

.btn-primary.active, .btn-primary.focus, .btn-primary:active, .btn-primary:focus, .btn-primary:hover, .open > .dropdown-toggle.btn-primary {
    /*color: #000;
    background-color: #ecf0f1;*/
    /* border-color: #161f29; */
}

.headerLogo {
    max-height: 50px;
    padding-left: 15px;
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    color: #000000;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
}
