body {
  font-family: 'Open Sans', sans-serif;
  color: #292B33;
  font-size: 12px;
  font-weight: normal;
  background: #fff;
  line-height: 120%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  overflow: hidden;
}
html {
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #541B68;
  line-height: 120%;
  margin: 0 0 20px 0;
}
h1, .h1 {
  font-size: 30px;
  text-transform: uppercase;
}
h2, .h2 {
  font-size: 28px;
  text-transform: uppercase;
}
h3, .h3 {

}
h4, .h4 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
h5, .h5 {

}
h6, .h6 {
  font-size: 18px;
  color: #222222;
}
.last-line,
.underline {
  position: relative;
  display: inline-block;
}
.last-line:after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: transparent;
  background: linear-gradient(90deg, rgba(84,27,104,1) 0%, rgba(14,216,210,1) 100%);
  position: absolute;
  right: -50px;
  bottom: 5px;
  border-radius: 5px;
}
.underline { padding-bottom: 10px; }
.underline:after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: transparent;
  background: linear-gradient(90deg, rgba(84,27,104,1) 0%, rgba(14,216,210,1) 100%);
  position: absolute;
  border-radius: 5px; 
  right: 0;
  left: 0;
  bottom: 0;
  margin-right: auto;
  margin-left: auto;
}
.underline.lft:after {
  right: initial;
  margin-right: initial;
  margin-left: initial;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
ul li,
ol li,
p {
  font-size: 16px;
  color: #585858;
  line-height: 160%;
  margin-bottom: 15px;
}
a {
  color: #1B4381;
  -webkit-transition: all 300ms;
     -moz-transition: all 300ms;
       -o-transition: all 300ms;
          transition: all 300ms;
}
a:hover {
  text-decoration: none;
}
a:hover, a:focus {
  color: gray;
}
b, strong {
  font-weight: 600;
}
img {
  max-width: 100%;
  height: auto;
}
hr {
  margin-top: 0px;
  margin-bottom: 0px;
  border-top: 1px solid #e6e6e6;
}
sup {
  top: -4px;
}
sup.big {
  top: -6px;
  font-size: 30px;
}
.bold {
  font-weight: 700;
}
.fs-35,
.fs-35 p {
  font-size: 35px;
}
.oh {
  overflow: hidden;
}
.right {
  float: right;
}
.center {
  text-align: center;
}
.relative {
  position: relative;
}
.clear {
  clear: both;
}
.txt-right {
  text-align: right;
}
.txt-left {
  text-align: left;
}
.right {
  float: right;
}
.left {
  float: left;
}
.cover { 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}
/*////////////////////////
///       Header      ////
////////////////////////*/
header {
  position: absolute;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  z-index: 999;
  background: white;
  display: flex;
  flex-flow: column;
  justify-content: center;
  box-shadow: 0px 1px 8px rgba(0,0,0,.4);
}
header:before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, rgba(84,27,104,1) 0%, rgba(14,216,210,1) 100%);
  position: absolute;
  right: 0;
  left: 0;
  bottom: -3px;
}
header.smaller {
	background: white !important;
  animation: .8s ease 0s normal none 1 running fadeInDown;
  position: fixed;
  background: white;
  height: 60px;
  padding-top: 0;  
  box-shadow: 0px 1px 8px rgb(0 0 0 / 40%) !important;
}
header.smaller .logo {
  height: 50px;
}
body.home header {
  background: rgba(255,255,255,.8)
}
body.home header:before { content: none; }
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-75px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.header-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
/*////////////////////////
///       Footer      ////
////////////////////////*/
footer {
  padding-top: 60px;
}
footer h2 {
  font-size: 18px;
  color: #222222;
}
footer .desc p { font-size: 14px; }
ul.social {
  margin: 0;
}
ul.social li {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 0;
}
ul.social li:last-child {
  margin-right: 0;
}
ul.social li a {
  font-size: 40px;
  color: #541B68;
}
ul.social li a:hover {
  color: #0ED8D2;
}
ul.ft-nav {

}
ul.ft-nav li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 5px;
}
ul.ft-nav li:before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: #0ED8D2;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 11px;
}
ul.ft-nav li a {
  font-size: 15px;
  color: #585858;
}
.copyright {
  background: #F2F2F2;
  text-align: center;
}
.copyright p {
  font-size: 12px;
  color: #585858;
  margin: 10px 0;
}
/*///////////////////////
///        Menu       ///
///////////////////////*/
ul#menu-header-menu { 
  display: inline; 
  border-right: 2px solid #808080;
  margin-right: 25px;
  position: relative;
  top: -5px;
}
nav {
  display: inline-block;
  vertical-align: top;
}
nav ul {
  margin: 0;
}
nav ul li {
  display: inline;
  margin-right: 25px;
  position: relative;
}
nav ul li a {
	font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #111111;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0;
  padding-top: 2px;
  display: inline-block;
  -webkit-transition: all 300ms;
     -moz-transition: all 300ms;
       -o-transition: all 300ms;
          transition: all 300ms;
}
nav ul li a:after {
  content: "";
  display: block;
  margin: auto;
  height: 2px;
  width: 0;
  top: 5px;
  background: transparent;
  transition: all 0.3s;
}
nav ul li a:hover:after,
nav ul li.current-menu-item a:after,
nav ul li.current-page-ancestor a:after {
  width: 100%;
  background: #541B68;
}
nav ul li a:hover,
nav ul li.current-menu-item a,
nav ul li.current-page-ancestor a {
  color: #541B68;
} 
/*///////////////////////
///    Mobile Menu    ///
///////////////////////*/
#mobile-menu {
  display: block;
  position: fixed;
  top: 0;
  padding: 25px 20px;
  width: 350px;
  height: 100%;
  right: -350px;
  box-sizing: border-box;
  z-index: 9999;
  overflow: hidden;
  background: #e5e5e5;
}
#mobile-menu nav {
  float: none;
}
.cerrar-menu {
  cursor: pointer;
}
#mobile-menu .icon-close {
	cursor: pointer;
	font-size: 25px;
	color: #0ED8D2;
	margin-bottom: 25px;
	display: block;
	width: 45px;
	height: 45px;
	border-radius: 40px;
	padding: 9px;
	text-align: center;
	transition: all 300ms;
	background: white;
	border: 1px solid #ffffff82;
}
#mobile-menu .icon-close:hover {
	opacity: .6;
}
.hamburger {
  color: white;
  float: right;
  font-size: 25px;
  width: 45px;
  height: 45px;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  transition: all 300ms;
  cursor: pointer;
  background: linear-gradient(90deg, rgba(84,27,104,1) 0%, rgba(14,216,210,1) 100%);
}
.hamburger:hover {
  opacity: .8;
}
.cerrar-menu img:hover {
  opacity: 0.7;
}
#mobile-menu nav {
  display: block;
}
#mobile-menu nav ul {
  margin-bottom: 40px;
}
#mobile-menu nav ul li a {
  font-weight: 600;
  padding: 15px 10px;
  display: block;
}
#mobile-menu nav ul li a:hover,
#mobile-menu nav ul li.current-menu-item a,
#mobile-menu nav ul li.current-page-ancestor a {
  background: #ffffff1f;
}
#mobile-menu nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0;
  margin-right: 0;
}
#mobile-menu nav ul li a:hover:after, 
#mobile-menu nav ul li.current-menu-item a:after,
#mobile-menu nav ul li.current-page-ancestor a:after {
  background: transparent;
}
body.open-menu {
  height: 100vh;
  overflow-y: hidden;
}
body.open-menu .mask {
  content: '';
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 98;
  top: 0;
  bottom: 0;
  background: rgba(0,0,0,.5);
}
body.open-menu #mobile-menu {
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
}
/*////////////////////////
///      Sections     ////
////////////////////////*/
.mt-site { margin-top: 100px; }
.show-md,
.show-xl,
.display-none { display: none; }
.p-50  { padding: 50px; }
.pt-10 { padding-top: 10px; }
.pt-20 { padding-top: 20px; }
.pt-30 { padding-top: 30px; }
.pt-40 { padding-top: 40px; }
.pt-50 { padding-top: 50px; }
.pt-60 { padding-top: 60px; }
.pt-70 { padding-top: 70px; }
.pt-80 { padding-top: 80px; }
.pt-90 { padding-top: 90px; }
.pt-100 { padding-top: 100px; }
.pt-200 { padding-top: 200px; }
.pb-10 { padding-bottom: 10px; }
.pb-15 { padding-bottom: 15px; }
.pb-20 { padding-bottom: 20px; }
.pb-30 { padding-bottom: 30px; }
.pb-40 { padding-bottom: 40px; }
.pb-50 { padding-bottom: 50px; }
.pb-60 { padding-bottom: 60px; }
.pb-70 { padding-bottom: 70px; }
.pb-80 { padding-bottom: 80px; }
.pb-90 { padding-bottom: 90px; }
.pb-100 { padding-bottom: 100px; }
.mb-5  { margin-bottom: 5px !important;  }
.mb-10 { margin-bottom: 10px; }
.mb-30 { margin-bottom: 30px; }
.mb-60 { margin-bottom: 60px; }
.mt-20 { margin-top:    20px; }
.img-cover {
  position: relative;
  height: 100%;
  z-index: 0;
}
.img-cover>img {
  object-fit: cover;
  position: absolute;
  bottom: 0;
  top: 0;
  height: 100%;
  right: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.btn {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 500;
  color: white;
  background-color: transparent;
	background: linear-gradient(90deg, rgba(84,27,104,1) 0%, rgba(14,216,210,1) 100%);
  border-radius: 60px;
  height: 45px;
  border: none;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
  padding: 0 30px;
  width: fit-content;
  z-index: 0;
  overflow: hidden;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
}
.btn:hover,
.btn:focus {
	background-color: transparent;
	background: linear-gradient(90deg, rgba(14,216,210,1) 0%, rgba(84,27,104,1) 100%);
	color: white;
}
.btn i {
  font-size: 10px;
  margin-left: 10px;
}
.btn.white {
  border: 1px solid white;
  background: transparent;
}
.btn.white:hover {
  background: white;
  color: #541B68;
}
.bullets ul {
  margin-bottom: 30px;
}
.bullets ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}
.bullets ul li:before {
  font-family: "codigoregio";
  font-weight: normal;
  font-style: normal;
  content: "\64";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 15px;
  background: -webkit-linear-gradient(#541B68, #0ED8D2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-light { 
  background-color: #F2F2F2 !important;
}
.bg-gradient {
  background: linear-gradient(90deg, rgba(84,27,104,1) 0%, rgba(14,216,210,1) 100%);
}
.bg-isotipo-white {
  background-image: url(../img/isotipo-white.svg);
  background-position: center right;
  background-repeat: no-repeat;
}
.bg-isotipo-gradient {
  background-image: url(../img/bg-isotipo-gradient.svg);
  background-position: right bottom;
  background-repeat: no-repeat;
}
.intro p {
  font-size: 18px;
  font-weight: 600;
  color: #222222;
}
.cta {
  padding: 47px 0;
  background-color: transparent;
  background: linear-gradient(90deg, rgba(84,27,104,1) 0%, rgba(14,216,210,1) 100%);
} 
.cta h2 {
  color: white;
  text-transform: none;
  margin-bottom: 0;
}
.cta .col-md-12 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.breadcrumb * { 
  font-size: 10px; 
  color: #222222;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb { 
  background: #F2F2F2; 
  margin-bottom: 0;
}
.contact-box {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 50px 30px 20px 30px;
  border-radius: 30px;
  box-shadow: 0 0 30px rgba(0,0,0,.16)
}
.contact-box a {
  font-size: 12px;
  color: #585858;
}
.contact-box a:hover {
  text-decoration: underline; 
}
.bg-gradient.txr-white * { color: white; }
.bg-gradient.txr-white img {
  position: absolute;
  bottom: 0;
  right: 0;
}
.white-box {
  background: white;
  border-radius: 30px;
  min-height: 320px;
  text-align: center;
  padding: 30px 15px;
  box-shadow: 0 0 20px rgb(0 0 0 / 16%);
  margin-bottom: 30px;
}
.white-box .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  box-shadow: 0 0 10px rgb(0 0 0 / 20%);
  background: -webkit-linear-gradient(#541B68, #0ED8D2);
  border-radius: 100%;
  position: relative;
  margin: 0 auto 30px auto;
}
.white-box .ico:before {
  content: '';
  position: absolute;
  background: white;
  border-radius: 100%;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  z-index: 0;
}
.white-box i {
  font-size: 50px;
  background: -webkit-linear-gradient(#541B68, #0ED8D2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}
.white-box p { font-size: 17px; }
/*////////////////////////
///    Woocommerce    ////
////////////////////////*/
body.woocommerce-page .woocommerce ul.products li.product a img,
body.woocommerce-page .woocommerce div.product div.images.woocommerce-product-gallery {
  border-radius: 30px;
  box-shadow: 0 0 20px rgb(0 0 0 / 16%);
  transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;  
  overflow: hidden;
}
body.woocommerce-page .woocommerce ul.products li.product a img:hover {
  box-shadow: 0 0 20px rgb(0 0 0 / 46%);
}
body.woocommerce-page ul.products li.product { text-align: center; }
body.woocommerce-page ul.products li.product h2 {
  font-size: 20px !important;
  color: #222222;
  font-weight: 600;
  text-transform: none;
}
body.woocommerce-page .woocommerce ul.products li.product .price,
body.woocommerce-page .woocommerce div.product p.price {
  font-size: 18px ;
  color: #0ED8D2;
  font-weight: 600;
}
body.woocommerce-page .woocommerce div.product p.price { font-size: 22px; }
body.woocommerce-page a.button,
body.woocommerce-page .woocommerce #respond input#submit.alt, 
body.woocommerce-page .woocommerce a.button.alt, 
body.woocommerce-page .woocommerce button.button.alt, 
body.woocommerce-page .woocommerce input.button.alt {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: white;
  background-color: transparent;
  background: linear-gradient(90deg, rgba(84,27,104,1) 0%, rgba(14,216,210,1) 100%);
  border-radius: 60px;
  height: 35px;
  border: none;
  padding: 10px 30px;
  z-index: 0;
  transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
}
body.woocommerce-page a.button:hover,
body.woocommerce-page .woocommerce #respond input#submit.alt:hover, 
body.woocommerce-page .woocommerce a.button.alt:hover, 
body.woocommerce-page .woocommerce button.button.alt:hover, 
body.woocommerce-page .woocommerce input.button.alt:hover {
  background-color: transparent;
  background: linear-gradient(90deg, rgba(14,216,210,1) 0%, rgba(84,27,104,1) 100%);
  color: white;
}
body.woocommerce-page .woocommerce ul.products li.product, 
body.woocommerce-page .woocommerce-page ul.products li.product {
  margin-bottom: 60px;
}
body.woocommerce-page  select {
  padding: 13px 15px;
}
body.woocommerce-page .woocommerce div.product form.cart { margin-top: 40px; }
body.woocommerce-page .woocommerce div.product form.cart div.quantity { margin-right: 20px; }
body.woocommerce-page .woocommerce .quantity .qty { height: 35px; }
body.woocommerce-page .related.products {
  clear: both;
  padding: 60px 40px 10px 40px;
  background: #F2F2F2;
  border-top: 40px solid white;
  text-align: center;
}
body.woocommerce-page .related.products > h2 {
  text-align: center;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
body.woocommerce-page .related.products > h2:after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: transparent;
  background: linear-gradient(90deg, rgba(84,27,104,1) 0%, rgba(14,216,210,1) 100%);
  position: absolute;
  border-radius: 5px; 
  right: 0;
  left: 0;
  bottom: 0;
  margin-right: auto;
  margin-left: auto;  
}
body.woocommerce-page .woocommerce .related.products ul.products li.product { margin-bottom: 40px; }
body.woocommerce-page .product_meta a { color: #541B68; }
body.woocommerce-page table.shop_table { border: none; }
body.woocommerce-page table.shop_table thead { 
  background: #F2F2F2; 
  color: #222222;
  font-size: 14px;
  text-transform: uppercase;
} 
body.woocommerce-page table.shop_table, 
body.woocommerce-page table.shop_table a {
  color: #585858;
  font-size: 15px;
}
body.woocommerce-page table.cart img {
  width: auto;
  height: 80px;
  border-radius: 10px;
}
body.woocommerce-page table.cart .button {
  border-radius: 35px;
  height: 35px;
}
body.woocommerce-page table.cart .actions { padding-top: 30px; }
body.woocommerce-page .woocommerce a.remove { font-size: 25px; }
body.woocommerce-page #coupon_code {
  width: 150px;
  height: 35px;
  margin-right: 15px;
}
body.woocommerce-page  .cart_totals { padding-top: 40px; }
body.woocommerce-page  .cart_totals h2 { 
  font-size: 20px; 
  font-weight: 600;
  padding-bottom: 15px;
  border-bottom: 1px solid #D9D9D9;
}
body.woocommerce-page .cart_totals { max-width: 330px; }
body.woocommerce-page .cart_totals a.button {
  height: 45px !important;
  padding: 15px 0 !important;
}
.woocommerce .col2-set .col-1, 
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2, 
.woocommerce-page .col2-set .col-2 {
  flex: none;
  max-width: none;
  padding: 0;
}
form.woocommerce-checkout span { 
  display: block; 
  width: 100%;
}
form.woocommerce-checkout label { 
  width: 100%; 
  line-height: 120% !important;
}
body.woocommerce-page .woocommerce form .form-row {
  margin: 0 0 20px;
}
body.woocommerce-page #customer_details input[type=text], 
body.woocommerce-page #customer_details input[type=email], 
body.woocommerce-page #customer_details input[type=tel] {
  height: 40px;
}
body.woocommerce-page #customer_details h3,
body.woocommerce-page h3#order_review_heading {
  font-size: 20px;
  color: #111;
}
body.woocommerce-page #customer_details { margin-bottom: 40px; }
body.woocommerce-page #order_review span { 
  display: inline-block; 
  width: auto;
}
.woocommerce-shipping-destination { display: none; }
.misha-cart { position: relative;}
.misha-cart span {
  position: absolute;
  color: #111;
  font-size: 11px;
  background: #dadada;
  padding: 2px 3px;
  border-radius: 40px;
  display: block;
  bottom: -4px;
  right: -9px;
  box-shadow: 0 0 20px rgb(0 0 0 / 20%);
	display: inline-flex;
	align-items: center;
}
.misha-cart:before {
	content: "\63";
	font-family: "codigoregio";
	font-weight: normal;
	font-style: normal;
	font-size: 25px;
	color: white;
	width: 45px;
	height: 45px;
	background: linear-gradient(90deg, rgba(84,27,104,1) 0%, rgba(14,216,210,1) 100%);
	border-radius: 40px;
	display: inline-block;
	padding: 9px;
	border: 1px solid white;
	box-shadow: 0 0 20px rgb(0 0 0 / 16%);
  position: relative;
	display: inline-flex;
	align-items: center;
}
.misha-cart:hover,
.misha-cart:focus,
.icon-cart:hover,
.icon-cart:focus {
  color: white;
  opacity: .8;
}
.icon-cart span {
  position: absolute;
  color: #111;
  font-size: 11px;
  background: #dadada;
  padding: 2px 3px;
  border-radius: 40px;
  display: block;
  bottom: -4px;
  right: -4px;
  box-shadow: 0 0 20px rgb(0 0 0 / 20%);
}
.mp-checkout-custom-available-payments-header {
	padding: 10px 10px !important;
	border-radius: 5px;
	border: 1px solid #aaa;
}
.mp-checkout-custom-available-payments-header .mp-checkout-custom-available-payments-text {
	color: black !important;
	font-size: 16px !important;
}
.mp-payment-method-logo-container {
	cursor: pointer;
}
.mp-payment-method-logo-container:hover,
.mp-payment-method-logo-container:focus {
	border: 2px solid blue !important;
} 
.mp-checkout-custom-available-payments .mp-checkout-custom-available-payments-content {
/*
	height: 223px !important;
	max-height: 223px !important;
*/
}
.stripe-card-group { width: 50%; }
.wc-stripe-elements-field { width: 100%; }
.form-row.woocommerce-SavedPaymentMethods-saveNew.woocommerce-validated label {
	float: left;
	width: auto;
	margin-bottom: 0;
}

