/*!
 * Start Bootstrap - Agency Bootstrap Theme (https://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;
    font-family: "Roboto Slab","Helvetica Neue",Helvetica,Arial,sans-serif;
}

section {
  border-bottom: 1px solid #CCC;
}

.portfolio-item:focus-within {
  border: 2px solid #fd7d00;
  padding: 5px;
}

.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
	margin-left: 0;
}

.row {
  margin-right: 0px;
  margin-left: 0px;
}

#brandHole, #designHole, #devHole, #videoHole, #webHole {
  border-top: 1px solid #CCC;
  padding: 20px 0 0 0;
  margin: 0;
}

p {
  margin: 0 0 20px;
}

button {
  border-bottom: 0px solid #fd7d00;
  color: #FFF;
  float: right;
  font-size: 20px;
  padding: 10px;
  background: none;
  border-left: 0px;
  border-right: 0px;
  border-top: 0px;
  margin: 0px;
  text-transform: uppercase;
  background-color: #fd7d00;
}

.bunny {
  width: 50px;
}



.bounce:hover {
	animation: bounce 3s infinite;
	-webkit-animation: bounce 3s infinite;
	-moz-animation: bounce 3s infinite;
	-o-animation: bounce 3s infinite;
} 
 
@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}	
	40% {-webkit-transform: translateY(-30px); transform: translateY(-30px);}
	60% {-webkit-transform: translateY(-15px); transform: translateY(-15px);}
}
 
@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0); transform: translateY(0);}
	40% {-moz-transform: translateY(-30px); transform: translateY(-30px);}
	60% {-moz-transform: translateY(-15px); transform: translateY(15px);}
}
 
@-o-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0); transform: translateY(0);}
	40% {-o-transform: translateY(-30px); transform: translateY(-30px);}
	60% {-o-transform: translateY(-15px); transform: translateY(-15px);}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}


/* START TOOLTIP STYLES */
[tooltip] {
  position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: .9em; /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}
[tooltip]::before {
  content: '';
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
  margin-top: 20px
}
[tooltip]::after {
  content: attr(tooltip); /* magic! */
  
  /* most of the rest of this is opinion */
  font-family: Helvetica, sans-serif;
  text-align: center;
  
  /* 
    Let the content set the size of the tooltips 
    but this will also keep them from being obnoxious
    */
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: .3ch;
  box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
  background: #333;
  color: #fff;
  z-index: 1000; /* absurdity 2 */
  margin-top: 20px;
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}
[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}
[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, .5em);
}

/* FLOW: LEFT */
[tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #333;
  left: calc(0em - 5px);
  transform: translate(-.5em, -50%);
}
[tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 5px);
  transform: translate(.5em, -50%);
}
[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: .9;
    transform: translate(0, -50%);
  }
}

/* FX All The Things */ 
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}

.left-tip:hover {
  position: relative;
  float: right;
}


/* END Tooltips */


/* CAPTCHA Strat */

.robot {
  font-size: 14px;
  float: left;
  padding: 0 15px 0 0;
}

.box-container {
  display: block;
  background-color: #F9F9F9;
  border: 1px solid #D3D3D3;
  border-radius: 3px;
  align-items: center;
  padding: 15px 0px 0px 0px;
  width: 100%;
  margin: 0 0 25px 15px;
  position: relative;
}

.cont-catch {
  border: 1px solid #ccc;
  background-color: #FFF;
  opacity: .8;
  margin: 0 0 25px 0;
  padding: 10px 0 0 0;
}

input[type="checkbox"] {
    appearance: none;    
    width: 26px;
    height: 26px;    
    border: 2px solid #C1C1C1;
    margin: 0px 14px 0px 14px;
	float: left;
}

