@import url(https://fonts.googleapis.com/css?family=Titillium+Web:400,600,900&display=swap);/*
 *  Owl Carousel - Core
 */

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */

.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */

.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(/custom/themes/100x100/assets/images/vendor/owl.carousel/src/owl.video.play.png?4a37f8008959c75f619bf0a3a4e2d7a2) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */

.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/* ------------------------------------------------------------------------- */

/* VARIABLES 100X100 */

/* ------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------- */

/* GENEREAL STYLE FRO 100X100 */

/* ------------------------------------------------------------------------- */

.center-content {
  text-align: center;
}

.left-content {
  text-align: left;
}

.right-content {
  text-align: right;
}

/* ------------------------------------------------------------------------- */

/* 100X100 GRID SYSTEM */

/* ------------------------------------------------------------------------- */

.column-container {
  font-size: 0;
}

.column {
  display: inline-block;
  padding: 0.5%;
  vertical-align: top;
}

.column-1 {
  width: 8.3333333333%;
}

.column-2 {
  width: 16.6666666667%;
}

.column-3 {
  width: 25%;
}

.column-4 {
  width: 33.333333333%;
}

.column-5 {
  width: 41.666666667%;
}

.column-6 {
  width: 50%;
}

.column-7 {
  width: 58.333333333%;
}

.column-8 {
  width: 66.666666667%;
}

.column-9 {
  width: 75%;
}

.column-10 {
  width: 83.33333333%;
}

.column-11 {
  width: 91.66666667%;
}

.column-12 {
  width: 100%;
}

/* Special Grids */

.column-margin {
  display: inline-block;
  vertical-align: top;
}

.column-1_11 {
  width: 8.5%;
  margin-left: 0.29545455%;
  margin-right: 0.29545455%;
}

@media only screen and (max-width: 1100px) {
  .column-1-tablet {
    width: 8.3333333333%;
  }

  .column-2-tablet {
    width: 16.6666666667%;
  }

  .column-3-tablet {
    width: 25%;
  }

  .column-4-tablet {
    width: 33.333333333%;
  }

  .column-5-tablet {
    width: 41.666666667%;
  }

  .column-6-tablet {
    width: 50%;
  }

  .column-7-tablet {
    width: 58.333333333%;
  }

  .column-8-tablet {
    width: 66.666666667%;
  }

  .column-9-tablet {
    width: 75%;
  }

  .column-10-tablet {
    width: 83.33333333%;
  }

  .column-11-tablet {
    width: 91.66666667%;
  }

  .column-12-tablet {
    width: 100%;
  }
}

@media only screen and (max-width: 800px) {
  .column-1-mobile {
    width: 8.3333333333%;
  }

  .column-2-mobile {
    width: 16.6666666667%;
  }

  .column-3-mobile {
    width: 25%;
  }

  .column-4-mobile {
    width: 33.333333333%;
  }

  .column-5-mobile {
    width: 41.666666667%;
  }

  .column-6-mobile {
    width: 50%;
  }

  .column-7-mobile {
    width: 58.333333333%;
  }

  .column-8-mobile {
    width: 66.666666667%;
  }

  .column-9-mobile {
    width: 75%;
  }

  .column-10-mobile {
    width: 83.33333333%;
  }

  .column-11-mobile {
    width: 91.66666667%;
  }

  .column-12-mobile {
    width: 100%;
  }

  .column-0-mobile {
    display: none;
  }
}

/* ------------------------------------------------------------------------- */

/* VARIABLES FORM VALIDATION 100x100 */

/* ------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------- */

/* GENEREAL STYLE FORM VALIDATION 100x100 */

/* ------------------------------------------------------------------------- */

/* INPUT CSS */

.hundreds-validation__input_error {
  border-color: #d63031 !important;
}

label.hundreds-validation__input_error,
p.hundreds-validation__input_error,
label.hundreds-validation__input_error a {
  color: #d63031 !important;
  border-color: #d63031 !important;
}

/*.hundreds-validation__input_success{
	border-color: $hundreds-success-color !important;
}*/

/* MESSAGES CSS */

.form-messages {
  margin: 20px 0 30px;
}

.form-messages__success {
  color: #00b894;
}

.form-messages__errors {
  color: #d63031;
}

.form-messages_hide {
  display: none;
}

.form-messages_show {
  display: block;
}

/* ------------------------------------------------------------------------- */

/* WordPress WYSIWYG Editor Styles */

/* ------------------------------------------------------------------------- */

.entry-content img {
  margin: 0 0 1.5em 0;
}

.alignleft,
img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}

