@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",sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-size: 17.5px;
    line-height: 1.5;
	color: #0d0d0d;
}
@media (min-width: 1024px) {
	p, ul, ol {
		font-size: 20px;
	}
}
p {
    margin-top:1rem;
}
p:first-child {
    margin-top:0;
}
.r {
	font-size:56%;
}
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(../images/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(../images/hi_yellow_sm.png);
}
/* FONTS */
.fira {
	font-family: "Fira Sans Extra Condensed",Impact,sans-serif;
	font-weight: 700;
}
.source {
	font-family: "Source Serif Pro",sans-serif;
}
.lato {
	font-family: "Lato",sans-serif;
}
.uk-text-light {
	font-weight: 300;
}
/* FAKE CLICKBANK BADGE */
.cbtb-fake {
	background: #f2f2f2;
	justify-content: center;
	align-items: center;
	display: flex;
}
.cbtb-fake img {
	max-width:290px;
	padding:4px;
}
/* CTA BUTTONS */
.cta-button {
  font-family: "Lato",sans-serif;
  font-size: 24px;
  font-weight: 800;
  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;
  font-family: "Lato",sans-serif;
  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 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;
  background-color: #fff;
  -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;
  background-color: #fffdf1;
  -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;
  background-color: #333;
  background-color: #4476b2;
  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-family: "Lato",sans-serif;
  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;
  padding:0 1rem;
}
.cta-boxes .bottle-image img {
  margin: 0 auto;
}

.cta-boxes .bottle-image .badge {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 5px;
  width: 80px;
  -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;
  font-family: "Lato",sans-serif;
  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;
  -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;
}
.badge-color-1 img {
  -webkit-filter: hue-rotate(46deg);
          filter: hue-rotate(46deg);
}

.badge-color-2 img {
  -webkit-filter: hue-rotate(323deg);
          filter: hue-rotate(323deg);
}
@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;
  }

  .cta-boxes .cta-box.pack1 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .cta-boxes .cta-box.pack3 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .cta-boxes .cta-box.pack6 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@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 .cta-box.pack1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .cta-boxes .cta-box.pack3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .cta-boxes .cta-box.pack6 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }


  .cta-boxes .bottle-image .badge {
    left: 0;
    bottom: -10px;
    width: 40%;
    max-width: 90px;
    -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-boxes .bottle-image .badge {
    left: 0;
    bottom: -10px;
    width: 90px;
    max-width: 100%;
  }

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

  .cta-button {
    padding: 10px 0;
  }
}
@media(min-width:1200px) {
	.cta-boxes .bottle-image .badge {
    left: 0;
    bottom: 6%;
    width: 100px;
  }
}
@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;
	}
	.cta-boxes .bottle-image .badge {
		left:0;
	}
}
@media(min-width:961px) {
	.cta-boxes .pack1, .pack3 {
		transform:scale(0.95);
	}
	.cta-boxes .pack6 {
		transform:scale(1.05);
	}
}


