/* FONTS */
@font-face {
    font-family: 'Carrois Gothic';
    src: url(../fonts/CarroisGothic-Regular.otf),
         url(../fonts/CarroisGothic-Regular.ttf),
         url(../fonts/CarroisGothic-Regular.woff);
}
@font-face {
    font-family: 'Roboto Slab';
    font-weight: 400;
    src: url(../fonts/RobotoSlab-Regular.otf),
         url(../fonts/RobotoSlab-Regular.ttf),
         url(../fonts/RobotoSlab-Regular.woff);
}
@font-face {
    font-family: 'Roboto Slab';
    font-weight: 700;
    src: url(../fonts/RobotoSlab-Bold.otf),
         url(../fonts/RobotoSlab-Bold.ttf),
         url(../fonts/RobotoSlab-Bold.woff);
}
body {
    font-family: 'Carrois Gothic', sans-serif;
    font-size: 16px;
}
.brand-font-h {
    font-family: 'Roboto Slab', sans-serif;
}
/* COLORS */

/* 
charcoal { color: #1C1C1C; }
lime { color: #BECC00; }
slate { color: #828282; }
white { color: #fffcfc; }
orange { color: #dd5607; }
*/

.bg-brand-green {
    background: #c2e60e;
}
.bg-brand-orange {
    background: #dd5607;
}
.type-brand-green {
    color: #b7db03 !important;
}
.type-brand-orange {
    color: #dd5607 !important;
}
.btn-brand-green {
    background: #b7db03;
    color: #333;
}
.btn-brand-green:hover {
    background: #c2e60e;
    color: #333;
}

/* CAROUSEL */
.carousel .carousel-control-prev {
    padding-right:30px;
}
.carousel .carousel-control-next {
    padding-left:30px;
}
.carousel-item {
    margin-bottom:14px;
}
.carousel .carousel-indicators {
    bottom: -36px;
}
.carousel-indicators li, .carousel-indicators li.active {
	width: 26px;
	height: 3px;
	margin: 1px 3px;
}
.carousel-indicators li {	
	background: #999;
}
.carousel-indicators li.active {	
	background: #555;		
}

/* PORTFOLIO */
.photo-gallery {
    color: #313437;
    background-color: #fff;
}
.photo-gallery p {
    color: #7d8285;
}
.photo-gallery h2 {
    font-weight: bold;
    margin-bottom: 40px;
    padding-top: 40px;
    color: inherit;
}
@media (max-width:767px) {
    .photo-gallery h2 {
        margin-bottom: 25px;
        padding-top: 25px;
        font-size: 24px;
    }
}
.photo-gallery .intro {
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 40px;
}
.photo-gallery .intro p {
    margin-bottom: 0;
}
.photo-gallery .photos {
    padding-bottom: 20px;
}
.photo-gallery .item {
    padding-bottom: 30px;
}
.photo-gallery-thumb {
    filter: brightness(90%);
    -webkit-filter: brightness(90%);
    -moz-filter: brightness(90%);
}
.photo-gallery-thumb:hover {
    filter: brightness(45%);
    -webkit-filter: brightness(45%);
    -moz-filter: brightness(45%);
}
.lightbox-thumb-overlay {
    position: relative;
}
.lightbox-thumb-overlay-text {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: regular;
    text-shadow: 1px 1px 4px #333;
}

/* TIMELINE */
ul.timeline {
    list-style-type: none;
    position: relative;
}
ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 10px;
    width: 2px;
    height: 100%;
    z-index: 400;
}
ul.timeline>li {
    margin: 20px 0;
}
ul.timeline>li:before {
    content: ' ';
    background: #eee;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 2px solid #ccc;
    left: 1px;
    width: 20px;
    height: 20px;
    z-index: 400;
}
