@charset "utf-8";
/* CSS Document */
body * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
/* body blur on load */
@-webkit-keyframes image_blur {
    0% { -webkit-filter: blur(10px);}
    50% { -webkit-filter: blur(5px);}
    100% { -webkit-filter: blur(0px);}
    }
body {
    -webkit-animation: image_blur 0.5s;
	font-family: "Open Sans";
    font-weight: 400;
    line-height: 1.5;
    font-size: 1.15rem;
	color: #0d0d0d;
}
@media(max-width:600px) {
	body {
		line-height: 1.5;
    	font-size: 1rem;
	}
}
/* FONTS */
.grotesk-thin {
	font-family: 'Bw Nista Grotesk Thin';
	font-weight: 700;
}
.grotesk-regular {
	font-family: 'Bw Nista Grotesk';
}
.grotesk-bold {
	font-family: 'Bw Nista Grotesk ExBold';
}
.source {
	font-family: 'Source Serif Pro';
}
.open-sans {
	font-family: 'Open Sans';
}
.lato {
	font-family: 'Lato' !important;
}
.uk-text-light {
	font-weight: 300;
}
.text-shadow-light {
	text-shadow:1px 1px 2px rgba(255,255,255,0.9);
}
p {
    margin-top:1rem;
}
p:first-child {
    margin-top:0;
}
.r {
	font-size:58%;
}
footer .r {
	color:white;
}
em {
	color:inherit;
}
@media(max-width:600px) {
	footer .menu {
		display:flex;
		flex-direction: column;
		justify-content: center;
	}
}
.strike {
	position: relative;
}
.strike::after {
	content:"";
	position: absolute;
	transform: rotate(6deg);
	left:-4%;
	bottom:40%;
	width:108%;
	border-bottom:2px solid rgba(174,0,0,1.00);
}
.tick {
	background-image: url(../../global/img/tick.png);
	background-repeat: no-repeat;
}
.tick-sm {
	padding-left: 1.75em;
    background-size: 1.2em 1.2em;
    background-position: left 5px;
}
.tick-md {
	padding-left: 3em;
    background-size: 2em 2em;
    background-position: left 1px;
}
.hi {
    padding: 0 0.2em;
    line-height: 1;
    margin: 0 -0.1em;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url(../../global/img/hi_yellow_sm.png);
}
.bg-paper{
        background: url("../../global/img/bg-paper.jpg");
}
/* CTA BUTTONS */
.cta-button {
  font-size: 24px;
  color: #333;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
  background-color: #006400;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12),0 3px 1px -2px rgba(0,0,0,0.2);
          box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12),0 3px 1px -2px rgba(0,0,0,0.2);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f6dda1), to(#f0c14b));
  background-image: -o-linear-gradient(top, #f6dda1, #f0c14b);
  background-image: linear-gradient(180deg, #f6dda1, #f0c14b);
  border: 1px solid #fff;
  border-color: #a88734 #9c7e31 #846a29;
  border-radius: 5px;
  text-shadow: 1px 1px 0px #F9FFAC;
}

.cta-button:link,.cta-button:visited,.cta-button:hover,.cta-button:active {
  color: #333;
	text-decoration: none;
}

.cta-button:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 5px;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s;
  z-index: -1;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffdf28), to(#ffca11));
  background-image: -o-linear-gradient(top, #ffdf28, #ffca11);
  background-image: linear-gradient(180deg, #ffdf28, #ffca11);
}
.cta-button:hover:before {
    opacity: 1;
}
.cta-button .arr {
  display: inline-block;
  -webkit-transform: translate(0, -2px);
      -ms-transform: translate(0, -2px);
          transform: translate(0, -2px);
}

.cta-box:hover .cta-button:before {
  opacity: 1;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s;
}
.cta-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin-top: 30px;
  margin-bottom: 30px;
}

.cta-boxes h5.total {
  margin-top: 18px;
  color: #666;
  font-size: 18px;
  line-height: 1;
}

.cta-boxes h5.total strike {
  text-decoration: none;
  display: inline-block;
  padding-left: 4px;
  padding-right: 4px;
  position: relative;
}

.cta-boxes h5.total strike:after {
  content: " ";
  display: inline-block;
  width: 100%;
  opacity: 0.5;
  -webkit-transform: rotate(12deg);
      -ms-transform: rotate(12deg);
          transform: rotate(12deg);
  height: 2px;
  position: absolute;
  background-color: #bc0000;
  left: 0;
  top: 8px;
}

.cta-boxes p.freeship {
  font-size: 14px;
  text-align: center;
  margin-top: 0;
  font-weight: bold;
  color: #666;
  text-transform: uppercase;
}
.cta-boxes .freeship.hi {
	max-width:200px;
	margin:auto;
	padding:4px 0;
	border-radius:8px;
	background-color:transparent;
}
.cta-boxes h4.save {
  margin-top: 6px;
  font-style: italic;
  color: #bc0000;
  font-weight: 900;
  font-size: 20px;
}

.cta-boxes h4.save strong {
  font-size: 22px;
}

.cta-boxes .cta-box {
  border: 2px solid #eee;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33%;
          flex: 1 0 33%;
  -ms-flex: 1 0 100%;
      flex: 1 0 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  padding: 1px 1px 0;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12),0 3px 1px -2px rgba(0,0,0,0.2);
          box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12),0 3px 1px -2px rgba(0,0,0,0.2);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.cta-boxes .new6pack {
	background-color:#fffdf1;
}
.cta-boxes .cta-box:hover {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  border-color: #7ba0c4;
  -webkit-box-shadow: 0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12),0 3px 5px -1px rgba(0,0,0,0.3);
          box-shadow: 0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12),0 3px 5px -1px rgba(0,0,0,0.3);
}

