/* typography */
@font-face {
    font-family: 'HelveticaNeueThin';
    src: url('../fonts/HelveticaNeueThin.eot');
    src: url('../fonts/HelveticaNeueThin.eot?#iefix') format('embedded-opentype'),
        url('../fonts/HelveticaNeueThin.woff2') format('woff2'),
        url('../fonts/HelveticaNeueThin.woff') format('woff'),
        url('../fonts/HelveticaNeueThin.ttf') format('truetype'),
        url('../fonts/HelveticaNeueThin.svg#HelveticaNeueThin') format('svg');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueBold';
    src: url('../fonts/HelveticaNeue-Bold.eot');
    src: url('../fonts/HelveticaNeue-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/HelveticaNeue-Bold.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Bold.woff') format('woff'),
        url('../fonts/HelveticaNeue-Bold.ttf') format('truetype'),
        url('../fonts/HelveticaNeue-Bold.svg#HelveticaNeue-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}
h1, h2{
	font-family: 'HelveticaNeueThin', sans-serif;
	font-weight: 100;
    font-style: normal;
    line-height: 1.2;

}

h3, h4 {
	font-family: 'HelveticaNeueThin', sans-serif;
	font-weight: 100;
    font-style: normal;

}

h1 span, h2 span, h3 span, h4 span {
	font-family: 'HelveticaNeueBold', sans-serif;
	font-weight: bold;
    font-style: normal;

}

h5, h6 {
    font-family: 'HelveticaNeueBold', sans-serif;
	font-weight: bold;
    font-style: normal;
}

.title > p {
    line-height: 1.3;
}

.title > h2 {
    margin-bottom: 20px;
}

.title.dk-line > hr.fullwidth {
    width: 100%;
    border-color: #777777;
}
/* preloader */
#preloader {
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 5000;
}

#preloader .logo-icon{
  margin-bottom: 10px;
}

#preloader .logo-icon img{
  max-width: 80px;
}

#preloader.loaded .loading-area {
    opacity: 0;
}

#preloader.loaded{
    visibility: hidden;
}

#preloader .loading-area {
    opacity: 1;
    position: absolute;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
	font-family: 'HelveticaNeueBold', sans-serif;
	font-weight: bold;
    font-style: normal;
    z-index: 1;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    color: #787878;
	transition-delay: 0.6s;
}


#preloader.loaded .right-side {
    transition-delay: 1.2s;
	opacity: 0;
}

#preloader .right-side {
    right: 0;
}

#preloader .right-side {
    background: #fff;
    height: 100%;
    position: absolute;
    width: 100%;
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}
/* fixes */
.img-responsive{
 width:100%;
}

input:not([type=checkbox]):not([type=radio]) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea{
-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;    
}

/* footer fix */
@media only screen and (min-width: 992px) {
  #footer {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }

.footer-spacer {
    display: none;
}
}

.footer-copy .copy-text{
    text-align: center;
    color:#bbbbbb;
  }
.footer-copy .copy-text a{
    color:#bbbbbb;
    -webkit-transition: all .3s ease;
  transition: all .3s ease;
  }
.footer-copy .copy-text a:hover{
    color:#ffffff;
  }
.textwidget p{
    color:#bbbbbb;
  }

.footer-widgets .widget ul > li > a {
  font-size: 15px;
  color: #bbbbbb;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.footer-widgets .widget ul > li > a:hover {
  color: #ffffff;
}

.footer-widgets .textwidget a {
    font-size: 15px;
    color: #bbbbbb;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.footer-widgets .textwidget a:hover {
  color: #ffffff;
}

.logo-footer{
  max-width: 160px;
  margin-bottom: 15px;

}

.footer-widgets h3{
  color: #bbbbbb;
  margin-top: 37px;
  margin-bottom: 8px;
}

@media only screen and (max-width: 767px) {
  .footer-widgets .widget.ssnp,
    .footer-widgets .widget.ssnp ul{
    margin-bottom: 0;
    }
    }
/* copy-link */
.ssdl {
padding: 0 5px; 
}

@media only screen and (max-width: 500px) {
.ssdl {
display:none;
}
.ssdb {
display:block;
}
}
/* animations */

@-webkit-keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall;
  animation-duration: .8s; 
  animation-timing-function: ease;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  animation-duration: 1s; 
  animation-timing-function: linear;
}

.delay1 {
	animation-delay: 1.8s;
	-webkit-animation-delay: 1.8s;
	-webkit-backface-visibility: hidden;
   -webkit-perspective: 1000;
}

.delay2 {
	animation-delay: 2s;
	-webkit-animation-delay: 2s;
	-webkit-backface-visibility: hidden;
   -webkit-perspective: 1000;
}


.delay3 {
	animation-delay: 2.2s;
	-webkit-animation-delay: 2.2s;
	-webkit-backface-visibility: hidden;
   -webkit-perspective: 1000;
}

.delay4 {
	animation-delay: 2.4s;
	-webkit-animation-delay: 2.4s;
	-webkit-backface-visibility: hidden;
   -webkit-perspective: 1000;
}

