/*
Theme Name: 
Theme URI: http://www..com
Description: ---
Version: 1.0
Author: 
Author URI: 
Tags: 
*/
/*foundation custom column separation*/
/*foundation animated accordion*/
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
/*
 * Swiper - Mobile Touch Slider CSS
 * http://www.idangero.us/sliders/swiper
 *
 * Vladimir Kharlampidi, The iDangero.us
 * http://www.idangero.us/
 * 
 * Copyright 2012-2013, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us
 *
 * Licensed under GPL & MIT
 *
*/
/* ===============================================================
Basic Swiper Styles 
================================================================*/
/* IE10 Windows Phone 8 Fixes */
/* not sure about this one */
body.stop-scrolling {
  height: 100%;
  overflow: hidden;
}
.sweet-overlay {
  /* IE8 */
  background-color: black;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  background-color: rgba(0,0,0,0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000;
}
.sweet-alert {
  background-color: white;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999;
}
@media all and (max-width: 540px) {
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px;
  }
}
.sweet-alert h2 {
  color: #575757;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 25px 0;
  padding: 0;
  line-height: 40px;
  display: block;
}
.sweet-alert p {
  color: #797979;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  position: relative;
  text-align: inherit;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal;
}
.sweet-alert fieldset {
  border: none;
  position: relative;
}
.sweet-alert .sa-error-container {
  background-color: #f1f1f1;
  margin-left: -17px;
  margin-right: -17px;
  overflow: hidden;
  padding: 0 10px;
  max-height: 0;
  webkit-transition: padding 0.15s, max-height 0.15s;
  transition: padding 0.15s, max-height 0.15s;
}
.sweet-alert .sa-error-container.show {
  padding: 10px 0;
  max-height: 100px;
  webkit-transition: padding 0.2s, max-height 0.2s;
  transition: padding 0.25s, max-height 0.25s;
}
.sweet-alert .sa-error-container .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ea7d7d;
  color: white;
  line-height: 24px;
  text-align: center;
  margin-right: 3px;
}
.sweet-alert .sa-error-container p {
  display: inline-block;
}
.sweet-alert .sa-input-error {
  position: absolute;
  top: 29px;
  right: 26px;
  width: 20px;
  height: 20px;
  opacity: 0;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.sweet-alert .sa-input-error::before,
.sweet-alert .sa-input-error::after {
  content: "";
  width: 20px;
  height: 6px;
  background-color: #f06e57;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -9px;
}
.sweet-alert .sa-input-error::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sweet-alert .sa-input-error::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sweet-alert .sa-input-error.show {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.sweet-alert input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  height: 43px;
  margin-top: 10px;
  margin-bottom: 17px;
  font-size: 18px;
  box-shadow: inset 0px 1px 1px rgba(0,0,0,0.06);
  padding: 0 12px;
  display: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sweet-alert input:focus {
  outline: none;
  box-shadow: 0px 0px 3px #c4e6f5;
  border: 1px solid #b4dbed;
}
.sweet-alert input:focus::-moz-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}
.sweet-alert input:focus:-ms-input-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}
.sweet-alert input:focus::-webkit-input-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}
.sweet-alert input::-moz-placeholder {
  color: #bdbdbd;
}
.sweet-alert input:-ms-input-placeholder {
  color: #bdbdbd;
}
.sweet-alert input::-webkit-input-placeholder {
  color: #bdbdbd;
}
.sweet-alert.show-input input {
  display: block;
}
.sweet-alert button {
  background-color: #AEDEF4;
  color: white;
  border: none;
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  -webkit-border-radius: 4px;
  border-radius: 5px;
  padding: 10px 32px;
  margin: 26px 5px 0 5px;
  cursor: pointer;
}
.sweet-alert button:focus {
  outline: none;
  box-shadow: 0 0 2px rgba(128,179,235,0.5), inset 0 0 0 1px rgba(0,0,0,0.05);
}
.sweet-alert button:hover {
  background-color: #a1d9f2;
}
.sweet-alert button:active {
  background-color: #81ccee;
}
.sweet-alert button.cancel {
  background-color: #D0D0D0;
}
.sweet-alert button.cancel:hover {
  background-color: #c8c8c8;
}
.sweet-alert button.cancel:active {
  background-color: #b6b6b6;
}
.sweet-alert button.cancel:focus {
  box-shadow: rgba(197,205,211,0.8) 0px 0px 2px, rgba(0,0,0,0.0470588) 0px 0px 0px 1px inset !important;
}
.sweet-alert button::-moz-focus-inner {
  border: 0;
}
.sweet-alert[data-has-cancel-button=false] button {
  box-shadow: none !important;
}
.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
  padding-bottom: 40px;
}
.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  box-sizing: content-box;
}
.sweet-alert .sa-icon.sa-error {
  border-color: #F27474;
}
.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block;
}
.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #F27474;
  display: block;
  top: 37px;
  border-radius: 2px;
}
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 17px;
}
.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 16px;
}
.sweet-alert .sa-icon.sa-warning {
  border-color: #F8BB86;
}
.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #F8BB86;
}
.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #F8BB86;
}
.sweet-alert .sa-icon.sa-info {
  border-color: #C9DAE1;
}
.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #C9DAE1;
}
.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #C9DAE1;
}
.sweet-alert .sa-icon.sa-success {
  border-color: #A5DC86;
}
.sweet-alert .sa-icon.sa-success::before,
.sweet-alert .sa-icon.sa-success::after {
  content: '';
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sweet-alert .sa-icon.sa-success::before {
  -webkit-border-radius: 120px 0 0 120px;
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 60px 60px;
  transform-origin: 60px 60px;
}
.sweet-alert .sa-icon.sa-success::after {
  -webkit-border-radius: 0 120px 120px 0;
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0px 60px;
  transform-origin: 0px 60px;
}
.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165,220,134,0.2);
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}
.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: white;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #A5DC86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}
.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat;
}
@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}
.row {
  max-width: 1300px;
}
.column,
.columns {
  padding-left: 20px;
  padding-right: 20px;
}
.row .row {
  margin-left: -20px;
  margin-right: -20px;
}
.bgcover {
  background-position: center;
  background-size: cover;
}
.block {
  display: block;
  text-indent: -3000px;
  font-size: 0;
  overflow: hidden;
}
.absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.clearul {
  margin: 0;
  padding: 0;
}
.clearul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.accordion .accordion-navigation > .content,
.accordion dd > .content {
  max-height: 0;
  display: block;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0;
}
.accordion .accordion-navigation > .content.active,
.accordion dd > .content.active {
  max-height: 3000px;
  opacity: 1;
}
p:last-child {
  margin-bottom: 0;
}
.valignout {
  display: table;
  height: 100%;
  width: 100%;
  table-layout: fixed;
}
.valignin {
  vertical-align: middle;
  height: 100%;
  width: 100%;
  display: table-cell;
}
figure {
  padding: 0;
  margin: 0;
}
.op0 {
  opacity: 0;
}
.parallax {
  background-attachment: fixed;
  background-repeat: no-repeat;
}
#cboxOverlay {
  background-color: #000;
}
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
}
#cboxWrapper {
  max-width: none;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}
