/*-----------------------------------------*/
/* VIDEO 001
/*-----------------------------------------*/
.carousel:hover{
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.carousel:active{
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
/*----- MAIN WRAPPER -----*/
.sz_video_001_wrapper{
  overflow: hidden;
  padding: 0 0 20px 0;
}
/*---------------------------*/
/* HEADER
/*---------------------------*/
/*----- MAIN WRAPPER -----*/
.sz_video_001_header{
  margin: auto;
  text-align: center;
  padding: 50px 0 20px 0;
}
.sz_video_001_header > h1{
  color: #313131;
  font-size: 35px;
  font-weight: 300;
  text-transform: uppercase;
}
/*----- FONT -----*/
.sz_video_001_header > h1,
.sz_video_001_trig_btn > a,
.sz_video_001_trig_img > a,
.sz_video_001_trig_txt > a,
.sz_video_001_trig_txt > span{
  margin: 0;
  text-decoration: none;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', sans-serif;
}
/*---------------------------*/
/* TRIGGER VIDEO
/*---------------------------*/
/*----- GENERAL -----*/
.sz_video_001_trig{
  padding: 25px 10px;
}
.sz_video_001_trig_col_2{
  padding: 25px 200px;
}
.sz_video_001_trig > .row{
  margin: 0;
}
.sz_video_001_trig > .row > div{
  padding: 10px;
}
.sz_video_001_trig_wrap{
  overflow: hidden;
  position: relative;
}
/*----- IMAGE -----*/
.sz_video_001_trig_img{
  overflow: hidden;
  position: relative;
}
.sz_video_001_trig_img > img{
  width: 100%;
  margin: auto;
  display: block;
}
/*---------- TRIGGER BUTTON ----------*/
.sz_video_001_trig_btn > a{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  color: #ffffff;
  text-shadow: none;
  position: absolute;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
}
.sz_video_001_trig_btn > a:focus{
  outline: none;
}
.sz_video_001_trig_btn > a > span{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 45px;
  margin: auto;
  height: 45px;
  font-size: 18px;
  padding-left: 3px;
  line-height: 43px;
  position: absolute;
  text-align: center;
  border: 2px solid #ffffff;
  background: rgba(0,0,0,0.3);
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.6s cubic-bezier(.075,.82,.165,1);
  transition: all 0.6s cubic-bezier(.075,.82,.165,1);
}
.sz_video_001_trig_wrap:hover .sz_video_001_trig_btn > a > span{
  background: rgba(0,0,0,0.9);
}
.sz_video_001_trig_txt{
  padding: 5px;
  text-align: center;
}
.sz_video_001_trig_txt > a{
  color: #2b2b2b;
  display: block;
  font-size: 12px;
  font-weight: 600; 
  text-transform: capitalize;
  -webkit-transition: color 0.5s cubic-bezier(.075,.82,.165,1);
  transition: color 0.5s cubic-bezier(.075,.82,.165,1);
}
.sz_video_001_trig_txt > a:hover{
  color: #ff6a00;
}
.sz_video_001_trig_txt > span{
  color: #ff6a00;
  display: block;
  font-size: 12px;
  margin-top: 5px;
  font-weight: 600;
  text-transform: capitalize;
}
/*-----------------------------------------*/
/* MODAL OR LIGHT BOX
/*-----------------------------------------*/
/*----- FADE IN AND OUT EFFECT -----*/
.modal.fade.sz_vid_001_mod_sld .modal-dialog{
  opacity: 0;
  visibility: hidden;
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-transition: all 1s cubic-bezier(0.22,0.81,0.01,0.99);
  -o-transition: all 1s cubic-bezier(0.22,0.81,0.01,0.99);
  transition: all 1s cubic-bezier(0.22,0.81,0.01,0.99);
}
.modal.show.sz_vid_001_mod_sld .modal-dialog{
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/*----- BACKDROP -----*/
.modal-backdrop{
  background: transparent;
}
/*----- FIX THE PROBLEM OF POSITIONING CREATED BY CAROUSEL -----*/
.modal.sz_vid_001_mod_sld.carousel{
  position: fixed;
}
.sz_vid_001_mod_sld{
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/*----- MODAL SIZES -----*/
.sz_vid_001_mod_sld > .modal-dialog{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100%;
  height: 100%;
  margin: auto;
  padding: 100px 0 10px 0;
  overflow-y: auto;
  overflow-x: hidden;
  position: absolute;
  pointer-events: unset;
  background: transparent;
}
@media (min-width: 768px){
  .sz_vid_001_mod_sld > .modal-dialog{
    max-width: 100%;
    height: 100%;
	margin: auto;
  }
}
.sz_vid_001_mod_sld > .modal-dialog > .modal-content{
  outline: 0;
  width: 100%;
  border: none;
  margin: auto;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.sz_vid_001_mod_sld > .modal-dialog::-webkit-scrollbar{
  width: 2px;
}
.sz_vid_001_mod_sld > .modal-dialog::-webkit-scrollbar-thumb{
  background: #8e8e8e;
  -webkit-border-radius: 0;
  border-radius: 0;
}
/*----- CLOSE BUTTON -----*/
a.sz_video_001_close{
  top: -80px;
  right: 100px;
  width: 40px;
  z-index: 100;
  height: 40px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 36px;
  text-align: center;
  position: absolute;
  background: transparent;
  text-decoration: none;
  text-shadow: none;
  font-family: 'Raleway', sans-serif;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all .6s cubic-bezier(0.22,0.81,0.01,0.99);
  transition: all .6s cubic-bezier(0.22,0.81,0.01,0.99);
}
.sz_video_001_close:hover{
  color: #ff6a00;
}
/*-----------------------------------------*/
/* SLIDER
/*-----------------------------------------*/
.sz_video_001_slide_txt > a,
.sz_video_001_controls [data-slide]{
  margin: 0;
  text-decoration: none;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
  font-family: 'Raleway', sans-serif;
}
.sz_vid_001_mod_sld .carousel-inner{
  top: 15%;
  width: 55%;
  margin: auto;
}
.sz_vid_001_mod_sld .carousel-inner,
.sz_vid_001_mod_sld .carousel-inner > .carousel-item{
  overflow: hidden;
}
/*----- LEFT/RIGHT CONTROL -----*/
.sz_video_001_controls [data-slide]{
  top: 45%;
  opacity: 1;
  width: 110px;
  height: 100px;
  z-index: 100;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  font-weight: 500;
  overflow: hidden;
  line-height: 26px;
  text-shadow: none;
  position: absolute;
  letter-spacing: 1px;
  background: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.5s cubic-bezier(0.22,0.81,0.01,0.99);
  transition: all 0.5s cubic-bezier(0.22,0.81,0.01,0.99);
}
.sz_video_001_controls .carousel-control > span{
  font-size: 25px;
  position: absolute;
}
.sz_video_001_controls .carousel-control-prev{
  left: 10%;
}
.sz_video_001_controls .carousel-control-prev span{
  top: 0;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 30px;
  margin: auto;
  line-height: 28px;
}
.sz_video_001_controls .carousel-control-next{
  right: 10%;
  left: auto;
}
.sz_video_001_controls .carousel-control-next span{
  top: 0;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 30px;
  margin: auto;
  line-height: 28px;
}
.sz_video_001_controls [data-slide]:hover{
  color: #ff6a00;
  background: transparent;
}
/*----- SLIDE IMAGE -----*/
.sz_video_001_vimeo,
.sz_video_001_youtube,
.sz_video_001_slf_host{
  height: 0;
  overflow: hidden;
  position: relative;
  padding: 0 0 56.25% 0;
}
.sz_video_001_vimeo > iframe,
.sz_video_001_slf_host > video,
.sz_video_001_youtube > iframe{
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  position: absolute;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.sz_sldr_vid_001_image{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  position: absolute;
}
.sz_sldr_vid_001_image > img{
  width: 100%;
}
.sz_video_001_slide_txt{
  width: 100%;
  position: relative;
  text-align: left;
}
.sz_video_001_slide_txt > a{
  color: #ffffff;
  display: block;
  font-size: 20px;
  font-weight: 400;
  margin-top: 10px;
  letter-spacing: 1px;
  
  -webkit-transition: all 0.5s cubic-bezier(0.22,0.81,0.01,0.99);
  transition: all 0.5s cubic-bezier(0.22,0.81,0.01,0.99);
}
.sz_video_001_slide_txt > a:hover{
  color: #ff6a00;
}
/*-----------------------------------------*/
/* RESPONSIVE
/*-----------------------------------------*/
/*---------- MEDIA 480px ----------*/
@media only screen and (max-width: 480px){
  /*----- HEADER -----*/
  .sz_video_001_header{
    width: 95%;
  }
  .sz_video_001_header > h1{
    font-size: 20px;
  }
  /*----- TRIGGER -----*/
  .sz_video_001_trig{
    padding: 25px;
  }
  /*----- 2 COLUMNS -----*/
  .sz_video_001_trig_col_2{
    padding: 25px;
  }
  /*----- CLOSE BUTTON -----*/
  a.sz_video_001_close{
    top: 5px;
    right: 5px;
  }
  .sz_vid_001_mod_sld .carousel-inner{
    top: 50px;
    width: 95%;
  }
  /*----- LEFT/RIGHT CONTROL -----*/
  .sz_video_001_controls [data-slide]{
    top: 5px;
  }
  .sz_video_001_controls .carousel-control-prev{
    left: 5px;
    right: auto;
  }
  .sz_video_001_controls .carousel-control-next{
    left: 115px;
    right: auto;
  }
  .sz_sldr_vid_001_image{
    display: block;
  }
}
/*---------- MEDIA 481px - 600px ----------*/
@media (min-width: 481px) and (max-width: 600px){
  /*----- HEADER -----*/
  .sz_video_001_header{
    width: 75%;
  }
  /*----- TRIGGER -----*/
  .sz_video_001_trig{
    padding: 25px 50px;
  }
  /*----- CLOSE BUTTON -----*/
  a.sz_video_001_close{
    top: 5px;
    right: 5px;
  }
  .sz_vid_001_mod_sld .carousel-inner{
    top: 50px;
    width: 95%;
  }
  /*----- LEFT/RIGHT CONTROL -----*/
  .sz_video_001_controls [data-slide]{
    top: 5px;
  }
  .sz_video_001_controls .carousel-control-prev{
    left: 5px;
    right: auto;
  }
  .sz_video_001_controls .carousel-control-next{
    left: 115px;
    right: auto;
  }
  .sz_sldr_vid_001_image{
    display: block;
  }
}
/*---------- MEDIA 601px - 767px ----------*/
@media (min-width: 601px) and (max-width: 767px){
  /*----- HEADER -----*/
  .sz_video_001_header{
    width: 60%;
  }
  /*----- TRIGGER -----*/
  .sz_video_001_trig{
    padding: 25px 100px;
  }
  /*----- CLOSE BUTTON -----*/
  a.sz_video_001_close{
    top: 5px;
    right: 5px;
  }
  .sz_vid_001_mod_sld .carousel-inner{
    top: 50px;
    width: 95%;
  }
  /*----- LEFT/RIGHT CONTROL -----*/
  .sz_video_001_controls [data-slide]{
    top: 5px;
  }
  .sz_video_001_controls .carousel-control-prev{
    left: 5px;
    right: auto;
  }
  .sz_video_001_controls .carousel-control-next{
    left: 115px;
    right: auto;
  }
  .sz_sldr_vid_001_image{
    display: block;
  }
}
/*---------- MEDIA 768px - 991px ----------*/
@media (min-width: 768px) and (max-width: 991px){
  /*----- 2 COLUMNS -----*/
  .sz_video_001_trig_col_2{
    padding: 25px 50px;
  }
  .sz_vid_001_mod_sld .carousel-inner{
    top: 50px;
    width: 70%;
  }
  /*----- LEFT/RIGHT CONTROL -----*/
  .sz_video_001_controls [data-slide]{
    top: 25%;
  }
  .sz_video_001_controls .carousel-control-prev{
    left: 1%;
  }
  .sz_video_001_controls .carousel-control-next{
    right: 1%;
  }
  .sz_sldr_vid_001_image{
    display: block;
  }
}
/*---------- MEDIA 992px - 1250px ----------*/
@media (min-width: 992px) and (max-width: 1200px){
  /*----- GENERAL -----*/
  .sz_video_001_trig{
    padding: 25px 2px;
  }
  /*----- 2 COLUMNS -----*/
  .sz_video_001_trig_col_2{
    padding: 25px 150px;
  }
  .sz_video_001_trig > .row > div{
    padding: 2px;
  }
  .sz_vid_001_mod_sld .carousel-inner{
    top: 75px;
    width: 70%;
  }
  /*----- LEFT/RIGHT CONTROL -----*/
  .sz_video_001_controls [data-slide]{
    top: 35%;
  }
  .sz_video_001_controls .carousel-control-prev{
    left: 3%;
  }
  .sz_video_001_controls .carousel-control-next{
    right: 3%;
  }
}
/*-----------------------------------------*/
/* BACKDROP COLORS
/*-----------------------------------------*/
.sz_bd_black:before{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  content: "";
  opacity: 0.9;
  height: 100%;
  margin: auto;
  position: fixed;
  background: #313131;
}
.sz_bd_white:before{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  content: "";
  opacity: 0.9;
  height: 100%;
  margin: auto;
  position: fixed;
  background: #ffffff;
}
.sz_bd_transp:before{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  content: "";
  opacity: 0.5;
  height: 100%;
  margin: auto;
  position: fixed;
  background: transparent;
}
/*-----------------------------------------*/
/* FIVE COLOUMNS
/*-----------------------------------------*/
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
  min-height: 1px;
  position: relative;
}
.col-xs-15 {
  width: 20%;
  float: left;
}
@media (min-width: 768px) {
  .col-sm-15 {
    width: 20%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-md-15 {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-15 {
    width: 20%;
    float: left;
  }
}
/*-----------------------------------------*/
/* SLIDER TIMING FUNCTIONS
/*-----------------------------------------*/
/*---------- sz_ease ----------*/
.sz_ease .carousel-inner > .carousel-item{
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  transition-timing-function: ease;
}
@media all and (transform-3d), (-webkit-transform-3d){
  .sz_ease .carousel-inner > .carousel-item {
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    transition-timing-function: ease;
  }
}
/*---------- sz_slowSpeedy ----------*/
.sz_slowSpeedy .carousel-inner > .carousel-item{
  -webkit-transition-timing-function: cubic-bezier(0.3,1,0,1);
  -moz-transition-timing-function: cubic-bezier(0.3,1,0,1);
  transition-timing-function: cubic-bezier(0.3,1,0,1);
}
@media all and (transform-3d), (-webkit-transform-3d){
  .sz_slowSpeedy .carousel-inner > .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(0.3,1,0,1);
    -moz-transition-timing-function: cubic-bezier(0.3,1,0,1);
    transition-timing-function: cubic-bezier(0.3,1,0,1);
  }
}
/*---------- sz_easeOutInCubic ----------*/
.sz_easeOutInCubic .carousel-inner > .carousel-item{
  -webkit-transition-timing-function: cubic-bezier(0.22,0.81,0.01,0.99);
  -moz-transition-timing-function: cubic-bezier(0.22,0.81,0.01,0.99);
  transition-timing-function: cubic-bezier(0.22,0.81,0.01,0.99);
}
@media all and (transform-3d), (-webkit-transform-3d){
  .sz_easeOutInCubic .carousel-inner > .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(0.22,0.81,0.01,0.99);
    -moz-transition-timing-function: cubic-bezier(0.22,0.81,0.01,0.99);
    transition-timing-function: cubic-bezier(0.22,0.81,0.01,0.99);
  }
}
/*---------- sz_swing ----------*/
.sz_swing .carousel-inner > .carousel-item{
  -webkit-transition-timing-function: cubic-bezier(.02,.01,.47,1);
  -moz-transition-timing-function: cubic-bezier(.02,.01,.47,1);
  transition-timing-function: cubic-bezier(.02,.01,.47,1);
}
@media all and (transform-3d), (-webkit-transform-3d){
  .sz_swing .carousel-inner > .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.02,.01,.47,1);
    -moz-transition-timing-function: cubic-bezier(.02,.01,.47,1);
    transition-timing-function: cubic-bezier(.02,.01,.47,1);
  }
}
/*---------- sz_easeOutCubic ----------*/
.sz_easeOutCubic .carousel-inner > .carousel-item{
  -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
  -moz-transition-timing-function: cubic-bezier(.215,.61,.355,1);
  transition-timing-function: cubic-bezier(.215,.61,.355,1);
}
@media all and (transform-3d), (-webkit-transform-3d){
  .sz_easeOutCubic .carousel-inner > .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
    -moz-transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
  }
}
/*---------- sz_easeOutCirc ----------*/
.sz_easeOutCirc .carousel-inner > .carousel-item{
  -webkit-transition-timing-function: cubic-bezier(.075,.82,.165,1);
  -moz-transition-timing-function: cubic-bezier(.075,.82,.165,1);
  transition-timing-function: cubic-bezier(.075,.82,.165,1);
}
@media all and (transform-3d), (-webkit-transform-3d){
  .sz_easeOutCirc .carousel-inner > .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.075,.82,.165,1);
    -moz-transition-timing-function: cubic-bezier(.075,.82,.165,1);
    transition-timing-function: cubic-bezier(.075,.82,.165,1);
  }
}
/*---------- sz_easeOutExpo ----------*/
.sz_easeOutExpo .carousel-inner > .carousel-item{
  -webkit-transition-timing-function: cubic-bezier(.19,1,.22,1);
  -moz-transition-timing-function: cubic-bezier(.19,1,.22,1);
  transition-timing-function: cubic-bezier(.19,1,.22,1);
}
@media all and (transform-3d), (-webkit-transform-3d){
  .sz_easeOutExpo .carousel-inner > .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.19,1,.22,1);
    -moz-transition-timing-function: cubic-bezier(.19,1,.22,1);
    transition-timing-function: cubic-bezier(.19,1,.22,1);
  }
}
/*---------- sz_easeOutQuad ----------*/
.sz_easeOutQuad .carousel-inner > .carousel-item{
  -webkit-transition-timing-function: cubic-bezier(.25,.46,.45,.94);
  -moz-transition-timing-function: cubic-bezier(.25,.46,.45,.94);
  transition-timing-function: cubic-bezier(.25,.46,.45,.94);
}
@media all and (transform-3d), (-webkit-transform-3d){
  .sz_easeOutQuad .carousel-inner > .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.25,.46,.45,.94);
    -moz-transition-timing-function: cubic-bezier(.25,.46,.45,.94);
    transition-timing-function: cubic-bezier(.25,.46,.45,.94);
  }
}
/*---------- sz_easeOutQuart ----------*/
.sz_easeOutQuart .carousel-inner > .carousel-item{
  -webkit-transition-timing-function: cubic-bezier(.165,.84,.44,1);
  -moz-transition-timing-function: cubic-bezier(.165,.84,.44,1);
  transition-timing-function: cubic-bezier(.165,.84,.44,1);
}
@media all and (transform-3d), (-webkit-transform-3d){
  .sz_easeOutQuart .carousel-inner > .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.165,.84,.44,1);
    -moz-transition-timing-function: cubic-bezier(.165,.84,.44,1);
    transition-timing-function: cubic-bezier(.165,.84,.44,1);
  }
}
/*---------- sz_easeOutQuint ----------*/
.sz_easeOutQuint .carousel-inner > .carousel-item{
  -webkit-transition-timing-function: cubic-bezier(.23,1,.32,1);
  -moz-transition-timing-function: cubic-bezier(.23,1,.32,1);
  transition-timing-function: cubic-bezier(.23,1,.32,1);
}
@media all and (transform-3d), (-webkit-transform-3d){
  .sz_easeOutQuint .carousel-inner > .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.23,1,.32,1);
    -moz-transition-timing-function: cubic-bezier(.23,1,.32,1);
    transition-timing-function: cubic-bezier(.23,1,.32,1);
  }
}
/*---------- sz_easeOutSine ----------*/
.sz_easeOutSine .carousel-inner > .carousel-item{
  -webkit-transition-timing-function: cubic-bezier(.39,.575,.565,1);
  -moz-transition-timing-function: cubic-bezier(.39,.575,.565,1);
  transition-timing-function: cubic-bezier(.39,.575,.565,1);
}
@media all and (transform-3d), (-webkit-transform-3d){
  .sz_easeOutSine .carousel-inner > .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.39,.575,.565,1);
    -moz-transition-timing-function: cubic-bezier(.39,.575,.565,1);
    transition-timing-function: cubic-bezier(.39,.575,.565,1);
  }
}