input[type="checkbox"]:checked::before {
    content: url(https://img.icons8.com/?size=20&id=27&format=png&color=1e5180);
    display: block;    
    line-height: 20px;
    padding: 0.05rem 0.6rem 0rem 0.05em;
}

.cap-logo svg {
  top: -2px;
  position: relative;
}

/* CAPTCHA End



/* Skills Anime START */

#container-skills {
  color:#999;
  text-transform: uppercase;
  font-size:26px;
  font-weight:bold;
  width:100%;
  display:block;
  margin: 20px;
  text-align: left;
}

#flip {
  height:50px;
  overflow:hidden;
}

#flip > div > div {
  color:#fff;
  padding:4px 12px;
  margin-bottom:50px;
  display:inline-block;
}

#flip div:first-child {
  animation: show 5s linear infinite;
}

#flip div div {
  background:#42c58a;
}

#flip div:first-child div {
  background:#4ec7f3;
}

@keyframes show {
  0% {margin-top:-270px;}
  5% {margin-top:-180px;}
  33% {margin-top:-180px;}
  38% {margin-top:-90px;}
  66% {margin-top:-90px;}
  71% {margin-top:0px;}
  99.99% {margin-top:0px;}
  100% {margin-top:-270px;}
}

/* Skills Anime END */




.text-muted {
  color: #777;
  margin: 20px;
}

header {
  background-color: #000;
}

video {
  width: 100%;
  cursor: pointer;
  padding: 0;
  margin-top: 0px;
}


@media (max-width: 768px) {
	#myVideo {
	  margin-top: 105px;
		}
}

@media (max-width: 1400px) {
	Video {
	  margin-top: 58px;
		}
}

.container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
	margin-top: 0px;
}

.text-primary {
    color: #999;
}

p {
    font-size: 14px;
    line-height: 1.75;
}

p.large {
    font-size: 16px;
}

a,
a:hover,
a:focus,
a:active,
a.active {
    outline: 0;
}

a {
    color: #999;
    cursor: pointer
}

a:hover,
a:focus,
a:active,
a.active {
    color: #fd7d00;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
}

.img-centered {
    margin: 0 auto;
}

.bg-light-gray {
    background-color: #f7f7f7;
}

.bg-darkest-gray {
    background-color: #222;
}

.btn-primary {
    border-color: #999;
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    color: #fff;
    background-color: #777;
	margin: 0px 50%;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    border-color: #fd7d00;
    color: #fff;
    background-color: #fd7d00;
}

.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    background-image: none;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
    border-color: #999;
    background-color: #999;
}

.btn-primary .badge {
    color: #999;
    background-color: #fff;
}

.btn-xl {
    padding: 20px 40px;
    border-color: #999;
    border-radius: 3px;
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background-color: #999;
	width: 100%;
}

.btn-xl:hover,
.btn-xl:focus,
.btn-xl:active,
.btn-xl.active,
.open .dropdown-toggle.btn-xl {
    border-color: #fd7d00;
    color: #fff;
    background-color: #fd7d00;
}

.btn-xl:active,
.btn-xl.active,
.open .dropdown-toggle.btn-xl {
    background-image: none;
}

.btn-xl.disabled,
.btn-xl[disabled],
fieldset[disabled] .btn-xl,
.btn-xl.disabled:hover,
.btn-xl[disabled]:hover,
fieldset[disabled] .btn-xl:hover,
.btn-xl.disabled:focus,
.btn-xl[disabled]:focus,
fieldset[disabled] .btn-xl:focus,
.btn-xl.disabled:active,
.btn-xl[disabled]:active,
fieldset[disabled] .btn-xl:active,
.btn-xl.disabled.active,
.btn-xl[disabled].active,
fieldset[disabled] .btn-xl.active {
    border-color: #999;
    background-color: #999;
}


.navbar-default {
  border-bottom: 1px solid #333;
  background-color: #FFF;
  opacity: 100%;
}

.navbar-brand {
  /*padding: 10px 15px;*/
}

