/*==============================

font-family: 'Teko', sans-serif;
font-family: 'Rubik', sans-serif;

==============================*/


/*==============================
    #GLOBAL DEFAULTS
==============================*/
form#inf_form_f21bc00a234572ea180aecf87ceb2123 {
    align-items: flex-start;
}

body {
  color: #242424;
  background-color: #fff;
  font: 400 2.3rem/1.45 'Rubik', sans-serif;
  margin: 0;
  padding: 0;
    
  /* Font Variant */
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;

  /* Smoothing */
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}
body > div {
  font-size: 2.3rem;
}
img, iframe {
  border: none;
  max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
  color: #45505d;
  font: 600 4.5rem/1.2 'Teko', sans-serif;
  margin-top: 0;
  margin-bottom: 2rem;
}
p {
  margin-bottom: 1.3em;
}
p:last-of-type {
  margin-bottom: 0;
}
a {
  transition: 0.5s ease;
}
a:hover {
  text-decoration: none;
}
:focus {
  outline: none;
}
ul, ol {
  padding: 0;
  margin: 0;
}
ul li, ol li {
  list-style: none;
}
ul:not([class]) li, 
ol:not([class]) li {
  position: relative;
  padding-left: 5rem;
  margin-bottom: 2.5rem;
  counter-increment: li;
}
ul:not([class]) li::before, 
ol:not([class]) li::before {
  content: '';
  position: absolute;
  height: 0.5em;
  width: 0.5em;
  background-color: #fff;
  border-radius: 50%;
  top: 0.5em;
  left: 2.5rem;
  background-color: #ffcc00;
}
ol:not([class]) li::before {
  content: counter(li) '. ';
  font-size: 100%;
  font-family: inherit;
  font-weight: 700;
  padding-top: 0;
  width: 3rem;
  text-align: right;
  background-color: transparent;
  left: 1rem;
  top: 0;
}





/*==============================
    #DEFAULT OVERRIDES
==============================*/
.grid__max {
  max-width: 192rem;
  margin: 0 auto;
  overflow: hidden;
}
.section {
  background: #fff url() no-repeat top center / cover;
  padding: 5rem 0;
}
.sec__cont {
  width: 100%;
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
}
.sec__row {
  width: 100%;
}
.flex__cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}


/*==============================
    #CSS LIBRARY
==============================*/
nl { display: block; }
.hide { display: none; }

/* Fonts */
:root {
  --color1: #f35905; /* orange */
  --color2: #006cff; /* blue */
}
.font-color1 { color: var(--color1); }
.font-color2 { color: var(--color2); }