#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}
#cboxContent {
  position: relative;
}
#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#cboxTitle {
  margin: 0;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
#colorbox,
#cboxContent,
#cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}
#colorbox,
#colorbox * {
  outline: none;
}
#colorbox:focus,
#colorbox *:focus {
  outline: none;
}
#cboxClose {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 0;
}
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  /* Fix of Webkit flickering */
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  -webkit-transition-property: -webkit-transform, left, top;
  -webkit-transition-duration: 0s;
  -webkit-transform: translate3d(0px,0,0);
  -webkit-transition-timing-function: ease;
  -moz-transition-property: -moz-transform, left, top;
  -moz-transition-duration: 0s;
  -moz-transform: translate3d(0px,0,0);
  -moz-transition-timing-function: ease;
  -o-transition-property: -o-transform, left, top;
  -o-transition-duration: 0s;
  -o-transform: translate3d(0px,0,0);
  -o-transition-timing-function: ease;
  -o-transform: translate(0px,0px);
  -ms-transition-property: -ms-transform, left, top;
  -ms-transition-duration: 0s;
  -ms-transform: translate3d(0px,0,0);
  -ms-transition-timing-function: ease;
  transition-property: transform, left, top;
  transition-duration: 0s;
  transform: translate3d(0px,0,0);
  transition-timing-function: ease;
}
.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  float: left;
}
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
}
.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
}
@font-face {
  font-family: 'jauria';
  src: url('fonts/jauria.eot');
  src: local('☺'), url('fonts/jauria.woff') format('woff'), url('fonts/jauria.ttf') format('truetype'), url('fonts/jauria.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'jauria';
  src: url('fonts/jauria-Italic.eot');
  src: local('☺'), url('fonts/jauria-Italic.woff') format('woff'), url('fonts/jauria-Italic.ttf') format('truetype'), url('fonts/jauria-Italic.svg') format('svg');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'jauria';
  src: url('fonts/jauria-Bold.eot');
  src: local('☺'), url('fonts/jauria-Bold.woff') format('woff'), url('fonts/jauria-Bold.ttf') format('truetype'), url('fonts/jauria-Bold.svg') format('svg');
  font-weight: bold;
  font-style: normal;
}
.font1 {
  font-family: 'Open Sans', sans-serif;
}
.font2 {
  font-family: 'jauria';
}
h2,
h3,
h4 {
  font-family: 'jauria';
}
body {
  font-family: 'Open Sans', sans-serif;
  padding-top: 120px;
}
input[type="submit"] {
  background: #002a4b;
  transition: all .3s ease-out;
  border-radius: 10px;
}
input[type="submit"]:hover {
  background: #224c6d;
}
button,
.button {
  padding: 15px 60px;
  position: relative;
  background: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
}
button svg,
.button svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
button svg path,
.button svg path {
  fill: #002a4b;
  transition: all .3s ease-out;
}
button:hover,
.button:hover {
  background: none;
}
button:hover path,
.button:hover path {
  fill: #445e9c;
}
button span,
.button span {
  position: relative;
}
button.white,
.button.white {
  color: #002644;
}
button.white svg path,
.button.white svg path {
  fill: #fff;
}
button.white:hover,
.button.white:hover {
  color: #fff;
}
button.white:hover svg path,
.button.white:hover svg path {
  fill: #518ebb;
}
button.yellow,
.button.yellow {
  color: #002a4b;
}
button.yellow svg path,
.button.yellow svg path {
  fill: #f3e689;
}
button.yellow:hover svg path,
.button.yellow:hover svg path {
  fill: #d1c467;
}
button.whiteoutline,
.button.whiteoutline {
  color: #fff;
}
button.whiteoutline svg path,
.button.whiteoutline svg path {
  fill: rgba(255,255,255,0);
  stroke: #fff;
  stroke-width: 2px;
}
button.whiteoutline:hover,
.button.whiteoutline:hover {
  color: #fff;
}
button.whiteoutline:hover svg path,
.button.whiteoutline:hover svg path {
  fill: #518ebb;
  stroke: #518ebb;
}
.headertop {
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  background: linear-gradient(to right,#ffee7e 0%,#7fb8aa 32%,#5373a7 74%,#566ea6 100%);
  height: 45px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.headertop .micoope {
  position: absolute;
  top: 3px;
  left: 50px;
  font-size: 18px;
  font-style: italic;
  color: #3f568f;
}
.headertop .micoope strong {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -1px;
  font-style: normal;
}
.headertop .tels {
  text-align: center;
  padding-top: 7px;
}
.headertop .tels .t {
  display: inline-block;
  margin: 0 15px;
  position: relative;
}
.headertop .tels .t.at:before {
  width: 30px;
  height: 30px;
  content: '';
  display: block;
  background: url(img/phone.svg) no-repeat;
  position: absolute;
  left: -40px;
  top: 0;
  background-size: 100% auto;
}
.headertop .tels .lab {
  display: inline-block;
  text-align: center;
  font-size: 15px;
  font-style: italic;
  line-height: 1;
  color: #fff;
  vertical-align: top;
  margin-right: 5px;
}
.headertop .tels strong {
  font-style: italic;
  color: #fff;
  font-size: 20px;
  display: inline-block;
  vertical-align: top;
  line-height: 1.1;
  padding-top: 4px;
}
.headertop .tels strong a {
  color: #fff;
  transition: all .3s ease-out;
}
.headertop .tels strong a:hover {
  color: #ffee7e;
}
.headertop .tels strong+strong {
  margin-left: 20px;
}
.headertop .social {
  position: absolute;
  top: 6px;
  right: 60px;
}
.headertop .social .lab {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  margin-right: 5px;
  margin-top: 5px;
}
.headertop .social a {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-left: 5px;
  background: #ffee7e;
  border-radius: 100%;
  color: #566da5;
  padding-top: 4px;
  transition: all .3s ease-out;
}
.headertop .social a:hover {
  background: #ffffa0;
}
header {
  height: 75px;
  background: #fff;
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.fixednav header {
  top: 0;
  position: fixed;
}
header h1 {
  position: absolute;
  top: 2px;
  /*
		a{
			.block;
			background: url(img/logo.png) no-repeat;
			background-size: 100% auto;
			width: 200px;
			height: 53px;
		}
		*/
  left: 50px;
}
header h1 a {
  display: block;
}
header nav {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 100;
}
header nav ul {
  margin: 0;
  padding: 0;
}
header nav ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
header nav ul li {
  float: left;
  padding: 5px 13px 0px;
  position: relative;
}
header nav ul a {
  color: #002644;
  font-size: 15px;
  display: block;
  padding: 10px 10px 0px;
}
header nav ul a:after {
  background-color: #5faaa9;
  height: 6px;
  width: 100%;
  display: block;
  content: '';
  margin: 20px auto 0;
  transition: all .3s ease-out;
  width: 0;
}
header nav ul a:hover {
  color: #002644;
}
header nav ul a:hover:after {
  width: 100%;
}
header nav ul li:hover >ul {
  padding-bottom: 15px;
  border-top: 6px solid #5faaa9;
  opacity: 1;
  visibility: visible;
}
header nav ul li:hover >ul li {
  max-height: 50px;
}
header nav ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 100%;
  padding-bottom: 15px;
  border-top: 6px solid #5faaa9;
  margin-top: -6px;
  border-top: 1px solid transparent;
  padding-bottom: 0;
  transition: all .3s ease-out;
  opacity: 0;
  visibility: hidden;
}
header nav ul ul ul {
  top: 0;
  left: 100%;
}
header nav ul ul li {
  padding: 0px 0;
  float: none;
  transition: all .3s ease-out;
}
header nav ul ul li a {
  padding: 10px 20px;
  white-space: nowrap;
  transition: all .3s ease-out;
}
header nav ul ul li a:after {
  display: none;
}
header nav ul ul li a:hover {
  background: #51aba3;
  color: #fff;
}
.hero {
  background: #fff;
  height: 670px;
  position: relative;
}
.hero ul {
  margin: 0;
  padding: 0;
}
.hero ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero ul li {
  height: 530px;
  position: relative;
  padding-top: 120px;
}
.hero ul li .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.hero ul li .bg:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  top: auto;
  bottom: 0;
  height: 300px;
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  background: linear-gradient(to bottom,rgba(255,255,255,0) 0%,#ffffff 100%);
  content: '';
  display: block;
}
.hero ul li h2 {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1.2;
}
.hero ul li p {
  font-size: 16px;
  color: #fff;
}
.hero .bx-pager {
  position: absolute;
  left: 50%;
  margin-left: -630px;
  z-index: 10;
  top: 360px;
}
.hero .bx-pager .bx-pager-item {
  float: left;
  margin-right: 5px;
}
.hero .bx-pager .bx-pager-item a {
  width: 13px;
  height: 13px;
  border-radius: 100%;
  background: #fff;
  opacity: .4;
  display: block;
  text-indent: -3000px;
  font-size: 0;
  overflow: hidden;
  transition: all .3s ease-out;
}
.hero .bx-pager .bx-pager-item a.active {
  opacity: 1;
}
.hero .micope {
  position: absolute;
  width: 310px;
  top: 20px;
  text-align: center;
  right: 50%;
  margin-right: -630px;
  padding: 50px 40px 40px;
}
.hero .micope:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  background: url(img/micoope.png) no-repeat;
  background-size: 100% 100%;
}
.hero .micope h2 {
  color: #f3e689;
  font-size: 30px;
  font-style: italic;
  margin-bottom: 15px;
  font-family: 'Open Sans', sans-serif;
}
.hero .micope h2 strong {
  font-style: normal;
  font-size: 36px;
  letter-spacing: -1px;
}
.hero .micope .c {
  position: relative;
  z-index: 1;
}
.hero .micope .button {
  margin-bottom: 10px;
}
.hero .micope p {
  color: #fff;
  font-size: 15px;
  margin-top: 30px;
  max-width: 200px;
  margin: 30px auto 10px;
  line-height: 1.3;
}
.accesos {
  margin-top: -250px;
}
.accesos li {
  padding: 0 5px;
}
.accesos li:nth-child(2) a {
  background: #518ebb;
}
.accesos li:nth-child(2) a:hover {
  background: #629fcc;
}
.accesos li:nth-child(3) a {
  background: #51aba3;
}
.accesos li:nth-child(3) a:hover {
  background: #62bcb4;
}
.accesos li:nth-child(4) a {
  background: #c95d5d;
}
.accesos li:nth-child(4) a:hover {
  background: #da6e6e;
}
.accesos a {
  display: block;
  background: #445e9c;
  padding: 40px 40px 35px;
  text-align: center;
  transition: all .3s ease-out;
}
.accesos a:hover {
  background: #556fad;
  box-shadow: 0 0 50px rgba(0,0,0,0.3);
  position: relative;
  z-index: 10;
  transform: translateY(-10px);
}
.accesos a .ico {
  height: 65px;
  margin-bottom: 10px;
  display: block;
}
.accesos a .ico img {
  max-width: 90px;
  max-height: 60px;
}
.accesos a h3 {
  font-family: 'jauria';
  color: #fff;
  font-size: 22px;
  line-height: 0.95;
  margin-bottom: 20px;
}
.accesos a p {
  font-size: 15px;
  color: #fff;
  line-height: 1.13;
  margin-bottom: 20px;
}
.accesos a .icob {
  width: 40px;
  height: 41px;
  background: url(img/serviciosico.png) no-repeat;
  background-size: 100% auto;
  display: block;
  margin: 0 auto;
  padding-top: 5px;
  margin-top: 35px;
}
.accesos a .icob svg {
  max-width: 10px;
}
.accesos a .icob svg path {
  fill: #445e9c;
}
.sectiontitle {
  text-align: center;
  font-family: 'jauria';
  color: #002644;
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.sectiontitle:after {
  width: 80px;
  height: 3px;
  background: #002a4b;
  content: '';
  display: block;
  margin: 15px auto 0;
}
.masservicios {
  background: url(img/trama.png) no-repeat center;
  background-color: #edf2f6;
  padding-top: 145px;
  margin-top: -60px;
  padding-bottom: 140px;
}
.masservicios li .ico {
  width: 115px;
  height: 115px;
  position: relative;
  display: block;
  margin: 0 auto 10px;
  text-align: center;
}
.masservicios li .ico svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all .3s ease-out;
}
.masservicios li .ico img {
  position: relative;
  max-width: 105px;
  max-height: 110px;
  transform: translate3d(0,0,0);
}
.masservicios li a {
  display: block;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  color: #002a4b;
  line-height: 1.2;
  font-size: 17px;
  font-weight: bold;
}
.masservicios li a:hover svg {
  transform: scale(1.05) rotate(15deg);
}
.novedades {
  padding-top: 80px;
  background-color: #f3f6f7;
  padding-bottom: 135px;
}
.novedades ul {
  margin-bottom: 40px;
}
.novedades li {
  padding: 0 5px;
}
.novedades li a {
  display: block;
  background: #fff;
  padding: 0 35px 35px;
  transition: all .3s ease-out;
}
.novedades li a:hover h2,
.novedades li a:hover .ico {
  color: #51aba3;
}
.novedades li a:hover img {
  opacity: .7;
}
.novedades li a figure {
  margin: 0 -35px 15px;
  background: #51aba3;
}
.novedades li a figure img {
  transition: all .3s ease-out;
  transform: translate3d(0,0,0);
}
.novedades li a h2 {
  color: #454545;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 0px;
  font-weight: bold;
  transition: all .3s ease-out;
}
.novedades li a .date {
  display: block;
  font-weight: bold;
  color: #454545;
  margin-bottom: 15px;
  font-size: 14px;
  margin-top: 0px;
}
.novedades li a p {
  color: #454545;
  font-size: 15px;
  line-height: 1.3;
}
.novedades li a .ico {
  transition: all .3s ease-out;
  color: #002644;
  font-size: 13px;
  font-weight: bold;
  display: inline-block;
  position: relative;
  padding-right: 55px;
  padding-top: 13px;
}
.novedades li a .ico:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 46px;
  background: url(img/newsico.png) no-repeat;
  content: '';
  display: block;
  background-size: 100% auto;
}
.usoeficiente {
  background: url(img/trama2.png) no-repeat center;
  background-color: #619c52;
  background-size: auto 100%;
  padding: 90px 0 110px;
  text-align: center;
}
.usoeficiente h2 {
  color: #fff;
  font-size: 32px;
  text-transform: uppercase;
}
.usoeficiente p {
  font-size: 18px;
  font-style: italic;
  color: #fff;
  margin-bottom: 20px;
}
.usoeficiente img {
  max-width: 75px;
  margin-bottom: 15px;
}
footer {
  background-image: linear-gradient(to top,#002644 0%,#002b4c 99%,#002b4c 100%);
  text-align: center;
  padding: 75px 0;
  position: relative;
}
footer .footerlogo {
  background: url(img/footerlogo.png) no-repeat center;
  background-size: 100% auto;
  background-position: top;
  display: block;
  width: 150px;
  margin: 0 auto 20px;
  padding-top: 95px;
  font-size: 14px;
  color: #518ebb;
  white-space: nowrap;
}
footer .social {
  margin-bottom: 40px;
}
footer .social a {
  width: 35px;
  height: 35px;
  text-align: center;
  color: #fff;
  display: inline-block;
  padding-top: 4px;
  font-size: 18px;
  border-radius: 100%;
  margin: 0 5px;
}
footer .social a.fb {
  background: #3a5998;
}
footer .social a.tw {
  background: #00aced;
}
footer h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 10px;
}
footer ul {
  margin: 0;
  padding: 0;
}
footer ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer ul li {
  padding: 0 0 5px !important;
}
footer ul li a {
  color: #518ebb;
  font-size: 14px;
  transition: all .3s ease-out;
}
footer ul li a:hover {
  color: #fff;
}
footer hr {
  background-color: #518ebb;
  width: 80px;
  height: 3px;
  margin: 45px auto 20px;
  border: none;
}
footer p.copy {
  font-size: 14px;
  color: #fff;
  margin: 0 0 5px;
}
footer p {
  color: #518ebb;
  font-size: 13px;
}
footer p a {
  color: #518ebb;
  transition: all .3s ease-out;
}
footer p a:hover {
  color: #fff;
}
footer .quijote {
  background: url(img/quijote.png) no-repeat;
  width: 75px;
  height: 35px;
  position: absolute;
  bottom: 70px;
  left: 50%;
  margin-left: 500px;
  background-size: 100% auto;
}
.pageheader {
  height: 300px;
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  background: linear-gradient(to right,#ffee7e 0%,#7fb8aa 32%,#5373a7 74%,#566ea6 100%);
  margin-bottom: 80px;
  position: relative;
}
.pageheader .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.pageheader h2 {
  font-size: 48px;
  color: #fff;
  font-weight: bold;
  line-height: 0.83;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.pageheader p {
  font-size: 16px;
  color: #fff;
  line-height: 1.22;
  max-width: 430px;
}
.pageheader p:after {
  width: 80px;
  height: 4px;
  background: #ffee7e;
  display: block;
  content: '';
  margin-top: 20px;
}
.pagecontent {
  margin: 50px 0;
}
.pagecontent .highlights li {
  padding-left: 180px;
  position: relative;
  margin-bottom: 40px;
}
.pagecontent .highlights li .ico {
  position: absolute;
  top: 0;
  left: 30px;
  width: 110px;
  height: 110px;
}
.pagecontent .highlights li .ico svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pagecontent .highlights li .ico .valignout {
  position: relative;
  text-align: center;
}
.pagecontent .highlights li .ico .valignout img {
  max-height: 70px;
  max-width: 70px;
}
.pagecontent .highlights h4 {
  font-size: 18px;
  font-weight: bold;
  color: #619c52;
  font-style: italic;
  font-family: 'Open Sans', sans-serif;
  margin: 0 0 5px;
}
.pagecontent .highlights p {
  color: #002644;
  font-size: 14px;
  line-height: 1.4;
}
.pagecontent .singlehl {
  height: 175px;
  padding: 0 100px 0 270px;
  position: relative;
  margin: 40px 0 50px;
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  background: linear-gradient(135deg,#619c52 0%,#f3e689 100%);
}
.pagecontent .singlehl .ico {
  width: 120px;
  height: 120px;
  text-anchor: center;
  position: absolute;
  top: 20px;
  left: 100px;
}
.pagecontent .singlehl .ico img {
  max-width: 100%;
}
.pagecontent .singlehl p {
  color: #002644;
  font-size: 18px;
  font-style: italic;
}
.pagecontent h3 {
  color: #619c52;
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
  font-family: 'Open Sans', sans-serif;
}
.pagecontent .box {
  background: linear-gradient(135deg,#619c52 0%,#f3e689 100%);
  padding: 30px 50px;
  margin: 50px 0;
}
.pagecontent .box h3 {
  color: #002a4b;
}
.pagecontent .box p {
  color: #002a4b;
  font-style: italic;
  font-weight: bold;
}
.pagecontent p {
  text-align: justify !important;
}
.pagecontent .accordion {
  margin: 0;
}
.pagecontent.canales {
  background: url(img/trama.png) no-repeat center;
  background-color: #edf2f6;
  margin: 0;
  padding: 50px 0;
}
.pageheader+.pagecontent.canales {
  margin-top: -80px;
}
.pagecontent.canales .accordion {
  text-align: center;
}
.pagecontent.canales .accordion .content {
  background: #fff;
}
.pagecontent.canales .accordion .accordion-navigation {
  margin-bottom: 10px !important;
}
.pagecontent.canales .accordion .accordion-navigation >a {
  height: 75px;
  position: relative;
  text-align: center;
  color: #fff;
  font-family: 'jauria';
  font-size: 26px;
}
.pagecontent.canales .accordion .accordion-navigation >a img {
  position: absolute;
  top: 10px;
  left: 30px;
  max-height: 55px;
}
.pagecontent.canales .accordion .accordion-navigation >a:after {
  background: url(img/acc.png) no-repeat;
  content: '';
  display: block;
  width: 42px;
  height: 40px;
  background-size: 100% auto;
  position: absolute;
  top: 15px;
  right: 30px;
}
.pagecontent.canales .accordion .accordion-navigation .content {
  padding: 0 50px;
}
.pagecontent.canales .accordion .accordion-navigation.active >a:after {
  transform: scaleY(-1);
}
.pagecontent.canales .accordion .accordion-navigation.active .content {
  padding: 30px 50px;
}
.pagecontent.canales .accordion .accordion-navigation.active .columns {
  padding-bottom: 40px;
}
.pagecontent.canales p {
  font-size: 15px;
  line-height: 1.2;
  color: #002644;
}
.pagecontent.canales h4 {
  color: #629594;
  font-size: 18px;
  font-style: italic;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
}
.pagecontent.canales h3 {
  font-size: 18px;
  color: #002644;
}
.pagecontent.canales .tel {
  color: #629594;
  letter-spacing: -1px;
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 15px;
}
.pagecontent.canales .tel:before {
  margin-right: 5px;
  width: 30px;
  height: 30px;
  background: url(img/phone2.png) no-repeat center;
  background-size: 100%;
  content: '';
  display: inline-block;
  vertical-align: middle;
}
.pagecontent.canales .tel span {
  font-weight: normal;
  font-size: 15px;
  display: block;
}
.pagecontent.canales .tel.sms:before {
  background-image: url(img/sms.png);
}
.pagecontent.canales .tel.alt {
  color: #e2994a;
}
.pagecontent.canales .tel.alt:before {
  background-image: url(img/phone2alt.png);
}
.pagecontent.canales .tel.alt2 {
  color: #c95d5d;
}
.pagecontent.canales .tel.alt2:before {
  background-image: url(img/phone2alt2.png);
}
.pagecontent.canales .box {
  background: #c95d5d;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
}
.pagecontent .social a {
  width: 35px;
  height: 35px;
  text-align: center;
  color: #fff;
  display: inline-block;
  padding-top: 4px;
  font-size: 18px;
  border-radius: 100%;
  margin: 0 5px;
}
.pagecontent .social a.fb {
  background: #3a5998;
}
.pagecontent .social a.tw {
  background: #00aced;
}
.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;
}
.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;
}
.sliderout {
  padding-bottom: 40%;
  position: relative;
  margin-bottom: 50px;
}
.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slider .bx-viewport,
.slider .bx-wrapper {
  height: 100% !important;
}
.slider ul {
  margin: 0;
  padding: 0;
  height: 100%;
}
.slider ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.slider ul li {
  position: relative;
  height: 100%;
  padding: 40px 20px;
}
.slider ul li .bg {
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slider h3 {
  background: #51aba3;
  padding: 10px 20px 10px;
  color: #fff;
  margin-left: -20px;
  display: inline-block;
  position: relative;
}
.slider .button {
  position: relative;
}
.slider .bx-pager {
  padding: 20px 0 60px;
}
.slider .bx-pager .bx-pager-item {
  display: inline-block;
  margin-right: 5px;
}
.slider .bx-pager .bx-pager-item a {
  width: 13px;
  height: 13px;
  border-radius: 100%;
  background: #51aba3;
  opacity: .4;
  display: block;
  text-indent: -3000px;
  font-size: 0;
  overflow: hidden;
  transition: all .3s ease-out;
}
.slider .bx-pager .bx-pager-item a.active {
  opacity: 1;
}
.micoope {
  border-top: 3px solid #f2f2f2;
  padding-bottom: 30px;
}
.micoope >.row {
  margin-top: -3px;
}
.micoope >.row >.columns {
  padding: 0 5px;
}
.micoope .sidebar {
  background: linear-gradient(135deg,#494a9a 1%,#9db69e 100%);
  padding: 50px 30px 40px;
  text-align: center;
  border-bottom: 3px solid #e4eaef;
}
.micoope .sidebar h2 {
  color: #ffee7e;
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 30px;
}
.micoope .sidebar h2 strong {
  font-style: normal;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
}
.micoope .sidebar label {
  color: #fff;
  margin-bottom: 5px;
  font-weight: bold;
}
.micoope .sidebar p {
  color: #fff;
  font-size: 16px;
}
.micoope .sidebar ul {
  margin: 0;
  padding: 0;
  margin: 20px auto;
  max-width: 110px;
}
.micoope .sidebar ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.micoope .sidebar ul a {
  display: block;
  color: #fff;
}
.micoope .sidebar ul a img {
  max-width: 70px;
  max-height: 60px;
  display: block;
  margin: 0 auto 5px;
}
.micoope .sidebar ul li {
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding: 20px 0;
}
.micoope .sidebar ul li:last-child {
  border-bottom: none;
}
.micoope .content {
  background: #e4eaef;
  padding: 80px 40px 40px;
  border-top: 3px solid #d8dee3;
  min-height: 471px;
  display: none;
}
.micoope .content.active {
  display: block;
}
.micoope .content h2 {
  color: #012a4b;
  font-size: 30px;
}
.micoope .content h2:after {
  width: 70px;
  height: 3px;
  background: #012a4b;
  content: '';
  display: block;
  margin: 5px 0 5px;
}
.micoope .content p {
  color: #012a4b;
  font-size: 16px;
}
.micoope .content .msg {
  color: #055d01;
  font-size: 14px;
  border: 2px solid #055d01;
  padding: 10px 20px;
  float: right;
  font-weight: 600;
}
.micoope .content .msg.error {
  border: 2px solid #f00;
  color: #f00;
}
.micoope .content table {
  margin: 30px 0;
  width: 100%;
  border: none;
  border-collapse: collapse;
}
.micoope .content table thead {
  background: #ced8e0;
}
.micoope .content table thead td {
  border: none;
  font-size: 14px;
  color: #002a4c;
  text-align: center;
}
.micoope .content table tbody tr {
  background: none;
  border-bottom: 1px solid #eee;
}
.micoope .content table tbody tr td {
  font-size: 14px;
  color: #002644;
  text-align: center;
  padding: 13px;
}
.micoope .content table tbody tr td .valor {
  color: #055d01;
}
.micoope .content table tbody tr td a {
  color: #3685fa;
}
.micoope .content table tbody tr td a:hoveR {
  text-decoration: underline;
}
.micoope .content .paga {
  background: url(img/micoop8.png) no-repeat;
  background-size: 100% auto;
  width: 20px;
  height: 20px;
}
.micoope .content textarea {
  height: 80px;
  border: none;
}
.micoope .access {
  margin: 10px -5px 0;
}
.micoope .access li {
  padding: 0 5px;
}
.micoope .access a {
  padding: 40px;
  text-align: center;
  color: #fff;
  background: #51aba3;
  display: block;
  font-family: 'jauria';
  font-size: 20px;
  line-height: 1.2;
  border-bottom: 3px solid #e4eaef;
}
.micoope .access a figure {
  height: 100px;
}
.micoope .access a figure img {
  max-width: 80px;
  max-height: 60px;
}
.micoope .access li:nth-child(2) a {
  background: #518ebb;
}
.micoope .access li:nth-child(3) a {
  background: #445e9c;
}
.tabs-content > .content.active {
  padding: 20px;
}
.micoope form {
  max-width: 500px;
}
.tabs dd > a {
  background: #fff;
  margin-right: 10px;
  transition: all .3s ease-out;
}
.tabs dd > a:hover {
  background: #518ebb;
  color: #fff;
}
.tabs dd.active >a,
.tabs dd.active >a:hover {
  background: #002a4b;
  color: #fff;
}
label.dom {
  display: block;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}
label.dom input {
  margin-bottom: 0;
  position: absolute;
  top: 5px;
  left: 0;
}
@media only screen and (max-width: 1100px) {
  .hero .micope {
    right: 20px;
    margin-right: 0;
  }
  .accesos a {
    padding: 40px 30px 35px;
  }
  .masservicios .columns {
    width: 100%;
    margin: 0 !important;
  }
  .novedades li a {
    padding: 0 25px 35px;
  }
  .novedades li a figure {
    margin: 0 -25px 15px;
  }
  footer .quijote {
    right: 20px;
    left: auto;
    margin-left: 0;
  }
}
@media only screen and (max-width: 900px) {
  .headertop .social {
    right: 20px;
  }
  .headertop .social .lab {
    display: none;
  }
  .headertop .micoope {
    left: 20px;
  }
  .headertop .tels strong {
    font-size: 22px;
    padding-top: 2px;
    letter-spacing: -1px;
  }
  .headertop .tels .lab {
    font-size: 13px;
  }
  .mobilemenu {
    width: 32px;
    height: 32px;
    display: block;
    top: 65px;
    right: 20px;
    z-index: 1501;
    position: absolute;
    padding: 0 7px;
    padding-top: 8px;
    transition: all .1s ease-out;
  }
  .mobilemenu span {
    display: block;
    height: 3px;
    background: #445e9c;
    margin-bottom: 4px;
    transform-origin: 50% 50%;
    transition: all .5s ease-out;
  }
  .menuopen .mobilemenu span:nth-child(1) {
    transform: rotate(45deg) translateX(5px) translateY(5px);
  }
  .menuopen .mobilemenu span:nth-child(2) {
    transform: rotate(-45deg) translateX(0px) translateY(0px);
  }
  .menuopen .mobilemenu span:nth-child(3) {
    opacity: 0;
  }
  .menuopen .mobilemenu span {
    background: #fff;
  }
  .fixednav .mobilemenu {
    top: 20px;
    position: fixed;
  }
  header nav {
    height: 100%;
    overflow-y: auto;
    left: 0;
    transform: translate3d(-100%,0,0);
    right: auto;
    width: 50%;
    background: #445e9c;
    position: fixed;
    overflow-x: hidden;
    transition: all .5s ease-out;
    z-index: 1500;
    top: 0 !important;
    padding: 30px 0;
    box-shadow: 0 0 0 1000px rgba(0,0,0,0);
    z-index: 10;
  }
  .menuopen header nav {
    transform: translate3d(0%,0,0);
    box-shadow: 0 0 0 1000px rgba(0,0,0,0.5);
  }
  header nav >ul>li {
    border-bottom: 1px solid #223c7a;
    padding: 0 20px 0 20px !important;
  }
  header nav >ul>li >a {
    font-weight: bold;
    padding: 15px 10px;
  }
  header nav li {
    max-height: unset !important;
  }
  header nav .menu-item-has-children>a {
    position: relative;
    padding-right: 15px;
  }
  header nav .menu-item-has-children>a:after {
    width: 10px !important;
    height: 10px;
    background: url(img/dd.png) no-repeat;
    content: '';
    display: block;
    position: absolute;
    top: 15px;
    right: 0;
    margin: 0 !important;
  }
  header nav .menu-item-has-children.open>a:after {
    transform: rotate(180deg);
  }
  header nav ul {
    float: none;
    margin: 0;
  }
  header nav ul li,
  header nav ul li ul li {
    float: none;
    padding: 0 0 0 20px;
    display: block;
    margin-bottom: 0px;
    height: auto !important;
  }
  header nav ul li a,
  header nav ul li span,
  header nav ul li ul li a,
  header nav ul li ul li span {
    padding: 10px 10px;
    line-height: 130% !important;
    color: #fff;
    height: auto !important;
    display: block;
    white-space: normal;
  }
  header nav ul li a:hover,
  header nav ul li a:focus,
  header nav ul li span:hover,
  header nav ul li span:focus,
  header nav ul li ul li a:hover,
  header nav ul li ul li a:focus,
  header nav ul li ul li span:hover,
  header nav ul li ul li span:focus {
    color: #fff;
  }
  header nav ul li a:after,
  header nav ul li span:after,
  header nav ul li ul li a:after,
  header nav ul li ul li span:after {
    display: none;
  }
  header nav ul li.open >ul,
  header nav ul li ul li.open >ul {
    max-height: 800px;
    padding: 10px 0 !important;
  }
  header nav ul li ul,
  header nav ul li ul li ul {
    position: relative;
    background: none;
    top: auto;
    left: auto;
    padding: 0px !important;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    border: none !important;
    margin: 0;
  }
  header nav ul li ul li,
  header nav ul li ul li ul li {
    height: auto;
    white-space: normal;
    padding-left: 20px;
  }
  header nav ul li ul li a,
  header nav ul li ul li ul li a {
    padding: 7px 10px;
    white-space: normal;
    text-transform: none;
    font-size: 14px;
  }
  .hero .micope {
    width: 250px;
    padding: 50px 20px 40px;
  }
  .accesos a {
    padding: 20px 10px;
    height: 235px;
  }
  .accesos ul {
    margin: 0 -20px;
  }
  .masservicios {
    padding-bottom: 100px;
  }
  .masservicios ul {
    margin: 0;
  }
  .masservicios li .ico {
    width: auto;
    padding-bottom: 100%;
    height: auto;
  }
  .masservicios li .ico .valignout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
  }
  .masservicios li .ico img {
    max-width: 100%;
  }
  .masservicios li a {
    font-size: 15px;
    max-width: 100px;
    margin: 0 auto;
  }
  .novedades {
    padding-bottom: 100px;
  }
  .novedades li a {
    padding: 0 20px 20px;
  }
  .novedades li a figure {
    margin: 0 -20px 15px;
  }
  .novedades li a h2 {
    font-size: 26px;
  }
  .novedades li a p {
    font-size: 14px;
  }
  footer .medium-8 {
    width: 100%;
    margin: 0 !important;
  }
}
@media only screen and (max-width: 640px) {
  .headertop .micoope {
    left: 10px;
  }
  .headertop .social {
    display: none;
  }
  .headertop .tels {
    text-align: right;
  }
  .headertop .tels .t {
    margin: 0 0 0 15px;
  }
  .headertop .tels .t:before {
    display: none !important;
  }
  .headertop .tels .t .lab {
    display: block;
    font-size: 11px;
  }
  .headertop .tels .t .lab br {
    display: none;
  }
  .headertop .tels .t strong {
    font-size: 18px;
  }
  header h1 {
    left: 20px;
  }
  header nav {
    width: 80%;
  }
  .hero {
    height: auto;
  }
  .hero ul li {
    height: 300px;
    padding-top: 50px;
  }
  .hero ul li .bg {
    height: 130%;
  }
  .hero ul li h2 {
    font-size: 32px;
  }
  .hero .micope {
    position: relative;
    right: auto;
    width: auto;
    top: auto;
    background: #002a4b;
    padding: 20px;
  }
  .hero .micope:before {
    display: none;
  }
  .hero .micope .button {
    width: 45%;
    padding: 15px 20px;
  }
  .hero .micope p {
    max-width: 100%;
    font-size: 14px;
    margin-top: 20px;
  }
  .accesos {
    margin-top: 0;
  }
  .accesos ul {
    margin: 0 -20px;
  }
  .accesos ul li {
    padding: 0;
  }
  .accesos a {
    padding: 20px 20px 30px;
  }
  .accesos a .icob {
    display: none;
  }
  .accesos a p {
    margin-bottom: 0;
    font-size: 14px;
  }
  .masservicios {
    margin: 0;
    padding: 60px 0;
  }
  .masservicios li:last-child {
    margin-left: 33.33%;
  }
  .sectiontitle {
    font-size: 26px;
  }
  .novedades {
    padding: 40px 0;
  }
  .novedades ul {
    margin: 0 -20px 20px;
  }
  .novedades li {
    padding: 0;
    padding-bottom: 10px;
  }
  .usoeficiente {
    padding: 40px 0;
  }
  .usoeficiente h2 {
    font-size: 22px;
  }
  .usoeficiente p {
    font-size: 15px;
  }
  footer {
    padding: 40px 0;
  }
  footer ul {
    margin-bottom: 20px;
  }
  footer .quijote {
    position: relative;
    right: auto;
    margin: 20px auto 0;
    bottom: 0;
    display: block;
  }
  .pagecontent.canales .accordion .accordion-navigation >a {
    height: auto;
    text-align: left;
    padding: 10px 30px 10px 10px;
    min-height: 50px;
    font-size: 18px;
  }
  .pagecontent.canales .accordion .accordion-navigation >a:after {
    width: 24px;
    height: 24px;
    background-size: 100% auto;
    top: 12px;
    right: 10px;
  }
  .pagecontent.canales .accordion .accordion-navigation .content {
    padding: 0 20px;
  }
  .pagecontent.canales .accordion .accordion-navigation.active .content {
    padding: 20px;
  }
  .pagecontent .singlehl {
    height: auto;
    padding: 20px;
  }
  .pagecontent .singlehl .ico {
    position: relative;
    margin: 0 auto;
    top: auto;
    left: auto;
    height: auto;
    margin-bottom: 15px;
  }
}
/*CHATBOOT*/

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  background-color: #002a4b; /* Fondo azul */
  border-radius: 50px; /* Bordes redondeados */
  padding: 10px 20px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  color: #fff; /* Texto en blanco */
  text-decoration: none;
}

.whatsapp-text {
  margin-right: 10px; /* Separación entre el texto y el ícono */
  font-size: 16px; /* Tamaño de letra */
  color: #fff; /* Color blanco del texto */
}

/* Asegúrate de que el color del texto no cambie en el estado hover */
.whatsapp-float:hover .whatsapp-text {
  color: #fff; /* Mantiene el texto blanco al hacer hover */
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

/* Si también tienes un estilo de hover para el ícono, puedes modificarlo aquí */
/*.whatsapp-float:hover img {
   Si quieres cambiar el ícono al hacer hover, ajusta aquí 
 
}*/

@media (max-width: 768px) {
  .whatsapp-text {
      display: none; /* Oculta el texto en pantallas pequeñas */
  }

  .whatsapp-float {
      padding: 10px; /* Ajusta el tamaño del botón */
  }
}