.cta-boxes .cta-box.pack6 .bottle-title {
  padding-top: 12px;
  padding-bottom: 12px;
}

.cta-boxes .cta-box.pack6 .bottle-title h3 {
  font-size: 34px;
}

.cta-boxes .bottle-title {
  margin: 0px 0px 10px;
  padding: 8px 10px 10px;
  border-radius: 8px 8px 0 0;
}

.cta-boxes .bottle-title h5 {
  margin: 0 0 -4px;
  font-size: 16px;
  letter-spacing: 0.3em;
  font-weight: bold;
  color: #ffd1a8;
}

.cta-boxes .bottle-title h3 {
  color: #fff;
  margin: 12px 0 6px;
  line-height: 1;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-boxes .bottle-title p {
  color: #fff;
  font-size: 17px;
  font-style: italic;
  text-align: center;
  margin: 0 0 6px;
  line-height: 1;
  font-family: "Source Serif Pro",sans-serif;
}

.cta-boxes .bottle-image {
  margin: 0 auto;
  position: relative;
}

.cta-boxes .bottle-image .badge {
  position: absolute;
  z-index: 3;
  -webkit-filter: drop-shadow(0 1px 1px rgba(50,90,110,0.125)) drop-shadow(0 1px 1px rgba(50,90,110,0.15)) drop-shadow(0 1px 1px rgba(50,90,110,0.1));
          filter: drop-shadow(0 1px 1px rgba(50,90,110,0.125)) drop-shadow(0 1px 1px rgba(50,90,110,0.15)) drop-shadow(0 1px 1px rgba(50,90,110,0.1));
}

.cta-boxes .price-details h4 {
  margin: 0;
}

.cta-boxes .price-details h4.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
  margin-bottom: 16px;
  font-weight: 900;
  color: #4476b2;
  font-size: 48px;
  line-height: 1;
}

.cta-boxes .price-details h4.price span.pp {
  padding-left: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  letter-spacing: -0.0125em;
}

.cta-boxes .price-details h4.price span.pb {
  font-family: "Open Sans",sans-serif;
  line-height: 1.1;
	position: relative;
	left:-2px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  color: #4e4e4e;
  text-align: left;
  font-weight: normal;
  font-size: 15px;
  padding-left: 8px;
  padding-top: 8px;
}