.navbar-default .navbar-brand {
    font-family: "Kaushan Script","Helvetica Neue",Helvetica,Arial,cursive;
    color: #fd7d00;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:active,
.navbar-default .navbar-brand.active {
    color: #666;
}

.navbar-default .navbar-collapse {
    border-color: rgba(255,255,255,.02);
}

.navbar-toggle {
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
  border-radius: 4px;
}

.navbar-default .navbar-toggle {
    border: none;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #333;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    /*background-color: #fd7d00;*/
}

.navbar-default .nav li a {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.navbar-default .nav li a:hover,
.navbar-default .nav li a:focus {
    outline: 0;
    color: #fd7d00;
}

.navbar-default .navbar-nav>.active>a {
    border-radius: 0;
    color: #999;
    background-color: #FFF;
    border-bottom: 5px solid #fd7d00;
}

.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
    color: #323232;
    border-bottom: 5px solid #fd7d00;
}

.navbar-default .navbar-nav > li > a {
    color: #666;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    background-color: #FFF;
}

@media(max-width:768px) {
    .navbar-default {
        padding: 25px 0;
        border: 0;
        background-color: transparent;
        -webkit-transition: padding .3s;
        -moz-transition: padding .3s;
        transition: padding .3s;
    }

    .navbar-default .navbar-brand {
        font-size: 2em;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        transition: all .3s;
    }

    .navbar-default .navbar-nav>.active>a {
        border-radius: 0px;
    }

    .navbar-default.navbar-shrink {
        background-color: #FFF;
		border-bottom: 1px solid #CCC;
		padding: 0px;
    }

	.navbar-default.navbar-shrink .navbar-brand {
		font-size: 1.5em;
	}
}

header .intro-text {
    padding-top: 100px;
    padding-bottom: 50px;
     width: 50%;
}

header .intro-text .intro-lead-in {
    margin-bottom: 25px;
    font-family: "Droid Serif","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 22px;
    line-height: 22px;
    text-align: left;
    color: #999
}

header .intro-text .intro-heading {
    margin-bottom: 25px;
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 3em;
    fot-weight:6;
    text-align: left;
    color:#FD7D00;
	letter-spacing: 2px;
	width: 700px;
}


@media(max-width:768px) {
    header .intro-text {
        padding-top: 150px;
        padding-bottom: 450px;
    }

    header .intro-text .intro-lead-in {
        font-family: "Droid Serif","Helvetica Neue",Helvetica,Arial,sans-serif;
        font-size: 2.3em;
        line-height: 40px;
    }

    header .intro-text .intro-heading {
        text-transform: uppercase;
        font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    }
}


section h2.section-heading {
    color: #fd7d00;
    margin-top: 90px;
  	margin-bottom: 25px;
    font-size: 3.5rem;
}

section h3.section-subheading {
    margin-bottom: 25px;
    text-transform: none;
    font-family: "Droid Serif","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
}

.service-heading {
    margin: 15px 0;
    text-transform: none;
}

.portfolio-item {
    right: 0;
    margin: 20px 0 15px 0;
	opacity: 0; /* Initially hidden */
  	transform: translateY(50px); /* Initially slightly below its final position */
  	transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Smooth transition */
}

.portfolio-item.is-visible {
    opacity: 1; /* Fully visible */
  	transform: translateY(0); /* In its original position */
}

.portfolio-item .portfolio-link {
    display: block;
    position: relative;
    margin: 0 auto;
    max-width: 400px;
}

.portfolio-item .portfolio-link .portfolio-hover {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    transition: all ease .5s;
	border: 1px solid #fd7d00;
}

.portfolio-item .portfolio-link .portfolio-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: none;
  -webkit-transition: all ease .5s;
  -moz-transition: all ease .5s;
  transition: all ease .5s;
  border: none;
}

.portfolio-item .portfolio-link .portfolio-hover:hover {
    opacity: 1;
	background-color: #fd7d00;
}

.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 20px;
    margin-top: -12px;
    text-align: center;
    font-size: 20px;
    color: #fff;
}

