/***********************************
* UNIVERSAL STYLES                 *
************************************/

*, *::after, *::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
html {
  font-size: 62.5%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 26.25em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 68.75%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}
@media only screen and (max-width: 37.5em) {
  html {
    font-size: 75%;
  }
}
body {
  box-sizing: border-box;
  background: #f5f5f5;
  margin-top: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection {
  background-color: #3eb1c8;
  color: #f5f5f5;
}




/***********************************
* OVERWRITE STYLES                 *
************************************/
main {
	padding: 0! important;
}




/***********************************
* ROW / COL STYLES                 *
************************************/

.row {
  max-width: 114rem;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .row {
    max-width: 50rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .row {
    max-width: 40rem;
  }
}
@media only screen and (max-width: 26.25em) {
  .row {
    max-width: 30rem;
  }
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 56.25em) {
  .row:not(:last-child) {
    margin-right: auto;
    margin-bottom: 4rem;
  }
}
.row::after {
  content: '';
  display: table;
  clear: both;
}
.row [class^='col-'] {
  float: left;
  animation: fadeIn 1s ease-out 1s;
  animation-fill-mode: backwards;
}
.row [class^='col-']:nth-child(2) {
  animation-delay: 1.25s;
}
.row [class^='col-']:nth-child(3) {
  animation-delay: 1.5s;
}
.row [class^='col-']:nth-child(4) {
  animation-delay: 1.75s;
}
.row [class^='col-']:nth-child(5) {
  animation-delay: 2s;
}
.row [class^='col-']:not(:last-child) {
  margin-right: 6rem;
}
@media only screen and (max-width: 56.25em) {
  .row [class^='col-']:not(:last-child) {
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .row [class^='col-'] {
    width: 100% !important;
  }
}
.row .col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2 * 6rem) / 3);
}
.row .col-2-of-3 {
  width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem);
}
.row .col-1-of-4, .row .col-2-of-4, .row .col-3-of-4 {
  float: left;
  margin-bottom: 4rem;
}
.row .col-1-of-4:not(:last-child), .row .col-2-of-4:not(:last-child), .row .col-3-of-4:not(:last-child) {
  margin-right: 4rem;
}
.row .col-1-of-4:nth-child(4n), .row .col-2-of-4:nth-child(4n), .row .col-3-of-4:nth-child(4n) {
  margin-right: auto;
}
@media only screen and (max-width: 75em) {
  .row .col-1-of-4:nth-child(2n), .row .col-2-of-4:nth-child(2n), .row .col-3-of-4:nth-child(2n) {
    margin-right: auto;
  }
}
.row .col-1-of-4 {
  width: calc((100% - 3 * 4rem) / 4);
}
@media only screen and (max-width: 75em) {
  .row .col-1-of-4 {
    width: calc((100% - 1 * 4rem) / 2);
  }
}
@media only screen and (max-width: 56.25em) {
  .row .col-1-of-4 {
    width: 100% !important;
  }
}
.row .col-2-of-4 {
  width: calc(2 * ((100% - 3 * 4rem) / 4) + 4rem);
}
.row .col-2-of-4:nth-child(2n) {
  margin-right: auto;
}
.row .col-3-of-4 {
  width: calc(2 * ((100% - 3 * 4rem) / 4) + 2 * 4rem);
}
.row--fullwidth {
  font-size: 0;
}
.row--fullwidth::after {
  content: '';
  display: table;
  clear: both;
}
.row--fullwidth [class^='col-'] {
  display: inline-block;
  vertical-align: top;
  animation: fadeIn 1s ease-out 1s;
  animation-fill-mode: backwards;
}
@media only screen and (max-width: 56.25em) {
  .row--fullwidth [class^='col-'] {
    width: 100% !important;
    display: block;
  }
}
.row--fullwidth [class^='col-']:nth-child(2) {
  animation-delay: 1.25s;
}
.row--fullwidth [class^='col-']:nth-child(3) {
  animation-delay: 1.5s;
}
.row--fullwidth [class^='col-']:nth-child(4) {
  animation-delay: 1.75s;
}
.row--fullwidth [class^='col-']:nth-child(5) {
  animation-delay: 2s;
}
.row--fullwidth .col-1-of-2 {
  width: calc(100% / 2);
}
.row--fullwidth .col-1-of-3 {
  width: calc(100% / 3);
}
.row--fullwidth .col-2-of-3 {
  width: calc(2 * (100% / 3));
}
.row--fullwidth .col-1-of-4 {
  width: calc(100% / 4);
}
.row--fullwidth .col-2-of-4 {
  width: calc(2 * (100% / 4));
}
.row--fullwidth .col-3-of-4 {
  width: calc(3 * (100% / 4));
}