.cta-boxes p.guarantee {
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-family: "Open Sans",sans-serif;
  background-color: #4b5563;
  margin: 10px 0 0px;
  padding: 10px 5px;
  border-radius: 0 0 8px 8px;
}
@media (max-width: 767px) {
	.cta-boxes {
    max-width: 470px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-boxes p.freeship {
    margin-bottom: 4px;
  }

  .cta-boxes h4.save {
    font-size: 20px;
    margin-bottom: 0px;
  }
}
@media (min-width: 768px) {
	.cta-boxes {
    -webkit-box-align: center;
        -ms-flex-align:center;
            align-items: center;
  }

  .cta-boxes h4.save span.fs {
    display: inline-block;
    font-size: 18px;
  }

  .cta-boxes .cta-box {
    border: 2px solid #eee;
    margin-left: 2px;
    margin-right: 2px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(33% - 4px);
            flex: 1 0 calc(33% - 4px);
  }

  .cta-boxes .bottle-image .badge {
    -webkit-filter: drop-shadow(0 2px 4px rgba(50,90,110,0.125)) drop-shadow(0 2px 2.5px rgba(50,90,110,0.15)) drop-shadow(0 2px 1.5px rgba(50,90,110,0.1));
            filter: drop-shadow(0 2px 4px rgba(50,90,110,0.125)) drop-shadow(0 2px 2.5px rgba(50,90,110,0.15)) drop-shadow(0 2px 1.5px rgba(50,90,110,0.1));
  }

  .cta-boxes .bottle-image {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .cta-boxes .price-details h4.price {
    font-size: 42px;
  }

  .cta-boxes .price-details h4.price span.pb {
    font-size: 13px;
    padding-top: 8px;
  }

  .cta-button {
    font-size: 22px;
  }

  .cta-button {
    padding: 10px 10px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
	.cta-boxes .cta-box.pack6 .bottle-title h3 {
    font-size: 30px;
  }
}
@media (min-width: 1024px) {
	.cta-boxes .cta-box {
    border: 2px solid #eee;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(33% - 10px);
            flex: 1 0 calc(33% - 10px);
    margin-left: 5px;
    margin-right: 5px;
  }

  .cta-button {
    font-size: 26px;
  }
    .14days .cta-button {
    font-size: 24px;
  }

  .cta-button { 
    padding: 10px 0;
  }
}

@media (max-width: 768px) {
	.cta-boxes .bottle-image {
		margin-top:0 !important;
		margin-bottom:0 !important;
	}
	.cta-boxes .price-details h4.price {
		font-size:38px;
	}
	.cta-boxes .price-details h4.price span.pb {
		padding-top:3px;
	}
}
@media(min-width:961px) {
	.cta-boxes .pack1, .pack3 {
		transform:scale(0.95);
	}
	.cta-boxes .pack6 {
		transform:scale(1.05);
	}
}

/*STEPS*/
.progress-step-wrap {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.progress-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    font-size: 12px;
}

.progress-steps p {
    margin-top: 0!important;
}

.step-item {
    position: relative;
    z-index: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 31%;
    flex: 1 0 31%;
}

.upgrade .step-3 .step-icon-wrap {
    background: #fff;
    border: 2px solid #bb8d42;
    color: #bb8d42;
    font-size: 1.7em;
}

.upgrade .step-3.step-item {
    opacity: .7;
    -webkit-filter: saturate(.5);
    filter: saturate(.5);
    background-color: #fff;
}

.complete .step-2 .step2num {
    display: none;
}

.complete .step-2 .step2icon {
    display: block;
}

.upgrade .step-2 .step2icon,.complete .step-3 .step2icon {
    display: none;
}

.upgrade .step-2 .step-text-wrap,.complete .step-3 .step-text-wrap {
    padding: 4px 0 0 5px;
}

.upgrade .step-2 .step-text-wrap p.step-head,.complete .step-3 .step-text-wrap p.step-head {
    font-size: 1.2em;
    font-weight: 900;
    margin-bottom: 0;
    text-transform: uppercase
}

.upgrade .step-2 .step-text-wrap p.step-subhead,.complete .step-3 .step-text-wrap p.step-subhead {
    font-size: 1em;
    color: #fff;
    font-weight: 700;
}

.upgrade .step-2 .step-icon-sm-fx,.complete .step-3 .step-icon-sm-fx {
    position: relative;
    z-index: 6;
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    z-index: 1;
    mix-blend-mode: screen;
    top: 0;
    left: calc(50% - 18px);
    border-radius: 50%;
    background: #bb8d42;
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}

.upgrade .step-2 .step-icon-wrap,.complete .step-3 .step-icon-wrap {
    font-size: 1.7em;
}

.step-text-wrap {
    padding: 5px;
}

.step-text-wrap p {
    font-family: lato,sans-serif;
    color: #bb8d42;
}

.step-text-wrap p.step-head {
    font-weight: 700;
    font-size: 12px;
    margin-top: 0!important;
}

.step-text-wrap p.step-subhead {
    color: #6b7280;
    font-size: .9em;
    margin-bottom: 0;
    margin-top: 0!important;
}

.step-icon-wrap {
    border-radius: 50%;
    background: #bb8d42;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: lato,sans-serif;
    font-weight: 900;
    line-height: 1;
}

@media(min-width: 728px) and (max-width:820px) {
    .complete .progress-step-wrap {
        max-width:690px;
    }
}

@media(min-width: 768px) {
    .progress-step-wrap {
        padding-left:15px;
        padding-right: 15px;
        max-width: 752px;
    }

    .progress-steps {
        font-size: 12px;
    }

    .step-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        background-color: #fff;
        padding: 10px;
        border: 1px solid rgba(107,114,128,.6);
        border: 1px solid rgba(107,114,128,.6)
    }

    .step-item.step-1 {
        border-radius: 50px 0 0 50px;
    }

    .step-item.step-3 {
        border-radius: 0 50px 50px 0;
    }

    .step-item.step-2 {
        border-radius: 50px;
    }

    .upgrade .step-3 .step-icon-wrap {
        background: 0 0;
        margin-right: 8px;
    }

    .upgrade .step-3.step-item {
        padding-left: 40px;
    }

    .upgrade .step-2 .step-icon-sm-fx,.complete .step-3 .step-icon-sm-fx {
        display: none;
    }

    .upgrade .step-2 .step-icon-wrap,.complete .step-3 .step-icon-wrap {
        background: #fff;
        color: #bb8d42;
        margin-left: 10px;
        border: 2px solid #996923;
    }

    .upgrade .step-2.step-item,.complete .step-3.step-item {
        padding: 8px;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 35%;
        flex: 1 0 35%;
        border: 3px solid #996923;
        background-color: #bb8d42;
        -webkit-transform: scale(1.15);
        -ms-transform: scale(1.15);
        transform: scale(1.15);
        -webkit-filter: drop-shadow(0 5px 5px rgba(171,124,59,0.075)) drop-shadow(0 4px 5px rgba(171,124,59,0.15)) drop-shadow(0 2px 3px rgba(171,124,59,0.2));
        filter: drop-shadow(0 5px 5px rgba(171,124,59,0.075)) drop-shadow(0 4px 5px rgba(171,124,59,0.15)) drop-shadow(0 2px 3px rgba(171,124,59,0.2));
        position: relative;
        z-index: 3;
    }

    .upgrade .step-2.step-item p,.complete .step-3.step-item p {
        color: #fff;
    }

    .upgrade .step-2.step-item:after,.complete .step-3.step-item:after {
        content: ' ';
        display: block;
        left: 0;
        top: 0;
        z-index: 1;
        position: absolute;
        border-radius: 50px;
        border: 0 solid #bb8d42;
        background-color: transparent;
        -webkit-animation: activate 2s infinite;
        animation: activate 2s infinite;
    }

    .complete .step-2 {
        margin-left: -55px;
    }

    .complete .step-3 {
        margin-left: -30px;
    }

    .complete .step-3.step-item {
        border-radius: 50px;
    }

    .step-text-wrap p {
        line-height: 1;
        margin-bottom: 2px;
    }

    .step-text-wrap p.step-head {
        font-size: 13px;
    }

    .step-icon-wrap {
        margin-right: 14px;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 36px;
        flex: 0 1 36px;
        width: 36px;
        height: 36px;
    }

    .step-icon-wrap img {
        width: 19px;
    }
}

@media(min-width: 768px) and (min-width:768px) {
    .complete .step-3.step-item {
        -webkit-box-flex:1;
        -ms-flex: 1 0 30%;
        flex: 1 0 30%;
    }
}

@media(min-width: 1024px) {
    .progress-step-wrap {
        max-width:970px;
    }

    .progress-steps {
        font-size: 16px;
    }

    .upgrade .step-2 .step-text-wrap p.step-head,.complete .step-3 .step-text-wrap p.step-head {
        font-size: 1.4em;
    }

    .step-text-wrap p.step-head {
        font-size: 20px;
    }

    .step-icon-wrap {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 45px;
        flex: 0 1 45px;
        width: 45px;
        height: 45px;
    }

    .step-icon-wrap img {
        width: 22px;
    }
}

@media(min-width: 1024px) and (max-width:1048px) {
    .complete .progress-step-wrap {
        max-width:920px;
    }
}

@media(max-width: 767px) {
    .step-item {
        -webkit-box-flex:1;
        -ms-flex: 1 0 33%;
        flex: 1 0 33%;
        position: relative;
        z-index: 4;
    }

    .step-item:after {
        content: "";
        height: 6px;
        margin-left: 50%;
        width: 100%;
        background-color: #bb8d42;
        border-top: 1px solid #bb8d42;
        border-bottom: 1px solid #bb8d42;
        position: absolute;
        top: 15px;
        z-index: 1;
    }

    .step-item.step-3:after {
        display: none;
    }

    .step-item.step-2 {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 33%;
        flex: 1 0 33%;
    }

    .step-item.step-2:after {
        width: calc(100% - 16px);
        background: #d4dce3;
        border: 1px solid #abb9c5;
        border-left: none;
        border-right: none;
        opacity: .6;
    }

    .complete .step-2.step-item:after {
        content: "";
        height: 6px;
        margin-left: 50%;
        width: 100%;
        background-color: #bb8d42;
        border-top: 1px solid #bb8d42;
        border-bottom: 1px solid #bb8d42;
        position: absolute;
        top: 15px;
        z-index: 1;
        opacity: 1;
    }

    .upgrade .step-2 .step-icon-wrap,.complete .step-3 .step-icon-wrap {
        color: #fff;
        background: #bb8d42;
    }

    .step-text-wrap p {
        text-align: center;
        line-height: 1.2;
    }

    .step-text-wrap p.step-subhead {
        display: none;
    }

    .step-icon-wrap {
        width: 36px;
        height: 36px;
        margin: 0 auto 5px;
        position: relative;
        z-index: 4;
        z-index: 6;
    }

    .step-icon-wrap img {
        width: 18px;
    }

    .step-icon-wrap svg {
        width: 18px;
    }

    .upgrade .step-3.step-item {
        background-color: transparent;
    }
}

@-webkit-keyframes freeteaser {
    0% {
        -webkit-transform: translate(0,-10%);
        transform: translate(0,-10%);
        -webkit-filter: saturate(1.1) brightness(1.3);
        filter: saturate(1.1) brightness(1.3);
    }

    15% {
        -webkit-filter: saturate(1) brightness(1);
        filter: saturate(1) brightness(1);
    }

    30% {
    }

    50% {
        -webkit-transform: translate(0,0);
        transform: translate(0,0);
        -webkit-filter: saturate(1) brightness(1);
        filter: saturate(1) brightness(1);
    }

    85% {
        -webkit-filter: saturate(1) brightness(1);
        filter: saturate(1) brightness(1);
    }

    100% {
        -webkit-filter: saturate(1.1) brightness(1.3);
        filter: saturate(1.1) brightness(1.3);
        -webkit-transform: translate(0,-10%);
        transform: translate(0,-10%);
    }
}

@keyframes freeteaser {
    0% {
        -webkit-transform: translate(0,-10%);
        transform: translate(0,-10%);
        -webkit-filter: saturate(1.1) brightness(1.3);
        filter: saturate(1.1) brightness(1.3);
    }

    15% {
        -webkit-filter: saturate(1) brightness(1);
        filter: saturate(1) brightness(1);
    }

    30% {
    }

    50% {
        -webkit-transform: translate(0,0);
        transform: translate(0,0);
        -webkit-filter: saturate(1) brightness(1);
        filter: saturate(1) brightness(1);
    }

    85% {
        -webkit-filter: saturate(1) brightness(1);
        filter: saturate(1) brightness(1);
    }

    100% {
        -webkit-filter: saturate(1.1) brightness(1.3);
        filter: saturate(1.1) brightness(1.3);
        -webkit-transform: translate(0,-10%);
        transform: translate(0,-10%);
    }
}

@-webkit-keyframes freeteaser-behind {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: saturate(1.1) brightness(1.3);
        filter: saturate(1.1) brightness(1.3);
        opacity: 1;
    }

    15% {
        -webkit-filter: saturate(1.1) brightness(1.3);
        filter: saturate(1.1) brightness(1.3);
    }

    30% {
        -webkit-filter: saturate(1) brightness(1);
        filter: saturate(1) brightness(1);
        opacity: 0;
        -webkit-transform: scale(1.35);
        transform: scale(1.35);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes freeteaser-behind {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: saturate(1.1) brightness(1.3);
        filter: saturate(1.1) brightness(1.3);
        opacity: 1;
    }

    15% {
        -webkit-filter: saturate(1.1) brightness(1.3);
        filter: saturate(1.1) brightness(1.3);
    }

    30% {
        -webkit-filter: saturate(1) brightness(1);
        filter: saturate(1) brightness(1);
        opacity: 0;
        -webkit-transform: scale(1.35);
        transform: scale(1.35);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@-webkit-keyframes circle-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes circle-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes circle-flash {
    0% {
        -webkit-filter: contrast(1.35) brightness(1.35);
        filter: contrast(1.35) brightness(1.35);
        -webkit-transform: scale(1.0125,1.0125);
        transform: scale(1.0125,1.0125);
    }

    45% {
        -webkit-filter: contrast(1) brightness(1);
        filter: contrast(1) brightness(1);
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }

    55% {
        -webkit-filter: contrast(1) brightness(1);
        filter: contrast(1) brightness(1);
        -webkit-transform: scale(1,1);
        transform: scale(1,1)
    }

    100% {
        -webkit-filter: contrast(1.35) brightness(1.35);
        filter: contrast(1.35) brightness(1.35);
        -webkit-transform: scale(1.0125,1.0125);
        transform: scale(1.0125,1.0125);
    }
}

@keyframes circle-flash {
    0% {
        -webkit-filter: contrast(1.35) brightness(1.35);
        filter: contrast(1.35) brightness(1.35);
        -webkit-transform: scale(1.0125,1.0125);
        transform: scale(1.0125,1.0125);
    }

    45% {
        -webkit-filter: contrast(1) brightness(1);
        filter: contrast(1) brightness(1);
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }

    55% {
        -webkit-filter: contrast(1) brightness(1);
        filter: contrast(1) brightness(1);
        -webkit-transform: scale(1,1);
        transform: scale(1,1)
    }

    100% {
        -webkit-filter: contrast(1.35) brightness(1.35);
        filter: contrast(1.35) brightness(1.35);
        -webkit-transform: scale(1.0125,1.0125);
        transform: scale(1.0125,1.0125);
    }
}

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .8;
    }

    to {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .8;
    }

    to {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 0;
    }
}

@-webkit-keyframes activate {
    from {
        border-width: 0;
        opacity: .5;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }

    to {
        border-width: 20px;
        opacity: 0;
        top: -20px;
        right: -20px;
        bottom: -20px;
        left: -20px;
    }
}

@keyframes activate {
    from {
        border-width: 0;
        opacity: .5;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0
    }

    to {
        border-width: 20px;
        opacity: 0;
        top: -20px;
        right: -20px;
        bottom: -20px;
        left: -20px;
    }
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(0,0,0,.2);
    }

    100% {
        box-shadow: 0 0 0 20px transparent;
    }
}
/*/STEPS*/
.prefer-to-read {
	display: flex;
	align-items: center;
	justify-content: center;
	margin:2rem 0 6rem;
	color:white;
	font-size:0.8rem;
}
.prefer-to-read a {
	padding:0.25rem 1rem;
	background: rgba(255,255,255,0.05);
	border-radius: 99px;
	border:thin solid white;
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.prefer-to-read a:hover {
	text-decoration: none;
	color:white;
	background: rgba(255,255,255,0.1);
}
.imgfx {
    border: 1px solid #fff;
	border-radius:6px;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12), 0 3px 1px -2px rgba(0,0,0,.2);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12), 0 3px 1px -2px rgba(0,0,0,.2);
}
.testimonialsWrapper .test-title {
	color:#323e48;
}
/* width */
.testimonialsWrapper::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.testimonialsWrapper::-webkit-scrollbar-track {
  background: #e9edf1;
	border-radius: 99px;
}