.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content i {
    margin-top: -20px;
}

.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h3,
.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h4 {
    margin: 0;
}

.portfolio-item .portfolio-caption {
    margin: 0 auto;
    padding: 25px;
    max-width: 400px;
    text-align: center;
}

.portfolio-item .portfolio-caption h4 {
    margin: 0;
    text-transform: none;
}

.portfolio-item .portfolio-caption p {
    margin: 0;
    font-family: "Droid Serif","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 16px;
    font-style: italic;
}

.portfolio-hover-content p {
  text-align: left;
  padding: 5px 20px 10px 20px;
  line-height: normal;
}

.portfolio-link:hover {
  /*background-color: #fd7d00;*/
}

.logo-layout .portfolio-hover-content .fa-3x {
  font-size: 1em;
}

.logo-layout .portfolio-hover-content p {
  text-align: center;
  padding: 0;
  line-height: normal;
}

.col-md-2.col-sm-6.portfolio-item.logo-layout a {
  height: 70px !important;
}

#web, #design, #devleopment, #video * {
    z-index: 2;
}

#design, #video {
    background-color: #fff;
}

@media(max-width:767px) {   
     .portfolio-item {
        margin: 0 0 30px;
    }
}

.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    margin-left: -1.5px;
    background-color: #f1f1f1;
}

.timeline>li {
    position: relative;
    margin-bottom: 50px;
    min-height: 50px;
}

.timeline>li:before,
.timeline>li:after {
    content: " ";
    display: table;
}

.timeline>li:after {
    clear: both;
}

.timeline>li .timeline-panel {
    float: right;
    position: relative;
    width: 100%;
    padding: 0 20px 0 100px;
    text-align: left;
}

.timeline>li .timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
}

.timeline>li .timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0;
}

.timeline>li .timeline-image {
    z-index: 100;
    position: absolute;
    left: 0;
    width: 80px;
    height: 80px;
    margin-left: 0;
    border: 7px solid #f1f1f1;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    background-color: #999;
}

.timeline>li .timeline-image h4 {
    margin-top: 12px;
    font-size: 10px;
    line-height: 14px;
}

.timeline>li.timeline-inverted>.timeline-panel {
    float: right;
    padding: 0 20px 0 100px;
    text-align: left;
}

.timeline>li.timeline-inverted>.timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
}

.timeline>li.timeline-inverted>.timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0;
}

.timeline>li:last-child {
    margin-bottom: 0;
}

.timeline .timeline-heading h4 {
    margin-top: 0;
    color: inherit;
}

.timeline .timeline-heading h4.subheading {
    text-transform: none;
}

.timeline .timeline-body>p,
.timeline .timeline-body>ul {
    margin-bottom: 0;
}

@media(min-width:768px) {
    .timeline:before {
        left: 50%;
    }

    .timeline>li {
        margin-bottom: 100px;
        min-height: 100px;
    }

    .timeline>li .timeline-panel {
        float: left;
        width: 41%;
        padding: 0 20px 20px 30px;
        text-align: right;
    }

    .timeline>li .timeline-image {
        left: 50%;
        width: 100px;
        height: 100px;
        margin-left: -50px;
    }

    .timeline>li .timeline-image h4 {
        margin-top: 16px;
        font-size: 13px;
        line-height: 18px;
    }

    .timeline>li.timeline-inverted>.timeline-panel {
        float: right;
        padding: 0 30px 20px 20px;
        text-align: left;
    }
}

@media(min-width:992px) {
    .timeline>li {
        min-height: 150px;
    }

    .timeline>li .timeline-panel {
        padding: 0 20px 20px;
    }

    .timeline>li .timeline-image {
        width: 150px;
        height: 150px;
        margin-left: -75px;
    }

    .timeline>li .timeline-image h4 {
        margin-top: 30px;
        font-size: 18px;
        line-height: 26px;
    }

    .timeline>li.timeline-inverted>.timeline-panel {
        padding: 0 20px 20px;
    }
}