/* Responsive Video */
.stg-simple-responsive-video {
  max-width: 91rem;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  border: 3px solid #fff;
}
.stg-simple-responsive-video div {
  position: relative;
  height: 0;
  overflow: hidden;
  padding: 0 0 56.25% 0;
}
.stg-simple-responsive-video div iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* Progress Bar */
@keyframes stg-progress1 {
  0% { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}
.stg-simple-progress-bar--bar {
  background-color: #ddd;
  background-size: 50px 50px;

  border-radius: 50px;
}
.stg-simple-progress-bar--percent {
  position: relative;
  width: 75%;

  background-color: #3cb742;
  background-image: linear-gradient(to top, #3cb742 37%, #3cb742 69%);

  border-radius: 50px 19px 19px 50px;

  color: #fff;
  text-align: center;
  transition: width 1.5s ease, text-indent 1.5s ease;
  opacity: 1;
}
.stg-simple-progress-bar--percent::before {
  content: '';
  position: absolute;
  
  background-size: 50px 50px;

  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.stg-simple-progress-bar--percent[data-percentage="100"] {
  border-radius: 50px;
}
.stg-simple-progress-bar--percent span {
  white-space: nowrap;
}
/* Type 2 */
.stg-type2 .stg-simple-progress-bar--percent::before {
  background-image: linear-gradient( 
                      -45deg, 
                      rgba(255, 255, 255, .2) 25%, 
                      transparent 25%, 
                      transparent 50%, 
                      rgba(255, 255, 255, .2) 
                      50%, rgba(255, 255, 255, .2) 75%, 
                      transparent 75%, 
                      transparent );
  
  animation: stg-progress1 2s linear infinite;
}

/* Buttons */
.orange-btn a {
  color: #fff;
  background-color: var(--color1);
  padding: 1.2rem 1.5rem;
  border: 2px solid var(--color1);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
}
.orange-btn a span {
  padding-right: 1.2rem;
  padding-left: 2rem;
  font: 500 4.5rem/1 'Teko', sans-serif;
  padding-top: 6px;
}
.orange-btn a img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  transition: 0.7s ease;
}
.orange-btn a:hover {
  background-color: #fff;
  color: var(--color1);
}
.orange-btn a:hover img {
  filter: none;
}

/* List */
ul.blue-check-icon li {
  position:relative;
  margin-bottom: 2.3rem;
  padding-left: 6rem;
}
ul.blue-check-icon li:before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  color: #5f9017;
  font-weight: 900; 
  position: absolute;
  top: -0.8rem;
  left: 1rem;
  font-size:3.2rem;
}


/*==============================
    #HEADER
==============================*/
.header {
  background-color: #609018;
  text-align: center;
  color: #fff;
  padding: 2.5rem 0;
}
.header h2 {
  color: #fff;
  font-size: 4.4rem;
  margin-bottom: 0;
}
.header p {
  font-size: 2.6rem;
}




/*==============================
    #FOOTER
==============================*/
.footer {
  background-color: #45505d;
  color: #fff;
  text-align: center;
}
.footer .logo {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  max-width: 33.2rem;
  margin: 0 auto 3rem;
}
.footer p {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.footer p:last-child {
  margin-bottom: 0;
}
.footer a {
  color: #fff;
  font-size: 1.6rem;
}
.footer a:hover {
  text-decoration: underline;
}




/*==============================
    #MAIN
==============================*/

/* #SEC1 */
.sec1 {
  background-image: url(img/sec1-bg.jpg);
  text-align: center;
}
.sec1 h2 {
  text-transform: uppercase;
	margin-bottom: 0;
}
.sec1 .stg-simple-responsive-videos {
  margin-bottom: 4rem;
}
.sec1 .sec__cont {
	max-width: 1455px;
}
.sec1 p {
	font-size: 2.6rem;
	text-transform: uppercase;
	margin-bottom: 3rem;
	color: #45505d;
}


/* #SEC2 */
.sec2 {
  background-image: url(img/sec2-bg.jpg);
  background-size: initial;
  padding-bottom: 10rem
}
.sec2 .sec__inn {
  max-width: 77.5rem;
  margin: 0 auto
}
.sec2 .img {
  margin-bottom: 4rem;
}
.sec2 .blue-check-icon {
  max-width: 90%;
  margin: 0 auto 4rem;
}
.sec2 .orange-btn {
  text-align: center;
}


/* #SEC3*/
.sec3 {
  background: #f1f8e7 url(img/wave-pattern-bg.png) repeat top left;
}
.sec3 .sec__col {
  width: 48%;
}
.sec3 .col2 {
  text-align: center;
}
.sec3 .img {
  margin: -9rem auto;
}
.sec3 h2 {
  color: #609018;
  font-size: 7rem;
  line-height: 0.7;
  margin-bottom: 0;
  text-transform: uppercase;
}
.sec3 h3 {
  font-size: 3rem;
  margin-bottom: 2.5rem;
}


/* #SEC4 */
.sec4 {
  padding-top: 10rem;
  padding-bottom: 6.5rem;
}
.sec4 .sec__inn {
  max-width: 76rem;
  margin: 0 auto;
}
.sec4 h2 {
  font-size: 7rem;
  text-align: center;
  text-transform: uppercase;
}
.sec4 .img {
  margin: 3rem auto;
}
.sec4 .orange-btn {
  text-align: center;
}
.fish-sec {
	display: flex;
	justify-content: center;
	margin-bottom: 4.5rem;
}
.fish-sec-col {
	padding: 5px;
}




/* #SEC5 */
.sec5 {
  text-align: center;
}
.sec5 h2 {
  font-size: 5rem;
  margin-bottom: 3rem;
}
.sec5 .testi-img-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.sec5 .testi-img-wrap .img {
  width: 49%;
}


/* #MODAL */
.modal-wrap {
  text-align: center;
}
.modal-wrap .modal-body {
  padding: 4rem 7rem;
}
.modal-wrap .modal-content {
  border-radius: 1rem;
}
.modal-wrap.modal.fade .modal-dialog {
  max-width: 96rem;
}
.modal-wrap .stg-simple-progress-bars {
  margin-bottom: 2rem;
}
.modal-wrap .modal-body .close {
  position: absolute;
  top: 0.3rem;
  right: 1rem;
  font-size: 4rem;
}
.modal-wrap h2 {
  font-size: 4rem;
}
.modal-wrap .img {
  max-width: 30rem;
  margin: 0 auto 3rem;
}
.modal-wrap .note {
  font-size: 1.8rem;
}
.infusion-form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
}
.infusion-field,
.infusion-field input,
.infusion-submit button {
  width: 100%;

  color: #000;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.3;
  transition: 0.5s ease;
}
.infusion-field {
  width: 70%;
  padding: 0 2rem 2.5rem 0;
}
.infusion-field input {
  width: 100%;
  padding: 1.5rem 2.1rem;

  background-color: #fff;

  border: 1px solid rgba(0,0,0,.4);
  border-radius: 3px;
}
.infusion-field input::placeholder {
  color: #000;
  opacity: 0.5;
}
.infusion-field input:focus {
  box-shadow: 0 0 10px rgba(0,0,0,.15);

  border-color: rgba(0,0,0,.8);

  color: #000;
  outline: none;
}
.infusion-field input:-webkit-autofill {
  box-shadow: 0 0 0 500px white inset;
  transition: background-color 9999s ease-in-out 0s;
}
.infusion-submit {
  width: 30%;
  padding: 0 0 2.5rem;
}
.infusion-submit button {
  color: #fff;
  background-color: var(--color1);
  padding: 0.9rem 1.5rem;
  border: 2px solid var(--color1);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.infusion-submit button span {
  padding-right: 1.2rem;
  padding-left: 1rem;
  font: 500 2.8rem/1 'Teko', sans-serif;
  padding-top: 5px;
}
.infusion-submit button img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  width: 4.7rem;
  transition: 0.7s ease;
}
.infusion-submit button:hover {
  background-color: #fff;
  color: var(--color1);
}
.infusion-submit button:hover img {
  filter: none;
}




/*==============================
    #MEDIA QUERIES
==============================*/
@media only screen and (max-width:1024px) {
  .section {
    padding: 4rem 0;
  }
  .orange-btn a span {
    font-size: 3.6rem;
    padding-top: 5px;
  }
  .orange-btn a img {
    width: 5.7rem;
  }
  .sec2 {
    padding-bottom: 8rem;
  }
  .sec4 {
    padding-top: 8rem;
  }
	br {
		display: none;
	}
}
@media only screen and (max-width:767px) {
  nl { display: inline; }
  .section {
    padding: 3rem 0;
  }
  .stg-simple-responsive-video {
    padding: 1rem
  }
  .orange-btn a {
    padding: 1rem 1.5rem;
  }
  .orange-btn a span {
    font-size: 2.8rem;
    padding-top: 5px;
    padding-left: 1rem;
  }
  .orange-btn a img {
    width: 4.7rem;
  }
  ul.blue-check-icon li {
    font-size: 2rem;
  }
  .header h2 {
    font-size: 3.6rem;
  }
  .header p {
    font-size: 2.2rem;
  }
  .sec1 h2 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
  }
  .sec1 .stg-simple-responsive-videos {
    margin-bottom: 3rem;
  }
  .sec1 p {
    font-size: 2rem;
  }
  .sec2 .blue-check-icon {
    margin: 0 auto 2rem;
  }
  .sec3 .sec__col {
    width: 100%;
  }
  .sec3 .img {
    margin: 0 auto 3rem;
  }
  .sec3 h2 {
    font-size: 5rem;
  }
  .sec3 h3 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
  }
  .sec4 h2 {
    font-size: 3.7rem;
  }
  .sec4 p {
    font-size: 2.1rem;
  }
  .fish-sec {
	margin-bottom: 2.5rem;
  }
  .sec5 h2 {
    font-size: 3rem;
  }
  .sec5 .testi-img-wrap .img {
    width: 100%;
    margin-bottom: 1rem;
  }
  .sec5 .testi-img-wrap {
    margin-bottom: 2rem;
  }
  .modal-wrap .modal-body {
    padding: 5rem 1rem 3rem;
  }
  .modal-wrap .modal-body p {
    margin-bottom: 1rem;
  }
  .footer .logo {
    max-width: 18rem;
    margin-bottom: 2rem;
  }
  .footer p {
    font-size: 1.2rem;
  }
  .footer a {
    font-size: 1.2rem;
  }
  .infusion-form.inline .infusion-field,
  .infusion-form.inline .infusion-submit {
    width: 100%;
    padding-right: 0;
    margin-right: 0;
  }
  .infusion-form.inline .infusion-field {
    padding-bottom: 1rem;
  }
  
  .modal .infusion-submit {
    display: block;
    text-align: center;
    width: 100%;
}

.modal .infusion-field {
    width: 100%;
    padding: 0 0 2rem;
}

.modal form {
    max-width: 400px;
    margin: 0 auto;
    width: 94%;
}
  
}

@media only screen and (min-width:767px) {
	.circleArrow{
		display:none;
	}
}



/*==============================
    #FONT SIZING
==============================*/
html { font-size: 62.5%; }
@media only screen and (max-width:1600px) { html { font-size: 56.3%;  } }
@media only screen and (max-width:1440px) { html { font-size: 50%;    } }
@media only screen and (max-width:1280px) { html { font-size: 48%;    } }
@media only screen and (max-width:1023px) { html { font-size: 46%;    } }
@media only screen and (max-width:960px)  { html { font-size: 50%;      } }
@media only screen and (max-width:767px)  { html { font-size: 55.5555%; } }