/*
* Progress 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;
}

.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 #7ba0c4;
  color: #7ba0c4;
  font-size: 1.7em;
}

.upgrade .step-3.step-item {
  opacity: 0.7;
  -webkit-filter: saturate(0.5);
          filter: saturate(0.5);
  background-color: transparent;
}

.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 span.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 span.step-subhead {
  font-size: 1em;
  color: #fff;
  font-weight: bold;
}

.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: 0px;
  left: calc(50% - 18px);
  border-radius: 50%;
  background: #7ba0c4;
  -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 span {
  font-family: "Lato",sans-serif;
  color: #7ba0c4;
}

.step-text-wrap span.step-head {
  font-weight: bold;
  font-size: 12px;
}

.step-text-wrap span.step-subhead {
  color: #6b7280;
  font-size: 0.9em;
  margin-bottom: 0px;
  margin-top: 0px;
}

.step-icon-wrap {
  border-radius: 50%;
  background: #839fc1;
  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,0.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: transparent;
    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: #7ba0c4;
    color: #5f8cb9;
    margin-left: 10px;
    border: 2px solid #5887b4;
  }

  .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 #5887b4;
    background-color: #699bcd;
    -webkit-transform: scale(1.15);
        -ms-transform: scale(1.15);
            transform: scale(1.15);
    -webkit-filter: drop-shadow(0 5px 5px rgba(131,159,193,0.075)) drop-shadow(0 4px 5px rgba(131,159,193,0.15)) drop-shadow(0 2px 3px rgba(131,159,193,0.2));
            filter: drop-shadow(0 5px 5px rgba(131,159,193,0.075)) drop-shadow(0 4px 5px rgba(131,159,193,0.15)) drop-shadow(0 2px 3px rgba(131,159,193,0.2));
    position: relative;
    z-index: 3;
  }

 .upgrade .step-2.step-item .step-head,.upgrade .step-2.step-item .step-subhead,.complete .step-3.step-item span {
    color: #fff;
 }
	.upgrade .step-2.step-item .step-subhead {
		font-weight: bold;
	}
  .upgrade .step-2.step-item:after,.complete .step-3.step-item:after {
    content: ' ';
    display: block;
    left: 0px;
    top: 0px;
    z-index: 1;
    position: absolute;
    border-radius: 50px;
    border: 0px solid #839fc1;
    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 span {
    line-height: 1;
    margin-bottom: 2px;
  }

  .step-text-wrap span.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 span.step-head,.complete .step-3 .step-text-wrap span.step-head {
    font-size: 1.4em;
  }

  .step-text-wrap span.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: #839fc1;
    border-top: 1px solid #7ba0c4;
    border-bottom: 1px solid #7ba0c4;
    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: 0.6;
  }

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

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

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

  .step-text-wrap span.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;
  }
}

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

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

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

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

@-webkit-keyframes activate {
  from {
    border-width: 0px;
    opacity: 0.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: 0px;
    opacity: 0.5;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

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

/*
* End Progress Steps 
*/ 
.pulse {
  animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
/* Extended Testimonials */
@media(min-width:768px){
	.uk-tooltip {
		background: #4477B1;
		color: white;
		text-shadow:1px 1px 1px rgba(0,0,0,0.4);
		box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	}
	.vidTest, .vidTestClicked {
		min-height: 150px;
	}
}
@media(max-width:767px) {
	.uk-tooltip {
		display:none !important;
	}
	.vidTest, .vidTestClicked {
		height: 200px;
	}
}
.testimonialsWrapper .test-title {
	color:#323e48;
}
/* width */
.testimonialsWrapper::-webkit-scrollbar {
  width: 10px;
}

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

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

/* Handle on hover */
.testimonialsWrapper::-webkit-scrollbar-thumb:hover {
  background: #7ba0c4;
}
/* New Guntry CTA Boxes */
.cta-boxes-guntry .option {
	transition: all ease-in 0.25s;
	cursor: pointer;
}
.cta-boxes-guntry .option.selected {
	transform: scale(1.12);
	background:#ecfccb;
	border-color:#A4D451;
}
.cta-boxes-guntry .option.selected span {
	color:#65a30d;
	font-weight: bold;
}
.cta-boxes-guntry .option:hover {
	background:#ecfccb;
	border-color:#A4D451;
}
.cta-boxes-guntry .option:hover span {
	color:#538A06;
}
.cta-boxes-guntry .cta-button {
	font-size: 1.25rem;
	text-transform: capitalize;
}
.cta-button-guntry {
	text-transform: capitalize;
}
@keyframes guntry_pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.guntry_pulse {
    animation: pulse 1s ease-out 2;
}

/* 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;
}
/* REMOVE VTURB BRANDING */
vturb-player .contextmenu, vturb-player .contextmenu__backdrop {display:none !important;}