/*=====================*/
/*=== CSS SCREEN (inicio) ===*/
/*=====================*/

@media screen{

body{
	font-size: 14px;
	font-family: 'Ubuntu', sans-serif!important;
	background: #fff;
	color: #434343;
}

h1,h2,h3,h4,h5,h6{
	margin: 0;
	padding: 0;
	font-family: 'Ubuntu', sans-serif!important;
}

b, strong{
	font-weight: 700;
}

i, em{
	font-style: italic;
}

a:hover{
	cursor: pointer;
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.mobile_block {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: ' ';
}

.sop-mapa{
	position: relative;
}

.color_00{
	color: #003d7b;
}

.color_01{
	color: #666666;
}

.color_02{
	color: #b1d6ff;
}

.color_white{
	color: #ffffff !important;
}

.bg_white{
	background: #ffffff !important;
}

.img-responsive{
	display: inline-block !important;
}

.modal{
	z-index: 1054;
}

.grayscale_filter{
	-webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.p-x-0{
	padding-left: 0px;
	padding-right: 0px;
}

.p-r-0{
	padding-right: 0px;
}

.p-l-0{
	padding-left: 0px;
}

.m-x-0{
	margin: 0;
}


/* ====== HOVERS ====== */

/* Opacity */
.hvr-opacity{
	opacity: 1;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;	
}

.hvr-opacity:hover, .hvr-opacity:focus, .hvr-opacity:active{
	opacity: 0.5;
}

/* Grow */
.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

/* Bounce In */
.hvr-bounce-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.hvr-bounce-in:hover, .hvr-bounce-in:focus, .hvr-bounce-in:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Underline From Left */
.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #000;
  height: 2px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
  right: 0;
}


/* ====== BOTON IR ARRIBA ====== */

.go-up{
	position: fixed;
	bottom: 30px;
	right: 30px;
}

.go-up-hide{
	display: none;
}

.go-up-show{
	display: block;
}

.go-up-btn{
	background: #fff;
	color: #000;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	padding: 9px 0 0 0;
	margin: 0px 0 0px 0;
	cursor: pointer;
	display: block;
	-webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow:    0px 0px 3px 0px rgba(0, 0, 0, 0.3);
	box-shadow:         0px 0px 3px 0px rgba(0, 0, 0, 0.3);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.go-up-btn .fa{
	font-size: 21px;
	line-height: 21px;
	font-weight: 400;
}

/* ====== POPUP PREHOME ====== */

.popup_prehome iframe{
	width: 100%;
}

/* ====== TITULOS ====== */

.title, .content .title{
	font-size: 44px;
	line-height: 48px;
	letter-spacing: -0.025em;
	font-weight: 300;
	color: #003d7b;
	text-transform: none;
	text-align: center;
	margin-bottom: 50px;
}

.title_sep, .title_sep_white{
	text-align: center;
	width: 30px;
	height: 3px;
	background: #3e3e3e;
	margin: 0px auto 50px auto;
}

.title_sep_white{
	background: #fff !important;
}

.content .texto img{
  width: 100%;
  height: auto;
  display: inline-block;
}

/* ====== LOADING ====== */

.sk-circle {
  margin: 0px auto 30px auto;
  width: 40px;
  height: 40px;
  position: relative;
}

.form_news_home .sk-circle{
	margin: 0px auto 0px auto;
	width: 30px;
	height: 30px;
}

.sk-circle .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.sk-circle .sk-child:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #000;
  border-radius: 100%;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
          animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.form_news_home .sk-circle .sk-child:before {
  background-color: #fff;
}

.sk-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg); }
.sk-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
      -ms-transform: rotate(60deg);
          transform: rotate(60deg); }
.sk-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg); }
.sk-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
      -ms-transform: rotate(120deg);
          transform: rotate(120deg); }
.sk-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
      -ms-transform: rotate(150deg);
          transform: rotate(150deg); }
.sk-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg); }
.sk-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
      -ms-transform: rotate(210deg);
          transform: rotate(210deg); }
.sk-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
      -ms-transform: rotate(240deg);
          transform: rotate(240deg); }
.sk-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg); }
.sk-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
      -ms-transform: rotate(300deg);
          transform: rotate(300deg); }
.sk-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
      -ms-transform: rotate(330deg);
          transform: rotate(330deg); }
.sk-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s; }
.sk-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
          animation-delay: -1s; }
.sk-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s; }
.sk-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s; }
.sk-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s; }
.sk-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s; }
.sk-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s; }
.sk-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s; }
.sk-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s; }
.sk-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s; }
.sk-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s; }

@-webkit-keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  } 40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  } 40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* ====== SEARCH ====== */

#bck_black_search{
	position: fixed;
	background-color: rgba(0, 0, 0, 0.6) !important;
	height: 100%;
	width: 100%;
	top: 0px;
	left: 0px;
	z-index: 1030;
	display: none;
}

.search_btn{
	display: block;
	float: right;
	background: #fff;
	color: #222222;
	padding: 0px;
	text-align: center;
	text-decoration: none !important;
	margin: 35px 0px 0 15px;
	border-radius: 50%;
	padding: 4px 0 0 0;
	width: 30px;
	height: 30px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.search_btn:hover{
	color: #fff !important;
	background: #222;
}

.search_btn i{
	font-size: 13px;
}

.panel_search {
    height: 130px; /* 100% Full-height */
    width: 100%; /* 0 width - change this with JavaScript */
    padding: 0px 30px;
    margin: 0 0px 0 0;
    position: absolute; /* Stay in place */
    z-index: 1057; /* Stay on top */
    top: -350px;
    left: 0px;
    background-color: #ebebeb; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
	-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
	-moz-box-shadow:    0 3px 9px rgba(0, 0, 0, 0.5);
	box-shadow: 		0 3px 9px rgba(0, 0, 0, 0.5);
}

.panel_search .text{
	background: transparent;
	border: 0px;
	font-size: 40px;
	line-height: 40px;
	font-weight: 100;
	outline: none !important;
	width: 85%;
	padding: 0 0 0px 0;
	margin: 5px 0 0 0;
	font-family: "Lato";
	color: #555;
	height: 110px;
	float: left;
}

.panel_search input:-webkit-autofill, .panel_search input:-webkit-autofill:focus, .panel_search input:-webkit-autofill:active, .panel_search input:-webkit-autofill:hover {
    -webkit-box-shadow:0 0 0 100px #ebebeb inset!important;
    -webkit-text-fill-color: #555;
}

.panel_search .buttons{
	width: 15%;
	float: left;
	margin-top: 46px;
}

.panel_search .buttons a{
	display: block;
	float: right;
	width: 30px;
	height: 30px;
	margin-left: 20px;
}

.panel_search .buttons a .hvr-grow:hover, .panel_search .buttons a .hvr-grow:focus, .panel_search .buttons a .hvr-grow:active {
  -webkit-transform: scale(1.16) !important;
  transform: scale(1.16) !important;
}

.panel_search input#str::-webkit-input-placeholder {
   color: #555;
}
.panel_search input#str:-moz-placeholder { /* Firefox 18- */
   color: #555;  
}
.panel_search input#str::-moz-placeholder {  /* Firefox 19+ */
   color: #555;  
}
.panel_search input#str:-ms-input-placeholder {  
   color: #555;
}

/* ====== HEADER ====== */

#header{
	background: #fff;
	padding: 15px 30px;
	height: 160px;
	position: relative;
}

#header .logo{
	float: left;
	position: relative;
}

#header .logo a{
	display: block;
}

#header .logo_edit{
	border: 1px dashed #000;
}

.admin_img_size{
	color: #000;
}

#header_fixed{
	background: #fff !important;
	position: fixed;
	width: 100%!important;
	padding: 0px 0px;
	left: 0px;
	height: 115px;
	z-index: 1020;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#header_fixed .logo{
	float: left;
}

#header_fixed .menu{
	margin: 15px auto 0px;
}

#header_fixed  .nav_menu > li > a{
	padding: 10px 6px !important;
}

#header_fixed ul.nav_menu {
    margin: 25px 0px 0 0;
    padding: 0px 0px 0px 60px;
    float: left;
    width: 375px;
}

#header_fixed ul.nav_menu_2 {
  padding: 0;
}