.delay5 {
	animation-delay: 2.6s;
	-webkit-animation-delay: 2.6s;
	-webkit-backface-visibility: hidden;
   -webkit-perspective: 1000;
}

/* hero*/
.hero-content {
position: absolute;
width: 100%;
left:50%;
top:50%;
-webkit-transform: translate(-50%, -50%);
transform:translate(-50%,-50%);
z-index:1;
}

.hero-cta-holder{
background: rgba(255, 255, 255, 0.3);
width:740px;
text-align: center;
display: block;
margin: 0 auto;
padding: 20px;
}
.cta-inner{
padding: 20px;
border: solid 1px rgba(255, 255, 255, 0.5);
overflow: hidden;
}
.hero-cta-holder h1{
font-family: 'HelveticaNeueThin', sans-serif;
font-weight: 100;
font-style: normal;
color: #555555;
line-height: 1.2;
font-size: 38px;
margin-top: 0;
margin-bottom: 0;
}
.hero-cta-holder h1 span{
display:block;
margin-bottom: 25px;
margin-top: 0!important;
}
.hero-cta-holder h4 {
    font-size: 13px;
    font-family: 'HelveticaNeueBold', sans-serif;
    font-weight: bold;
    font-style: normal;
    color: #8f373f;
    letter-spacing: 0.05em;
}
@media only screen and (max-width: 991px) {
.hero-cta-holder{
width:520px;
} 
.hero-cta-holder h1{
font-size: 26px;
}
.hero-cta-holder h1 span{
font-size: 26px;
margin-bottom: 20px;
}
}
@media only screen and (max-width: 767px) {
.hero-cta-holder{
width:280px;
padding: 10px;
} 
.hero-cta-holder h1{
font-size: 24px;
}
.cta-inner{
padding: 8px;
}
}
/* scroll line*/
.animated-line {
    position: absolute;
    right: 10%;
	top: -50%;
    bottom: auto;
    margin-top: 30px;
    height: 0;
    width: 2px;
	box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.07);
    background: #8f373f;
    z-index: 999;
    transition: all 1s ease-in-out;
}

.animated-line:before
{
	display: inline-block;
	position: absolute;
	top: -20px;
	right: -25px;
	color: #555555;
	font-family: 'HelveticaNeueBold', sans-serif;
	font-size: 12px;
	font-weight: normal;
	letter-spacing: 1px;
	content: 'SCROLL';
	opacity: 0;
	
	-webkit-animation: fadeInUp 0.8s forwards; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadeInUp 0.8s forwards; /* Firefox < 16 */
        -ms-animation: fadeInUp 0.8s forwards; /* Internet Explorer */
         -o-animation: fadeInUp 0.8s forwards; /* Opera < 12.1 */
            animation: fadeInUp 0.8s forwards;
	        animation-delay: 2.6s;
}

.animated-line.grow {
    height: 380px;
    transition-delay: 3.4s;
}

@media only screen and (max-width: 1024px) {
  .animated-line {
    top: -30%;
    
}
.animated-line.grow {
    height: 260px;
}
}


@media only screen and (max-width: 630px) {
.animated-line.grow {
    height: 220px;
}
}

@media only screen and (max-width: 480px) {
.animated-line {
    right: 50px;
	top: -20%;
    
}
.animated-line.grow {
    height: 170px;
}
}
/* navbar*/
#navbar .container {
    width: 100%;
}

#navbar .navigation-menu>li>a {
    color: #555555;
	font-family: 'HelveticaNeueBold', sans-serif;
	font-weight: normal;
	font-size:13px;
	text-transform: uppercase;
	letter-spacing:1px;
}
#navbar .navigation-menu > li > a:hover {
  color: #787878;
}


@media only screen and (min-width: 992px){
#navbar.stick .logo img {
    max-height: 60px;

}    
}

@media only screen and (max-width: 1000px) {
#navbar .navigation-menu > li > a {
   padding-left: 12px;
   padding-right: 12px;
}
}
@media only screen and (max-width: 991px) {
#navbar .navigation-menu > li > a {
   padding-left: 20px;
   padding-right: 20px;
}
}

/* split section */

@media only screen and (max-width: 767px){
.img-side.p-bottom {
    min-height: 400px;
    margin: 60px 0 0;
    position: relative!important;
    z-index: 0;
}
section.p-bottom {
    padding-top:50px!important;
	padding-bottom:0!important;
}
}