/***********************************
* WILDIX STYLES                          *
************************************/

.wildix-header {
  background-image: linear-gradient(145deg, #3f4c6b 0%, #0083b0 100%);
  position: relative;
  padding-bottom: 5rem;
  font-family: 'Lato', sans-serif;
	z-index: 1000;
}
.wildix-header__top {
  display: block;
  position: relative;
  top: 78px;
  text-align: center;
}
.wildix-header__logo {
  max-width: 20rem;
  margin: 0 auto;
}
.wildix-header__inner {
  position: relative;
  height: 100%;
  top: 78px;
  padding: 10rem 0;
}
@media only screen and (max-width: 37.5em) {
  .wildix-header__inner {
    padding: 5rem 0;
  }
}
.wildix-header__left {
  text-align: right;
  padding-right: 2.5rem;
}
@media only screen and (max-width: 37.5em) {
  .wildix-header__left {
    text-align: center;
    padding-bottom: 3rem;
  }
}
.wildix-header__right {
  text-align: left;
  padding-left: 2.5rem;
}
.wildix-header__img {
  max-width: 50rem;
	display: unset;
}
@media only screen and (max-width: 37.5em) {
  .wildix-header__img {
    max-width: 30rem;
  }
}
.wildix-header__title {
  color: white;
  letter-spacing: 1px;
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 5rem;
	padding: unset;
    border: unset;
    background: unset;
	font-family: Lato, sans-serif;
}
@media only screen and (max-width: 37.5em) {
  .wildix-header__title {
    font-size: 3rem;
  }
}
.wildix-header__subtitle {
  display: block;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 2.5rem;
  letter-spacing: 0;
}
@media only screen and (max-width: 37.5em) {
  .wildix-header__subtitle {
    font-size: 1.75rem;
  }
}
.wildix-header__btn {
  border: 2px solid white;
  border-radius: 5rem;
  padding: 1rem 2rem;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.25rem;
  background: rgba(255, 255, 255, .2);
  transition: ease-in-out 0.2s;
	box-shadow: unset;
    height: auto;
    line-height: unset;
    display: unset;
}
.wildix-header__btn:hover {
  background: rgba(255, 255, 255, .0);
	color: white;
}
.wildix-header__guarantee {
  color: white;
  font-size: 1.5rem;
  font-weight: 300;
  margin: 5rem auto;
  font-style: italic;
	background: unset;
    padding: unset;
    overflow: unset;
    line-height: unset;
}
.wildix-desc {
  background: white;
  padding: 10rem 0;
  text-align: center;
  font-family: Roboto;
}
.wildix-desc__inner {
  max-width: 55rem;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .wildix-desc__inner {
    padding: 2rem;
  }
}
.wildix-desc__title {
  color: #036;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 1px;
	font-size: 3rem! important;
    font-family: Roboto, sans-serif;
    padding: unset;
}
@media only screen and (max-width: 37.5em) {
  .wildix-desc__title {
    font-size: 2.25rem;
  }
}
.wildix-desc__subtitle {
  font-size: 1.5rem;
  color: #036;
  font-weight: 200;
  text-transform: uppercase;
	font-family: Roboto, sans-serif;
}
.wildix-desc__list {
  text-align: left;
  font-size: 1.5rem;
  list-style: none;
  padding: 2.5rem 0;
}
.wildix-desc__item {
  padding: 0.5rem 0;
}
.wildix-desc__item p {
  display: inline-block;
  vertical-align: top;
  max-width: 50rem;
  color: #666;
  width: 90%;
	line-height: 1.5;
    margin-bottom: unset;
	font-family: Roboto, sans-serif;
}
.wildix-desc__item i {
  display: inline-block;
  vertical-align: top;
  color: #036;
  font-weight: bold;
  padding-right: 1rem;
  width: 8%;
}
.wildix-desc__icons {
  display: block;
  padding-top: 5rem;
}
.wildix-desc__icon {
  display: inline-block;
  width: 13rem;
}
.wildix-desc__icon p {
  padding: 1rem 0;
  color: #333;
  font-size: 1.25rem;
  text-transform: uppercase;
	padding: 1rem 0! important;
}
.wildix-desc__i {
  padding: 1.5rem;
  border-radius: 100%;
  font-size: 3rem;
  color: white;
  background: #036;
}