@media(min-width:1200px) {
    .timeline>li {
        min-height: 170px;
    }

    .timeline>li .timeline-panel {
        padding: 0 20px 20px 100px;
    }

    .timeline>li .timeline-image {
        width: 170px;
        height: 170px;
        margin-left: -85px;
    }

    .timeline>li .timeline-image h4 {
        margin-top: 40px;
    }

    .timeline>li.timeline-inverted>.timeline-panel {
        padding: 0 100px 20px 20px;
    }
}

.team-member {
    margin-bottom: 50px;
    text-align: center;
}

.team-member img {
    margin: 0 auto;
    border: 7px solid #fff;
}

.team-member h4 {
    margin-top: 25px;
    margin-bottom: 0;
    text-transform: none;
}

.team-member p {
    margin-top: 0;
}


section#contact {     
     background: url(../images/contact.jpg) no-repeat center bottom fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    border-bottom: 5px solid #999
}

section#contact .section-heading {
    /*color: #fff;*/
}

section#contact .form-group {
    margin-bottom: 25px;
}

section#contact .form-group input,
section#contact .form-group textarea {
    padding: 20px;
}

section#contact .form-group input.form-control {
    height: auto;
}

section#contact .form-group textarea.form-control {
    height: 236px;
}

section#contact .form-control:focus {
    border-color: #999;
    box-shadow: none;
}

section#contact::-webkit-input-placeholder {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    color: #bbb;
}

section#contact:-moz-placeholder {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    color: #bbb;
}

section#contact::-moz-placeholder {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    color: #bbb;
}

section#contact:-ms-input-placeholder {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    color: #bbb;
}

section#contact .text-danger {
    color: #e74c3c;
}

footer {
    padding: 10px 0;
    text-align: center;
}

footer span.copyright {
    text-transform: uppercase;
    text-transform: none;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    line-height: 40px;
}

footer ul.quicklinks {
    margin-bottom: 0;
    text-transform: uppercase;
    text-transform: none;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    line-height: 40px;
}

ul.social-buttons {
    margin-bottom: 0;
}

ul.social-buttons li a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    font-size: 20px;
    line-height: 40px;
    outline: 0;
    color: #fff;
    background-color: #222;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

ul.social-buttons li a:hover,
ul.social-buttons li a:focus,
ul.social-buttons li a:active {
    background-color: #999;
}

.btn:focus,
.btn:active,
.btn.active,
.btn:active:focus {
    outline: 0;
}

.fa.fa-envelope {
  top: -1px;
  position: relative;
}

.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-bottom: 15px;
     /*margin-top: 100px;*/
    font-size: 2.5em;
	text-align: left;
	color: #fd7d00;
}

.portfolio-modal .modal-content p {
    /*margin-bottom: 30px;*/
}

.portfolio-modal .modal-content p.item-intro {
    /*margin: 20px 0 30px;*/
    font-family: "Droid Serif","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 16px;
    /*font-style: italic;*/
	text-align: left;
}

.portfolio-modal .modal-content ul.list-inline {
    margin-top: 0;
    margin-bottom: 30px;
}

.portfolio-modal .modal-content img {
    margin-bottom: 30px;
}

.portfolio-modal .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 75px;
    height: 75px;
    background-color: #FFF;
    /*background-color: transparent;*/
    cursor: pointer;
}

.portfolio-modal .close-modal:hover {
    opacity: .3;
}

.portfolio-modal .close-modal .lr {
    z-index: 1051;
    width: 5px;
    height: 75px;
    margin-left: 35px;
    background-color: #fd7d00;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.portfolio-modal .close-modal .lr .rl {
    z-index: 1052;
    width: 5px;
    height: 75px;
    background-color: #fd7d00;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
	position: relative;
}

::-moz-selection {
    text-shadow: none;
    /*background: #999;*/
}

