.slcontainer {
  position: relative;
}

.slick-dots {
    display: block !important;
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
    padding: 0 3px;
    z-index: 99999;
    text-align: center;
}
.slick-dots li {
    cursor: pointer;
    display: inline-block;
    width: 8px;
    height: 8px;
	margin:0 3px;
}
.slick-dots li:last-child {
  border: none;
}
.slick-dots li, .slick-dots li button {
  outline: none;
}
.slick-dots li button {
	background:none;
    width: 8px !important;
    height: 8px !important;
    padding: 0;
    border: 2px solid #767676;
    -webkit-filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
    -moz-filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
    -ms-filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
    -o-filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
    border-radius: 50%;
  cursor: pointer;
  display: block;
}
.slick-dots li.slick-active button {
    border: 2px solid #8b1618;
}


.hero-slider .img--holder {
  background-position: bottom center;
  transform: scale(1) rotate(0deg);
  transition: transform 8s linear;
}

.hero-slider .slide-init .img--holder {
  transform: scale(1) rotate(0deg) !important;
  transition: transform 0s linear;
}

.slick-active .img--holder {
  transform: scale(1) rotate(0deg);
}

.slick-slide .img--holder {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  position:relative;
}

.slick-slide .img--holder:after
{
	content:" ";
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	background:rgba(0,0,0,0.3);
	display:none;
}

.slick-slide.office-photo .img--holder {
  background-position: bottom center;
}

.hero-slider .slick-arrow {
    font-size: 0;
    line-height: 0;
    position: absolute;
	bottom:50px;
	left:0;
	right:0;
	margin:auto;
    display: block;
    padding: 0;
    cursor: pointer;
    border: none;
    z-index: 9999;
}

.hero-slider .slick-arrow:focus {
  outline: 0;
}

.hero-slider .slick-arrow:hover {
  display: block;
  z-index: 99;
}

.hero-slider .NextArrow {  
    right: -100px;
    background: url(../images/next.svg) center center no-repeat;
    background-size: 40px;
    width: 40px;
    height: 40px;
}

.hero-slider .PrevArrow {
    left: -100px;
    background: url(../images/prev.svg) center center no-repeat;
    background-size: 40px;
    width: 40px;
    height: 40px;
}

.hero-slider .NextArrow:before {
  content: '\f105';
}

.hero-slider .PrevArrow:before {
  content: '\f104';
}

.hero-slider .text--holder {
  position: absolute;
  display: inline-block;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 99;
  padding: 0 0 50px 0;
  font-size: 38px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.hero-slider .text--holder h2 {
  font-size: 38px;
}

.hero-slider .text--holder p {
  font-family: garamond, georgia;
  font-size: 28px;
}

.caption
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 80%;
    height: 100%;
    display: flex;
    margin: 0 auto;
    animation-delay: 2s;
    z-index: 9999;
    text-align: center;
    text-shadow: 0px 0px 30px rgb(0 0 0 / 60%);
    align-items: center;
    justify-content: center;
	
}
.caption>div{/*display:table-cell;vertical-align:middle;*/}
.caption h1
{
    font-family: 'Didot';
    font-weight: 700;
    text-transform: uppercase;
    line-height: 76px;
    font-size: 82px;
    color: #fff;
	}

.caption h2 small{
    text-transform: none;
    font-weight: 500;
    font-size: 30px;}
.caption a
{	
	display: inline-block;

    background: #000;

    color: #fff;

    text-transform: uppercase;

    font-size: 16px;

    padding: 10px 30px;

    margin-top: 20px;

    text-decoration: none;

    font-weight: 100;

}

.caption a:hover

{

	background: #efc24c;
    color: #000;

}

.arrow
{
    
}
.arrow a
{
    width: 30px;
    height: 50px;
    border-radius: 30px;
    border: solid 2px #fff;
    display: inline-block;
    position: relative;
	overflow:hidden;
}
.arrow a:after
{
    content: " ";
    position: absolute;
    top: -12px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 2px;
    background: #fff;
	-webkit-animation: line 2s linear infinite;
	animation: line 2s linear infinite;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
@keyframes line
{
	0%
	{
    	transform:translateY(0)
	}
	100%
	{
    	transform:translateY(100%)
	}
}


@media only screen and (max-width:768px)
{
	.hero-slider .img--holder
	{
		height:500px !important;
	}
	.caption
	{
		width:100%;
		padding:0 10px;
		margin-top:30px;
	}
	.caption h1
	{
		line-height: 32px;
		font-size: 30px;
	}
	.hero-slider .slick-arrow
	{
		display:none !important;
	}
	.slick-dots
	{
		bottom: 30px;
	}
}

@media only screen and (max-width:480px)
{
	.hero-slider .img--holder
	{
		height:400px !important;
	}
	.hero-slider .NextArrow
	{  
		right: -50px;
		background: url(../images/right-arrow.svg) center center no-repeat;
		background-size: 30px;
		width: 30px;
		height: 30px;
	}	
	.hero-slider .PrevArrow
	{
		left: -50px;
		background: url(../images/left-arrow.svg) center center no-repeat;
		background-size: 30px;
		width: 30px;
		height: 30px;
	}
	.caption
	{
		left:0px;
    	padding-left: 0px;
		text-align:center;
    	padding: 0 40px;
	}
}

/* Transitions */

.activate {
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	opacity: 1;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=1 * 100);
	filter: alpha(opacity=1 * 100);
}

.animated {
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	opacity: 0;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0 * 100);
	filter: alpha(opacity=0 * 100);
}