/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

/*  FLEET MANAGEMENT  */

$micro-screen: 0px;
$small-screen: 400px;
$medium-screen: 769px;
$large-screen: 1280px;
$huge-screen: 1440px;

$tomato: #f15a22;
$crayon: #d8d8d8;
$granite: #b4b4b4;
$slate: #5c5c5c;
$zeplin: #f16921;
$elephant: #cccccc;

$watery: #f0f0f0;

$crescent: #f5f5f5;


@mixin mobile {
  @media screen and ( min-width: $micro-screen ) and (max-width: $medium-screen) {
   @content;
  }
}

@mixin mobile-up {
  @media screen and ( min-width: $micro-screen ) {
   @content;
  }
}

@mixin tablet {
  @media screen and (min-width: $medium-screen) and (max-width: $large-screen) {
   @content;
  }
}

@mixin tablet-up {
  @media screen and (min-width: $medium-screen) {
   @content;
  }
}

@mixin desktop {
 @media screen and (min-width: $large-screen) {
  @content;
 }
}

@mixin huge {
 @media screen and (min-width: $huge-screen) {
  @content;
 }
}


$min-font: 18px;
$min-line: $min-font * 1.5;
$base-xs: 0.5;
$base-sm: 0.6;
$base-md: 0.77;
$base-lg: 1;
@mixin responsive-type($font-size, $line-height, $letter-spacing: 0) {
    @include mobile-up {
        font-size: max($min-font, $font-size * $base-xs);
        line-height: max($min-line, $line-height * $base-xs);
        letter-spacing: $letter-spacing * $base-xs;
    }
    @include tablet-up {
        font-size: max($min-font, $font-size * $base-md);
        line-height: max($min-line, $line-height * $base-md);
        letter-spacing: $letter-spacing * $base-md;
    }
    @include desktop {
        font-size: max($min-font, $font-size * $base-lg);
        line-height: max($min-line, $line-height * $base-lg);
        letter-spacing: $letter-spacing * $base-lg;
    }
}


.fig-outer-container {
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
  position: relative;
  @include mobile-up {
   	padding-left: 1em;
    padding-right: 1em;
    max-width: 82em;
  }
  @include tablet-up {
    padding-left: 2em;
    padding-right: 2em;
    max-width: 84em;
  }
  @include desktop {
    padding-left: 3em;
    padding-right: 3em;
    max-width: 86em;
  }
}

.fig-hero-callout {
  background-position: center;
  background-size: cover;
  padding-top: 175px;
  padding-bottom: 150px;
  position: relative;
  clear: both;


  h1 {
    @include desktop {
      font-size: 64px;
      line-height: 64px;
    }
    color: white;
    text-align: center;
  }

 &.fig-fleet-management {
 	background-image: url('/cdn/shop/files/rectangle.png?3855721749445330222');
 }
}

.fig-callout-text-wrap {
  position: relative;
  clear: both;
  margin-top: 110px;
  margin-bottom: 33px;
  text-align: center;

  .fig-callout-content {
    @include mobile-up {
      width: 85%
    }
    @include desktop {
     width: 70%;
    }
    margin-left: auto;
    margin-right: auto;
  }

  h3 {
    font-size: 31px;
    line-height: 31px;
   color: $tomato;
  }

  &.fig-smaller-cta {
    padding-bottom: 74px;

    p {
      @include tablet-up {
        width: 55%;
        margin-left: auto;
        margin-right: auto;
      }
    }
  }
}

.fig-video-callout {
  margin-top: 30px;
  margin-bottom: 94px;
  position: relative;
  clear: both;
}

.fig-icon-nav-wrap {
  position: relative;
  clear: both;
  background-color: #f5f5f5;
  overflow: hidden;

  .fig-nav-desc-wrap {
    @include mobile-up {
      width: 90%
    }
    @include desktop {
      width: 60%;
    }
    margin-top: 71px;
    margin-bottom: 86px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;

    h3 {
      color: $tomato;
      margin-bottom: 25px;
      font-size: 31px;
      line-height: 31px;
    }
    p {
      font-size: 21px;
      line-height: 42px;
    }
  }

  .fig-icon-nav {
    @include mobile-up {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      width: 100%;
      padding-left: 1em;
      padding-right: 1em;
    }
    @include tablet-up {
      width: 150%;
     -ms-flex-wrap: nowrap;
         flex-wrap: nowrap;
      padding-left: 0px;
      padding-right: 0px;
    }
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
    position: relative;
    margin-bottom: 56px;
    -webkit-transition: left 500ms ease;
    -o-transition: left 500ms ease;
    transition: left 500ms ease;
    left: 0;

    &.active {
      @include mobile-up {
       left: 0px;
      }
      @include tablet-up {
       left: -50%;
      }
    }
  }

  .fig-laptop {
    @include mobile-up {
     display: none;
    }
    @include tablet-up {
     display: block;
    }
   	height: auto;
    width: 51%;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 15;
  }

  .fig-nav, .fig-laptop {
   	position: relative;
  }

  .fig-arrow {
    @include mobile-up {
     display: none;
    }
    @include tablet-up {
     display: block;
    }
   background-image: url('/cdn/shop/files/arrow_5aa52b37-7db9-4586-9266-568e19f3c875.svg?10551949018618477630');
   background-color: $tomato;
    border-radius: 100px;
    width: 42px;
    height: 42px;
    background-size: 21px 21px;
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: 43%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    &.left-arrow {
     left: 1%;

    }
    &.right-arrow {
      right: 1%;
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg);
    }
  }

  .fig-nav {
    @include mobile-up {
     width: 100%;
    }
    @include tablet-up {
     width: 43%;
    }

    &.fig-left-nav {
      @include tablet-up {
       margin-left: 6%;
      }
    }
    &.fig-right-nav {
      @include tablet-up {
       margin-right: 6%;
      }
    }

    .fig-nav-icon {
      width: 66px;
      height: 66px;
      -o-object-fit: contain;
         object-fit: contain;
      margin-bottom: 22px;
    }
    h4 {
     font-size: 20px;
      line-height: 20px;
      margin-bottom: 5px;
    }
    p {
     font-size: 16px;
      line-height: 24px;
     margin-bottom: 0px;
    }
    .fig-indiv-nav-item {
      margin-bottom: 19px;
      cursor: pointer;

      &.active {
       h4 {
         @include mobile-up {
           color: #5c5c5c;
         }
         @include tablet-up {
           color: $tomato;
         }
       }
      }
    }
  }

}