/* icon boxes */
.pad-15-lr{
padding-left: 15px;
padding-right: 15px;
}
.icon-box {
  position: relative;
  margin-top: 25px;
  margin-bottom: 30px;
  padding: 0 10px;
}
@media only screen and (max-width: 1199px) {
  .icon-box.pad-md-sm {
    margin-top: 0!important;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .icon-box {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .icon-box.pad-md-sm {
    margin-top: 30px!important;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .icon-box {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .icon-box.pad-md-sm {
    margin-top: 30px!important;
    margin-bottom: 30px;
  }
}
.icon-box h4 {
  text-transform: uppercase;
  font-size: 13px;
  color:#555555;
  font-family: 'HelveticaNeueBold', sans-serif;
  font-weight: bold;
  font-style: normal;
  letter-spacing: 0.05em;
  margin-top: 0;
}

.icon-box p {
  color:#787878;
}

/* page titles */
section.parallax-section .parallax-overlay.lt {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  opacity: .5;
}
section.page-title.parallax-section.dk-title .title > h1 {
    color: #1f1f1f;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.1;
}

.row-parallax-bg .parallax-wrapper .parallax-bg.alt1 {
  top: -10%;
}
.page-title .title {
  margin-bottom: 0;
  position: relative;
  z-index: 10;
  display:inline-block;
  left:50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.3);
  padding: 15px 20px;
  overflow: hidden;

}
@media only screen and (max-width: 991px){
section.page-title.parallax-section .title > h1 {
    font-size: 40px;
}
}

@media only screen and (max-width: 767px){
.img-side.p-bottom {
    min-height: 400px;
    margin: 60px 0 0;
    position: relative!important;
    z-index: 0;
}	
section.p-bottom {
    padding-top:50px!important;
	padding-bottom:0!important;
}
section.p-top-sm{
    padding-top:50px!important;
}
section.p-bot-sm{
    padding-bottom:50px!important;
}
section.page-title.parallax-section .title > h1 {
    font-size: 32px!important;
}
}

@media only screen and (max-width: 480px){
.page-title .title {
  padding: 10px;

}
}
/* list styles */
.policy li{
	list-style-type: disc;
    margin-left:-20px;
	margin-top:6px;
	margin-bottom:6px;
	font-size: 16px;
}

/* block-image-shift */
@media (max-width: 1440px) {
.shift-one .img-cover {
  background-position: 20% 50%;
}
}
@media (max-width: 991px) {
.shift-two .img-cover {
  background-position: 40% 50%;
}
.shift-three .img-cover {
  background-position: 52% 50%;
}
}
/* icon-box-height-adjust */
.mi-boxes .icon-box.boxed-style{
 height: 270px;   
}
@media (max-width: 1560px) {
.mi-boxes .icon-box.boxed-style{
 height: 290px; 
}
}
@media (max-width: 1330px) {
.mi-boxes .icon-box.boxed-style{
 height: 310px; 
}
}
@media (max-width: 1199px) {
.mi-boxes .icon-box.boxed-style{
 height: 260px; 
}
}
@media (max-width: 991px) {
.mi-boxes .icon-box.boxed-style{
 height: auto; 
}
}

/*Cookie Consent Begin*/
#cookieConsent {
    background: #333333;
    min-height: 65px;
    color: #fff;
    padding: 10px 0 10px 35px;
    font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 1000;
	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.25);
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-transition-animation-duration: 1s;
    animation-delay: 3s;	
}

#cookieConsent .brand{
  line-height: 30px;
}
#cookieConsent .brand img{
  max-width: 140px;
}
#cookieConsent p {
    display: inline;
	font-size: 16px;
	margin-left: 30px;
	line-height: 100px;
}
#cookieConsent a {
    text-decoration: none;
	margin: 0 10px 0 10px;
	color: #bbbbbb;
}
#cookieConsent a:hover {
    color: #fff;
}
#closeCookieConsent {
    float: right;
    display: inline-block;
    cursor: pointer;
    height: 40px;
    width: 40px;
    margin: 18px 51px 0 0;
    font-weight: bold;
	font-size: 40px;
	top: 2.3rem;
}
#closeCookieConsent:hover {
    color: #FFF;
}
#cookieConsent a.cookieConsentOK {
    background: transparent;
    color: #ffffff;
    display: inline-block;
    border-radius: 0;
	border:solid 1px #ffffff;
    cursor: pointer;
    margin: 0 10px 0 10px;
	line-height:1rem;
	padding: 10px 15px;
}
#cookieConsent a.cookieConsentOK:hover {
    background-color: #fff;
	color:#1f1f1f;
}
@media (max-width: 991px) {
#cookieConsent {
    padding: 10px 0 10px 5px;
}
#closeCookieConsent {
    margin: 18px 11px 0 0;
}
}

@media (max-width: 920px){
#cookieConsent .brand{
  display:none;
}
#cookieConsent {
    padding: 10px 0 10px 15px;
}
#closeCookieConsent {
    margin: 18px 11px 0 0;
}
#cookieConsent p {
    margin-left: 0;
}
}

@media (max-width: 650px){
#cookieConsent p {
    display: block;
	line-height: 25px;
	margin-left: 0;
	margin-bottom: 15px;
}
#cookieConsent a.cookieConsentOK {
    display:block;
	text-align: center;
	margin: 10px 0 0 0;
	line-height:20px;
	padding: 10px 15px;
}
#cookieConsent {
    max-width: 320px;
	padding: 15px 15px 10px 15px;
	left: 50%;
	margin-left: -160px;
}
#cookieConsent a {
    margin: 0 0 0 0;
	padding: 10px 0 0 0;
}
#closeCookieConsent {
    margin:-15px -10px 0 0;
    height: 30px;
}

}
/*Cookie Consent End*/