.header_fixed_anim{
	top: -115px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.header_fixed_anim2{
	top: 0px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* ====== MENU ====== */

.menu {
    margin: 0px auto;
    position: relative;
    float: none;
    display: table!important;
}

#header ul.nav_menu {
    margin: 40px 0px 0 0;
    padding: 7px 0;
    float: left;
    width: 375px;
}

.nav_menu >li+li{
	margin-left: 0px;
}

.nav_menu > li > a{
	color: #555555;
	border-radius: 0px !important;
	padding: 15px 0px 18px 0px !important;
	margin: 0 0px 0 0px;
	font-size: 11px;
	line-height: 13px;
	letter-spacing: 0.1em;
	font-weight: 400;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.nav_menu > li > a:hover,
.nav_menu > li > a:focus {
  text-decoration: none;
  background: none;
  color: #043c79;
}

.nav_menu > li.active > a,
.nav_menu > li.active > a:hover,
.nav_menu > li.active > a:focus{
	color: #043c79;
	font-weight: 700;
	background: none;
}

.nav_menu .open > a,
.nav_menu .open > a:hover,
.nav_menu .open > a:focus {
  background: none !important;
  color: #043c79;
  border-color: none;
}

#header ul.nav_menu_2,
#header_fixed ul.nav_menu_2 {
  width: 425px;
  padding-left: 5px;
}

.nav_menu_2 > li > a{
  color: #555555;
  border-radius: 0px !important;
  padding: 15px 6px 18px 5px !important;
  margin: 0 0px 0 0px;
  font-size: 11px;
  line-height: 13px;
  letter-spacing: 0.1em;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#header_fixed .nav_menu_2 > li > a {
    padding: 10px 5px !important;
  }

.nav_menu_2  li:last-child > a{
  background: #003d7b;
  color:#fff;
  padding: 10px 5px !important;
  white-space: nowrap
}

.nav_menu_2  li:last-child > a:hover{
  background: #b1d6ff;
  color: #003d7b;
}

.submenu_dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  right: auto;
  text-align: center;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px; 
  /*width: 100% !important;*/
  padding: 0px 0;
  margin: 0px 0 0 0;
  font-size: 12px;
  line-height: 12px;
  list-style: none;
  background-color: #fff;
  border: none !important;
  border-radius: 0px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.nav_menu > li:last-child .submenu_dropdown{
	right: 0px;
	left: auto;
	-webkit-transform: translate(0, 0) !important;
	transform: translate(0, 0) !important;
}

.submenu_dropdown:after {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #ffffff;
	border-width: 5px;
	margin-left: -5px;
}

.nav_menu > li:last-child .submenu_dropdown:after{
	left: auto;
	right: 20%;
}


.submenu_dropdown > li > a {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;	
	display: block;
	padding: 12px 15px;
	clear: both;
	font-weight: 400;
	line-height: 1.428571429;
	color: #000;
	white-space: nowrap;
	text-align: center;
	text-transform: uppercase;
	filter:none !important;
	background-image: none !important; 
}

.submenu_dropdown > li:last-child{
	display: none;
}

.submenu_dropdown > li > a:hover,
.submenu_dropdown > li > a:focus{
  color: #000;
  text-decoration: none;
  background-color: #e7e7e7;
}

.submenu_dropdown > .active > a,
.submenu_dropdown > .active > a:hover,
.submenu_dropdown > .active > a:focus {
  color: #000;
  font-weight: 700;
  text-decoration: none;
  background-color: #fff;
  outline: 0;
}	

.submenu_dropdown .divider {
	height: 1px;
	margin: 0px 0;
	overflow: hidden;
	background-color: #e7e7e7;
}

.nav_submenu >li+li{
	margin-left: 0px;
}

.nav_submenu > li:last-child > a{
	border-right: 0px solid #fff;
}

.nav_submenu > li > a{
	border-right: 1px solid #fff;
	color: #000;
	border-radius: 0px !important;
	padding: 20px 0 !important;
	margin: 0 0px 0 0px;
	font-size: 12px;
	line-height: 12px;
	font-weight: 400;
	text-transform: uppercase;
	background: #dfdfdf;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.nav_submenu > li > a:hover,
.nav_submenu > li > a:focus {
  text-decoration: none;
  background: #d2d2d2;
  color: #000;
}

.nav_submenu > li.active > a,
.nav_submenu > li.active > a:hover,
.nav_submenu > li.active > a:focus{
	color: #000;
	font-weight: 700;
	background: #dfdfdf;
	cursor: default;
}

/*=== ===*/

.navbar-toggle {
  overflow: hidden;
}
.navbar-toggle .icon-bar {
	border-radius: 0px !important;
	background-color: #555555;
  -webkit-transition: opacity, -webkit-transform;
  transition: opacity, -webkit-transform;
  transition: opacity, transform;
  transition: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0, 0.7);
          transition-timing-function: cubic-bezier(0.7, 0, 0, 0.7);
}
.navbar-toggle:not(.collapsed) .icon-bar:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(45deg);
          transform: translateY(6px) rotate(45deg);
}
.navbar-toggle:not(.collapsed) .icon-bar:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.navbar-toggle:not(.collapsed) .icon-bar:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
          transform: translateY(-6px) rotate(-45deg);
}

.navbar-toggle .icon-bar{
	width: 18px;
}

.menu_mobile_btn {
    float: right;
    z-index: 9999;
    color: #555555;
    padding: 0px 0 !important;
    margin: 20px 0 0 0px;
    font-size: 22px;
    line-height: 22px;
    position: absolute;
    top: 45px;
    right: 25px;
    font-weight: 400;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menu_mobile_btn:hover, .menu_mobile_btn:focus{
	color: #fff !important;
	text-decoration: none !important;
}

ul.menu_collapse{
	margin: 0px !important;
	padding: 0px !important;
	text-align: center;
}

ul.menu_collapse li{
	margin: 0px !important;
	padding: 0px 0 0px 0 !important;
	list-style: none;
	border-bottom: 1px solid #e7e7e7;
	background: #fff;
}

ul.menu_collapse>.active{
	background: #e7e7e7;
}

ul.menu_collapse>.active>a, ul.menu_collapse>.active>a:hover, ul.menu_collapse>.active>a:focus{
}

ul.menu_collapse li a{
	display: block;
	margin: 0px !important;
	padding: 20px 0 20px 0 !important;
	list-style: none;
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
	text-transform: uppercase;
	color: #043c79;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;	
}

ul.menu_collapse li a:hover, ul.menu_collapse li a:focus{
	text-decoration: none;
	color: #043c79;
}

ul.menu_collapse li a i{
 	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}


.submenu_collapse_sop{
}

ul.submenu_collapse{
	margin: 0px 0 0px 0 !important;
	padding: 0px !important;
	text-align: center;
}

ul.submenu_collapse li{
	margin: 0px !important;
	padding: 0px 0 0px 0 !important;
	list-style: none;
	border-bottom: 1px solid #b5b5b5;
	background: #c4c4c4;
}

ul.submenu_collapse>.active{
}

ul.submenu_collapse>.active>a, ul.submenu_collapse>.active>a:hover{
	color: #fff;
}

ul.submenu_collapse li a{
	margin: 0px !important;
	padding: 20px 0 20px 0 !important;
	list-style: none;
	font-size: 16px;
	line-height: 16px;
	font-weight: 400;
	text-transform: uppercase;
	color: #000;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;	
}

ul.submenu_collapse li a:hover, ul.submenu_collapse li a:focus{
	text-decoration: none;
	color: #606060;
}

/* ====== MODULO HIGHLIGHTED 1 - SLIDE HOME / CAROUSEL ====== */

.carousel-video iframe{
	width: 100%;
}

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

.carousel-img img{
	display: inline-block;
}

.carousel-caption{
	position: absolute;
	bottom: 0px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	left: 50%;
	width: 100%;
	z-index: 10;
	padding-top: 30px;
	padding-bottom: 70px;
	padding-left: 250px;
	padding-right: 250px;
	text-align: center;
	text-shadow: none !important;
	color: #fff;
	background-color: rgb(0, 0, 0) !important;
	background-color: rgba(0, 0, 0, 0.6) !important;	
}	

.carousel-caption h2{
	text-transform: uppercase;
	font-size: 32px;
	line-height: 36px;
	font-weight: 700;
	color: #fff;
	margin: 0px 0 0px 0;
	padding: 0px;
}

.carousel-caption p{
	font-size: 13px;
	line-height: 18px;
	font-weight: 400;
	padding: 0 15px 0 15px;
	margin: 15px 0 0 0;
}

.carousel_control{
	position: absolute;
	top: 0px;
	height:100%;
	width: 150px;
	display: block;
	z-index: 15;
}

.carousel_control.left{
	left: 0px;
	opacity: 0;
	background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.0001)));
	background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.2) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%));
	background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.0001) 100%);
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.0001) 100%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;	
}

.carousel_control.right {
	right: 0px;
	opacity: 0;
	background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.2)));
	background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.2) 100%));
	background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.2) 100%);
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.2) 100%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#carousel_slide_home:hover .carousel_control{
	opacity: 1;
}