.alignright,
img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}

.aligncenter,
img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}

.alignnone,
img.alignnone {
  /* not sure about this one */
}

.wp-caption {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 5px;
}

.wp-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}

.wp-caption p.wp-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}

.wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}

blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}

blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}

/* ------------------------------------------------------------------------- */

/* FONTS */

/* ------------------------------------------------------------------------- */

/*
@font-face {
  font-family: aclonica;
  src: url(../fonts/aclonica/Aclonica.ttf);
}
*/

/* ------------------------------------------------------------------------- */

/* VARIABLES */

/* ------------------------------------------------------------------------- */

/* 400, 600 y 900*/

/*$second: 'Oswald', sans-serif;*/

/*500*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
figure,
fieldset,
form,
label,
legend,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
}

/* ==========================================================================
   RESET CSS
   ========================================================================== */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
figure,
fieldset,
form,
label,
legend,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  vertical-align: middle;
}

body {
  background-color: white;
}

a {
  text-decoration: none;
  outline: 0;
}

a:hover {
  text-decoration: none;
}

* {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

p a {
  text-decoration: underline;
  outline: 0;
  color: black;
  font-weight: bold;
}

p a:hover {
  text-decoration: underline;
  color: #555;
}

input[type=submit],
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

html {
  font-size: 14px;
  background-color: #f0f0f0;
  color: #000;
  font-family: "Source Sans Pro", sans-serif;
}

html,
body {
  overflow-x: hidden;
  font-family: "Source Sans Pro", sans-serif;
}

/* ------------------------------------------------------------------------- */

/* GENEREAL STYLE - Classes used throught all the project */

/* ------------------------------------------------------------------------- */

body {
  background-color: #F2F3F5;
  min-height: 100%;
  font-family: "Titillium Web", sans-serif;
  color: #253A71;
  font-size: 16px;
  line-height: 140%;
  -webkit-font-smoothing: antialiased;
}

p {
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 20px;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
}

.container-medio {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 3%;
  padding-right: 3%;
}

.container-mini {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 3%;
  padding-right: 3%;
}

img {
  max-width: 100%;
  height: auto;
}

a,
button {
  cursor: pointer;
}

.clearfix,
.clear {
  clear: both;
}

strong,
b {
  font-weight: 600;
}

p a,
a {
  text-decoration: none;
  color: #253A71;
}

p a:hover,
a:hover {
  text-decoration: none;
}

p i,
i {
  font-style: italic;
}

ul {
  list-style: none;
}

sup {
  vertical-align: super;
  font-size: smaller;
  line-height: 100%;
}

.no_padding {
  padding: 0px !important;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.padding-small {
  padding-top: 40px;
  padding-bottom: 40px;
}

.padding-medium {
  padding-top: 80px;
  padding-bottom: 80px;
}

.padding-big {
  padding-top: 140px;
  padding-bottom: 140px;
}

.padding-anchor {
  padding-top: 100px;
  padding-bottom: 40px;
}

.left {
  float: left;
}

.right {
  float: right;
}

/* CALLTOACTIONS */

.calltoaction {
  display: inline-flex;
  margin: 0;
  width: auto;
  padding: 8px 25px;
  border-radius: 100px;
  color: white;
  line-height: 100%;
  font-weight: 600;
  font-size: 16px;
  background-color: #F6790E;
  transition: all 0.2s;
  opacity: 1;
  -webkit-appearance: none;
}

.calltoaction:hover {
  color: white;
}

.calltoaction .icon {
  margin-right: 15px;
  transition: all 0.2s;
  transform: translateX(0);
}

.calltoaction:hover .icon {
  transform: translateX(10px);
}

/* ANIMATIONS */

.animated {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1.6s;
  animation-duration: 1.6s;
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.fadeToLeft {
  -webkit-animation-name: fadeToLeft;
  animation-name: fadeToLeft;
}

.fadeToRight {
  -webkit-animation-name: fadeToRight;
  animation-name: fadeToRight;
}

.fadeOpacity {
  -webkit-animation-name: fadeOpacity;
  animation-name: fadeOpacity;
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes blinkingimage {
  50% {
    transform: scaleY(1);
  }
}

@keyframes blinkingimage {
  50% {
    transform: scaleY(1);
  }
}

@-webkit-keyframes blinking {
  50% {
    opacity: 1;
  }
}

@keyframes blinking {
  50% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(0, 200px);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(0, 200px);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@-webkit-keyframes fadeToLeft {
  0% {
    opacity: 0;
    transform: translate(100px, 0);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes fadeToLeft {
  0% {
    opacity: 0;
    transform: translate(100px, 0);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@-webkit-keyframes fadeToRight {
  0% {
    opacity: 0;
    transform: translate(-100px, 0);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes fadeToRight {
  0% {
    opacity: 0;
    transform: translate(-100px, 0);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@-webkit-keyframes fadeOpacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeOpacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@media only screen and (max-width: 800px) {
  p,
  ul li {
    font-size: 16px;
  }

  .padding-small {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .padding-medium {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .padding-big {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .padding-anchor {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .columna2,
  .columna2-last {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .columna4 {
    width: 49%;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 600px) {
  p,
  ul li {
    font-size: 15px;
  }

  .padding-small {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .padding-medium {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .padding-big {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .padding-anchor {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .calltoaction {
    font-size: 15px;
    padding: 8px 15px;
  }

  .calltoaction .icon {
    margin-right: 5px;
  }
}

@media only screen and (max-width: 400px) {
  p,
  ul li {
    font-size: 14px;
  }

  .padding-small {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .padding-medium {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .padding-big {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .padding-anchor {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .container,
  .container-medio,
  .container-mini {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* ------------------------------------------------------------------------- */

/* GENEREAL STYLE - Classes used throught all the project */

/* ------------------------------------------------------------------------- */

h1,
h2,
h3,
h4 {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  color: #253A71;
  line-height: 100%;
  margin-bottom: 20px;
}

h1 {
  font-size: 50px;
  font-weight: 900;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 24px;
}

.title_left {
  text-align: left;
  margin-bottom: 20px;
}

.title_white {
  color: white;
}

@media only screen and (max-width: 1000px) {
  h1,
  h2 {
    font-size: 35px;
  }
}

@media only screen and (max-width: 800px) {
  h1,
  h2 {
    font-size: 30px;
  }

  .title_centered,
  .title_center {
    margin-bottom: 15px;
  }

  h1,
  h2,
  h3,
  h4 {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 600px) {
  h1,
  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 18px;
  }

  .title_centered,
  .title_center {
    margin-bottom: 10px;
  }

  h1,
  h2,
  h3,
  h4 {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 400px) {
  h1,
  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 16px;
  }

  .title_centered,
  .title_center {
    margin-bottom: 12px;
  }
}

/* ------------------------------------------------------------------------- */

/* COOKIES */

/* ------------------------------------------------------------------------- */

.cookies {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 90%;
  max-width: 350px;
  padding: 20px 35px 20px 25px;
  z-index: 100;
  background-color: white;
  border-radius: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.cookies .message-close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 15px;
  height: 15px;
  background: transparent url(/custom/themes/100x100/assets/images/close.svg?dce81f07642b367b96fd0a40fbbe7b55) no-repeat;
  background-size: 100%;
  cursor: pointer;
}

.cookies p {
  font-size: 14px;
  color: #253A71;
  line-height: 130%;
  margin-bottom: 5px;
}

.cookies p.cookies__text_more {
  margin-bottom: 0;
  text-align: right;
}

.cookies p a {
  color: #253A71;
  font-weight: 900;
  font-size: 15px;
}

.cookies p a:hover {
  color: #253A71;
}

@media only screen and (max-width: 800px) {
  .cookies p {
    font-size: 13px;
  }

  .cookies p a {
    font-size: 14px;
  }
}

@media only screen and (max-width: 600px) {
  .cookies {
    width: calc(100% - 20px);
    max-width: none;
  }

  .cookies p {
    font-size: 12px;
  }

  .cookies p a {
    font-size: 13px;
  }
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
  border-radius: 10px;
  background-color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
  background-color: #4a4a4a;
}

/* ------------------------------------------------------------------------- */

/* HEADER STYLES */

/* ------------------------------------------------------------------------- */

.header {
  transition: all 0.8s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.8s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .web-logo {
  max-width: 200px;
  margin-right: 40px;
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

.header .header-start,
.header .header-end {
  display: flex;
  align-items: center;
}

/* MENU */

.header_menu ul {
  display: flex;
}

.header_menu ul li {
  display: flex;
  align-items: center;
  margin: 0 15px;
  height: 100px;
}

.header_menu ul li a {
  color: #253A71;
  font-size: 16px;
  line-height: 120%;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 5px;
  transition: all 0.2s;
}

.header_menu ul li a:hover {
  color: #F6790E;
}

.header_menu ul li.contacto a {
  padding-left: 60px;
  border-left: 1px solid #F6790E;
  background-image: url(/custom/themes/100x100/assets/images/icon-contact.svg?0134372ee4f420d0a820433aee114944);
  background-position: 20px center;
  background-repeat: no-repeat;
}

/*2n nivel*/

.header_menu ul li ul.sub-menu {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 100px;
  border: 0;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 3;
  background: #F2F3F5;
  padding: 20px 5%;
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.2s;
}

.header_menu ul li:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
}

.header_menu ul li ul.sub-menu li {
  text-align: center;
  margin: 0;
  padding: 0 10px 0;
  height: auto;
}

.header_menu ul li ul.sub-menu li a {
  font-weight: 600;
  display: inline-block;
}

/* IDIOMAS*/

.header_idiomas ul {
  display: flex;
}

.header_idiomas ul li {
  margin-left: 10px;
}

.header_idiomas ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-size: 13px;
  color: #253A71;
  border: 1px solid #253A71;
  width: 30px;
  height: 30px;
  background-color: transparent;
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

.header_idiomas ul li a:hover,
.header_idiomas ul li.wpml-ls-current-language a {
  background-color: #253A71;
  color: white;
}

/* MENU BURGUER */

.header__menu-burguer {
  display: none;
  align-items: center;
}

#nav-open-close.open {
  position: fixed;
  right: 20px;
}

#nav-open-close {
  display: inline-block;
  position: relative;
  z-index: 1000;
  width: 30px;
  height: 25px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#nav-open-close span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: black;
  opacity: 1;
  left: 0;
  border-radius: 6px;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-open-close span {
  background: #253A71;
}

#nav-open-close span:nth-child(1) {
  top: 0px;
}

#nav-open-close span:nth-child(2) {
  top: 10px;
}

#nav-open-close span:nth-child(3) {
  top: 20px;
}

#nav-open-close.open span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
  width: 30px;
  left: 0px;
}

#nav-open-close.open span:nth-child(2) {
  opacity: 0;
  left: 0px;
}

#nav-open-close.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
  width: 30px;
  left: 0px;
}

/* MOBILE */

#menu-desplegable {
  visibility: hidden;
  opacity: 0;
  z-index: 11;
  height: 100%;
  width: 100%;
  background-color: #F2F3F5;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
  box-sizing: border-box;
  padding: 0;
  transition: all 0.2s;
}

#menu-desplegable.appear {
  visibility: visible;
  opacity: 1;
}

.menu-mobile ul {
  margin: 50px 0 0;
  position: relative;
  text-align: center;
}

.menu-mobile ul li {
  display: block;
  margin: 0 0 5px;
  position: relative;
}

.menu-mobile ul li a {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: #253A71;
  padding: 5px 5px 3px;
  position: relative;
  overflow: hidden;
}

.menu-mobile ul li a:hover,
.menu-mobile ul li.current-menu-item a {
  color: #F6790E;
}

/*2n nivel*/

.menu-mobile ul li ul.sub-menu {
  background-color: #e3e7ea;
  margin: 0;
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.menu-mobile ul li ul.sub-menu li {
  margin: 5px 0;
}

.menu-mobile ul ul.sub-menu li a {
  font-size: 16px;
  padding: 0 10px;
  line-height: 120%;
}

main.header-space {
  margin-top: 60px;
}

@media only screen and (max-width: 1000px) {
  .header_menu ul li {
    margin: 0 5px;
  }
}

@media only screen and (max-width: 900px) {
  .header {
    padding: 10px 0;
  }

  .header_idiomas {
    margin-right: 30px;
  }

  .header__menu-burguer {
    display: flex;
  }

  .header .web-logo {
    max-width: 150px;
    margin-right: 0;
  }

  .header_menu {
    display: none;
  }

  main.header-space {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 480px) {
  .header .web-logo {
    max-width: 100px;
  }
}

/* ------------------------------------------------------------------------- */

/* HOME CSS */

/* ------------------------------------------------------------------------- */

.slider {
  display: flex;
  align-items: center;
  width: 100%;
  height: 550px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.slider:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(37, 58, 113, 0.2);
}

.slider .container {
  z-index: 1;
}

.slider h1 {
  color: white;
  font-size: 65px;
  line-height: 90%;
  padding-left: 20px;
  border-left: 3px solid #F6790E;
  max-width: 500px;
}

.home-links .container {
  display: flex;
  justify-content: space-between;
}

.home-links .home-links__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  position: relative;
  height: 380px;
  width: 31%;
  margin: 0 1% 20px;
  padding: 30px 3%;
  background-size: cover;
  background-position: center;
}

.home-links .home-links__item:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  background-color: #000;
  opacity: 0.2;
  transition: all 0.2s;
}

.home-links .home-links__item:hover:after {
  opacity: 0.4;
}

.home-links .home-links__item h2 {
  font-size: 50px;
  line-height: 100%;
  color: white;
  z-index: 1;
}

.home-links .home-links__item .calltoaction {
  z-index: 1;
  max-width: 180px;
}

@media only screen and (max-width: 1200px) {
  .slider {
    height: 500px;
  }

  .home-links .home-links__item {
    height: 320px;
  }

  .home-links .home-links__item h2 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 1000px) {
  .slider {
    height: 450px;
  }

  .home-links .home-links__item {
    height: 250px;
  }

  .home-links .home-links__item h2 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 900px) {
  .slider {
    height: 400px;
  }
}

@media only screen and (max-width: 800px) {
  .slider h1 {
    font-size: 45px;
  }

  .home-links .home-links__item {
    height: 200px;
  }

  .home-links .home-links__item h2 {
    font-size: 25px;
  }
}

@media only screen and (max-width: 600px) {
  .slider {
    height: 350px;
  }

  .slider h1 {
    font-size: 40px;
  }

  .home-links .home-links__item {
    height: 170px;
    padding: 15px 2%;
  }

  .home-links .home-links__item h2 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 480px) {
  .slider {
    height: 300px;
  }

  .slider h1 {
    font-size: 35px;
  }

  .home-links .container {
    flex-direction: column;
  }

  .home-links .home-links__item {
    width: 100%;
    height: auto;
    min-height: 80px;
    margin: 0 0 10px;
  }

  .home-links .home-links__item .calltoaction {
    display: none;
  }
}

/* ------------------------------------------------------------------------- */

/* MAPS CSS */

/* ------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------- */

/* PAGE PAGE STYLES */

/* ------------------------------------------------------------------------- */

/* GENERAL PAGE */

.page {
  padding-top: 80px;
  padding-bottom: 100px;
}

.page h1 hr {
  width: 75px;
  height: 3px;
  border: none;
  background: #253A71;
  margin: 25px auto;
}

.page h1 {
  font-size: 50px;
  font-family: "Titillium Web", sans-serif;
  color: #253A71;
  line-height: 100%;
  margin-bottom: 50px;
  letter-spacing: 0px;
  font-weight: 900;
  text-align: center;
}

.page h2 {
  font-size: 22px;
  font-family: "Titillium Web", sans-serif;
  color: #253A71;
  line-height: 140%;
  margin-top: 50px;
  margin-bottom: 30px;
  letter-spacing: 0px;
  font-weight: 600;
}

.page h3 {
  font-size: 20px;
  font-family: "Titillium Web", sans-serif;
  color: #253A71;
  line-height: 140%;
  margin-top: 0;
  margin-bottom: 20px;
  letter-spacing: 0px;
  font-weight: 400;
}

.page p {
  font-size: 16px;
}

.page a.calltoaction {
  color: white;
}

.page a.calltoaction.download {
  padding: 10px 25px 10px 40px;
  background: #F6790E url(/custom/themes/100x100/assets/images/download-arrow.svg?8beaaa29776bfa111da8193f7e2575c8) no-repeat 15px center;
}

.page a.calltoaction.watch {
  padding: 10px 25px 10px 45px;
  background: #F6790E url(/custom/themes/100x100/assets/images/icon-eye.svg?cc881a5581d4d7bfb2b299573d0cade5) no-repeat 15px center;
}

.page a.calltoaction:hover {
  color: white;
}

.page .flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.page .flex p {
  margin: 0;
}

.page .contactanos {
  margin-top: 40px;
}

.page .contactanos a {
  margin-left: 15px;
  padding: 2px 0 2px 50px;
  border-left: 1px solid #F6790E;
  text-decoration: none;
}

.page .contactanos a[href^=mailto] {
  background: url(/custom/themes/100x100/assets/images/icon-mail.svg?0d58cde90788d45285be1f0a522e5f67) no-repeat 15px center;
}

.page .contactanos a[href^=tel] {
  background: url(/custom/themes/100x100/assets/images/icon-phone.svg?b743e76123109a9f5cc0219ef922e4fc) no-repeat 15px center;
}

/* page contacto */

.page .contacto {
  margin-top: 50px;
}

.page .contacto a {
  display: inline-block;
  padding: 5px 0 5px 70px;
  margin-bottom: 10px;
  text-decoration: none;
  font-size: 50px;
  line-height: 100%;
}

.page .contacto a[href^=mailto] {
  background: url(/custom/themes/100x100/assets/images/icon-mail.svg?0d58cde90788d45285be1f0a522e5f67) no-repeat left center;
  background-size: 50px;
}

.page .contacto a[href^=tel] {
  background: url(/custom/themes/100x100/assets/images/icon-phone.svg?b743e76123109a9f5cc0219ef922e4fc) no-repeat left center;
  background-size: 50px;
}

/* page reparaciones */

.page .column-page {
  display: flex;
  justify-content: space-between;
}

.page .column-page .column-page__column:first-child {
  flex-basis: 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page .column-page .column-page__column:first-child .content {
  padding-right: 10%;
}

.page .column-page .column-page__column:first-child .piedefoto hr {
  width: 100%;
  height: 2px;
  border: none;
  background: #F6790E;
  margin: 0 auto 10px;
}

.page .column-page .column-page__column:first-child .piedefoto {
  font-style: italic;
}

.page .column-page .column-page__column:last-child {
  flex-basis: 43%;
}

.page .column-page .column-page__column:last-child img {
  width: 100%;
}

.page .column-page h1 {
  text-align: left;
}

/* pages velas */

.page-velas {
  padding-bottom: 0;
}

.bloque-velas {
  margin-bottom: 80px;
}

.bloque-velas .text {
  width: 65%;
  margin-bottom: 40px;
}

.bloque-velas .photos {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.bloque-velas .photos .photos-image {
  flex-basis: 65%;
  display: flex;
  justify-content: space-between;
}

.bloque-velas .photos .photos-image img {
  border-radius: 3px;
}

.bloque-velas .photos .photos-caption {
  flex-basis: 33%;
}

.bloque-velas .photos .photos-caption hr {
  width: 100%;
  height: 2px;
  border: none;
  background: #F6790E;
  margin: 30px auto 20px;
}

.bloque-velas .photos .photos-caption p {
  font-style: italic;
  padding-left: 20%;
  font-size: 15px;
}

/* showroom velas*/

.showroom {
  background-color: #D2D6E2;
}

.velas__item .vela-image {
  margin-bottom: 20px;
}

.velas__item .vela-image img {
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.velas__item .vela-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.velas__item p {
  margin-bottom: 0px;
}

.velas__item ul {
  margin-bottom: 0px;
}

.velas__item ul ul li {
  padding-left: 25px;
}

.owl-theme .owl-nav {
  width: calc(100% + 120px);
  margin: 0;
  padding: 0;
  position: absolute;
  top: 200px;
  left: -60px;
  display: flex;
  justify-content: space-between;
  z-index: -1;
}

.owl-theme .owl-nav [class*=owl-] {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin: 0;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.6) url(/custom/themes/100x100/assets/images/icon-right.svg?b58fa8f2cb4857b7dd7631fb14764a48) no-repeat center !important;
  background-size: 50% !important;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  opacity: 0.8;
}

.owl-theme .owl-nav [class*=owl-] span {
  display: none;
}

.owl-theme .owl-nav .owl-prev {
  transform: rotate(-180deg);
}

.owl-theme .owl-nav .disabled,
.owl-theme .owl-nav [class*=owl-].disabled:hover {
  opacity: 0.1;
}

.owl-theme .owl-nav.disabled {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .showroom .container {
    padding-left: 7%;
    padding-right: 7%;
  }
}

@media only screen and (max-width: 1100px) {
  .bloque-velas .photos .photos-caption p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1000px) {
  .page {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .page h1 hr {
    margin: 20px auto;
  }

  .page h1 {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .page h2 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .bloque-velas .text {
    width: 70%;
    margin-bottom: 30px;
  }

  .bloque-velas .photos {
    margin-bottom: 30px;
  }

  .bloque-velas .photos .photos-image {
    flex-basis: 70%;
  }

  .bloque-velas .photos .photos-caption {
    flex-basis: 28%;
  }

  .bloque-velas .photos .photos-caption p {
    padding-left: 10%;
  }

  .bloque-velas .photos .photos-caption hr {
    margin: 20px auto 15px;
  }

  .page .column-page .contactanos {
    font-size: 15px;
  }

  .owl-theme .owl-nav {
    top: 150px;
  }
}

@media only screen and (max-width: 900px) {
  .page .column-page .column-page__column:first-child {
    flex-basis: 75%;
  }

  .page .column-page .column-page__column:first-child .content {
    padding-right: 5%;
  }

  .page .column-page .column-page__column:first-child .piedefoto {
    display: none;
  }

  .page .column-page .column-page__column:last-child {
    flex-basis: 25%;
  }

  .page .column-page .contactanos {
    font-size: 15px;
  }

  .page .contactanos .contactanos a {
    margin-left: 5px;
    padding: 2px 0 2px 45px;
  }

  .bloque-velas .text {
    width: 100%;
  }

  .bloque-velas .photos {
    flex-direction: column;
  }

  .showroom .container {
    padding-left: 8%;
    padding-right: 8%;
  }
}

@media only screen and (max-width: 800px) {
  .page p {
    font-size: 16px;
  }

  .page {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .page h1 {
    font-size: 35px;
    margin-bottom: 15px;
  }

  .page h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page .flex {
    flex-direction: column-reverse;
  }

  .page .contacto a {
    font-size: 35px;
    padding: 2px 0 2px 50px;
    background-size: 35px !important;
  }

  .showroom .container {
    padding-left: 10%;
    padding-right: 10%;
  }
}

@media only screen and (max-width: 700px) {
  .page .column-page {
    flex-direction: column;
  }

  .page .column-page .column-page__column:last-child {
    display: none;
  }

  .showroom .container {
    padding-left: 12%;
    padding-right: 12%;
  }
}

@media only screen and (max-width: 600px) {
  .page p {
    font-size: 15px;
  }

  .page h1 {
    font-size: 30px;
  }

  .page h2 {
    font-size: 18px;
  }

  .showroom .container {
    padding-left: 15%;
    padding-right: 15%;
  }

  .velas__item .vela-header {
    flex-direction: column-reverse;
  }

  .velas__item .vela-header h3 {
    margin-top: 15px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .page p {
    font-size: 14px;
  }

  .page .flex {
    align-items: flex-start;
  }

  .page .contacto a {
    font-size: 25px;
    padding: 2px 0 2px 30px;
    background-size: 25px !important;
  }

  .page .contactanos {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
  }

  .page .contactanos a {
    margin-left: 0;
    margin-top: 5px;
    padding: 2px 0 2px 25px;
    border-left: none;
    background-position: left center !important;
    background-size: 20px !important;
  }
}

/* ------------------------------------------------------------------------- */

/* GENERAL FORM STYLES */

/* ------------------------------------------------------------------------- */

.hundreds-form__form {
  position: relative;
}

.submit-button-container {
  position: relative;
  margin: 20px auto 0;
}

.hundreds__loader {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 29, 28, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hundreds__messages--hide,
.hundreds__loader_hidden {
  display: none;
}

.hundreds__messages--show {
  display: block;
}

.hundreds__messages {
  margin: 30px 0 0;
}

.hundreds__messages p {
  margin: 0;
  font-size: 16px;
}

/* checkbox labels privacy policy*/

.hundreds-form__checkbox {
  margin-top: 33px;
}

.hundreds-form__checkbox label {
  color: white;
  cursor: pointer;
  display: block;
  font-size: 15px;
  line-height: 140%;
  vertical-align: middle;
  padding-left: 30px;
  margin-top: 15px;
  position: relative;
  text-align: left;
}

.hundreds-form__checkbox label:before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  height: 15px;
  width: 15px;
  border: 1px solid white;
  background-color: transparent;
  border-radius: 2px;
  transition: all 0.5s cubic-bezier(0.15, 0.9, 0.34, 0.95);
}

.hundreds-form__checkbox label a {
  color: white;
  border-bottom: 1px solid white;
}

form input[type=checkbox]:checked + label {
  color: white;
}

form input[type=checkbox]:checked + label:before {
  background-color: white;
}

form input[type=email],
form input[type=text],
form input[type=number],
form textarea {
  border: none;
  border-bottom: 1px solid #FFF;
  padding: 0 15px 10px;
  margin-bottom: 30px;
  border-radius: 0;
  color: white;
  font-family: "Titillium Web", sans-serif;
  font-size: 20px;
  background: transparent;
  outline: 0;
  width: 100%;
  transition: all 0.5s cubic-bezier(0.15, 0.9, 0.34, 0.95);
  -webkit-appearance: none;
}

form textarea {
  resize: none;
}

form input[type=checkbox],
form input[type=radio] {
  display: none;
}

/*
form label a { color: white; border-bottom: 1px solid white;  transition: all .5s cubic-bezier(.15,.9,.34,.95);}
form input[type=checkbox]:checked+label, form input[type=radio]:checked+label {
    color:white;
}
form input[type=checkbox]:checked+label:before, form input[type=radio]:checked+label:before {
    border-color: white;
    background-color: white;
}*/

form input[type=submit] {
  display: block;
  position: relative;
  background: #F6790E;
  font-size: 18px;
  font-family: "Titillium Web", sans-serif;
  letter-spacing: 0px;
  font-weight: 400;
  cursor: pointer;
  border-radius: 0;
  border: none;
  color: black;
  border: none;
  opacity: 1;
  outline: 0;
  padding: 15px 25px;
  width: 100%;
  -webkit-appearance: none;
  transition: all 0.2s cubic-bezier(0.15, 0.9, 0.34, 0.95);
}

form input[type=submit]:hover {
  background-color: white;
}

::-webkit-input-placeholder {
  opacity: 0.8;
}

:-moz-placeholder {
  opacity: 0.8;
}

::-moz-placeholder {
  opacity: 0.8;
}

:-ms-input-placeholder {
  opacity: 0.8;
}

@media only screen and (max-width: 800px) {
  form input[type=email],
  form input[type=text],
  form input[type=number],
  form textarea {
    margin-bottom: 20px;
  }

  form input[type=submit] {
    font-size: 18px;
    width: 100%;
  }

  form label {
    font-size: 14px;
  }

  .hundreds-form__checkbox {
    margin: 0;
    width: auto;
  }
}

@media only screen and (max-width: 600px) {
  form input[type=email],
  form input[type=text],
  form input[type=number],
  form textarea {
    padding: 5px 15px 10px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 480px) {
  form input[type=submit] {
    padding: 12px;
  }

  form input[type=email],
  form input[type=text],
  form input[type=number] {
    font-size: 16px;
  }

  form label {
    font-size: 12px;
  }
}

/* ------------------------------------------------------------------------- */

/* NEWSLETTER FORM STYLES */

/* ------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------- */

/* INSTAGRAM STYLES */

/* ------------------------------------------------------------------------- */

.hundreds__instagram a {
  width: 25%;
  display: inline-block;
  height: 200px;
}

.hundreds__instagram a li {
  width: 100%;
  height: 200px;
  background-size: cover;
}

/* ------------------------------------------------------------------------- */

/* FOOTER STYLES */

/* ------------------------------------------------------------------------- */

footer {
  background-color: #253A71;
  color: white;
  padding: 30px 0;
  background-repeat: no-repeat;
  background-position: left;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-left ul.menu_footer {
  display: flex;
}

.footer-left ul.menu_footer li {
  margin: 0 10px;
}

.footer-left ul.menu_footer li a {
  color: white;
  font-size: 16px;
}

.footer-right p {
  font-weight: 600;
  line-height: 120%;
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-right .calltoaction {
  padding: 8px 25px 5px;
  margin-bottom: 10px;
}

.footer-right .link_footer {
  display: block;
  font-weight: 600;
  color: white;
}

.footer-right .link_footer .svg {
  margin-right: 5px;
}

@media only screen and (max-width: 600px) {
  footer .container {
    flex-direction: column-reverse;
    align-items: center;
  }

  .footer-left ul.menu_footer {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .footer-right {
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-right p,
  .footer-right .link_footer {
    font-size: 14px;
  }
}


/*# sourceMappingURL=100x100.min.css.map*/