/*////////////////////////
///       Slick       ////
////////////////////////*/
.slider a.icon-scroll {
	font-size: 30px;
  color: white;
	position: absolute;
	bottom: 20px;
	right: 0;
	left: 0;
	margin-right: auto;
	margin-left: auto;
	display: block;
	width: 30px;
}
.slider a.icon-scroll:hover {
	color: #0ED8D2;
}
.slider ul.social {
  position: absolute;
  bottom: 50px;
  right: 0;
}
.slider ul.social li {
  display: block;
  margin-bottom: 20px;
}
.slider ul.social li a {
  color: white;
}
.slider ul.social li a:hover {
  opacity: .5;
}
.herobanner .slick-slide {
	height: 100vh;
}
.herobanner .slick-slide 
.herobanner .slick-slide .slide-img {
	position: absolute;
	bottom: 0;
	top: 0;
	height: 100%;
	right: 0;
}
.herobanner .caption {
  height: 100vh;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding-top: 80px;
}
.herobanner .caption h1 {
	font-size: 46px;
  margin-bottom: 0;
}
.herobanner .caption p {
  font-family: 'Montserrat', sans-serif;
  font-size: 41px;
  color: #222222;
  font-weight: 600;
  margin-bottom: 25px;
}
.aliances .slick-slide img { margin: 0 auto; }
.slick-prev, 
.slick-next {
  width: 40px;
  height: 40px;
}
.aliances {
  padding: 0 60px;
}
.slick-prev {
  left: 0;
}
.slick-next {
  right: 0;
}
.slick-prev:before, 
.slick-next:before {
   font-family: "codigoregio";
  font-weight: normal;
  font-style: normal;
  color: #0ED8D2;
  font-size: 30px;
}
.slick-prev:before {
  content: "\61";
}
.slick-next:before {
  content: "\62";
}
/*////////////////////////
///        Forms       ///
////////////////////////*/
label { margin-bottom: 10px; }
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 15px !important;
  color: #585858;
  background: #F2F2F2;
  border: none;
  width: 100%;
  height: 50px;
  padding: 15px 25px;
  margin-bottom: 30px;
  border-radius: 0px;
}
textarea {
  height: 130px;
}
input[type=submit] {
  background: linear-gradient(90deg, rgba(84,27,104,1) 0%, rgba(14,216,210,1) 100%);
	width: 160px;
  height: 45px;
	border-radius: 60px;
  border: none;
  font-size: 15px;
  color: white;
  font-weight: 600;
}
input[type=submit]:hover {
  background: linear-gradient(90deg, rgba(14,216,210,1) 0%, rgba(84,27,104,1) 100%);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  border-color: transparent;
}
input[type="checkbox"] { 
  margin-right: 10px;
}
a.policy {
	font-size: 12px;
	color: #5F5F5F;	
}
a.policy:hover {
	text-decoration: underline;
}
::-webkit-input-placeholder { 
  font-size: 15px;
  color: #585858;
}
:-moz-placeholder { 
  font-size: 15px;
  color: #585858;
}
::-moz-placeholder { 
  font-size: 15px;
  color: #585858;;
}
:-ms-input-placeholder { 
  font-size: 15px;
  color: #585858;
}
.grecaptcha-badge { visibility: hidden; }
.wpcf7-not-valid-tip { 
	position: relative;
	top: -20px;
	left: 30px;
}
.wpcf7-spinner {
  display: block !important;
  margin: 10px auto 0 auto !important;
}
/*////////////////////////
///       Fonts        ///
////////////////////////*/
@font-face {
  font-family: "codigoregio";
  src:url("../fonts/codigoregio.eot");
  src:url("../fonts/codigoregio.eot?#iefix") format("embedded-opentype"),
      url("../fonts/codigoregio.woff") format("woff"),
      url("../fonts/codigoregio.ttf") format("truetype"),
      url("../fonts/codigoregio.svg#codigoregio") format("svg");
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: "codigoregio" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "codigoregio" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-arrow-left:before {
  content: "\61";
}
.icon-arrow-right:before {
  content: "\62";
}
.icon-cart:before {
  content: "\63";
}
.icon-check:before {
  content: "\64";
}
.icon-close:before {
  content: "\65";
}
.icon-facebook:before {
  content: "\66";
}
.icon-instagram:before {
  content: "\67";
}
.icon-menu:before {
  content: "\68";
}
.icon-scroll:before {
  content: "\69";
}
.icon-step1:before {
  content: "\6a";
}
.icon-step2:before {
  content: "\6b";
}
.icon-step3:before {
  content: "\6c";
}
.icon-whatsapp:before {
  content: "\6d";
}

/*////////////////////////
///   Media Queries    ///
////////////////////////*/
@media (min-width: 1200px) {  }
@media screen and (max-width: 1290px) {}
@media screen and (max-width: 1199px) {}
@media screen and (max-width: 1024px) {

}
@media screen and (max-width: 991px) {
  .show-xl { display: inline-block !important; }
  .hide-xl { display: none !important; }
}
@media screen and (max-width: 768px) {
  h1, .h1 { font-size: 25px; }
  h2, .h2 { font-size: 23px; }
  h3, .h3 { font-size: 20px; }
  h4, .h4 { font-size: 18px; }
  h5, .h5 { font-size: 15px; }
  h6, .h6 { }
}  
@media screen and (max-width: 767px) {
  .hide-md { display: none !important; }
  .show-md { display: block; }
  .hide-xs { display: none !important; }
  .pb-20-md { padding-bottom: 20px; }
  .reverse-md .col-a { order: 2; }
  .reverse-md .col-b { order: 1; }
  .cta .col-md-12 { text-align: center; flex-flow: column; }
  .cta h2 { margin-bottom: 25px; }
  .bg-gradient.txr-white img { position: initial; }
  .about { padding-bottom: 60px; }
}
@media screen and (max-width: 425px) {
  body.woocommerce-page .woocommerce ul.products li.product { width: 100%; }
}
@media screen and (max-width: 400px) {}
@media screen and (max-width: 375px) {}
@media screen and (max-width: 320px) {}