.carousel_control img{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.carousel_control.left img{
	left: 30px;
}

.carousel_control.right img{
	right: 30px;
}

.carousel-indicators {
	position: absolute;
	bottom: 15px;
	left: 50%;
	margin-left: 0px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 15;
	width: 60%;
	padding-left: 0;
	text-align: center;
	list-style: none;
}

.carousel-indicators li {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0px 4px 0 4px;
	text-indent: -999px;
	cursor: pointer;
	border: 1px solid #fff;
	background-color: rgb(255, 255, 255) !important;
	background-color: rgba(255, 255, 255, 0) !important;	
	border-radius: 10px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;	
}

.carousel-indicators li:hover {
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
	border: 1px solid #fff;
	background-color: rgb(255, 255, 255) !important;
	background-color: rgba(255, 255, 255, 0.5) !important;	
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;	
}

.carousel-indicators .active, .carousel-indicators .active:hover {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	width: 10px;
	height: 10px;
	margin: 0px 4px 0 4px;
	background-color: rgb(255, 255, 255) !important;
	background-color: rgba(255, 255, 255, 1) !important;	
	border: 1px solid #fff;
	cursor: default;
}



/* ====== MODULO HIGHLIGHTED 3 - ICONOS HOME ====== */

.sop_home_iconos{
	position: relative;
	padding:0;
	background: #fff;
	text-align: center;
	height: 400px;
}

.sop_home_iconos .col-titulo{
	background: #b1d6ff;
	position: relative;
	height: 400px;
}

.sop_home_iconos .col-titulo .title{
    color: #3d3d3d;
    text-transform: none;
    text-align: center;
    margin-bottom: 20px;
    width: 40%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.sop_home_iconos .col-texto {
    padding: 80px 40px;
    background: #3d3d3d;
}

.sop_home_iconos .title_sep{
	margin-bottom: 30px;
}

.sop_home_iconos .ico {
    margin-bottom: 60px;
    text-align: left;
    position: relative;
}

.sop_home_iconos .ico a {
    width: 100%;
    text-decoration: none;
}

.sop_home_iconos .ico figure{
	display: inline-block!important;
}

.sop_home_iconos .ico img {
    width: 40px;
}

.sop_home_iconos .ico h2 {
    text-decoration: none !important;
    font-size: 17px;
    line-height: 1.590909090909091;
    letter-spacing: -0.025em;
    font-weight: 400;
    color: #fff;
    display: inline-block;
    margin-left: 20px;
    text-transform: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* ====== MODULO HIGHLIGHTED 12 - CUMPLEAÑOS ====== */

.sop_cumpleanios{
	background: #fff;
	height: 400px;
}

.sop_cumpleanios .col-titulo{
	background: #fff;
	position: relative;
    text-align: center;
}

.cumple-Carousel{
	height: 140px;
}

.sop_cumpleanios .col-titulo .title{
    color: #003d7b;
    text-transform: none;
    text-align: center;
    margin-bottom: 20px;
    width: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.sop_cumpleanios .col-texto{
	background: #f2f2f2;
	position: relative;
	float: right;
}

.sop_cumpleanios .col-texto .mes{
	font-size: 22px;
	line-height: 48px;
	letter-spacing: -0.025em;
	font-weight: 300;
	color: #003d7b;
	border-top: 1px solid #b7b7b7;
	border-bottom: 1px solid #b7b7b7;
	margin-bottom: 25px;
}

.sop_cumpleanios .col-texto .cumples{
	height: 250px;
	position: absolute;
	width: 100%;
	margin-top: 40px;
}

.sop_cumpleanios .col-texto .cumples .soporte{
	height: 250px;
}


#carousel_cumpleanios{
	height: 400px;
	margin: 70px 90px;
}

.flechas-carousel-cumpleanios{
	display: block;
	position: relative;
}

.flechas-carousel-cumpleanios .carousel_cumples_control.right{
	float: right;
	margin-right: -40px;
}

.flechas-carousel-cumpleanios .carousel_cumples_control.left{
	float: left;
	margin-left: -40px;
}

.carousel_cumples_control.left, .carousel_cumples_control.right {
    background-image:none; 
}

.no-cumple{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #003d7b;
}

.f-izq{
	position: absolute;
    left: -45px;
    top: 260px;
}

.f-der{
	position: absolute;
    right: -45px;
    top: 260px;
}

.item-cumple .soporte{
	height: 150px;
	overflow: hidden;
	max-height: 150px;
}


/* ====== 37 CAROUSEL MULTIPLE ====== */

.sop_home_carousel_multiple{
	padding: 20px;	
	position: relative;
	background: #000;
	margin-bottom: 30px;
}

.sop_home_carousel_multiple .mod a{
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.sop_home_carousel_multiple .con-link{
	cursor: pointer;
}

.sop_home_carousel_multiple .carousel_control_2{
	margin: 0px 0 0 0;
	color: #003d7b;
	display: inline-block;
	text-decoration: none !important;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.sop_home_carousel_multiple .carousel_control_2:hover{
	color: #999;
}

.carousel-inner.onebyone-carosel { margin: auto; width: 100%; }
.onebyone-carosel .active.left { left: -50%; }
.onebyone-carosel .active.right { left: 50%; }
.onebyone-carosel .next { left: 50%; }
.onebyone-carosel .prev { left: -50%; }

.carousel-inner.onebyone-carosel-cumple { margin: auto; width: 100%; }
.onebyone-carosel-cumple .active.left { left: -25%; }
.onebyone-carosel-cumple .active.right { left: 25%; }
.onebyone-carosel-cumple .prev { left: -25%; }
.onebyone-carosel-cumple .next { left: 25%; }


/* ====== MODULO HIGHLIGHTED 6 - TEXTO DESTACADO HOME ====== */

.sop_home_texto_destacado{
	position: relative;
	padding: 0;
	text-align: center;
	height: 400px;
}

.col-titulo{
	background: #003d7b;
	position: relative;
	width: 35%;
	color: #b1d6ff;
	height: 400px;
	display: inline-block;
}

.sop_home_texto_destacado .title {
    color: #b1d6ff;
    text-transform: none;
    text-align: center;
    margin-bottom: 20px;
    width: 40%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.col-texto{
	display: inline-block;
	background: #fff;
	width: 65%;
	color: #666666;
	height: 400px;
	position: relative;
}

.sop_home_texto_destacado p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: #666666;
    margin: 0px;
    padding: 0px;
    width: 74%;
    letter-spacing: 0.025em;
    position: absolute;
    left: 95px;
    top: 33%;
    transform: translateY(-50%);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* ====== MODULO HIGHLIGHTED 2 - ACCESOS DESTACADOS HOME /// MODULO LISTADOS DE CONTENIDOS ====== */

.sop_home_destacados{
	position: relative;
	padding: 0;
	background: #fff;
	height: 750px;
}

.sop_home_destacados .col-titulo{
	background: #fff;
	position: relative;
	height: 750px;
}

.sop_home_destacados .col-titulo .title{
    color: #003d7b;
    text-transform: none;
    text-align: center;
    margin-bottom: 20px;
    width: 40%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.sop_home_destacados .col-texto{
	background: #f2f2f2;
	padding: 60px 90px;
	position: relative;
	height: 750px;
	overflow: hidden;
}

.home_destacados,
.list_contents .mod {
  /*max-width: 400px;*/
  margin: 0 auto 130px;
  display: table;
}

.list_subsections{
	margin-bottom: 70px;	
}

.home_destacados .title_sep,
.list_contents .mod .title_sep,
.list_subsections .mod .title_sep{
	width: 20px;
	height: 2px;
	margin: 0px 0px 20px 0px;	
}

.list_subsections .mod .title_sep{
	margin: 0 auto;
}

.home_destacados a,
.list_contents .mod a,
.list_subsections .mod a{
	text-decoration: none !important;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.list_contents .mod .img .default{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.home_destacados .text,
.list_contents .mod .text,
.list_subsections .mod .text{
	color: #3e3e3e;
}

.home_destacados img {
  max-width: 400px;
  width: 100%;
}

.home_destacados figure {
  margin: 0 auto;
  display: table;
  text-align: center;
}

.home_destacados .text h1,
.list_contents .mod .text h1,
.list_subsections .mod .text h1{
	font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.025em;
    font-weight: 300;
    color: #003d7b;
    text-transform: none;
    margin-top: 30px;
    margin-bottom: 25px;
    margin-right: 0px;
    margin-left: 0px;
	text-align: left !important;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.home_destacados:hover .text h1{
	color: #666666;
}

.list_subsections .mod .text h1{
	text-align: center !important;
}

.home_destacados .text p,
.list_contents .mod .text p,
.list_subsections .mod .text p {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.025em;
    font-weight: 400;
    margin-top: 10px;
    color: #666666;
}

.home_destacados .text span,
.list_contents .mod .text span,
.list_subsections .mod .text span{
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	text-transform: none;
	color: #003d7b;
	margin: 10px 0 0 0;
	padding: 0 0 15px 0;
	text-decoration: none !important;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;	
}

.home_destacados .text span:hover,
.list_contents .mod .text span:hover,
.list_subsections .mod .text span:hover{
	color: #000;
}

/* ====== MODULO HIGHLIGHTED 7 - CONTACTO ====== */

.sop_mod_contacto{
	background: #fff;
	height: 500px;
	overflow: hidden;
}

.sop_mod_contacto .col-titulo{
	height: 500px;
}

.sop_mod_contacto .col-titulo .title{
    color: #b1d6ff;
    text-transform: none;
    text-align: center;
    margin-bottom: 20px;
    width: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.sop_mod_contacto .col-texto{
	height: auto;
}

.sop_mod_contacto .col-texto iframe{
	width: 100%;
	height: 500px;
}

.mod_contacto{
	text-align: left;
}

.mod_contacto .title_sep_white{
	width: 20px;
	height: 2px;
	margin: 0px 0px 20px 0px;
}

.mod_contacto .text{
	margin-top: 75px;
}

.mod_contacto .text h3{
	text-align: left;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 0px;
    margin-left: 0px;
    color: #cacaca;
}

.mod_contacto .text p{
	font-size: 12px;
	line-height: 28px;
	font-weight: 600;
	text-align: left;
	margin-top: 10px;
}

.mod_contacto .text a{
	color: #cacaca;
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;	
}

.mod_contacto .text a:hover{
	color: #fff;
}

.mod_contacto .map iframe{
	width: 100%;
	display: block;
}

.contacto .title{
	position: relative;	
	color: #b1d6ff!important;
}

.contacto h2{
    font-size: 24px;
    text-align: center;
    margin-top: -25px;
}

.codigo-error{
	color: #f00;
	font-weight: 700;
	margin-bottom: 20px;
}

.contacto .col-titulo{
	padding: 80px;
	float: left;
	height: auto;
}

.contacto .col-texto{
    padding: 60px 90px 90px;
	height: auto;
}

.alert-success {
    /*margin-top: -30px;*/
    /*margin-bottom: 40px;*/
}

.social{
	width: 25px;
	height: 25px;
	background: #b8b8b8;
	padding: 1px 0px 0 0;
	margin: 18px 17px 0 0px;
	overflow: hidden;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.social i{
	color: #f2f2f2;
	font-size: 13px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.social:hover{
	background: #003d7b;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.social:hover i{
	font-size: 15px;
	color: #fff !important;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}


/* ====== MODULO HIGHLIGHTED 8 - VIDEO ====== */

.sop_home_video{
	position: relative;
	padding: 80px 0px 100px 0px;
	background: #555555;
	color: #cacaca;
	text-align: center;
}

.sop_home_video iframe{
	width: 100%;
}

.sop_home_video a.btn{
	color: #fff;
	background: #333;
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 0px !important;
	font-size: 12px;
	line-height: 12px;
	letter-spacing: 0.05em;
	font-weight: 400;
	padding: 15px;
	margin: 30px 0 0 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.sop_home_video a.btn:hover{
	background: #000;
	color: #fff;
}

/* ====== NEWSLETTER HOME ====== */

.form_news_home{
	position: relative;
	padding: 30px 0px 30px 0px;
	background: #111111;
	color: #cacaca;
	text-align: center;
}

.form_news_home h3{
	font-size: 12px;
	line-height: 12px;
	font-weight: 400;
	text-transform: uppercase;
}

.form_news_home .form-group{
  margin: 0 15px 0 0;
}

.form_news_home .form-control:-moz-placeholder {
  color: #a2a2a2;
}

.form_news_home .form-control::-moz-placeholder {
  color: #a2a2a2;
}

.form_news_home .form-control:-ms-input-placeholder {
  color: #a2a2a2;
}

.form_news_home .form-control::-webkit-input-placeholder {
  color: #a2a2a2;
}

.form_news_home .form-control {
  display: block;
  width: 250px;
  height: 100%;
  padding: 12px 12px;
  font-size: 12px;
  line-height: 1.428571429;
  color: #a2a2a2;
  vertical-align: middle;
  background-color: #404040;
  border: 0px solid #d3d3d3;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 00);
          box-shadow: inset 0 0px 0px rgba(0, 0, 0, 00);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
          transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;	
	transition: all 0.2s ease-in-out;
}

.form_news_home .form-control:hover {
	background-color: #4d4d4d;
}

.form_news_home .form-control:focus {
	color: #a2a2a2;
	background-color: #4d4d4d;
  outline: 0;
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(0, 0, 0, 0);
          box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(0, 0, 0, 0);
}

.form_news_home .btn{
	text-transform: uppercase;
	border-radius: 0px;
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	color: #727272;
	padding: 2px 0 0 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;	
	transition: all 0.2s ease-in-out;
}

.form_news_home .btn:hover{
	color: #fff;
}

/* ====== FOOTER // MENU ====== */

.footer_menu_sop{
	background: #2a2a2a;
	padding-top: 50px;
	padding-bottom: 50px;
	text-align: center;
	position: relative;
}

ul.footer_menu{
	margin: 0px 0px 0;
	padding: 0px 0 0 80px;
	-webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
    text-align: left;
}

ul.footer_menu li{
	list-style: none;
}

ul.footer_menu li a{
	font-size: 16px;
	line-height: 26px;
	letter-spacing: -0.025em;
	font-weight: 300;
	color: #565758;
	text-transform: none;
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

ul.footer_menu li a:hover{
	color: #c6c6c6;
}

ul.footer_menu li.active a{
	font-weight: 700;
	color: #003d7b;
}
/* ====== FOOTER ====== */

#footer{
	background: #f2f2f2;
	padding: 60px 0px 40px;
}

.footer_text{
	font-size: 14px;
	line-height: 18px;
	letter-spacing: -0.025em;
	font-weight: 300;
	text-transform: none;
	color: #565758;
	height: 210px;
}

.footer_text img{
	margin-bottom: 15px;
	margin-top: 5px;
}

#footer .titulo {
    color: #003d7b;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: -0.025em;
    font-weight: 300;
    margin: 24px 82px 21px;
    text-align: left;
}

.footer_redes{
	position: relative;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: -0.025em;
	color: #565758;
	font-weight: 300;
}

.footer_redes .txt{
	padding-left: 82px;
	text-align: left;
}

.footer-contacto{
	border-left: 1px solid #b7b7b7;
	height: 210px;
    margin: 0 -15px;
}

.footer-accesos{
	border-left: 1px solid #b7b7b7;
	height: 210px;
    margin: 0 15px;
}

#footer .desarrollo{
	margin-top: 10px;	
	text-align: center;
}	
#footer .desarrollo h6{
	margin-bottom: 15px;
	color:#333; 
	text-transform: uppercase;
	padding-top: 30px;
}	

.footer_dinamic {
  font-size: 11px;
  color: #3c3c3c;
  display: inline-block;
  margin: 5px 0 0px 0;
  padding-top: 20px;
  padding-left: 0px;
  text-decoration: none;
  text-transform: none;
}

.footer_dinamic a{
	color: #333;
	text-align: left;
	padding-top: 0px;
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;	
	transition: all 0.3s ease-in-out;
	font-size: 9px;
}

.footer_dinamic a:hover, .footer_dinamic a:focus{
	color: #003d7b;
}

#footer .firmas{
  text-align: center;
}

.footer_dinamic img{
	color: #fff;
	margin-left:5px;
	margin-top: -5px;
  width: 80px;
}

.firmas img{
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
  opacity: 0.5;
  -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;    
}

.firmas img:hover{
  opacity: 1;
  -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
    filter: grayscale(0%);
}

.footer_digitar{
  display: inline-block;
  text-align: left;
  padding-left: 20px;
  margin-top: 15px;
}

.footer_digitar img{
  width: 70px;
}

/* ====== SOPORTES ====== */

.sop{
	background: #fff;
	padding: 20px 0px 0px 0px;
}

.list_contents, .list_subsections{
	padding: 0 0px;
}

.list_contents.promociones .mod{
	margin-bottom: 15px;
}

.list_contents.promociones .row{
	margin-bottom: 60px;
}

.list_contents.promociones .mod .text a h1{
	margin-top: 0px;
  margin-bottom: 0;
	font-size: 22px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;	
}

.list_contents.promociones .mod .text a:hover h1{
	color: #434343;
}

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

.content.promociones .title{
	font-size: 44px;
  line-height: 48px;
  letter-spacing: -0.025em;
  font-weight: 300;
  color: #003d7b!important;
  text-transform: none;
  text-align: center;
  margin-bottom: 50px;
}

.content.promociones .btn-volver{
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-transform: none;
  color: #003d7b;
  display: inline-block;
  margin: 10px 0 45px 0;
  padding: 0 0 15px 0;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}



.content.promociones .desc{
	padding: 0 30px;
	text-align: center;
}

.content.promociones .texto{
	padding: 0;
}

.content.promociones .texto img{
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.content.promociones .texto-promociones{
	padding: 0 160px;
}

.content.promociones .tabla-alumnos{
	margin-bottom: 30px;
}

.content.promociones .tabla-alumnos .curso{
	font-size: 18px;
	color: #003d7b;
	margin-bottom: 10px;
}

.content .title{
	color: #b1d6ff;
}

.content .col-titulo{
	float: left;
	padding: 130px 140px;
	height: auto;
}

.content .col-texto{
	height: auto;
	padding-top: 130px;
	padding-bottom: 130px;
	/*overflow-y: scroll; */
}

.contenido{
	height: 100%;
}


/* ====== PAGINADOR  ====== */

#paginador_contenedor{
	margin:20px 0px 50px 0px;
	padding:0px 0 0px 0;
	position: relative;
	text-align: center;
}

#paginador_contenedor span, #paginador_contenedor a{
	display: inline-block;
	font-weight: 400;
	font-size:18px;
	line-height: 18px;
	color: #ccc;
	padding: 0px 10px;
}

#paginador_contenedor a{
	color: #686868;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#paginador_contenedor a:hover{
	color: #000;
}

.paginador_contenedor_num{
	color: #373737 !important;
	padding: 0px 10px 0 10px;
	font-weight: 700;
	font-size:14px !important;
	line-height: 18px;
}

/* ====== CONTENIDO  ====== */

.content .title_sep{
	margin: 0px auto 30px auto;
}

.content .source{
	font-size: 12px;
	line-height: 24px;
	font-weight: 400;
	margin: 0 0 20px 0;
}

.content .source i{
	font-weight: 700;
}

.content .desc, .galeria_de_imagenes .desc, .sop > .desc{
	font-size: 16px;
	line-height: 30px;
	letter-spacing: 0.025em;
	font-weight: 400;
	color: #666666;
	padding: 0 90px;
	margin: 0 0 35px 0;
}

.sop > .desc{
	font-size: 14px;
}

.content .main_img{
	padding: 0px 0 0 0;
	margin: 0 0 0px 0; 
	position: relative;
}

.content .texto, .content p{
	font-size: 16px;
	line-height: 30px;
	letter-spacing: 0.025em;
	color: #666666;
	font-weight: 400;
	text-align: left;
}

.content .texto{
	padding: 0 90px;
	margin: 0px 0 30px 0;
}

.content p{
	padding: 0px;
	margin: 0px;
}

.content ul{
	text-align: left;
}

.content .redes_plugins{
	position: absolute;
	bottom: 20px;
	left: 25px;
}

.redes_plugins .plugin{
	float: left;
}

.redes_plugins .face{
	margin:0px 15px 0 5px !important;
}

.redes_plugins .twit{
	width: 80px !important; 
}

.fck_template{
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 30px;
}

.fck_template figure figcaption{
	background: #000;
	color: #fff;
	text-align: center;
	padding: 10px 10px 12px 10px;
	font-size: 10px;
	line-height: 12px;
	font-weight: 400;
}

.fck_template .col p{
	padding: 0 0px;
}

.fck_template .col-text-left{
	text-align: left;
}

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

.quote{
	position: relative;
}

.quote .fa-quote-left{
	position: absolute;
	top: 10px;
	left: 0px;
}

.quote .fa-quote-right{
	position: absolute;
	bottom: 10px;
	right: 0px;
}

.quote .fa{
	font-size: 42px;
	color: #b8b8b8;
}

.quote p{
	font-size: 21px;
	line-height: 30px;
	font-weight: 300;
	font-style: italic;
	padding: 0 40px !important;
}

/* ====== FCK STYLES ====== */

.fck_h3{
	font-size: 21px;
	line-height: 24px;
	font-weight: 400;
	color: #000;
}

.fck_h4{
	font-size: 18px;
	line-height: 22px;
	font-weight: 400;
	color: #000;
}

.fck_h5{
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	color: #000;
}

.fck_h6{
	font-size: 12px;
	line-height: 18px;
	font-weight: 400;
	color: #000;
}

.fck_h3 b, .fck_h3 strong, .fck_h4 b, .fck_h4 strong, .fck_h5 b, .fck_h5 strong, .fck_h6 b, .fck_h6 strong{
	font-weight: 700;
}

.fck_h3 u, .fck_h4 u, .fck_h5 u, .fck_h6 u{
	text-decoration: none;
	border-bottom: 1px solid #000;
	padding-bottom: 5px;
}

.fck_titulo_form{
	font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.025em;
    font-weight: 400;
    color: #003d7b;
    text-transform: uppercase;
    margin-bottom: 10px;
	text-align: left !important;
}

.fuera-termino{
	text-align: center!important;
	border: 1px dashed #f00;
	padding: 15px!important;
	text-transform: none;
	margin-bottom: 50px;
	color: #f00;
}

.box_00{
	border: 1px solid #000;
	padding: 30px;
}

.box_01{
	border: 1px dashed #000;
	padding: 30px;
}

.box_02{
	background: #000;
	color: #fff;
	padding: 30px;
}

.box_03{
	background: #dcdcdc;
	border: 1px solid #b6b6b6;
	color: #000;
	padding: 30px;
}

/* ====== HERRAMIENTAS DE CONTENIDOS (enviar, imprimir, consultar, descargar) ====== */

.content_herram{
	border-top: 1px solid #e1e1e1;
	border-bottom: 1px solid #e1e1e1;
	padding: 35px 0 35px 0;
	margin: 25px 0 0 0;
}

.content_herram>.btn{
	width: 32px;
	height: 32px;
	background: #a5a5a5;
	padding: 5px 0px 0 0;
	margin: 0 5px 0 5px;
	border-radius: 50%;
	color: #fff;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;	
	transition: all 0.2s ease-in-out;
}

.content_herram>.btn:hover{
	background: #000;
}


.mod_compartir_redes_sop{
	float: left;
	margin: 23px 0 0 0px;
}

.mod_compartir_redes{
	float: left;
	margin: 0 15px 0 0;
}

.plugin_face{
	margin:-4px 15px 0 0 !important;
}

.plugin_twit{
	width: 80px !important; 
}

#descargar_boletas .contacto .row,
#descargar_boletas .contacto .row.form_ensenanza{
  margin-right: 0px;
  margin-left: 0px;
}

#descargar_boletas .contacto .row h3:not(.fck_h3),
#descargar_boletas .contacto .row.form_ensenanza h3:not(.fck_h3){
	text-align: left;
	margin: 45px 0 20px;
	line-height: 28px;
    letter-spacing: -0.025em;
	color: #000;
	border-top: 1px solid #7777773f;
	padding-top: 30px;
}

.alert-danger {
    color: #b94a48;
    background: transparent;
    border-color: #b94a48;
}

#descargar_boletas .contacto .col-texto .texto{
  text-align: left;
  padding: 50px 90px 0px 90px;
}

#descargar_boletas .contacto .col-texto .texto p{
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.025em;
    font-weight: 400;
    text-align: left;
  }

#descargar_boletas .contacto .col-texto .texto p.sin_boleta{
  text-align: left;
  padding: 50px 50px 0px 50px;
  font-weight: 700;
}


#descargar_boletas .contacto .col-texto,
.contacto .col-texto .form_ensenanza {
  text-align: center;
  padding: 20px 0px 0px 0px;
}

.contacto .col-texto .form_ensenanza{
	margin-bottom: 150px;
}

.contacto .col-texto .form_ensenanza h3{
	text-align: left;
}

#descargar_boletas .contacto .col-texto img,
.contacto .col-texto .form_ensenanza img{
  width: 40px;
}

#descargar_boletas .contacto .col-texto h4,
.contacto .col-texto .form_ensenanza h4{
  text-transform: uppercase;
  color: #003d7b;
  font-size: 16px;
}

#descargar_boletas .contacto .col-texto .ico,
.contacto .col-texto .form_ensenanza .ico{
  padding-top: 25px;
  padding-left: 10px;
}

#descargar_boletas .contacto .col-texto a,
.contacto .col-texto .form_ensenanza a{
  text-transform: uppercase;
  color: #666666;
  font-size: 12px;
  padding: 0 5px;
}

#descargar_boletas .contacto .col-texto a:hover,
.contacto .col-texto .form_ensenanza a:hover{
  text-decoration: none;
  color: #003d7b;
}

/* ====== FORMULARIO ====== */

/* == Placeholder == */

.form-control:-moz-placeholder {
	color: #757575;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;	
	transition: all 0.2s ease-in-out;
}

.form-control:hover:-moz-placeholder {
  color: #757575;
}

.form-control:focus:-moz-placeholder {
  color: #757575;
}

.form-control::-moz-placeholder {
	color: #757575;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;	
	transition: all 0.2s ease-in-out;
}

.form-control:hover::-moz-placeholder {
  color: #757575;
}

.form-control:focus::-moz-placeholder {
  color: #757575;
}

.form-control:-ms-input-placeholder {
	color: #757575;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;	
	transition: all 0.2s ease-in-out;
}

.form-control:hover:-ms-input-placeholder {
  color: #757575;
}

.form-control:focus:-ms-input-placeholder {
  color: #757575;
}

.form-control::-webkit-input-placeholder {
	color: #757575;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;	
	transition: all 0.2s ease-in-out;
}

.form-control:hover::-webkit-input-placeholder {
  color: #757575;
}

.form-control:focus::-webkit-input-placeholder {
  color: #757575;
}

/* == Autofill == */

input:-webkit-autofill, input:-webkit-autofill:focus, input:-webkit-autofill:active, input:-webkit-autofill:hover {
    -webkit-box-shadow:0 0 0 50px #ffffff inset!important;
    -webkit-text-fill-color: #000;
}

/* === */

.form-control {
  display: block;
  width: 100%;
  height: 42px;
  padding: 12px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #d3d3d3;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 00);
          box-shadow: inset 0 0px 0px rgba(0, 0, 0, 00);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
          transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;	
	transition: all 0.2s ease-in-out;
}

.form-control:hover {
	background-color: #e9e9e9;
	border-color: #e9e9e9;
}

.form-control:focus {
	color: #555555;
	background-color: #d3d3d3;
  border-color: #d3d3d3;
  outline: 0;
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(0, 0, 0, 0);
          box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(0, 0, 0, 0);
}

.form_contacto{
	padding: 0 0 0px 0;
}

.form_contacto h5{
	margin-bottom: 15px;
}

.form_contacto .captcha{
	border-top: 1px dashed #ccc;
	margin: 15px 0 30px 0; 
	padding: 30px 0 0 0;
	text-align: center;
}

.form_contacto .captcha-full{
	border-top: 0px dashed #ccc;
	margin: 15px 0 30px 0; 
	padding: 0 0 0 0;
}

.form_contacto .captcha a {
    display: inline-block;
    float: left;
    width: 35%;
}

.form_rrhh .captcha a{
	width: 100%;
}

.form_contacto .captcha img{
	border: 1px solid #d3d3d3;
	display: inline-block;
	float: left;
}

.form_contacto .captcha input {
    padding: 40px 12px;
    float: right;
    width: 65%;
    display: inline-block;
}

.form_rrhh .captcha input{
	width: 100%;
	padding: 29px 12px;
}

.form_contacto .btn{
	text-transform: uppercase;
	background: #e9e9e9;
	border-radius: 0px;
	padding: 20px 30px;
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	color: #727272;
	margin-bottom: 100px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;	
	transition: all 0.2s ease-in-out;
}

.form_contacto .btn:hover{
	background: #003d7b;
	color: #fff;
}

/* ====== VIDEO - CONTENIDO ====== */

.content_video{
	margin-top: 80px;
}

.promociones .content_video{
  margin-top: 40px;
  margin-bottom: 45px;
}

.promociones .content_video iframe{
	height: 100%!important;
}

/* ====== GALERIA DE IMAGENES ====== */

.galeria_de_imagenes{
	text-align: center;
	height: 750px;
}

.galeria_slide{
	height: auto!important;
	position: relative;
}

.flechas-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    height: 100%;
}

.flechas-slide .carousel_dest_left{
	left: 0;
}

.flechas-slide .carousel_dest_right{
	right: 0;
}

.galeria_de_imagenes .carousel_dest_left {
	margin-left: 15px;
	float: left;
}

.galeria_de_imagenes .carousel_dest_right{
	margin-right: 15px;
	float: right;
}

.galeria_de_imagenes .carousel_dest_left, .galeria_de_imagenes .carousel_dest_right{
	margin-bottom: 20px;
	display: inline-block!important;

} 

.galeria_de_imagenes .col-titulo{
	background: #fff;
	height: 750px;
	position: relative;
}

.galeria_de_imagenes .col-titulo .title{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%); /* IE 9 */
	-webkit-transform: translate(-50%,-50%); /* Safari */	
}

.galeria_de_imagenes .col-texto{
	float: right;
	background: #b1d6ff;
	height: 750px;
	padding: 0 75px;
}

.galeria_de_imagenes header{
	position: relative;
}

.galeria_de_imagenes .title{
	margin-top: 80px;
}

.galeria_de_imagenes .mod{
	padding: 0 0px;
	position: relative;
}

.galeria_de_imagenes .mod .col{
	margin-bottom: 30px;
	position: relative;
}

.carousel-control.left, .carousel-control.right {
    background-image:none; 
}

#carousel-galeria{
	margin-top: 215px;
}

.flechas-galeria{
	margin-top: 180px;
}

/*--- RELACIONADOS / RECOMENDADOS ---*/

.related{
	margin-top: 80px;
}


/*--- SECCION DE GALERIA DE FOTOS ---*/

.section_gal_tit{
	font-size: 18px;
	line-height: 22px;
	font-weight: 700;
	color: #8b8b8b;
	position: relative;
	text-transform: uppercase;
	padding: 0px 0 0px 0px;
	margin: 0px 0px 20px 0px;	
}

.section_gal_desc{
	color: #585a5e;
	font-size: 13px;
	line-height: 21px;
	font-weight: 400;
	font-style: italic;
	margin: 0 0 20px 0;
}


/* ====== SIDENAVS ====== */


.inscripciones{
	margin-top: 40px;
	margin-bottom: 130px;
}

.btn_inscripcion a,
.btn_inscripcion span{
	background: #003d7b;
    text-align: center;
    display: inline-block;
    width: 100%;
    color: #b1d6ff;
    padding: 100px 30px;
    text-decoration: none;
    letter-spacing: -0.025em;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 300;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn_inscripcion a:hover{
	background: #002d5b;
}

.btn_inscripcion.btn-03 a,
.btn_inscripcion.btn-03 span{
  padding: 84px 30px;
}

.acceso_goschool{
  position: fixed;
  top: 250px;
  right: 0;
  z-index: 100;
}

.acceso_goschool a{
  border-bottom: 3px solid #fff;
  width: auto;
  height: auto;
  padding: 15px;
  display: block;
  background: #003d7b;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  /*border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);*/
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.acceso_goschool a:hover{
  background: #b1d6ff;
  color: #003d7b;
  border-color: #003d7b;
}


}

/*=====================*/
/*=== CSS SCREEN (termina) ===*/
/*=====================*/

/*=====================*/
/*=== CSS RESPONSIVE (inicio) ===*/
/*=====================*/
/* Dispositivos grandes (ordenadores, anchura mayor o igual a 1200px) */
@media screen and (min-width: 1200px) {
	.popup_prehome .modal-dialog{
		width: 920px !important;
	}
	.popup_prehome iframe{
		height: 480px;
	}
	.carousel-video, .carousel-video iframe{
		height: 600px !important;
	}
	.mod_contacto .map iframe{
		height: 420px;
	}	
	.sop_home_video iframe{
		height: 530px;
	}
  	.content_video iframe{
	  	width: 100%;
	  	height: 400px;
  	}
	.galeria_de_imagenes .mod .img_mask{
		height: 330px;
		overflow: hidden;
	}


}

/* Dispositivos medianos (ordenadores, anchura mayor o igual a 992px) */
@media screen and (min-width: 992px) and (max-width: 1217px) {
	.footer-contacto{
	    margin: 0 -27px;
	}
}

/* Dispositivos medianos (ordenadores, anchura mayor o igual a 992px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
	.popup_prehome .modal-dialog{
		width: 800px !important;
	}
	.popup_prehome iframe{
		height: 415px;
	}
	.title, .content .title{
		font-size: 33px;
	}
	.carousel-video, .carousel-video iframe{
		height: 494.73px;
	}
	.carousel-caption{
		padding-left: 150px;
		padding-right: 150px;
	}
  #carousel_cumpleanios{
    margin:70px 70px;
  }
	.sop_home_carousel_multiple .carousel_control_2{
		margin-top: 100px;
	}
  .item-cumple{
    font-size: 11px;
  }
  .item-cumple .soporte{
    padding-left: 8px;
    padding-right: 8px;
  }
	.sop_home_texto_destacado{
		padding: 0px;
	}
	.sop_home_texto_destacado p {
		top: 25%;
	}
	.mod_contacto .text{
		margin-top: 85px;
	}
	.mod_contacto .map iframe{
		height: 350px;
	}	
	.sop_home_video iframe{
		height: 437px;
	}	
	.form_news_home .form-control {
		width: 150px;
	}
	ul.footer_menu{
		padding: 0 0 0 60px;
	}
	#footer .titulo {
    	margin: 24px 60px 21px;
	}
	.footer_redes .txt{
		padding-left: 60px;
		text-align: left;
	}
	.footer_dinamic{
		padding-left: 60px;
	}
	.footer_digitar{
		margin-left: 55px;
    padding: 0;
	}
	.content .col-titulo{
		padding: 130px 90px;
	}
	.content .desc, .galeria_de_imagenes .desc, .sop > .desc{
		font-size: 14px;
		line-height: 28px;
		margin-bottom: 25px;
	}
  .content .texto, .content p{
    font-size: 14px;
    line-height: 28px;
  }
	.content.promociones .texto, .content p{
		font-size: 16px;
	}
	.form_contacto .captcha input {
	    padding: 31px 5px;
	    width: 62%;
	}
	.content_video iframe{
	  	width: 100%;
	  	height: 410px;
	}
	.galeria_de_imagenes{
		height: 600px;
	}
	.galeria_de_imagenes .col-titulo{
		height: 600px;
	}
	.galeria_de_imagenes .col-texto{
		height: 600px;
	}
	.galeria_de_imagenes .mod .img_mask{
		height: 110px;
		overflow: hidden;
	}
	#carousel-galeria{
		margin-top: 180px;
	}		
	.flechas-galeria{
		margin-top:130px;
	}

  .btn_inscripcion a,
  .btn_inscripcion span{
    font-size: 21px;
  }

  .btn_inscripcion.btn-03 a,
  .btn_inscripcion.btn-03 span{
    padding: 87px 30px;
  }

}

@media screen and (min-width: 992px) {
  	.navbar-toggle {
	    display: none;
	}
}

@media screen and (max-width: 991px) {
	.mod_contacto .title_sep_white{
		margin: 0px auto 20px auto;
	}	
}

/* Dispositivos pequeños (tablets, anchura mayor o igual a 768px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
	/*--- HABILITAR SI EL SITIO NO ES RESPOSIVE
	body{
	max-width: 1170px;
	width: 1170px;
	}
	.container{
	max-width: 1170px;
	width: 1170px;
	}
	---*/
	.sm-m-top-0{
		margin-top: 0px;
	}
	.popup_prehome .modal-dialog{
		width: 600px !important;
	}	
	.popup_prehome iframe{
		height: 302px;
	}
	.title, .content .title{
		font-size: 30px;
		line-height: 38px;
		width: 100%!important;
	}
	.search_btn{
		color: #fff;
		background: transparent;
		margin: 37px 0px 0 5px;
	}
	.search_btn:hover{
		color: #fff;
		background: transparent;
	}	
	.search_btn i{
		font-size: 18px;
	}
	#header{
		padding: 15px 15px 15px;
	}
	#header ul.nav_menu {
		width: 294px;
	}
	.nav_menu > li > a{
		padding: 15px 5px 18px!important;
		font-size: 11px;
	}
	.carousel-video, .carousel-video iframe{
		height: 378.94px;
	}
	.carousel-caption{
		padding-left: 50px;
		padding-right: 50px;
	}	
	.carousel-caption h2{
		font-size: 24px;
		line-height: 32px;;
	}
	.sop_home_iconos .col-titulo .title {
	    width: 47%;
	}
	.sop_home_iconos .col-texto {
	    padding: 80px 95px;
	    background: #3d3d3d;
	}
	.sop_home_iconos .ico {
		text-align: center;
	}
	.sop_home_iconos .ico h2 {
	    width: 100%;
	    margin-left: 0;
	    text-align: center;
	    font-size: 18px;
	}
  .carousel-inner.onebyone-carosel-cumple { margin: auto; width: 100%; }
  .onebyone-carosel-cumple .active.left { left: -50%; }
  .onebyone-carosel-cumple .active.right { left: 50%; }
  .onebyone-carosel-cumple .prev { left: -50%; }
  .onebyone-carosel-cumple .next { left: 50%; }
	.sop_cumpleanios .col-titulo .title{
		padding: 0 35px;
	}
	#carousel_cumpleanios{
		margin: 70px 50px;
	}
	.sop_home_carousel_multiple .mod h1, .sop_home_carousel_multiple .mod h2{
		font-size: 13px;
		line-height: 18px;
	}
	.sop_home_carousel_multiple .mod p{
		font-size: 13px;
		line-height: 18px;
	}
	.sop_home_carousel_multiple .carousel_control_2{
		margin-top: 70px;
	}
	.sop_home_texto_destacado{
		padding: 0px;
	}
	.sop_home_texto_destacado .title {
	    width: 60%!important;
	}
	.sop_home_texto_destacado p {
		left: 60px;
		font-size: 14px;
		top: 20%;
	}
	.sop_home_destacados{
		height: 650px;
	}
	.sop_home_destacados .col-titulo{
		height: 650px;
	}
	.sop_home_destacados .col-texto{
		padding: 60px 30px;
		height: 650px;
	}
	.home_destacados .text h1, .list_contents .mod .text h1, .list_subsections .mod .text h1{
		font-size: 18px;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.home_destacados .text p, .list_contents .mod .text p, .list_subsections .mod .text p {
		font-size: 12px;
		line-height: 20px;
	}
	.mod_contacto .text{
		margin-top: 0px;
		margin-bottom: 30px;
	}
	.mod_contacto .text h3{
		margin-top: 0px;
	}
	.mod_contacto .text h3, .mod_contacto .text p{
		text-align: center;
	}
	.mod_contacto .map iframe{
		height: 350px;
	}	
	.sop_home_video iframe{
		height: 334px;
	}
	.form_news_home .form-control {
		width: 130px;
	}
	ul.footer_menu{
	    margin: 0px 30px 0;
	    padding: 0;
	}
	ul.footer_menu li a{
		font-size: 14px;
		line-height: 14px;
	}
	.footer_text{
		height: 235px;
	}
	#footer{
		padding: 30px 15px 20px 15px;
		text-align: left;
	}	
	#footer .titulo {
    	margin: 24px 30px 21px;
	}
	.footer_redes .txt{
		padding-left: 30px;
	}
	.footer-accesos{
		height: 235px;
	}
	#footer .desarrollo h6{
		border-top: 0;
	}
	.footer_dinamic {
		padding-left: 0px;
	}
	#footer .desarrollo h6{
		margin-bottom: 5px;
	}
	.footer_dinamic a{
	    display: inline-block;
	    float: none;
	    padding-left: 0px;
	}
	.footer_digitar{
		padding-left: 25px;
	}
	.content .col-titulo{
		padding: 130px 75px; 
	}
	.content .col-texto{
		padding-top: 50px;
	}
	.content .desc, .galeria_de_imagenes .desc, .sop > .desc{
		font-size: 14px;
		line-height: 18px;
	}
	.content .texto, .content p{
		font-size: 14px;
		line-height: 18px;
	}
	.content.promociones .texto, 
	.content.promociones p {
	    font-size: 16px;
	    line-height: 2;
	}
	.fck_template{
		padding: 0 0px;
	}
	.form_contacto .captcha a {
		width: 50%;
	}
	.form_contacto .captcha input {
	    padding: 29px 12px;
	    width: 47%;
	}
	.content_video iframe{
	  	width: 100%;
	  	height: 370px;
  	}
	.galeria_de_imagenes{
		height: 400px;
	}
	.galeria_de_imagenes .col-titulo{
		height: 400px;
	}
	.galeria_de_imagenes .col-texto{
		height: 400px;
	}
	.galeria_de_imagenes .title{
		margin-top: 0px;
	}
	.galeria_de_imagenes .mod .img_mask{
		height: 80px;
		overflow: hidden;
	}
	#carousel-galeria{
		margin-top: 140px;
	}
	.flechas-galeria{
		margin-top: 95px;
	}
  .btn_inscripcion a,
  .btn_inscripcion span{
    font-size: 18px;
    padding: 100px 15px;
  }

  .btn_inscripcion.btn-03 a,
  .btn_inscripcion.btn-03 span{
    padding: 79px 15px;
  }
}