/* Handle */
.testimonialsWrapper::-webkit-scrollbar-thumb {
  	background: #295474;
	border-radius: 99px;
}

/* Handle on hover */
.testimonialsWrapper::-webkit-scrollbar-thumb:hover {
  background: #53768f;
}

/* VIDEO */
.play-button-icon {
    transition: all 0.5s ease-out;
}
.play-button-icon:hover {
    transform:scale(1.05);
}

.videoWrapper {
    position: relative;
    padding-top: 25px;
    height: 0;
    background: #131313;
}
.videoWrapper {
    padding-bottom: 52.9%;
}

@media (max-width:600px) {
    .videoWrapper {
    padding-bottom: 49%;
    }
}
.video-full-width {
    margin-bottom:25px;
}
.coverTap {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
}
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-cover {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1 !important;
}
/* click to play text */
.play-button-text-wrapper {
    height: 100%;
}
.play-button-text {
    font-style: italic;
    transition: all .2s ease-out;
    cursor: pointer;
    text-transform: uppercase;
}
/* volume button */
@keyframes VOLUME_SMALL_WAVE_FLASH {
      0% { opacity: 0; }
     33% { opacity: 1; }
     66% { opacity: 1; }
    100% { opacity: 0; }
  }

  @keyframes VOLUME_LARGE_WAVE_FLASH {
      0% { opacity: 0; }
     33% { opacity: 1; }
     66% { opacity: 1; }
    100% { opacity: 0; }
  }

  .volume__small-wave {
    animation: VOLUME_SMALL_WAVE_FLASH 2s infinite;
    opacity: 0;
  }

  .volume__large-wave {
    animation: VOLUME_LARGE_WAVE_FLASH 2s infinite .3s;
    opacity: 0;
  }
.volume_button {
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    height: 60px;
    width: 60px;
    line-height: 60px;
    outline: none;
    padding-right: 0px;
    pointer-events: auto;
    position: absolute;
    right: 15px;
    text-align: left;
    top: 15px;
}
/* pause notifier */
.pause-notifier {
    pointer-events: none;
    opacity: 1;
    transform: scale(1.1);
    width: 60px;
    transition: opacity 0.8s ease 0s, transform 0.8s ease 0s;
}
.pause-notifier svg {
    overflow: visible;
}
.play-icon-arrow {
    top: 54px;
    left: -100px;
    max-width: 76px;
}
@media(max-width:767px) {
    .pause-notifier {
    width: 40px;
}
    .play-icon-arrow {
    top: 40px;
    left: -70px;
    max-width: 46px;
    }
}
.video-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    background: radial-gradient(circle,rgba(0,0,0,.4),rgba(0,0,0,.8));
    background: -webkit-radial-gradient(circle,rgba(0,0,0,.4),rgba(0,0,0,.8));
    z-index: 2 !important;
    top: 0;
    left: 0;
}
.video-overlay-after {
    width: 100%;
    height: 65px;
    position: absolute;
    z-index: 2 !important;
    top: 0;
    left: 0;
}