/*-----------------------------------------------------------------------------------
	CIMAC_2021
	About: A shiny new Blocs website.
	Author: vaduhla
	Version: 1.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:#FFFFFF;
    overflow-x:hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-container{overflow: hidden;} /* Prevents unwanted scroll space when scroll FX used. */
a,button{transition: background .3s ease-in-out;outline: none!important;} /* Prevent blue selection glow on Chrome and Safari */
a:hover{text-decoration: none; cursor:pointer;}


/* Preloader */

.page-preloader{position: fixed;top: 0;bottom: 0;width: 100%;z-index:100000;background:#FFFFFF url("img/pageload-spinner.gif") no-repeat center center;animation-name: preloader-fade;animation-delay: 2s;animation-duration: 0.5s;animation-fill-mode: both;}
.preloader-complete{animation-delay:0.1s;}
@keyframes preloader-fade {0% {opacity: 1;visibility: visible;}100% {opacity: 0;visibility: hidden;}}

/* = Web Fonts
-------------------------------------------------------------- */

@font-face {
	font-family:'NunitoSans-Black';
	src: url('./fonts/NunitoSans-Black/NunitoSans-Black.ttf');
	src: url('./fonts/NunitoSans-Black/NunitoSans-Black.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family:'NunitoSans-ExtraBold';
	src: url('./fonts/NunitoSans-ExtraBold/NunitoSans-ExtraBold.ttf');
	src: url('./fonts/NunitoSans-ExtraBold/NunitoSans-ExtraBold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family:'NunitoSans-Regular';
	src: url('./fonts/NunitoSans-Regular/NunitoSans-Regular.ttf');
	src: url('./fonts/NunitoSans-Regular/NunitoSans-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family:'NunitoSans-SemiBold';
	src: url('./fonts/NunitoSans-SemiBold/NunitoSans-SemiBold.ttf');
	src: url('./fonts/NunitoSans-SemiBold/NunitoSans-SemiBold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family:'NunitoSans-Bold';
	src: url('./fonts/NunitoSans-Bold/NunitoSans-Bold.ttf');
	src: url('./fonts/NunitoSans-Bold/NunitoSans-Bold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

/* = Blocs
-------------------------------------------------------------- */

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	padding:0 20px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
	display:flex;
}
.bloc .container{
	padding-left:0;
	padding-right:0;
}


/* Sizes */

.bloc-lg{
	padding:100px 20px;
}

/* = Full Screen Blocs 
-------------------------------------------------------------- */

.bloc-fill-screen{
	min-height:100vh;
	display: flex;
	flex-direction: column;
	padding-top:20px;
	padding-bottom:20px;
}
.bloc-fill-screen > .container{
	align-self: flex-middle;
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
}
.bloc-fill-screen > .container > .row{
	flex-grow: 1;
	align-self: center;
	width:100%;
}
.bloc-fill-screen .fill-bloc-top-edge, .bloc-fill-screen .fill-bloc-bottom-edge{
	flex-grow: 0;
}
.bloc-fill-screen .fill-bloc-top-edge{
	align-self: flex-start;
}
.bloc-fill-screen .fill-bloc-bottom-edge{
	align-self: flex-end;
}


/* Background Styles */

.bg-center,.bg-l-edge,.bg-r-edge,.bg-t-edge,.bg-b-edge,.bg-tl-edge,.bg-bl-edge,.bg-tr-edge,.bg-br-edge,.bg-repeat{
	-webkit-background-size: auto!important;
	-moz-background-size: auto!important;
	-o-background-size: auto!important;
	background-size: auto!important;
}


/* Video Background Styles */

.video-bg-container, .bloc-video{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	right: -50%;
	overflow: hidden;
	transform: translateX(-50%);
	-webkit-transform:translateX(-50%);
}
.bloc-video, .video-bg-container iframe{
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	z-index: 0;
}


/* Background Effects */

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index:-1;
}
.parallax {
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Dark theme */

.d-bloc{
	color:rgba(255,255,255,.7);
}
.d-bloc button:hover{
	color:rgba(255,255,255,.9);
}
.d-bloc .icon-round,.d-bloc .icon-square,.d-bloc .icon-rounded,.d-bloc .icon-semi-rounded-a,.d-bloc .icon-semi-rounded-b{
	border-color:rgba(255,255,255,.9);
}
.d-bloc .divider-h span{
	border-color:rgba(255,255,255,.2);
}
.d-bloc .a-btn,.d-bloc .navbar a, .d-bloc a .icon-sm, .d-bloc a .icon-md, .d-bloc a .icon-lg, .d-bloc a .icon-xl, .d-bloc h1 a, .d-bloc h2 a, .d-bloc h3 a, .d-bloc h4 a, .d-bloc h5 a, .d-bloc h6 a, .d-bloc p a{
	color:rgba(255,255,255,.6);
}
.d-bloc .a-btn:hover,.d-bloc .navbar a:hover,.d-bloc a:hover .icon-sm, .d-bloc a:hover .icon-md, .d-bloc a:hover .icon-lg, .d-bloc a:hover .icon-xl, .d-bloc h1 a:hover, .d-bloc h2 a:hover, .d-bloc h3 a:hover, .d-bloc h4 a:hover, .d-bloc h5 a:hover, .d-bloc h6 a:hover, .d-bloc p a:hover{
	color:rgba(255,255,255,1);
}
.d-bloc .navbar-toggle .icon-bar{
	background:rgba(255,255,255,1);
}
.d-bloc .btn-wire,.d-bloc .btn-wire:hover{
	color:rgba(255,255,255,1);
	border-color:rgba(255,255,255,1);
}
.d-bloc .card{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover{
	color:rgba(0,0,0,.7);
}
.d-bloc .card icon{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover{
	color:rgba(0,0,0,1);
}
.d-bloc .card .btn-wire, .d-bloc .card .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* Light theme */

.d-bloc .card,.l-bloc{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover,.l-bloc button:hover{
	color:rgba(0,0,0,.7);
}
.l-bloc .icon-round,.l-bloc .icon-square,.l-bloc .icon-rounded,.l-bloc .icon-semi-rounded-a,.l-bloc .icon-semi-rounded-b{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span,.l-bloc .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn,.l-bloc .a-btn,.l-bloc .navbar a,.l-bloc a .icon-sm, .l-bloc a .icon-md, .l-bloc a .icon-lg, .l-bloc a .icon-xl, .l-bloc h1 a, .l-bloc h2 a, .l-bloc h3 a, .l-bloc h4 a, .l-bloc h5 a, .l-bloc h6 a, .l-bloc p a{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover,.l-bloc .a-btn:hover,.l-bloc .navbar a:hover, .l-bloc a:hover .icon-sm, .l-bloc a:hover .icon-md, .l-bloc a:hover .icon-lg, .l-bloc a:hover .icon-xl, .l-bloc h1 a:hover, .l-bloc h2 a:hover, .l-bloc h3 a:hover, .l-bloc h4 a:hover, .l-bloc h5 a:hover, .l-bloc h6 a:hover, .l-bloc p a:hover{
	color:rgba(0,0,0,1);
}
.l-bloc .navbar-toggle .icon-bar{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .btn-wire,.d-bloc .card .btn-wire:hover,.l-bloc .btn-wire,.l-bloc .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}

/* Row Margin Offsets */

.voffset{
	margin-top:30px;
}


/* = NavBar
-------------------------------------------------------------- */

.navbar-dark .nav .dropdown-menu .nav-link{
	color: rgb(64, 64, 64);
}
/* Handle Multi Level Navigation */
.dropdown-menu .dropdown-menu{
	border:none}
@media (min-width:576px){
	
.navbar-expand-sm .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-sm .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:768px){
	.navbar-expand-md .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-md .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:992px){
	.navbar-expand-lg .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-lg .dropdown-menu .submenu-left{
	right:100%;
	left:auto}
}
/* = Bric adjustment margins
-------------------------------------------------------------- */

.mg-clear{
	margin:0;
}
.mg-sm{
	margin-top:10px;
	margin-bottom:5px;
}
.mg-md{
	margin-top:10px;
	margin-bottom:20px;
}
.mg-lg{
	margin-top:10px;
	margin-bottom:40px;
}
img.mg-sm,img.mg-md,img.mg-lg{
	margin-top: 0;
}
img.mg-sm{
	margin-bottom:10px;
}
img.mg-md{
	margin-bottom:30px;
}
img.mg-lg{
	margin-bottom:50px;
}

/* = Buttons
-------------------------------------------------------------- */

.btn-d,.btn-d:hover,.btn-d:focus{
	color:#FFF;
	background:rgba(0,0,0,.3);
}

/* Prevent ugly blue glow on chrome and safari */
button{
	outline: none!important;
}

.btn-rd{
	border-radius: 40px;
}

/* = Icons
-------------------------------------------------------------- */
.icon-sm{
	font-size:18px!important;
}
.icon-md{
	font-size:30px!important;
}
.icon-lg{
	font-size:60px!important;
}


/* = Text & Icon Styles
-------------------------------------------------------------- */
.blockquote{
	padding:0 20px;
	border-left:2px solid;
}
.blockquote.text-right{
	border-left:0;
	border-right:2px solid;
}


/* = Cards
-------------------------------------------------------------- */
.card-sq, .card-sq .card-header, .card-sq .card-footer{
	border-radius:0;
}
.card-rd{
	border-radius:30px;
}
.card-rd .card-header{
	border-radius:29px 29px 0 0;
}
.card-rd .card-footer{
	border-radius:0 0 29px 29px;
}



/* Scroll FX */
.scroll-fx-in-range{
	will-change: opacity;
}


/* ScrollToTop button */

.scrollToTop{
	width:36px;
	height:36px;
	padding:5px;
	position:fixed;
	bottom:20px;
	right:20px;
	opacity:0;
	z-index:999;
	transition: all .3s ease-in-out;
	pointer-events:none;
}
.showScrollTop{
	opacity: 1;
	pointer-events:all;
}
.scroll-to-top-btn-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}
/* = Lightbox
-------------------------------------------------------------- */

a[data-lightbox]{
	position: relative;
	display: block;
	text-align: center;
}
a[data-lightbox]:hover::before{
	content:"+";
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial;
	font-size:32px;
	line-height: 42px;
	width:50px;
	height:50px;
	margin-left:-25px;
	border-radius: 50%;
	background:rgba(0,0,0,.5);
	color:#FFF;
	font-weight:100;
	z-index: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
a[data-lightbox]:hover img{
	opacity: 0.6;
	-webkit-animation-fill-mode: none;
	animation-fill-mode:none;
}
.lightbox-caption{
	padding: 20px;
	color: #FFF;
	background: rgba(0,0,0,.5);
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: 5px;
}
.close-lightbox:hover,.next-lightbox:hover, .prev-lightbox:hover{
	background:rgba(0,0,0,.5);
}
.next-lightbox, .prev-lightbox,.close-lightbox{
	position: absolute;
	padding:6px;
	background:rgba(0,0,0,.3);
	line-height:0;
	transition: background .2s ease-in-out;
	border-radius:.25rem;
	border:none;
	z-index:20;
}
.next-lightbox, .prev-lightbox{
	top:45%;
}
.close-lightbox{
	top:20px;
	right:20px;
}
.next-lightbox{
	right:25px;
}
.prev-lightbox{
	left:25px;
}
.lightbox-prev-icon,.lightbox-next-icon,.lightbox-close-icon{
	fill:none;
	stroke: #fff;
	stroke-width: 3px;
	fill-rule: evenodd;
	stroke-linecap:round;
}
.lightbox-close-svg{
	pointer-events:none;
}

/* Framless */
.frameless-lb{
	border-radius: 0;
	border:none;
}
.frameless-lb .modal-body{
	padding:0;
}
.frameless-lb .lightbox-caption{
	left:0;
	right:0;
	bottom:-16px;
}

/* = Custom Styling
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"(null)";
}
.container{
	max-width:1140px;
}
.feature-col-mt{
	margin-top:29px;
}
.hero-first-col-mb{
	margin-bottom:30px;
}
.navbar-brand img{
	width:50px;
	height:60px;
}
.img-style-pad{
	width:836px;
	margin-top:154px;
	margin-bottom:14px;
	padding:0px 0px 0px 0px;
	border-radius:0px 0px 0px 0px;
}
.img-style-pad-alianzas{
	width:226px;
	margin-top:60px;
	margin-bottom:60px;
}
.img-style{
	width:261px;
}
.img-mall-paseo-ro-style{
	width:131px;
}
.img-main-na-style{
	width:746px;
}
.img-online-cim-style{
	width:365px;
	margin-top:37px;
}
.h2-style{
	font-family:"NunitoSans-ExtraBold";
	color:#FEFFFF!important;
	text-align:left;
}
.pad_buton{
	margin-top:39px;
	font-family:"TCCC-UnityText-Medium";
}
.pad-fotos{
	margin-top:59px;
}
.estilo_boton{
	font-family:"NunitoSans-Black";
	margin-bottom:83px;
}
.subh1{
	color:#FEFF00!important;
	margin-bottom:63px;
}
.pad_social{
	margin-top:48px;
}
.btn-style{
	width:92.78%;
	margin-bottom:0px;
	border-radius:25px 25px 25px 25px;
}
.img-lam3-b-2x-style{
	width:1136px;
}
.p-style{
	width:100%;
	font-family:"NunitoSans-ExtraBold";
	font-size:22px;
}
.p-bloc-3-style{
	font-size:16px;
	width:100%;
	font-family:"NunitoSans-Bold";
	line-height:22px;
	color:#231F20!important;
}
.h3-style{
	font-family:"NunitoSans-Regular";
	font-size:16px;
}
.pad-r{
	padding-top:31px;
}
.img-bloc-1-style{
	width:178px;
}
.img-logo-fonda-style-fap{
	width:278px;
}
.img-circusta-style{
	width:58px;
}
.blue-bg-gradient{
	background:linear-gradient(190deg, #00F9F0, #0149FF);
}
.text-trans-gradient{
	background-clip:text!important;
	-webkit-background-clip:text!important;
	background:linear-gradient(0deg, rgba(255,255,255,0.0), #FFFFFF);
	color:transparent!important;
}
.head-calendario{
	font-family:"NunitoSans-Black";
	text-align:left;
	font-size:24px;
	font-weight:800;
	color:#FFFFFF!important;
	text-shadow:0px 1px 3px rgba(0,0,0,0.34);
}
.p-3-style{
	font-size:16px;
	font-family:"NunitoSans-Bold";
	width:100%;
}
.h6-style{
	width:100%;
	font-family:"NunitoSans-ExtraBold";
	letter-spacing:00px;
	color:#320D5A!important;
	font-size:20px;
	margin:0px 0px 0px 0px;
}
.btn-button-style{
	width:23.33%;
	margin-top:122px;
	font-family:"NunitoSans-Black";
	margin-bottom:0px;
}
.img-main-style{
	width:510px;
}
.img-footer-w-style{
	width:283px;
	opacity:0.5;
	margin-left:0px;
}
.programa{
	text-align:center;
	font-family:"NunitoSans-Black";
	margin-bottom:84px;
	margin-top:0px;
}
.h1-programación-style{
	font-family:"NunitoSans-Black";
	margin-top:0px;
	margin-bottom:94px;
	font-size:40px;
}
.btn-bloc-0-style{
	width:25.09%;
	padding-top:12px;
	padding-bottom:12px;
	font-family:"NunitoSans-ExtraBold";
	border-radius:29px 29px 29px 29px;
}
.mensaje{
	text-align:left;
	font-family:"NunitoSans-Black";
	color:#FEFFFE!important;
	font-size:36px;
	margin:0px 54px 54px 54px;
}
.padding-mensaje{
	padding-top:125px;
}
.h1-style{
	font-size:36px;
}
.h1-bloc-2-style{
	font-size:40px;
	margin-top:0px;
	font-family:"NunitoSans-Black";
	text-align:center;
	color:#BF6EFE!important;
	margin-bottom:86px;
}
.padding-siguenos{
	padding-top:81px;
}
.link-style{
	font-family:"NunitoSans-Black";
}
.nav_menu{
	font-family:"NunitoSans-Black";
	color:#94FFFF!important;
	font-size:16px;
}
.postular{
	font-family:"NunitoSans-Black";
}
.titulo-postula{
	font-family:"NunitoSans-Black";
	text-align:center;
	color:#1579D7!important;
	text-decoration:none;
}
.titulo-bloc-postula{
	font-family:"NunitoSans-Black";
	text-align:center;
	margin-bottom:86px;
	margin-top:0px;
}
.parrafo-postula{
	font-family:"NunitoSans-SemiBold";
}
.link-postulaciones-style{
	width:100%;
}
.img-imag-style{
	width:262px;
	border-radius:0px 0px 0px 0px;
}
.img-3-style{
	width:820px;
	margin-top:56px;
}
.img-4-style{
	width:460px;
	margin-top:41px;
	margin-bottom:70px;
}
.logo_head{
	margin-top:198px;
}
.img-23-style{
	width:116px;
}
.img-ct-rgb--style{
	width:230px;
}
.img-logo-mu-style{
	width:213px;
}
.img-26-style{
	width:275px;
}
.img-25-style{
	width:219px;
}
.magen-auspicios{
	margin-top:89px;
}
.img-main-cimac-style{
	width:959px;
}
.img-12-style{
	width:369px;
}
.img-bloc-0-style{
	width:416px;
}
.img-11-style{
	width:363px;
}
.container-div-style{
	height:280px;
	width:100%;
}
.h3-2-style{
	font-size:40px;
}
.nav_menu:active{
	color:rgba(254,255,255,0.51)!important;
}
.nav_menu:hover{
	color:#FFFFFF!important;
}
.btn-bloc-0-style:hover{
	font-family:"NunitoSans-Black";
	color:#0061FF!important;
}
.tarjeta{
	background-size:67px auto;
	background:linear-gradient(0deg, #FF6700 0%, #FEC703 100%);
}
.img-35-style{
	width:216px;
}
.img-bloc-8-style{
	width:227px;
}
.img-34-style{
	width:224px;
}
.img-36-style{
	width:226px;
}
.img-37-style{
	width:183px;
}
.img-38-style{
	width:176px;
}
.img-39-style{
	width:174px;
}
.btn-6-style{
	width:60.18%;
}
.btn-5-style{
	width:60.18%;
}
.btn-postular-style{
	width:60.18%;
}
.btn-3-style{
	width:61.09%;
}
.img-logo-fap-16-9-style{
	width:165px;
}
.img-bloc-4-style{
	width:288px;
}
.img-martil-style{
	width:232px;
}

/* = Colour
-------------------------------------------------------------- */

/* Background colour styles */

.bgc-tangerine-yellow{
	background-color:#FFC702;
}
.bgc-platinum{
	background-color:#E5E5E5;
}
.bgc-midnight-blue{
	background-color:#27004A;
}

/* Text colour styles */

.tc-dark-magenta{
	color:#871C87!important;
}
.tc-tangerine-yellow{
	color:#FFC702!important;
}
.tc-blue-ryb{
	color:#005AFF!important;
}

/* Button colour styles */

.btn-phlox{
	background:#E200E9;
	color:#FFFFFF!important;
}
.btn-phlox:hover{
	background:#b500ba!important;
	color:#FFFFFF!important;
}
.btn-vivid-cerise{
	background:#E10087;
	color:#FFFFFF!important;
}
.btn-vivid-cerise:hover{
	background:#b4006c!important;
	color:#FFFFFF!important;
}
.btn-blue-ryb{
	background:#005AFF;
	color:#FFFFFF!important;
}
.btn-blue-ryb:hover{
	background:#0048cc!important;
	color:#FFFFFF!important;
}

/* Icon colour styles */

.icon-white{
	color:#FFFFFF!important;
	border-color:#FFFFFF!important;
}
.icon-tangerine-yellow{
	color:#FFC702!important;
	border-color:#FFC702!important;
}
.icon-lavender-purple5{
	color:#005AFF!important;
	border-color:#005AFF!important;
}

/* Bloc image backgrounds */

.bg-fondo-1{
	background-image:url("img/fondo_1.svg");
}
.bg-fondo-z{
	background-image:url("img/fondo_z.svg");
}
.bg-fondo-3{
	background-image:url("img/fondo_3.svg");
}
.bg-fondo-3-1{
	background-image:url("img/fondo_3_1.svg");
}
.bg-cimac-bg{
	background-image:url("img/cimac_bg.svg");
}



/* = Bloc Padding Multi Breakpoint
-------------------------------------------------------------- */

@media (min-width: 576px) {
    .bloc-xxl-sm{padding:200px 20px;}
    .bloc-xl-sm{padding:150px 20px;}
    .bloc-lg-sm{padding:100px 20px;}
    .bloc-md-sm{padding:50px 20px;}
    .bloc-sm-sm{padding:20px;}
    .bloc-no-padding-sm{padding:0 20px;}
}
@media (min-width: 768px) {
    .bloc-xxl-md{padding:200px 20px;}
    .bloc-xl-md{padding:150px 20px;}
    .bloc-lg-md{padding:100px 20px;}
    .bloc-md-md{padding:50px 20px;}
    .bloc-sm-md{padding:20px 20px;}
    .bloc-no-padding-md{padding:0 20px;}
}
@media (min-width: 992px) {
    .bloc-xxl-lg{padding:200px 20px;}
    .bloc-xl-lg{padding:150px 20px;}
    .bloc-lg-lg{padding:100px 20px;}
    .bloc-md-lg{padding:50px 20px;}
    .bloc-sm-lg{padding:20px;}
    .bloc-no-padding-lg{padding:0 20px;}
}


/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container{
        padding-left: 0; 
        padding-right: 0;  
    }
}
@media (max-width: 991px)
{
    .container{width:100%;}
    .bloc{padding-left: constant(safe-area-inset-left);padding-right: constant(safe-area-inset-right);} /* iPhone X Notch Support*/
    .bloc-group, .bloc-group .bloc{display:block;width:100%;}
}
@media (max-width: 767px)
{
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .btn-dwn{
       display:none; 
    }
    .voffset{
        margin-top:5px;
    }
    .voffset-md{
        margin-top:20px;
    }
    .voffset-lg{
        margin-top:30px;
    }
    form{
        padding:5px;
    }
    .close-lightbox{
        display:inline-block;
    }
    .blocsapp-device-iphone5{
	   background-size: 216px 425px;
	   padding-top:60px;
	   width:216px;
	   height:425px;
    }
    .blocsapp-device-iphone5 img{
	   width: 180px;
	   height: 320px;
    }
}

@media (max-width: 991px){
	.h1-programación-style{
		margin-top:66px;
		margin-bottom:75px;
	}
	.img-imag-style{
		width:344px;
	}
	.titulo-bloc-postula{
		margin-top:66px;
	}
	.btn-postular-style{
		width:55.3%;
	}
	.btn-6-style{
		width:55.96%;
	}
	.btn-3-style{
		width:55.3%;
	}
	.btn-5-style{
		width:53.31%;
	}
	.pad-postula{
		margin-bottom:72px;
	}
	.btn-style{
		width:100%;
	}
	.img-footer-w-style{
		width:160px;
	}
	.mt-md-0{
	}
	.mt-md-4{
	}
	.img-33-style{
		width:266px;
	}
	.ico_pad{
		margin-right:40px;
	}
	
	/* MD Row Margin Offsets */
	.voffset-clear-md{
		margin-top:0;
	}
	
}

@media (max-width: 767px){
	.h1-programación-style{
		margin-top:49px;
		margin-bottom:54px;
	}
	.btn-button-style{
		width:61.79%;
		margin-bottom:125px;
	}
	.btn-style{
		padding-top:0px;
		padding-bottom:0px;
		width:48.67%;
		border-radius:14px 14px 14px 14px;
	}
	.img-37-style{
		width:350px;
	}
	.link-style{
		width:0px;
	}
	.img-38-style{
		width:350px;
	}
	.img-39-style{
		width:350px;
	}
	.img-36-style{
		width:350px;
	}
	.img-35-style{
		width:350px;
	}
	.img-34-style{
		width:350px;
	}
	.img-33-style{
		width:350px;
	}
	.img-bloc-8-style{
		width:350px;
	}
	.padimg{
		margin:20px 20px 20px 20px;
	}
	.estilo_boton{
		margin-top:78px;
	}
	
}

@media (max-width: 575px){
	.img-circusta-style{
		width:48px;
	}
	.estilo_boton{
		padding-top:5px;
	}
	.img-lam3-b-2x-style{
		margin-bottom:50px;
	}
	.p-bloc-3-style{
		margin-top:46px;
		font-size:18px;
	}
	.img-bloc-1-style{
		width:150px;
	}
	.p-style{
		margin-top:43px;
	}
	.pad-celu{
		margin-bottom:26px;
	}
	.footer-link{
		text-align:center;
	}
	.btn-bloc-0-style{
		width:94.44%;
		padding-top:10px;
	}
	.btn-style{
		margin-top:35px;
		width:76.3%;
	}
	.img-4-style{
		width:211px;
		margin-bottom:42px;
	}
	.logo_head{
		margin-top:83px;
	}
	.h1-programación-style{
		margin-top:50px;
	}
	.btn-button-style{
		width:65.93%;
	}
	.container-div-style{
		margin-bottom:0px;
		height:1273px;
	}
	.container-div-bloc-7-style{
		height:92px;
	}
	.container-div-0-style{
		height:94px;
	}
	.img-style{
		width:172px;
	}
	.mt-1{
	}
	.img-33-style{
		width:230px;
	}
	.img-34-style{
		width:230px;
	}
	.img-bloc-8-style{
		width:230px;
	}
	.img-35-style{
		width:230px;
	}
	.img-36-style{
		width:230px;
	}
	.img-37-style{
		width:230px;
	}
	.img-38-style{
		width:230px;
	}
	.img-39-style{
		width:230px;
	}
	.img-footer-w-style{
		padding-left:0px;
		margin-left:53px;
	}
	.ico_pad{
		margin-top:28px;
		margin-bottom:28px;
	}
	.ico_links_pad{
		margin-top:51px;
		margin-bottom:51px;
	}
	.programa{
		margin-bottom:17px;
	}
	
}