.fig-testimonials-wrap {
  @include mobile-up {
    padding-top: 36px;
    padding-bottom: 48px;
  }
  @include tablet-up {
    padding-top: 98px;
    padding-bottom: 92px;
  }
  background-image: url('/cdn/shop/files/bg.png?2999300081928174190');
  background-size: cover;
  background-position: center;
  width: 100%;
  position: relative;

  .fig-testimonial {
    @include mobile-up {
      width: 100%;
    }
    @include tablet-up {
      width: 65%;
    }
    @include desktop {
      width: 42%;
    }
    text-align: center;
    position: relative;
  }

  h1 {
   margin-bottom: 17px;
  }
  img {
    width: 80px;
    height: 80px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-bottom: 13px;
  }

  h4 {
    font-size: 24px;
    line-height: 30px;
   	font-weight: 400;
    margin-bottom: 32px;
  }

  &::after {
    @include mobile-up {
     content: '';
     position: absolute;
     width: 100%;
     height: 100%;
     background-color: rgba(255,255,255,0.8);
     top: 0;
     right: 0;
     bottom: 0;
     left: 0;
      z-index: 1;
    }
    @include tablet-up {
      background: none;
    }
  }

  &.b-test-testimonial {

   .fig-outer-container {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
         -ms-flex-align: center;
             align-items: center;
     -ms-flex-wrap: wrap;
         flex-wrap: wrap;
   }

   .fig-testimonial-video {
     @include mobile-up {
       width: 100%;
     }
     @include tablet-up {
       width: 47%;
     }
   }
   .fig-testimonial {
     @include tablet-up {
       width: 42%;
     }
   }

   &::after {
    @include tablet-up {
      background-color: rgba(255, 255, 255, 0.8);
    }
   }
  }

}

.fig-quote {
 font-size: 36px;
  line-height: 48px;
  text-align: center;
  font-weight: 400;
}





/* prefixed by https://autoprefixer.github.io (PostCSS: v7.0.26, autoprefixer: v9.7.3) */



/* FIGMINTS CHANGES TO HOMEPAGE 4-15-2020 */


.fig-small-callout {
	padding: 57px 0px 31px;
  	text-align: center;

  h1 {
   @include responsive-type(36px, 43px, 0.5px);
    color: $zeplin;
    margin: 0px 0px 17px;
  }
  p {
    @include responsive-type(20px, 29px);
    color: $slate;
    margin-bottom: 0px;
  }
}

.fig-text-area {
	width: 85%;
  margin-left: auto;
  margin-right: auto;
}

/* Icon Grid  */

.fig-icon-grid {
  @include mobile-up {
    width: 85%;
  }
  @include tablet-up {
    width: 100%;
  }

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;
  	-webkit-box-align: center;
  	    -ms-flex-align: center;
  	        align-items: center;
  	-webkit-box-pack: justify;
  	    -ms-flex-pack: justify;
  	        justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  	margin-left: auto;
    margin-right: auto;


}

.indiv-icon-block {
  @include mobile-up {
    width: 100%;
  }
  @include tablet-up {
      width: 30%;
    }

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  	-webkit-box-align: center;
  	    -ms-flex-align: center;
  	        align-items: center;
  	-webkit-box-pack: justify;
  	    -ms-flex-pack: justify;
  	        justify-content: space-between;
    margin-bottom: 55px;



    img {
     max-height: 74px;
      width: 69px;
      -o-object-fit: contain;
         object-fit: contain;
    }

    .img-con {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
    }

    p {
      	@include responsive-type(24px, 30px);
      	color: $slate;
     	width: calc(100% - 113px);
      	margin-bottom: 0px;
    }
}


.btn-con {
    	text-align: center;
        display: block;
}

.fig-btn {
  padding-left: 3.5em;
  padding-right: 3.5em;
}

.fig-icon-grid-wrap {
  padding: 31px 0px 100px;
}



/* Partner Slider  */

.partner-slider-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  	-webkit-box-align: center;
  	    -ms-flex-align: center;
  	        align-items: center;
  	-webkit-box-pack: justify;
  	    -ms-flex-pack: justify;
  	        justify-content: space-between;
  	-ms-flex-wrap: wrap;
  	    flex-wrap: wrap;

}

.fig-partner-slider {
	@include mobile-up {
     	width: 80%;
      margin-left: auto;
      margin-right: auto;
    }
  @include tablet-up {
   	width: 100%;
  }

  margin-bottom: 40px;

  .slick-dots li button:before {
    font-size: 14px;

  }
}