@media screen and (min-width: 768px) {
	.go-up-btn:hover{
		background: #003d7b;
		color: #fff;
	}
	.content .row-eq-height, 
	.contacto.row-eq-height{
	  display: -webkit-box;
	  display: -webkit-flex;
	  display: -ms-flexbox;
	  display:         flex;
	}



  #descargar_boletas .contacto .col-texto .row.row-boletas{
    padding-left: 90px;
    margin-bottom: 50px;
  }

  #descargar_boletas .contacto .col-texto .ico,
  .contacto .col-texto .form_ensenanza .ico {
    padding-top: 0px;
    padding-left: 10px;
  }
}

/* Dispositivos Mas pequeños (tablets, anchura menor a 768px) */
@media screen and (max-width: 767px) {
	/*--- HABILITAR SI EL SITIO NO ES RESPOSIVE
	body{
	max-width: 1170px;
	width: 1170px;
	}
	.container{
	max-width: 1170px;
	width: 1170px;
	}
	---*/
	.popup_prehome .modal-dialog{
		width: 100% !important;
	}
	.popup_prehome iframe{
		height: 302px;
	}
	.title, .content .title{
		font-size: 24px;
	}
	.content .title {
	    line-height: 35px;
	    margin-bottom: 0;
	}
	.title_sep, .title_sep_white{
		margin: 0px auto 30px auto;
	}
	.form_news_home .sk-circle{
		margin: 0px auto 15px auto;
		width: 30px;
		height: 30px;
	}
	.search_btn{
		color: #fff;
		background: transparent;
		margin: 37px 0px 0 5px;
	}

	.search_btn:hover{
		color: #fff;
		background: transparent;
	}

	.search_btn i{
		font-size: 18px;
	}

	.panel_search {
		padding: 0 15px;
	}
	.panel_search .text{
		font-size: 21px;
		line-height: 21px;
		font-weight: 300;
		width: 60%;
	}
	.panel_search .buttons{
		width: 40%;
	}
	#header {
	    padding: 15px 30px;
	    height: 140px;
	}
	#header .logo {
	    float: none;
	    position: relative;
	    text-align: center;
	}
	.menu{
		display: none!important;
	}
	.carousel-video, .carousel-video iframe{
		height: 390px;
	}	
	.item a:hover{
		text-decoration: none !important;
	}
	.carousel-caption-xs{
		background: #000;
		text-align: center;
		padding: 30px 30px 35px 30px;
	}
	.carousel-caption-xs h2{
		font-size: 24px;
		line-height: 32px;;
		color: #fff;
		font-weight: 700;
		text-transform: uppercase;
		text-decoration: none !important;
	}
	.carousel-caption-xs p{
		font-size: 13px;
		line-height: 18px;
		font-weight: 400;
		padding: 0 0px 0 0px;
		margin: 15px 0 0 0;
		color: #fff;
	}
  .item-cumple .soporte{
    text-align: center;
  }
	.sop_home_iconos{
		height: auto;
	}
	.sop_home_iconos .col-titulo{
		height: 100px;
	}
	.sop_home_iconos .col-texto {
		padding: 45px 35px 0;
		margin-top: -5px;
	}
	.sop_home_iconos .ico {
		margin-bottom: 45px;
		text-align: center;
	}
	.sop_home_iconos .ico h2 {
		display: block;
		margin-left: 0;
		margin-top: 10px;
    font-size: 16px;
	}
	.sop_cumpleanios {
	    height: 270px;
	    max-height: 270px;
	    overflow: hidden;
	}
	.sop_cumpleanios .col-titulo{
		background: #f2f2f2;
	}
	.sop_cumpleanios .col-titulo .title{
		width: 100%;
	}
	.sop_cumpleanios .col-texto {
	    background: #fff;
	    position: relative;
	    float: none;
	    height: 170px;
	    margin-top: -5px;
	    padding: 30px 40px;
	}
	.sop_cumpleanios .col-texto .mes {
	    font-size: 16px;
	    line-height: 28px;
	    letter-spacing: -0.025em;
	    font-weight: 400;
	    color: #003d7b;
	    border-top: 1px solid #b7b7b7;
	    text-align: center;
	    border-bottom: 1px solid #b7b7b7;
	    margin-bottom: 10px;
	}
	.sop_cumpleanios .col-texto .cumples {
	    height: 250px;
	    position: absolute;
	    width: 85%;
	    margin: -15px auto 0;
	    text-align: center;
	    left: 50%;
	    transform: translateX(-50%);
	}
	.sop_cumpleanios .col-texto .cumples .soporte{
		font-size: 18px;
	}
	#carousel_cumpleanios{
		height: 140px;
		margin: 0;
	}
	.flechas-carousel-cumpleanios {
	    display: block;
	    top: -90px;
	    position: relative;
	}
	.flechas-carousel-cumpleanios .carousel_cumples_control.left{
		margin-left: -25px;		
	}
	.flechas-carousel-cumpleanios .carousel_cumples_control.right{
		margin-right: -25px;
	}
	.f-der{
		right: 7px;
		top: 50%;
		transform: translateY(-50%);
		-ms-transform: translateY(-50%); /* IE 9 */
		-webkit-transform: translateY(-50%); /* Safari */	
	}

	.f-izq{
		left: 7px;
		top: 50%;
		transform: translateY(-50%);
		-ms-transform: translateY(-50%); /* IE 9 */
		-webkit-transform: translateY(-50%); /* Safari */	
	}
	.sop_home_carousel_multiple {
	    padding: 20px 20px 0;
	    height: 493px;
	    overflow: hidden;
	}
	.sop_home_carousel_multiple .tit_line {
    	margin-bottom: 30px;
	}
	.sop_home_carousel_multiple .mod{
		margin-bottom: 30px;
		padding: 30px;
	}
	.carousel-inner.onebyone-carosel { margin: auto; width: 100%; }
	.onebyone-carosel .active.left { left: -100%; }
	.onebyone-carosel .active.right { left: 100%; }
	.onebyone-carosel .next { left: 100%; }
	.onebyone-carosel .prev { left: -100%; }

	.carousel-inner.onebyone-carosel-cumple { margin: auto; width: 100%;height: 140px }
	.onebyone-carosel-cumple .active.left { left: -100%; }
	.onebyone-carosel-cumple .active.right { left: 100%; }
	.onebyone-carosel-cumple .next { left: 100%; }
	.onebyone-carosel-cumple .prev { left: -100%; }
	
	.fdi-Carousel{
		height: 515px;
	}
	.sop_home_texto_destacado{
		padding: 0px;
		height: auto;
	}
	.col-titulo{
		background: #003d7b;
		position: relative;
		width: 100%;
		height: 100px;
	}
	.sop_home_texto_destacado .title{
		font-size: 24px;
		line-height: 28px;
		width: 100%;
	}
	.col-texto {
	    width: 100%;
	    padding: 40px 30px;
	    display: block;
	    height: auto;
	}
	.sop_home_texto_destacado p {
	    font-size: 16px;
	    line-height: 30px;
	    text-align: center;
	    left: 0;
	    top: 0;
	    margin: 0px auto;
	    padding: 0px;
	    width: 100%;
	    position: relative;
	}
	.sop_home_destacados{
		height: auto;		
	}
	.sop_home_destacados .col-titulo{
		height: 100px;
		background: #f2f2f2;
	}
	.sop_home_destacados .col-texto {
	    background: #fff;
	    padding: 0;
	    position: relative;
	    height: auto;
	    margin-top: -6px;
	}
	.home_destacados, .list_contents .mod{
		margin-bottom: 0;
		padding: 0;
	}
	.home_destacados .title_sep, .list_contents .mod .title_sep, .list_subsections .mod .title_sep{
		margin: 0px auto 20px auto;	
	}	
	.list_contents .mod .img .default{
		width: auto;
	}
	.home_destacados .text h1, .list_contents .mod .text h1, .list_subsections .mod .text h1 {
	    text-align: center!important;
	    font-size: 20px;
      padding: 0px 15px;
      margin: 30px 0 0;
  }
  .home_destacados .text, .list_contents .mod .text, .list_subsections .mod .text{
    text-align: center;
  }
  .home_destacados .text p, .list_contents .mod .text p, .list_subsections .mod .text p{
    padding: 0px 15px;
		display: block;
	}
	.home_destacados .text span, .list_contents .mod .text span, .list_subsections .mod .text span{
    display: -webkit-inline-box;
    margin-bottom: 50px;
	}
	.sop_mod_contacto .col-titulo{
		height: 100px;
	}
	.sop_mod_contacto .col-texto{
		padding: 0;
	}
	.sop_mod_contacto{
		position: relative;
		padding: 0px 0px 0px 0px;
		background: #003d7b;
		color: #cacaca;
		text-align: center;
		height: auto;
	}
	.mod_contacto{
		text-align: center;
		margin-left: 0px;
		margin-right: 0px;
	}
	.mod_contacto .text{
		margin-top: 0px;
		margin-bottom: 30px;
	}
	.mod_contacto .text h3, .mod_contacto .text p{
		text-align: center;
	}
	.mod_contacto .map{
		padding-left: 0px;
		padding-right: 0px;
	}
	.mod_contacto .map iframe{
		height: 420px;
	}	
	.contacto .title {
	    position: relative;
	    top: 0;
	    left: 0;
	    transform: none;
	    -ms-transform: none;
	    -webkit-transform: none;
	    color: #b1d6ff!important;
	    padding-top: 25px;
	}
	.contacto .col-titulo {
	    float: none;
	    height: 100px;
	    padding: 0;
	}
	.contacto .col-texto {
	    padding: 30px 15px;
	    height: auto;
	}
	.social{
		margin: 20px 5px 30px 5px;
	}
	.social i{
	}
	.sop_home_video{
		padding: 80px 15px 100px 15px;
	}
	.sop_home_video iframe{
		height: 315px;
	}
	.form_news_home .form-group{
	  margin: 15px 15px 0 15px;
	}
	.form_news_home .form-control {
		width: 100%;
	}
	#footer{
		padding: 30px 0px 0px 0px;
		text-align: center;
	}
	#footer .titulo {
		text-align: center;
	}
  .footer_redes .txt {
      padding-left: 0;
      text-align: center;
  }
	.footer_redes a{
    color: #565758!important;
  }
	.footer-contacto{
		margin: 0 0 55px;
		border: 0;
		height: auto;
	}
	#footer .desarrollo{
		color: #f2f2f2;
		font-weight: 300;
		font-size: 12px;
		line-height: 18px;
		letter-spacing: -0.025em;
		padding: 20px 0 25px;
	}
	#footer .desarrollo h6{
		color: #f2f2f2;
	}
	#footer .desarrollo h6{
		margin-bottom: 5px;
		font-size: 10px;
	}
	.footer_dinamic {
	    float: none;
	    padding-top: 0px;
	    margin: 0 auto 15px;
	    display: table;
	    position: relative;
	    padding: 0;
	    text-align: center;
      color: #fff;
	}
	.footer_dinamic a {
	    color: #f2f2f2;
	    float: none;
	    display: inline-block;
	    vertical-align: bottom;
	    margin: 30px 0 3px;
	}
	.footer_dinamic figure {
	    margin: 0;
	    width: 7%;
	    display: inline-block;
	}
	.footer_dinamic img {
	    margin-top: 5px;
	    display: inline-block;
	    width: 80px;
	}
	.footer-dinamic{
		background: #555555;
		padding: 0;
	}
	.footer_digitar {
	    display: block;
	    text-align: center;
	    padding-left: 0;
	    margin-top: 0;
	}
	.content.promociones .tabla-alumnos .curso{
		margin-top: 40px;
	}
	.content.promociones .tabla-alumnos .primer.curso{
		margin-top: 0;
	}
	.content .col-titulo {
	    float: none;
	    padding: 25px;
	    height: auto;
	}
	.content .col-texto {
	    height: auto;
	    padding-top: 30px;
	    overflow-y: inherit;
	}
	.contenido{
		height: auto;
	}
	.content .desc, .galeria_de_imagenes .desc, .sop > .desc{
		padding: 0 0px;
	}
  .content .texto{
    padding: 0 0px;
  }
	.content.promociones .texto{
		text-align: center;
	}
	.fck_template .col{
		margin-bottom: 15px;
	}
	.fck_template .col p{
		text-align: center;
	}
	.fck_template .col-text-left, .fck_template .col-text-right{
		text-align: center;
	}
	.quote .fa-quote-left{
		top: 10px;
		left: 10px;
	}

	.quote .fa-quote-right{
		bottom: 10px;
		right: 0px;
	}

	.quote p{
		font-size: 18px;
		line-height: 30px;
		font-weight: 300;
		font-style: italic;
		padding: 0 50px !important;
	}
	.form_contacto{
		padding: 0 15px 0px 15px;
	}	
	.form_contacto .captcha .p-l-0{
		padding-right: 0px;
	}

	.form_contacto .captcha a {
	    text-align: center;
	    margin: 0 auto 30px auto;
	    width: 100%;
	    display: table;
	}
	.form_contacto .captcha img{
		display: inline-block;
		float: none;
	}
	.form_contacto .captcha input {
		width: 100%;
	}
	.form_contacto .btn{
		margin: 0 auto 100px;
		display: table;
		width: 100%;
	}
	.content_video{
		margin-top: 50px;
	}
	.galeria_de_imagenes{
		height: auto;
	}
	.galeria_de_imagenes .col-titulo{
		height: 100px;
	    background: #f2f2f2;
    	padding-top: 25px;
	}
	.galeria_de_imagenes .col-titulo .title {
	    position: relative;
	    top: 0;
	    left: 0;
	    transform: none;
	    -ms-transform: none;
	    -webkit-transform: none;
	    margin-top: 0;
	}
	.galeria_de_imagenes .col-texto{
		padding: 0 15px 50px;
		height: auto;
	}
	.galeria_de_imagenes .mod{
		padding: 0 0px;
		margin-right: 0px;
		margin-left: 0px;
	}
	.galeria_de_imagenes .title{
		margin-top: 50px;
	}
	#carousel-galeria{
		margin-top: 90px;
	}
	.flechas-galeria{
		margin-top: 50px;
	}
	.inscripciones{
		margin-top: 30px;
		margin-bottom: 50px;
	}
	.btn_inscripcion a,
	.btn_inscripcion span{
		margin: 0 0 30px 0;
	}

  #descargar_boletas .contacto .row.row-boletas {
    margin-bottom: 40px;
  }

  #descargar_boletas .contacto .col-texto .texto {
    text-align: left;
    padding: 30px;
  }
  .contacto .col-texto .form_ensenanza{
	margin-bottom: 50px;
	padding: 20px 15px 0px 15px;
}
.contacto .col-texto .form_ensenanza h3{
	text-align: center;
}
}