::selection {
    text-shadow: none;
    /*background: #999;*/
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

body {
    webkit-tap-highlight-color: #999;
}

.headshot-small {
  float: left;
  border: 2px solid #666;
  border-radius: 50%;
  margin: 6px 0 5px 0;
}

.carousel-control {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5%;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
  filter: alpha(opacity=100);
  opacity: .5;
  margin: 100px 0 0 0;
}

.carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
margin: 0px;
}

.carousel-control .glyphicon-chevron-left {
	left: 0;
}

.carousel-control .glyphicon-chevron-right {
	right: 0;
}

.carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next {
	width: auto;
	height: auto;
	font-size: 30px;
	background-color: #fd7d00;
	padding: 20px;
}


.carousel-control.left {
    background: none;
}

.carousel-control.right {
    background: none;
}

.glyphicon-chevron-left::before {
    color: #FFF;
}

.glyphicon-chevron-right::before {
    color: #FFF;
}

.iframe-container{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
}
.iframe-container iframe{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}

.resumeLink {
    margin: 0 0 30px 0;
	background-color: #fd7d00;
	border: none;
}

.form-control {
     background-color: rgba(255,255,255,0.8);
}

.copyright {
    float: left;
	margin: 0 10px 0 0
}

.list-inline.social-buttons {
    float: left;
}


@media (max-width: 480px) {     
     
     .headshot-small {
         margin: 5px;
     }
     
     .navbar-brand {
         padding: 15px 0 15px 0;
     }
     
     header .intro-text {
         width: 70%;
     }
     
     header .intro-text .intro-heading {
         font-size: 1.5em;
         margin-bottom: 10px;
     }
     
     header .intro-text .intro-lead-in {
         margin-bottom: 10px;
     }
	
	section {
		padding:20px 0 0 0;
	}
	
	section h2.section-heading {
	  margin-top: 0;
	  font-size: 2.5rem;
	}
	
	ection h3.section-subheading {
	  margin-bottom: 50px;
	}

	.portfolio-item .portfolio-link {
	  max-width: 300px;
	}
	.portfolio-link {
		padding: 0 0 10px 0;
	}
	
	.portfolio-hover {
	  background-color: red !important;
	}
	
	.list-inline.social-buttons {
	  float: right;
	}
	
	section#contact {
	  background: none;
	}
	
	.portfolio-item .portfolio-caption {
	  padding: 0;
	}
	
	section h3.section-subheading {
	  font-size: 15px;
	}
	
}

@media (max-width:375px) {
	
	
}




.flex-logos {
  border: 1px solid red;
  display: flex;
  width: 100%;
}

.col-md-2.col-sm-6.portfolio-item.logo-layout {
  /*border: 1px solid blue;*/
}

#myVideo {
  width: 100%;
  height: auto;
  border-bottom: 5px solid #999;
  margin-top: 55px;
}

.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

#myBtn {
  font-size: 30px;
  padding: 0 10px;
  border: none;
  background: none;
  color: #fff;
  cursor: pointer;
  position: absolute;
  margin: -50px 10px 0 0;
  right: 0px;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}

.col-md-12.portfolio-caption.brandsoverview {
  text-align: left;
  padding: 0;
  margin: 0;
}

.col-md-12.portfolio-caption.brandsoverview h4 {
  text-transform: none;
  color: #777;
}

.row.alg-logos {
  padding-top: 50px;
}


.col-lg-7.text-left {
  width: 100%;
}

.btn.btn-xl.send-message {
  margin: 0 0 20px 0;
}

.portfolio-link.cheap {
  max-width: 200px;
}

.portfolio-link.united {
  max-width: 230px;
}



@media (max-width:991px) {
	.container {
	  width: 100%;
	}
	
	.col-md-2.col-sm-6.portfolio-item.logo-layout {
	  padding: 0 0 40px 0;
	}
}

@media (max-width:800px) {
	.portfolio-item .portfolio-link {
	  max-width: 300px;
	}
}