.fig-slide-item {
  @include mobile-up {
    width: 40%;
    margin-top: 15px;
  	margin-bottom: 15px;
    height: 100px;
  }
  @include tablet-up {
     	width: 15%;
    	margin-top: 0px !important;
    	margin-bottom: 60px !important;
    	height: initial !important;
    }

  	display: -webkit-box !important;
  	display: -ms-flexbox !important;
  	display: flex !important;
  	-webkit-box-align: center;
  	    -ms-flex-align: center;
  	        align-items: center;



  img {
   	width: 75%;
    max-height: 90px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/* TESTIMONIAL SLIDER  */

.fig-testimonial-slider-section {
  margin: 115px 0px 70px;

  .slick-list {
       overflow: visible !important;
    display: -webkit-box;
display: -ms-flexbox;
display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.fig-testimonial-slider-section {

  height: 400px;

    /*  current active slide only  */
  .slick-current.slick-slide {
    @include mobile-up {
       width: 375px;
      }
      @include tablet-up {
       width: 574px;
      }

  	.fig-review-slide {
      padding: 91px 9% 55px 9%;

      &::after {
      	opacity: 1;
      }
    }

    .testimonial-img-con {
      top: -55px;
    }

    .testimonial-image {
      width: 110px;
      height: 110px;
      opacity: 1;
      border: 3px solid $tomato;
    }

    p {
     margin-bottom: 36px;
    }

    h5 {
       color: $tomato;
    }

  }

  .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
   	height: 400px;
  }

  .slick-slide {
    display: -webkit-box;
display: -ms-flexbox;
display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;

    @include mobile-up {
       width: 375px;
      margin: 0px 15px;
    }
    @include tablet-up {
       width: 574px;
        margin: 0px 31px;

    }
  }

  .slick-dots li button:before {
    font-size: 14px;

  }
}

.fig-testimonial-slider-wrap {
  width: 100%;

  .slick-arrow {
    width: 21px;
    height: 36px;
    z-index: 999;

    &::before {
      content: '';
     background: url('/cdn/shop/files/copy.svg?v=1587491030');
      font-family: none;
      background-size: 21px 36px;
      background-repeat: no-repeat;
      position: absolute;
      width: 21px;
      height: 36px;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      opacity: 1;

    }
  }
  .slick-next {
   @include mobile-up {
    right: 10px;

     -webkit-transform: translate(0, -50%) rotate(180deg);
     -ms-transform: translate(0, -50%) rotate(180deg);
     transform: translate(0, -50%) rotate(180deg);
   }
  }
  .slick-prev {
   @include mobile-up {
    left: 10px;
   }
  }

  .slick-slider {
   	height: 400px;
  }
}


.testimonial-img-con {
    background: $crayon;
    position: absolute;
    top: -42px;
    left: 4.5%;
    border-radius: 100%;
    z-index: 99999;
}

.testimonial-image {
	position: relative;
    width: 84px;
    height: 84px;
    border-radius: 100%;
    border: 3px solid $granite;
    opacity: 0.15;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  }


.fig-review-slide {

  background: white;
  border-radius: 25px;
  -webkit-box-shadow: 0px 2px 34px rgba(0,0,0,0.2);
          box-shadow: 0px 2px 34px rgba(0,0,0,0.2);
  position: relative;
  padding: 68px 7% 38px 7%;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;





  &::after {
    @include mobile-up {
      height: 66px;
      right: -14px;
      bottom: -12px;
    }
    @include tablet-up {
      height: 98px;
      right: -21px;
      bottom: -14px;
    }

   	content: '';
    opacity: 0.15;
    background-image: url('/cdn/shop/files/fill-1-copy_2x_e9ab6d40-cf56-41d2-81af-c60e70ee9186.png?v=1587084061');
    width: 25%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
  }

  p {
   	@include responsive-type(20px, 29px);
    color: $slate;
    margin-bottom: 25px;
  }

  h5 {
    font-size: 18px;
    line-height: 24px;
    color: $granite;
    font-style: italic;
  }
}



/* FIG LARGE CALLOUT WITH IMAGE */

.large-callout-wrap-div {
 	background: $crescent;
  	padding: 0px 0px 100px;
}

.large-callout-image-wrap {

  padding: 60px 0px 0px;

 img {
   @include mobile-up {
    margin-bottom: 30px;
   }

   @include tablet-up {
    margin-bottom: 60px;
   }
  width: 100%;
   -o-object-fit: contain;
      object-fit: contain;
 }
}


/* FIG AUTO PLAY VIDEO STRIPE  */

.fig-video-callout-wrap {

  	@include mobile-up {
     padding: 25px 0px;
    }

  	@include desktop {
     padding: 90px 0px;
    }

  	@include huge {
     padding: 185px 0px;
    }
	position: relative;

  .btn-con {
    @include mobile-up {
     -ms-flex-pack: distribute;
         justify-content: space-around;
      -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    }
    @include tablet-up {
      -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    }

    @include desktop {
     -webkit-box-pack: justify;
         -ms-flex-pack: justify;
             justify-content: space-between;
    }
   	display: -webkit-box;
   	display: -ms-flexbox;
   	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .fig-btn {
    @include mobile-up {
     padding-left: 10px;
      padding-right: 10px;
    }
    @include tablet-up {
     padding-left: 3.5em;
      padding-right: 3.5em;
    }
   	display: inline-block;
    margin-bottom: 15px;
    border: 0px;
  }

  .video-wrapper {
   @include mobile {
    position: absolute;
     width: 100%;
     height: 100%;
   }
  }

  iframe {
    @include mobile {
      -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
    }
   border: 0px;
  }

}

.absolute-bg-video {
/*   @include mobile-up {
   	display: none;
  }
  @include tablet-up {
   	display: block;
  } */
  display: block;
	position: absolute;
  	width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.video-callout-title {
  @include mobile-up {
  	margin-bottom: 25px;
  }
  @include tablet-up {
   	margin-bottom: 200px;
  }
  @include desktop {
   	margin-bottom: 284px;
  }

  color: white;
  @include responsive-type(48px, 60px, 0.5px);
  text-align: center;

  span {
   @include mobile-up {
    display: block;
     clear: both;
   }
    @include tablet-up {
     display: inline-block;
      clear: none;
    }
  }
}




/* FIG OVERFLOW CALLOUT  */

.fig-overflow-callout-div {
  padding: 94px 0px 0px;
  background: white;
}

.fig-overflow-callout-wrap {
 background: $crescent;

 .fig-btn {
  border: 0px;
 }


  .fig-outer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
}

.overflow-content, .overflow-image-con {
  @include mobile-up {
   width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  @include tablet-up {
    width: 46%;
  }

}

.overflow-image-con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.overflow-image {
 bottom: 0;

  @include mobile-up {
   position: relative;
  }
  @include tablet-up {
    height: 100%;
    position: absolute;
  }

  @include desktop {
   height: 107%;
  }
}

.overflow-content {
 padding: 40px 0px;

  h2 {
   @include responsive-type(36px, 43px, 0.55px);
    color: $zeplin;
    margin-bottom: 10px;
  }

  p {
  	@include responsive-type(20px, 29px);
    color: $slate;
  }

  .btn-con {
   	text-align: left;
  }

  .fig-btn {
   	@include mobile-up {
     padding-left: 15px;
     padding-right: 15px;
      white-space: initial;
    }
    @include tablet-up {
     white-space: nowrap;
    }
    @include desktop {
     padding-left: 3.5em;
      padding-right: 3.5em;
    }
  }
}

/* HOMEPAGE VIDEO FIX */

.shopify-section.hero-video .grid__item.one-whole.text-right {
  @include mobile-up {
    top: 185px;
  }
  @include tablet-up {
   top: 300px;
  }
 position: absolute;
  top: 300px;
  right: 0;
}

.shopify-section.hero-video .grid__item.one-whole.text-right .hero__content {
 bottom: auto !important;
}

.hero {
 overflow: hidden;
}

/* I hate using important tags but it should overwrite existing styles  */
.main-content .hero__content {
 @include mobile-up {
  	display: block !important;
   padding-left: 0px;
   text-align: center;
 }
  @include tablet-up {
   text-align: right;
  }
}

.main-content .hero .still-frame {
 @include mobile-up {
   display: none !important;
 }
}

.hide-until-mobile {
 display: none;
}

.main-content .hero .hero-video-mhide {
 	@include mobile-up {
     display: block;
    }
}


/* MODAL VIDEO  */

body {
 position: relative;
}

.modal-con {
 display: none;
}


.modal-con {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  z-index: 99;
  background: rgba(64, 85, 112, 0.5);

  &.active {
    display: block;
  }

}

.modal-content {
  @include mobile-up {
    width: 100%;
  }
  @include tablet-up {
    width: 80%;
  }
  position: fixed;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);

}

.close-modal {
	position: absolute;
  top: -25px;
  right: 1rem;
  left: auto;
  bottom: auto;
  width: 20px;
  height: 20px;
  background-image: url('//sirenmarine.com/cdn/shop/t/247/assets/close.svg?v=55185849042087491501755455202');
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;

}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;

  iframe {
  	position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
  }
}

.play-video {
 @include mobile {
  display: inline-block !important;
 }

  span, img {
   pointer-events: none;
  }
}

/* SMALL HERO CALLOUT */

.fig-small-header-wrap {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;

  &::after {
   content: '';
    background-color: rgba(6, 41, 86, 0.7);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  h1 {
    @include mobile {
     padding: 75px 0px;
    }
    @include responsive-type(60px, 72px, 0.5px);
    color: white;
    text-align: center;
    padding: 149px 0px 169px;
  }
}


/* PING PONG */

.ping-pong {
  @include mobile {
    padding: 40px 0px 50px;
  }
  @include tablet-up {
    padding: 80px 0px 100px;
  }
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;


  &.left {
   direction: rtl;

    .ping-pong-content {
      direction: ltr;
    }
  }
}

.ping-pong-image, .ping-pong-content {
  @include mobile {
    width: 100%;
  }
}

.ping-pong-content {
  @include tablet-up {
    width: 42%;
  }



  p {
   @include responsive-type(20px, 29px);
  color: $slate;
    margin-bottom: 30px;
  }

  h2 {
   @include responsive-type(48px, 60px, 0.52px);
    color: $zeplin;
    margin-bottom: 30px;
  }

  h3 {
    @include responsive-type(30px, 36px, 0.56px);
    color: $zeplin;
  }

  h4 {
    @include responsive-type(18px, 29px, 0.5px);
    color: $zeplin;
    margin-bottom: 10px;
  }
}

.ping-pong-image {
  @include tablet-up {
    width: 51%;
  }

  position: relative;

  img {
    @include mobile {
      max-width: 100%;
      width: 100%;
    }
    @include tablet {
      width: 109%;
    }
   width: 128%;
    max-width: initial;
    -webkit-box-shadow: 0px 12px 34px 0 rgba(0,0,0,0.3);
            box-shadow: 0px 12px 34px 0 rgba(0,0,0,0.3);
  }
}


/* FULL WIDTH TEXT CALLOUT */

.fig-text-callout-wrap {
 position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 74px 0px 95px;

  &::after {
    content: '';
   position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(6,41,86,0.8);
  }

  .fig-outer-container {
    text-align: center;
  }

  h1 {
    @include responsive-type(48px, 60px, 0.67px);
    color: white;
  }

  img {
    @include mobile {
     width: 55px;
    }
   width: 98px;
    margin-bottom: 26px;
  }
}

/* ABOUT FOUNDER  */

.fig-about-founder-wrap {
 background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 123px 0px 100px;

  &::after {
   content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(245, 245, 245, 0.95);
  }

  .fig-outer-container {
   	display: -webkit-box;
   	display: -ms-flexbox;
   	display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;

    img {
      @include mobile {
        width: 75%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
        height: 310px;
      }
      @include tablet-up {
        width: 30%;
        height: auto;
      }

      -o-object-fit: contain;

         object-fit: contain;
      -o-object-position: top;
         object-position: top;
    }
    .about-snippet {
      @include mobile {
       width: 85%;
        margin-left: auto;
        margin-right: auto;
      }
      @include tablet-up {
       width: 64%;
      }
    }

  }

  h1 {
    @include responsive-type(48px, 60px, 0.52px);
    color: $zeplin;
    margin-bottom: 10px;
  }

  h6 {
    @include responsive-type(18px, 29px, 0.5px);
    text-transform: uppercase;
    color: $zeplin;
    margin-bottom: 10px;
  }
  p {
   @include responsive-type(20px, 29px);
    color: $slate;
    margin-bottom: 8px;
  }
}





















/* SIREN 3 PRO EDITS  */


.siren-pro-product-wrap {

  h2 {
      color: $zeplin;
      font-size: 36px;
      line-height: 43px;
      letter-spacing: 0.55px;
      margin-bottom: 14px;
    }

  h3[itemprop="price"] {
    font-size: 31px;
    line-height: 36px;
    color: $slate;
    float: left;
    padding-right: 25px;
  }

  .product-description {

    > p:first-child {
      clear: none;
      font-size: 21px;
      line-height: 29px;
      color: $granite;
    }

    p, li {

      clear: both;
      font-size: 20px;
      line-height: 29px;
      color: $slate;
    }

    p {
     margin-bottom: 14px;
    }



   	ul {
     list-style: none;
      margin-left: 1.5em;

      li {
      position: relative;
      margin-bottom: 10px;

      &::before {
        content: "●";
        display: inline-block;
        color: $zeplin;
        width: 1em;
        margin-left: -1em;
        position: absolute;
      }
    }

    }


  }

  .product-right {
   padding-right: 0px !important;

    button[type="submit"] {
     width: initial;
      padding: 19px 56px;

    }
    .btn {
     padding: 19px 56px;
      margin-bottom: 15px;
    }

    .btn-con {
      display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
  }

  .install-guides {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;

    p {
     padding-right: 5px;
    }
  }


  .product-image {
   width: 100%;
    display: block;
    text-align: center;

    img {
      max-height: 420px;
    }
  }

  .small-product-gallery {
   width: 100% !important;
    text-align: left;

    .product-gallery-con {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
      -webkit-box-pack: space-evenly;
          -ms-flex-pack: space-evenly;
              justify-content: space-evenly;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      float: left;
      text-align: center;
      width: 75px;
      border: 1px solid $granite;
      margin-right: 10px;
      margin-bottom: 10px;
      position: relative;
      pointer-events: none;

      &::after {
       content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(255, 255, 255, 0.7);
      }

      &.active {
       &::after {
        display: none;
       }
      }
    }
  }

  .product-thumb {
    height: 51px !important;
    -o-object-fit: contain;
       object-fit: contain;
    width: 75px !important;
  }

  .thumb-select {
    height: 51px;
    pointer-events: auto;
  }

}

/* New banner */

.siren-pro-banner {
  padding-left: 0px !important;
  padding-right: 0px !important;
  border-left: 0px !important;

  a {
   padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .siren-pro-img {

   width: 118px;
  }


}


.siren-pro-choose-product {

 .service-plans-wrap {
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
   -ms-flex-wrap: wrap;
       flex-wrap: wrap;
 }

  select {

   width: 100%;

  }

  .selector-wrapper {
   	width: 220px;
   margin-right: 20px;
  }

  .service-plan {
   	font-size: 20px;
    line-height: 21px;
   	border-bottom: 1px solid;
    margin-bottom: 20px;
  }

  .service-info {

   padding-left: 30px;
    display: block;
  }


  .quantity-wrap {
   	display: -webkit-box;
   	display: -ms-flexbox;
   	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .js-qty {
   margin-bottom: 0px;
  }

  .quantity-selector {
    margin-right: 23px;
    text-transform: uppercase;
  }

}



/* get started block */

.siren-pro-get-started-wrap {
  padding: 50px 0px;

  .get-started-con {
   	display: -webkit-box;
   	display: -ms-flexbox;
   	display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .get-started-text {
    @include mobile {
      width: 100%;
      margin-bottom: 20px;
    }
   	width: 22%;

    h2 {
      font-size: 36px;
      line-height: 43px;
      letter-spacing: 0.55px;
      color: $slate;
      margin-bottom: 15px;
    }

    a {
     display: block;
      font-size: 18px;
      line-height: 29px;
      letter-spacing: 0.5px;
      color: $zeplin;
      text-decoration: underline;
    }
  }

  .get-started-products {
    @include mobile {
      width: 100%;
    }
   	width: 74%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;

    a {
      @include mobile {
       width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
      }
     display: block;
      width: 31%;
      -webkit-transition: none;
      -o-transition: none;
      transition: none;

      &:hover, &:focus, &:active {
       h5 {
        color: $zeplin;
       }

        span {
          color: $slate;
        }
      }
    }
  }

  .get-started-img-con {
   	border: 1px solid $elephant;
    margin-bottom: 10px;
  }

  h5 {
    font-size: 18px;
    line-height: 29px;
    margin-bottom: 0px;
    margin-bottom: 15px;
  }

  p {
   font-size: 18px;
    line-height: 20px;
    margin-bottom: 22px;
    color: $slate;
  }

  .get-started-price {
    display: block;
    font-size: 18px;
    color: $slate;
    line-height: 25px;
  }
}


/* Siren Pro Tabs */

.siren-pro-tabs {
	padding: 50px 0px 0px;


  table {
   margin-bottom: 40px;
  }

  .siren-pro-tab-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-bottom: 1px solid $granite;
    margin-bottom: 13px;

    h3 {
      @include mobile {
        width: 100%;
        margin-bottom: 13px;
      }
     margin-right: 44px;
      padding-bottom: 11px;
      font-size: 20px;
      line-height: 25px;
      color: $slate;
      text-transform: uppercase;
      position: relative;
      margin-bottom: 0px;
      cursor: pointer;

      &.active {
        color: $tomato;

       &::after {
        content: '';
        background-color: $zeplin;
        bottom: -2px;
        width: 100%;
        position: absolute;
        height: 3px;
        left: 0px;
      }
      }


    }
  }
}


.tabs-whats-new-wrap {

  h2 {
   font-size: 30px;
    line-height: 36px;
    letter-spacing: 0.56px;
    color: $zeplin;
    margin-bottom: 42px;
    text-align: center;
  }

  .whats-new-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;

  }

  .whats-new-main-img {
    @include mobile {
      width: 80%;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 20px;
    }
    width: 30%;
  }

  .tabs-icon-nav {
    @include mobile {
     width: 100%;
    }
   width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: flex-start;
        -ms-flex-align: flex-start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-evenly;
  }

  .tab-nav-item {
    @include mobile {
     width: 100%;
      margin-bottom: 20px;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
    }
    margin-bottom: 40px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 32%;

    img {
     margin-right: 15px;
     width: 50px;
    }

    p {
     font-size: 20px;
      line-height: 26px;
      color: $slate;
    }
  }
}




.tabs-features-wrap {

  h3 {
   	text-align: center;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0.5px;
    color: $zeplin;
    margin-bottom: 25px;
  }

  .features-icon-nav {
   	display: -webkit-box;
   	display: -ms-flexbox;
   	display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .three-icon-nav {
    @include mobile {
     width: 100%;
    }
    width: 74%;
    margin-left: auto;
    margin-right: auto;

   .features-nav-item {
     @include tablet-up {
      width: 27%;
     }
   }
  }

  .features-nav-item {
    @include mobile {
     width: 45%;
      margin-bottom: 25px;
    }
    width: 19%;
    text-align: center;
    margin-bottom: 50px;

    img {
     max-height: 60px;
      margin-bottom: 24px;
    }

    strong {
     display: block;
    }

    p {
     font-size: 16.5px;
      line-height: 24px;
      color: $slate;
    }
  }
}


.led-table-img {
 padding-left: 30px;
  margin: 30px 0px;
}


.tabs-reviews-wrap {

  .yotpo-pdp-container {
   padding: 0px !important;
  }

  .promoted-products-box {
   display: none !important;
  }
}

.tabs-tech-specs-wrap,
.tabs-reviews-wrap,
.tabs-features-wrap,
.tabs-whats-new-wrap,
.tabs-comparison-chart-wrap,
.tabs-additional-features-wrap {
 padding: 13px 0px;
  display: none;

  &.active {
	display: block;
  }
}

.tabs-tech-specs-wrap {
 .grey-title {
  text-align: center;
   padding-left: 30px;
   display: block;
   clear: both;
   margin-bottom: 0px;
 }
}


.siren-pro-bottom {
 clear: both;
  padding: 0px 0px 85px !important;

  .yotpo-display-wrapper > div:not(.promoted-products-box) {
   display: none;
  }

  .yotpo-main-title {
   	margin-top: 0px !important;
  }
}



.product-display.grid__item.extra-content {
  .h6 {
   font-size: 18px;
    line-height: 29px;
    margin-bottom: 0px;
  }

  p {
   	font-size: 18px;
    line-height: 24px;
    color: $slate;
  }
}





/* Homepage hero slider */

.fig-hero-video-slide {

  position: relative;
  padding: 35px 0px;
  background: white;
  clear: both;
  @include mobile {
    padding: 0px 0px 0px 0px;
  }


  &.smaller-s3p-hero {
    padding: 0px;

    img {
     @include desktop {
      width: 48%;
     }

      max-height: 425px;
      -o-object-fit: contain;
         object-fit: contain;

    }


    .wrapper {
     	@include desktop {
         width: 73%;
        }
     }

    .hero-slide-content {
    	@include desktop {
         width: 43%;
        }
    }
  }


  &.white-copy {

/*     @include mobile { */
     position: relative;
    overflow: hidden;
    max-width: 100%;
    @include tablet {
      padding-bottom: 54.25% !important;
    }
    padding-bottom: 56.25% !important;
/*     } */

    overflow: hidden;

    h2, h1, p {
       color: white;
    }

    .wrapper {
      position: absolute;
       top: 50%;
       transform: translateY(-50%);
    }

    .hero-slide-content {

      @include mobile {
       text-align: center;
        padding: 0px 0px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
      }

     	margin-left: auto;
      text-align: right;
    }

    .btn-con {
      @include mobile {
       text-align: center;
      }
     	text-align: right;
      width: 100%;
    }
  }


  .play-symbol {
     display: inline-block;
    }


  iframe {
   border: none;
  }

  .wrapper {
    @include mobile {
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
         -ms-flex-direction: row;
             flex-direction: row;
    }
    @include huge {
     max-width: 80%;
    }
   	display: -webkit-box;
   	display: -ms-flexbox;
   	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  img {
    @include mobile {
     width: 62%;
    }
    @include tablet {
     width: 45%;
    }
   width: 62%;
  }

  .hero-slide-content {
    @include mobile {
     width: 38%;
    }
    @include tablet {
     width: 55%;
    }
   width: 38%;
  }

  h2 {

      color: $zeplin;
  }
  h2 ~ h2 {
      color: $slate;
}

  h2 {
    @include responsive-type(48px, 60px, 0.52px);
    @include mobile {
     font-size: 13px;
      line-height: 14px;
      margin-bottom: 6px;
    }
    color: $slate;

    margin-bottom: 14px;
  }

  h1:nth-child(1){
    color: $slate;
  }

  h1 {
    @include responsive-type(60px, 72px, 0.5px);
    @include mobile {
     font-size: 13px;
      line-height: 15px;
      margin-bottom: 5px;
    }
    color: $zeplin;
    margin-bottom: 14px;
  }



  p {
    @include responsive-type(18px, 29px);
    @include mobile {
     font-size: 9px;
      line-height: 10px;
      margin-bottom: 6px;
    }
    color: $slate;
    margin-bottom: 44px;
    font-family: 'AvenirLTStd-Heavy';
  }

  .btn {
   @include mobile {
    padding: 5px 15px;
     font-size: 7px;
     line-height: 7px;

   }
  }

/*   .absolute-bg-video { */
/*     @include tablet-up {
       min-width: 1100px;
    }
    @include desktop {
      min-width: 1200px;
    } */

/*   } */

}

#shopify-section-163906359809a3ddad .fig-hero-video-slider-wrap{
  width:70%;
  margin:0 auto
}

@media only screen and (max-width: 600px) {
  #shopify-section-163906359809a3ddad .fig-hero-video-slider-wrap{
    width:100%;

  }
}

.fig-hero-video-slider-wrap {
  margin-bottom: 0px !important;

  .fig-hero-video-slide  {
   @include mobile {
    padding: 0px;
     background-size: cover;
   }
    background-position: center;
    background-size: 100% 90%;
    background-repeat: no-repeat;
  }

 .slick-arrow {
   @include mobile {
    display: none !important;
   }
    width: 21px;
    height: 36px;
    z-index: 999;

    &::before {
      content: '';
     background: url('//sirenmarine.com/cdn/shop/t/247/assets/fig-arrow.svg?v=27167065226233627861755455223');
      font-family: none;
      background-size: 21px 36px;
      background-repeat: no-repeat;
      position: absolute;
      width: 21px;
      height: 36px;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      opacity: 1;

    }
  }
  .slick-next {
   @include mobile-up {
    right: 10px;

     -webkit-transform: translate(0, -50%) rotate(180deg);
     -ms-transform: translate(0, -50%) rotate(180deg);
     transform: translate(0, -50%) rotate(180deg);
   }
  }
  .slick-prev {
   @include mobile-up {
    left: 10px;
   }
  }


  .slick-track {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }


  .slick-dots li.slick-active button:before {
   	font-size: 14px;
    color: $granite;
    border: none;
  }

  .slick-dots li button:before {
   	font-size: 14px;
	color: #e8e9ec;
    opacity: 1;
  }

  .slick-dots {
    @include mobile {
     bottom: 15px;
    }
   	bottom: 30px;
  }

}






/* BACKUP FROM SITE CODE BEING DELETED 7-9-2020 */
.fig-product-grid-with-sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.fig-product-grid-with-sidebar .fig-product-sidebar {
    width: 23%;
    background: #f5f5f5;
    border: 1px solid #ccc;
    padding: 20px 20px 10px;
}
@media screen and (min-width: 0px) and (max-width: 769px) {
    .fig-product-grid-with-sidebar .fig-product-sidebar {
        width: 90%;
        margin: 0px auto 30px;
    }
}
.fig-product-grid-with-sidebar .fig-product-sidebar h6 {
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #5c5c5c;
    margin-bottom: 13px;
}
.fig-product-grid-with-sidebar .fig-product-sidebar hr {
    border-top: 2px solid #b4b4b4;
    margin: 20px 0px 20px;
}
.fig-product-grid-with-sidebar .fig-product-sidebar a {
    display: block;
    font-family: "AvenirLTStd-Heavy";
    text-transform: uppercase;
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    position: relative;
}
.fig-product-grid-with-sidebar .fig-product-sidebar a.active {
    color: #5c5c5c;
  	text-decoration: underline;
}
.fig-product-grid-with-sidebar .fig-product-sidebar a.with-icon {
    padding-left: 26px;
}
.fig-product-grid-with-sidebar .fig-product-sidebar a.with-icon::after {
    content: "";
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.fig-product-grid-with-sidebar .fig-product-sidebar a.with-icon.mtc::after {
  background-image: url(//sirenmarine.com/cdn/shop/t/247/assets/icon-mtc.svg?v=50908503062764326081755455235);
}
.fig-product-grid-with-sidebar .fig-product-sidebar a.with-icon.siren-pro::after {
  background-image: url(//sirenmarine.com/cdn/shop/t/247/assets/icon-siren-3-pro.svg?v=15238467134830478061755455238);
}
.fig-product-grid-with-sidebar .fig-product-sidebar a.with-icon.siren-plus::after {
  background-image: url(/cdn/shop/files/Siren3-Icon-notxt.png?v=1749588468);

}
.fig-product-grid-with-sidebar .fig-product-sidebar a.with-icon.monitor::after {
  background-image: url(//sirenmarine.com/cdn/shop/t/247/assets/monitor.svg?v=143006803035914485051755455258);
}
.fig-product-grid-with-sidebar .fig-product-sidebar a.with-icon.track::after {
  background-image: url(//sirenmarine.com/cdn/shop/t/247/assets/track.svg?v=138270478056206515781755455309);
}
.fig-product-grid-with-sidebar .fig-product-sidebar a.with-icon.control::after {
  background-image: url(//sirenmarine.com/cdn/shop/t/247/assets/control.svg?v=164501633207894818721755455207);
}
.fig-product-grid-with-sidebar .fig-product-sidebar a.with-icon.security::after {
  background-image: url( //sirenmarine.com/cdn/shop/t/247/assets/secure.svg?v=114933733439855760591755455280 );
}
.fig-product-grid-with-sidebar .grid {
    width: 77%;
}
@media screen and (min-width: 0px) and (max-width: 769px) {
    .fig-product-grid-with-sidebar .grid {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}
.fig-product-grid-with-sidebar .product-display.grid__item .h6 {
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 0px;
    color: #f16921;
    margin-bottom: 10px;
}
.fig-product-grid-with-sidebar .product-display.grid__item .product-description,
.fig-product-grid-with-sidebar .product-display.grid__item .siren-price {
    font-size: 18px;
    line-height: 24px;
    color: #5c5c5c;
    margin-bottom: 10px;
}
.fig-product-grid-with-sidebar .siren-feature-img-con {
    margin-bottom: 10px;
}
.fig-product-grid-with-sidebar .siren-feature-img-con img {
    height: 25px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-right: 10px;
    opacity: 0.3;
}
.fig-product-grid-with-sidebar .siren-feature-img-con img.active {
    opacity: 1;
}
@media only screen and (max-width: 620px) {
    .fig-product-grid-with-sidebar .grid-uniform .small--one-half:nth-child(2n + 1) {
        padding: 0px 30px 0px 0px;
    }
}
@media screen and (min-width: 0px) and (max-width: 769px) {
    h4.accessories-title {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}





.sensors-products-wrap .grid__image {
    position: relative;
    overflow: hidden;
}
.sensors-products-wrap .s3p-sensor-icon,
.sensors-products-wrap .s3pro-sensor-icon,
.sensors-products-wrap .mtc-sensor-icon,
.sensors-products-wrap .all-sensor-icon,
.sensors-products-wrap .s3-series-sensor-icon,
.sensors-products-wrap .mtc-and-s3p-sensor-icon
 {
    position: absolute;
    left: -60px;
    top: -60px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg) ;
    width: 120px;
    height: 120px;

}

.sensors-products-wrap .s3p-sensor-icon img,
.sensors-products-wrap .s3pro-sensor-icon img,
.sensors-products-wrap .mtc-sensor-icon img,
.sensors-products-wrap .all-sensor-icon img,
.sensors-products-wrap .s3-series-sensor-icon img,
.sensors-products-wrap .mtc-and-s3p-sensor-icon img {
    position: absolute;
    top: 82px;
    right: 5px;
  -webkit-transform: rotate(45deg) translate(20px,-5px);
    -ms-transform: rotate(45deg) translate(20px,-5px);
    transform: rotate(45deg) translate(20px,-5px);
    border: none;

}
/*.sensors-products-wrap .s3p-sensor-icon {
    background-color: #f16921;
}
.sensors-products-wrap .s3p-sensor-icon img {
    width: 22px;
}
.sensors-products-wrap .mtc-sensor-icon {
    background-color: #5c5c5c;
}*/

.compatible-with-con {
    clear: both;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 10px;
    padding-left: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  margin-bottom: 30px;
}
.compatible-with-con h6 {
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 0.5px;
    color: #f16921;
    text-transform: uppercase;
    margin-bottom: 0px;
}
.compatible-with-con img {
    margin-left: 10px;
    width: 44px;
  	height: 44px;
    -o-object-fit: contain;
       object-fit: contain;
}


/* new video callout  */

.fig-video-callout-modal-wrap {



  @include mobile {
   padding: 80px 0px 150px;
  }
  background-image: url(//sirenmarine.com/cdn/shop/t/247/assets/s3p-bg-boat.jpg?v=54704447410838386871755455277);
  padding: 120px 0px 225px;
  text-align: center;
  position: relative;
  background-position: center;
  background-size: cover;

  &::before {
    content: '';
    background: rgba(92, 92, 92, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  h2, .fig-play-icon {
   	position: relative;
    z-index: 1;
  }

  h2 {
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 0.5px;
   color: white;
    margin-bottom: 70px;
  }

  .fig-play-icon {
   	margin-left: auto;
    margin-right: auto;
    width: 80px;
    height: 80px;
    background-image: url(//sirenmarine.com/cdn/shop/t/247/assets/play-icon.svg?v=100642407832957355811755455272);
    background-size: 80px 80px;
    cursor: pointer;
  }

}

.left-padding-thirty {
 padding-left: 30px;
}

.contact-page-callout {
  @include tablet-up {
    padding: 150px 0px;
  }
  background-image: url(//sirenmarine.com/cdn/shop/t/247/assets/blue-boat.png?v=110103781133362890071755455192) !important;
  float: left;

  .heading-input {
    color: white;
  }
}

.contact-main-content {
 padding: 60px 0px;
  clear: both;

  p {
   font-size: 20px;
    line-height: 29px;
    color: $slate;
  }

  .two-col-wrap {
   	display: -webkit-box;
   	display: -ms-flexbox;
   	display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .half-col {
    @include tablet-up {
      width: 45%;
    }

  }

  .hbspt-form {
    h2, p, label, .grecaptcha-badge, .hs_recaptcha {
     display: none !important;
    }

    .hs_submit .actions {
      padding: 0px !important;
      margin: 0px !important;
      height: 65px;
    }

    input[type="submit"] {
      border-radius: 30px;
      padding: 20px 55px;
      text-transform: uppercase;
      text-shadow: none;
      border: none;
      font-family: 'AvenirLTStd-Heavy';
      font-size: 18px;
      line-height: 20px;
      letter-spacing: 2px;
    }

    select {
     height: 40px;
      width: 97% !important;
    }

    input:not([type="submit"]) {
      font-size: 16px;
      line-height: 30px;
      height: 30px;
    }
  }
}




/* HOW IT WORKS */

.fig-mini-header-wrap {
 background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 64px 0px;

  h1 {
    @include responsive-type(60px, 72px, 0.5px);
   text-align: center;
    color: white;
    margin: 0px;
  }


}

.fig-video-callout-modal-wrap.only-video-callout {
  @include mobile {
   padding: 125px 0px;
    background-image: url(//sirenmarine.com/cdn/shop/t/247/assets/hand-alert.png?v=76442963839226368211755455231) !important;
  }
  padding: 252px 0px;
}

.fig-all-you-need-wrap {
 padding: 50px 0px;

  h2 {

    @include responsive-type(48px, 60px, 0.5px);
    @include mobile {
     font-size: 32px;
      line-height: 32px;
    }
   color: $zeplin;
    text-align: center;
    margin-bottom: 50px;
  }

  .all-you-need-cards {
   	display: -webkit-box;
   	display: -ms-flexbox;
   	display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    @media only screen and (max-width: 1025px){
      display: flex; 
      flex-direction: column; 
      width: 90vw;
    }
  }

  .all-you-need-card {
    @media only screen and (max-width: 1025px){
      
    }
    @include mobile {
      width: 90vw; 
      margin-bottom: 30px;
      margin-left: auto;
      margin-right: auto;
    }
   width: 30%;
    background: $watery;
    padding: 23px 20px 40px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 50px;

    img {
      @include mobile {
       width: 90%;
      }
     width: 100%;
      margin-bottom: 30px;
    }

    h5 {
      @include mobile {
       margin-bottom: 20px;
      }
      @include responsive-type(24px, 30px, 0.4px);
      color: $slate;
      margin-bottom: 3px;
      color: $slate;
      font-family: 'AvenirLTStd-Book';
    }

    .btn {
      @include mobile-up {
       padding: 15px 25px;
      }
      @include desktop {
        padding: 20px 56px;
      }

      	font-size: 18px;
      	line-height: 20px;
      	letter-spacing: 2px;
    }

    .btn-con {
     	display: -webkit-box;
     	display: -ms-flexbox;
     	display: flex;
      -webkit-box-pack: space-evenly;
          -ms-flex-pack: space-evenly;
              justify-content: space-evenly;
      width: 90%;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;

      img {
       max-width: 121px;
        margin-bottom: 0px;
      }
    }

  }
}


.fig-ping-pong-wrap.fig-with-icons {

  h2 {
    text-align: center;
   @include responsive-type(48px, 60px, 0.52px);
  }

  .ping-pong-image {
    @include tablet-up {
      width: 55%;
    }

    img {
     -webkit-box-shadow: none;
             box-shadow: none;
    }
  }

 .ping-pong-icons {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
       flex-wrap: wrap;
   -webkit-box-pack: space-evenly;
       -ms-flex-pack: space-evenly;
           justify-content: space-evenly;
 }

  .ping-pong-icon {
    width: 39%;
    margin-bottom: 30px;


    img {
      @include desktop {
        max-width: 101px;
      }
     max-width: 55px;
      margin-bottom: 8px;
      margin-left: auto;
      margin-right: auto;
      display: block;
    }

    h6 {
      @include responsive-type(20px, 25px);
      text-align: center;
      color: $slate;
    }

  }

}



.fig-overflow-callout-wrap.fig-icon-with-image-callout {
  .overflow-content {
    @include tablet-up {
      width: 49%;
      margin-left: 0px;
    }
    padding: 50px 0px;

  }

  .overflow-image {
   @include tablet-up {
    height: initial;
     position: relative;
   }
    @include desktop {
     height: 100%;
    }
  }

  h2 {
   @include responsive-type(48px, 60px, 0.52px);
    margin-bottom: 30px;
  }

  p {
   @include responsive-type(20px, 29px);
    color: $slate;
    margin-bottom: 30px;
  }

  .wrapper {
   	display: -webkit-box;
   	display: -ms-flexbox;
   	display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }

  .fig-icons-callout-icons {
    img {
     @include mobile-up {
       margin-right: 25px;
       width: 55px;
     }
     @include desktop {
       margin-right: 60px;
       width: 105px;
     }
      display: inline-block;
    }
  }

}


.fig-ping-pong-wrap.fig-with-single-icon {
	.content-and-icon {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 20px;

      img {
        @include desktop {
         display: block;
        }
        display: none;
      }

    }


  .fig-content-and-icon-content {
   @include mobile {
    width: 100%;
   }

    strong {
    @include mobile {
      text-align: center;
    }
   display: block;

  }
  }



  h2 {
    @include mobile {
     text-align: center;
    }
   text-align: left;
  }

  .ping-pong-content {
    @include mobile {
     text-align: center;
    }
  }

  ul, strong {
    @include mobile {
     text-align: left;
    }
   margin-bottom: 10px;

  }

  li {
    list-style: none;
    position: relative;

    &::before {
          content: "●";
    display: inline-block;
    color: $zeplin;
    width: 1em;
    margin-left: -1em;
    }

  }

  ul ul li {
   &::before {
    color: $elephant;
   }
  }

  strong, li, p {
   @include responsive-type(18px, 29px);
    color: $slate;
  }

  .btn {
    @include desktop {
      padding: 20px 55px;
    }

   	margin-bottom: 30px;
  }



  .fig-play-icon {
    @include mobile {
     left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
    }
   	margin-left: auto;
    margin-right: auto;
    width: 80px;
    height: 80px;
    background-image: url(//sirenmarine.com/cdn/shop/t/247/assets/play-icon.svg?v=100642407832957355811755455272);
    background-size: 80px 80px;
    cursor: pointer;
    position: absolute;
    top: 40%;
    left: 63%;
  }
}


.fig-three-row-callout-wrap {
 background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 115px 0px 185px;

  .three-row-content {
    @include mobile {
     margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
   width: 83%;
  }

  h2, h4, h5 {
   color: white;
  }

  h2 {
   @include responsive-type(48px, 60px, 0.52px);
    margin-bottom: 30px;
  }

  h4 {
   @include responsive-type(30px, 41px, 0.56px);
  }

  h5 {
   @include responsive-type(18px, 29px);
    font-family: 'AvenirLTStd-Book';
  }

  sub {
   bottom: auto;
    top: -0.5em;
  }

  .three-row-two-titles {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;

    img {
      @include mobile {
       margin-left: auto;
        margin-right: auto;
      }
      margin-left: 43px;
      max-width: 77px;
    }
  }

}

.fig-video-callout-wrap.fig-new-video-callout-wrap {
 	position: relative;
    overflow: hidden;
    max-width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    height: auto;
    padding-top: 0px;


  h1.video-callout-title {
   margin-bottom: 0px;
    position: absolute;
    left: 50%;
    top: 40px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
  }

  sub {
   bottom: auto;
    top: -0.5em;
  }

  iframe {
   @include mobile {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
   }
    pointer-events: none;
  }

  .video-wrapper {
   pointer-events: none;
  }


}

.fig-video-callout-wrap-buttons {

  .btn-con {
    @include desktop {
     margin-top: 60px;
    }
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;

    .btn {
     margin-bottom: 20px;
    }
  }

}

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/




/* DEALER RESOURCE CENTER */
.fig-resource-list-wrap {
  padding: 60px 0px 100px;


  .fig-resources-basic-links {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: center; 
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 60px 0px;

    a {
      @include mobile {
       width: 90%;
        margin-left: auto;
        margin-right: auto;
      }
     display: block;
      width: 26%;
      text-decoration: underline;
    }
  }

  .btn {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 2px;
  	@include desktop {
     padding: 20px 56px;
    }
  }
}

.resource-content {
    @include responsive-type(20px, 29px);
    color: $slate;
   width: 84%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.fig-marketing-tools-wrap {
 h3 {
  @include responsive-type(36px, 43px, 0.5px);
   color: $zeplin;
   text-align: center;
 }

  .fig-resources-basic-links {
   	display: -webkit-box;
   	display: -ms-flexbox;
   	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 30px;
    margin-top: 30px;

    a {
      @include mobile {
       width: 90%;
        margin-left: auto;
        margin-right: auto;
      }
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      text-align: center;
      width: 30%;
      margin-bottom: 30px;
    }

    img {
     max-height: 65px;
      margin-bottom: 25px;
    }

  }

  p {
      text-align: center;
    }
}


.fig-two-column-callout {
  padding: 60px 0px;

  .fig-two-column {
    @include mobile {
     width: 100%;
    }
    width: 65%;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;

    a {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      text-align: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      width: 45%;
    }

    p {
     @include responsive-type(18px, 29px, 0.5px);
      color: $slate;
      font-family: 'AvenirLTStd-Heavy';
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    img {
     margin-bottom: 10px;
    }

    span {
      @include responsive-type(18px, 29px, 0.5px);
     text-decoration: underline;
      color: $zeplin;
    }
  }

}


.fig-get-in-touch-wrap {
  background: $crescent;
  padding: 54px 0px 67px;
  tex-align: center;

  h2 {
   @include responsive-type(36px, 43px, 0.5px);
    color: $zeplin;
    margin-bottom: 20px;
  }

  .get-in-touch {
    @include mobile {
     width: 90%;
    }
   width: 68%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  p, a:not(.btn) {
    @include responsive-type(20px, 29px);
    color: $slate;
  }

  span {
    @include responsive-type(20px, 29px);
    color: $zeplin;
  }

  .btn-con {
   margin-top: 10px;
  }

  .btn {
   @include desktop {
    padding: 20px 56px;
   }
  }
}


/* USER GUIDES & MANUALS  */

.guides-and-manuals-title {
  @include responsive-type(36px, 43px, 0.5px);
  color: $zeplin;
  margin-bottom: 0px;
 padding: 60px 0px;
  text-align: center;
  clear: both;

}

.guides-and-manuals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 50px;

  .fig-resource-list-section {
    @include mobile {
     width: 100%;
    }
   width: 75%;
  }

  .fig-wiring-section {
    @include mobile {
     width: 100%;
    }
    width: 22%;
  }


  .fig-user-guides-wrap {
    h2 {
     @include responsive-type(30px, 36px, 0.56px);
      color: $slate;
      margin-bottom: 0px;
    }
  }

  .fig-user-guides {
   	display: -webkit-box;
   	display: -ms-flexbox;
   	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;

    a {
     width: 47%;
      display: block;
      margin-bottom: 20px;
      margin-top: 20px;
    }

    img {
     border: 1px solid $granite;
    }

    p {
     @include responsive-type(16px, 22px);
      color: $slate;
    }
  }
}

.fig-wiring-wrap {
  h2 {
   @include responsive-type(30px, 36px);
    color: $slate;
    margin-bottom: 20px;
  }
}

.fig-wiring {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;

  a {
    @include responsive-type(18px, 26px, 0.5px);
    color: $zeplin;
   text-decoration: underline;
    margin-bottom: 8px;
  }
}


/* VIDEO TUTORIALS  */

.fig-how-to-videos-wrap {
 clear: both;
  padding: 35px 0px 60px;

  h1 {
    @include responsive-type(36px, 43px, 0.5px);
    margin-bottom: 30px;
    text-align: center;
    color: $zeplin;
  }

  .full-width-title {
     width: 100%;
      margin: 30px 0px;
    }

    h3 {
     @include responsive-type(30px, 36px);
    }

  .fig-how-to-videos {
   	display: -webkit-box;
   	display: -ms-flexbox;
   	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;

    &::after {
     content: '';
      @include mobile {
       width: 45%;
      }
      width: 30%;
    }

    a {
      @include mobile {
       width: 45%;
      }
     width: 30%;
     margin-bottom: 30px;
      display: block;
    }


    h6 {
     @include responsive-type(18px, 29px);
      color: $zeplin;
    }
  }

  .fig-yt-image {
   position: relative;

    &::after {
      @include mobile {
        width: 22px;
        height: 15px;
        background-size: 22px 15px;
      }
      @include tablet {
        width: 44px;
        height: 30px;
        background-size: 44px 30px;
      }
     	content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      width: 66px;
      height: 46px;
      background-size: 66px 46px;
      background-image: url(//sirenmarine.com/cdn/shop/t/247/assets/youtube.svg?v=70016168528092243371755455314);
    }
  }
}

.page-tabs {
 position: relative;

  img {
   margin-top: 0px !important;
  }
}

.page-tabs-subscription{
  position:relative
  img {
   margin-bottom: 5px !important;
   width:50px
  }
}

.mobile-break {
 @include mobile {
  display: block;
   clear: both;
 }
}

.mobile-and-tablet-break {
 @include mobile-up {
   display: block;
   clear: both;
 }
  @include desktop {
   display: none;
  }
}