@media screen and (min-width: 400px) and (max-width: 767px) {
  .content_video iframe{
  	width: 100%;
  	height: 310px;
  }
}

@media screen and (max-width: 399px) {
  .content_video iframe{
  	width: 100%;
  	height: 190px;
  }

  #descargar_boletas .contacto .col-texto .texto {
    text-align: left;
    padding: 0px 20px;
  }
}

/*reCAPTCHA v3*/
.grecaptcha-badge { visibility: hidden; }

p.recaptcha-terms {
 font-size: 11px !important;
 line-height: 1.2 !important;
 font-weight: 400 !important;
 color: #666 !important;
}

p.recaptcha-terms a {
 color: #a2a2a2 !important;
}

p.recaptcha-terms a:hover {
 text-decoration: underline;
}



/*=====================*/
/*=== CSS RESPONSIVE (termina) ===*/
/*=====================*/

/*=====================*/
/*=== CSS IMPRESION (inicio) ===*/
/*=====================*/

@media print{
	body{
		font-size: 11pt;
		line-height: 16pt;
		font-family: 'Open Sans', Arial, sans-serif !important;
		color: #000;
	}

	@page {
		size: A4;
		margin: 2cm 1.5cm;
	}

	h1, h2, h3, h4, h5, h6 {
	  page-break-after: avoid;
	}

	h1{
		font-size: 24pt;
		line-height: 32pt;
		margin: 0;
	}
	h2{
		font-size: 21pt;
		line-height: 28pt;
		margin: 0;
	}
	h3{
		font-size: 18pt;
		line-height: 24pt;
		margin: 0;
	}
	h4{
		font-size: 16pt;
		line-height: 21pt;
		margin: 0;
	}
	h5{
		font-size: 14pt;
		line-height: 18pt;
		margin: 0;
	}
	h6{
		font-size: 14pt;
		line-height: 18pt;
		margin: 0;
	}

	.content .title{
		margin-bottom: 0.5cm;
	}

	.content .desc, .galeria_de_imagenes .desc, .sop > .desc{
		font-size: 11pt;
		line-height: 16pt;
		font-weight: 400;
		margin: 0 0 1cm 0;
	}

	.content .main_img{
		margin: 0 0 1cm 0;
	}

	.sec_img{
		margin: 0 0 1cm 0;
	}

	.content .texto{
		margin: 0 0 1cm 0;	
	}

	table, figure {
	  page-break-inside: avoid;
	}

	img {
	   max-width: 70% !important;
	}

	.logo_print{
		border-bottom: 0.5pt solid #ccc;
		margin:0 0 1.5cm 0 !important;
		padding:0 0 1cm 0 !important
	}

	.logo_print img{
		width: 3.53cm !important;
		height: 3.56cm !important;
	}

	.admin_quick_edit, .quick_edit_panel, .btn_panel, .panel_adminfront, a:after{
		display: none;
	}

	.footer_print{
		font-size: 10pt;
		line-height: 16pt;
		border-top: 0.5pt solid #ccc;
		margin: 1.5cm 0 0 0;
		padding: 1cm 0 0 0;
	}

	.galeria_de_imagenes{
		display: none !important;
	}

	.fck_h3{
		font-weight: 400;
	}

	.fck_h4{
		font-weight: 400;
	}

	.fck_h5{
		font-weight: 400;
	}

	.fck_h6{
		font-weight: 400;
	}

	.fck_h3 b, .fck_h3 strong, .fck_h4 b, .fck_h4 strong, .fck_h5 b, .fck_h5 strong, .fck_h6 b, .fck_h6 strong{
		font-weight: 700;
	}

	.fck_h3 u, .fck_h4 u, .fck_h5 u, .fck_h6 u{
		text-decoration: none;
		border-bottom: 1px solid #000;
		padding-bottom: 5px;
	}

	.box_00{
		border: 1px solid #000;
		padding: 30px;
	}

	.box_01{
		border: 1px dashed #000;
		padding: 30px;
	}

	.box_02{
		border: 1px solid #ccc;
		color: #000;
		padding: 30px;
	}

	.box_03{
		background: #dcdcdc;
		border: 1px solid #b6b6b6;
		color: #000;
		padding: 30px;
	}

}

/*=====================*/
/*=== CSS IMPRESION (termina) ===*/
/*=====================*/






