/*-----------------------------------------------------------------------------------
	One Stop Fishing
	About: One Stop Fishing - App de Pesca Deportiva
	Author: Humann Tech
	Version: 2.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;}}

/* = 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;
	position:relative;
}


/* Sizes */

.bloc-lg{
	padding:100px 20px;
}
.bloc-md{
	padding:50px 20px;
}
.bloc-sm{
	padding: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;
}


/* Edge Dividers */

.bloc-shape-divider{
	position: absolute;
	width:100%;
	text-align:center;
	left:0;
	right:0;
	z-index: 0;
	display: flex;
	pointer-events: none;
}
.svg-divider{
	width:100%;
	height:100px;
	fill:#000000;
}
.bloc-divider-top{
	top:-1px;
	align-items: flex-start;
}
.bloc-divider-bottom{
	bottom:-1px;
	align-items: 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;
}
.bg-b-edge{
	background-position: bottom!important;
	background-repeat: no-repeat;
}
.bg-tl-edge{
	background-position: top left!important;
	background-repeat: no-repeat;
}
.bg-br-edge{
	background-position: bottom right!important;
	background-repeat: no-repeat;
}


/* 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;
}
.voffset-md{
	margin-top:50px;
}


/* = 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-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;
}
.icon-spacer{
	margin-right:5px;
}


/*  Rounded Image */
.img-rd-md{
	border-radius:20px;
}
.img-rd-lg{
	border-radius:34px;
}



/* = 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;
}
/* = Masonary
-------------------------------------------------------------- */
.card-columns .card {
	margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
	.card-columns {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	orphans: 1;
	widows: 1;
}
.card-columns .card {
	display: inline-block;
	width: 100%;
}
}




/* 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;
}

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

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Nunito-Medium";
	font-weight:400;
	color:#08187D!important;
}
.container{
	max-width:1200px;
}
.team-card{
	min-height:350px;
}
.h3-style{
	width:100%;
	font-weight:normal;
	font-size:20px;
	line-height:35px;
}
.img-edge{
	background-position:right center;
	background-repeat:no-repeat;
	float:inherit;
	overflow:inherit;
	margin-left:40%;
	width:120%;
	height:120%;
}
.ansuelo{
	float:initial;
	background-position:right top;
	background-repeat:no-repeat;
}
.p-style{
	width:100%;
}
.alto{
	min-height:740px;
}
.footer-margin{
	float:inherit;
	margin-top:5%;
}
.link-style{
	font-weight:normal;
	color:#FFFFFF!important;
	font-size:16px;
}
.p-6-style{
	text-indent:px;
}
.btn-margin{
	margin-right:5%;
}
.h2-style{
	font-size:55px;
	font-weight:bold;
	font-family:"Nunito-Medium";
	line-height:65px;
}
.text-span-style{
	font-weight:bold;
}
.text-span-bloc-5-style{
	font-weight:bold;
}
.text-span-0-style{
	font-weight:bold;
}
.text-span-0-bloc-5-style{
	font-weight:bold;
}
.text-span-9185-style{
	font-weight:bold;
}
.text-span-19843-style{
	font-weight:bold;
}
.text-span-37777-style{
	font-weight:bold;
}
.text-span-3315-style{
	font-weight:bold;
}
.spacebe{
	margin-bottom:5%;
}
.text-span-49244-style{
	font-weight:bold;
}
.img-11-style{
	width:250px;
}
.img-10-style{
	width:250px;
}
.spaceup{
	margin-top:15%;
}
.text-span-16355-style{
	font-weight:bold;
}
.text-span-32274-style{
	font-weight:bold;
}
.text-span-34402-style{
	font-weight:bold;
	font-style:normal;
}
.container-div-style{
	width:100%;
}
.h6-style{
	font-size:20px;
	width:100%;
}
.text-span-inicio-style{
	font-weight:bold;
}
.text-span-0-inicio-style{
	font-weight:bold;
}
.text-span-bloc-1-style{
	font-weight:bold;
}
.text-span-0-bloc-1-style{
	font-weight:bold;
}
.text-span-22985-style{
	font-weight:bold;
}
.p-1-style{
	width:56.25%;
	font-size:20px;
	color:#FFFFFF!important;
}
.text-span-14380-style{
	font-weight:bold;
}
.text-span-8940-style{
	font-weight:bold;
}
.text-span-42500-style{
	font-weight:bold;
}
.text-span-features-style{
	font-weight:bold;
}
.text-span-35728-style{
	font-weight:bold;
}
.p-3-style{
	font-size:20px;
	width:90.23%;
	color:#FFFFFF!important;
}
.btn-style{
	width:95.63%;
	font-family:"Ubuntu";
	font-weight:normal;
}
.img-group-347-style{
	width:293px;
}
.text-span-13998-style{
	font-weight:bold;
}
.text-span-28734-style{
	font-weight:bold;
	color:#FFFFFF!important;
}
.img-style{
	width:48px;
	margin-bottom:7%;
}
.text-span-19869-style{
	font-weight:bold;
}
.text-span-2424-style{
	font-weight:bold;
}
.text-span-29676-style{
	font-weight:bold;
}
.text-span-40315-style{
	font-weight:bold;
}
.text-span-176-style{
	font-weight:bold;
}
.text-span-15491-style{
	font-weight:bold;
}
.text-span-21665-style{
	font-weight:bold;
}
.text-span-15254-style{
	font-weight:bold;
	text-decoration:none;
	background-color:#FF9E1C;
	background-size:length;
	color:#08187D!important;
	padding:0% 2% 0% 2%;
}
.bloc-divider-b-fill{
	fill:#031882;
	height:60px;
}
.img-bloc-13-style{
	width:484px;
}
.bloc-divider-b-bloc-13-fill{
	fill:#08187D;
}
.btn-bloc-3-style{
	width:65.05%;
	font-family:"Ubuntu";
	font-weight:normal;
	color:#FEFFFF!important;
	font-size:18px;
}
.btn-sec-style{
	font-family:"Ubuntu";
	color:#031882!important;
	font-weight:bold;
}
.btn-2-style{
	width:65.05%;
	font-size:18px;
	font-weight:normal;
	color:#08187D!important;
}
.container-div-bloc-6-style{
	height:70px;
}
.container-div-bloc-13-style{
	height:70px;
}
.h5-style{
	font-family:"Nunito-Bold";
}
.btm-space{
	margin-bottom:5%;
}
.par-space{
	margin-bottom:12%;
}
.img-btn-appsto-style{
	width:192px;
}
.h2-bloc-1-style{
	font-family:"Nunito-Bold";
	font-size:40px;
}
.h1-style{
	font-family:"Nunito-Bold";
}
.p-bloc-3-style{
	font-size:20px;
	color:#FFFFFF!important;
}
.top-space{
	margin-top:5%;
}
.right-space{
	margin-right:5%;
}
.h1-features-style{
	font-family:"Nunito-Bold";
	width:49.08%;
}
.rigs{
	color:#FFFFFF!important;
	font-weight:normal;
	margin-top:5%;
}
.img-img-j-style{
	width:260px;
}
.img-img-flori-style{
	width:260px;
}
.img-img-caroli-style{
	width:260px;
}
.title-space{
	margin-bottom:7%;
}
.h2-bloc-5-style{
	font-size:40px;
	font-family:"Nunito-Bold";
}
.img-12-style{
	width:192px;
}
.img-btn-playsto-style{
	width:192px;
}
.h1-bloc-6-style{
	width:100%;
}
.footer-link{
	color:#FFFFFF!important;
}
.h4-style{
	font-size:28px;
}
.h4-síguenos-style{
	font-size:28px;
}
.img-logo-osg-ai-da-style{
	width:260px;
}
.menu-style{
	font-size:18px;
}
.menu-style:active{
	color:#FF9F1C!important;
}
.menu-style:hover{
	color:#FF9F1C!important;
}
.menu-style:focus{
	color:#FF9F1C!important;
}
.navbar-brand img{
	width:260px;
}
.h1-conócenos-style{
	font-size:60px;
}
.h5-inicio-style{
	font-family:"Nunito-Bold";
}
.h2-3-style{
	font-size:40px;
	width:60%;
}
.text-osf{
	font-size:20px;
	color:#FFFFFF!important;
}
.text-span-9826-style{
	font-weight:bold;
}
.text-span-39559-style{
	font-weight:bold;
}
.text-span-6999-style{
	font-weight:bold;
}
.img-21-style{
	width:260px;
}
.img-osf-logo--style{
	width:260px;
}
.img-5-style{
	width:260px;
}
.img-icon--style{
	width:60px;
}
.container-div-bloc-7-style{
	width:100%;
}
.img-27-style{
	width:66px;
}
.img-group-388-style{
	width:450px;
}
.img-group-389-style{
	width:450px;
}
.img-group-391-style{
	width:260px;
}
.btn-2-style:hover{
	color:#08187D!important;
}
.btn-sec-style:hover{
	color:#08187D!important;
}
.img-inicio-style{
	width:800px;
}
.card-style{
	padding-top:3%;
}
.edge-divider{
	padding-top:7%;
	padding-bottom:1%;
}
.edge-index{
	z-index:1;
}
.img-group-382-style{
	width:175px;
}
.img-26-style{
	width:175px;
	border-radius:0px 0px 0px 0px;
}
.text-span-bloc-6-style{
	font-weight:bold;
}
.text-span-0-bloc-6-style{
	font-weight:bold;
}
.text-span-32027-style{
	font-weight:bold;
}
.text-span-29753-style{
	font-weight:bold;
}

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

/* Background colour styles */

.bgc-phthalo-blue{
	background-color:#08187D;
}
.bgc-white-smoke{
	background-color:#F4F4F4;
}
.bgc-pale-lavender{
	background-color:#D6E0FF;
}
.bgc-ultramarine-blue{
	background-color:#5371F0;
}
.bgc-palatinate-blue{
	background-color:#2341EB;
}
.bgc-international-klein-blue{
	background-color:#0C23B3;
}

/* Text colour styles */

.tc-phthalo-blue{
	color:#08187D!important;
}
.tc-palatinate-blue{
	color:#2341EB!important;
}
.tc-white{
	color:#FFFFFF!important;
}
.tc-white-smoke{
	color:#F4F4F4!important;
}
.tc-dark-jungle-green{
	color:#212121!important;
}
.tc-platinum{
	color:#E6E6E6!important;
}

/* Button colour styles */

.btn-dark-tangerine{
	background:#FF9F1C;
	color:#FFFFFF!important;
}
.btn-dark-tangerine:hover{
	background:#cc7f16!important;
	color:#FFFFFF!important;
}
.btn-white{
	background:#FFFFFF;
	color:rgba(0,0,0,.5)!important;
}
.btn-white:hover{
	background:#cccccc!important;
	color:rgba(0,0,0,.5)!important;
}

/* Link colour styles */

.ltc-white{
	color:#FFFFFF!important;
}
.ltc-white:hover{
	color:#cccccc!important;
}

/* Icon colour styles */

.icon-white{
	color:#FFFFFF!important;
	border-color:#FFFFFF!important;
}
.icon-international-klein-blue{
	color:#0C23B3!important;
	border-color:#0C23B3!important;
}

/* Bloc image backgrounds */

.bg-Group-20387{
	background-image:url("img/Group%20387.png");
}
.bg-Group-20387{
	background-image:url("img/Group%20387.png");
}
.bg-Group-20326{
	background-image:url("img/Group%20326.png");
}
.bg-Group-20392{
	background-image:url("img/Group%20392.png");
}
.bg-OSF-iPhone13-20in-20Hand{
	background-image:url("img/OSF-iPhone13%20in%20Hand.png");
}
.bg-bg-clean{
	background-image:url("img/bg-clean.jpg");
}



/* = 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){
	.img-5-style{
		width:260px;
	}
	.btn-bloc-3-style{
		width:98.57%;
	}
	.btn-2-style{
		width:92.57%;
	}
	.card-style{
		width:100%;
		margin-bottom:3%;
		padding-top:3%;
	}
	.img-inicio-style{
		width:403px;
	}
	.h2-bloc-1-style{
		font-size:32px;
		line-height:37px;
	}
	.h3-style{
		line-height:30px;
	}
	.p-1-style{
		width:70.78%;
	}
	.row-style{
		width:100%;
	}
	.img-group-388-style{
		width:350px;
	}
	.img-group-389-style{
		width:350px;
	}
	.img-group-391-style{
		width:180px;
	}
	.h1-features-style{
		font-size:32px;
		width:70.37%;
	}
	.h2-bloc-5-style{
		font-size:32px;
	}
	.img-27-style{
		width:54px;
	}
	.img-icon--style{
		width:46px;
	}
	.h2-3-style{
		width:81.34%;
	}
	
	/* MD Row Margin Offsets */
	.voffset-clear-md{
		margin-top:0;
	}
		.voffset-md{
		margin-top:30px;
	}
	
}

@media (max-width: 767px){
	.img-10-style{
		width:160px;
	}
	.img-11-style{
		width:160px;
	}
	.par-space{
	}
	.h2-style{
		font-size:50px;
		line-height:55px;
	}
	.h3-style{
	}
	.btn-bloc-3-style{
		width:100%;
	}
	.btn-2-style{
		width:100%;
	}
	.p-bloc-3-style{
		font-size:18px;
	}
	.img-27-style{
		width:70px;
	}
	.p-1-style{
		width:80.45%;
		font-size:18px;
	}
	.p-3-style{
		width:100%;
	}
	.h2-bloc-5-style{
		font-size:32px;
	}
	.p-style{
		width:100%;
	}
	.h2-3-style{
		width:83.05%;
	}
	.card-style{
		padding-top:4%;
	}
	.cta-btm{
		padding-bottom:15%;
		padding-top:10%;
	}
	.img-group-388-style{
		width:500px;
	}
	.img-group-389-style{
		width:500px;
	}
	
	/* Small Row Margin Offsets */
	.voffset-sm{
		margin-top:30px;
	}
	
}

@media (max-width: 575px){
	.footer-link{
		text-align:center;
	}
	.spacebe{
	}
	.spaceadd{
		margin-bottom:23%;
	}
	.h2-3-style{
		font-size:25px;
		width:85.77%;
	}
	.h2-style{
		font-size:30px;
		line-height:35px;
	}
	.h2-bloc-1-style{
		font-size:26px;
		line-height:32px;
	}
	.p-1-style{
		width:94.31%;
	}
	.row-style{
		width:100%;
	}
	.img-group-391-style{
		width:180px;
	}
	.par-space{
	}
	.btm-space{
	}
	.h1-features-style{
		width:90.04%;
		font-size:27px;
	}
	.h2-bloc-5-style{
		font-size:27px;
	}
	.p-3-style{
		font-size:18px;
		width:100%;
		line-height:25px;
	}
	.img-27-style{
		width:75px;
	}
	.edge-index{
	}
	.btn-style{
	}
	.member-space{
		margin-bottom:5%;
	}
	.rigs{
		margin-bottom:10%;
	}
	
	/* Mobile Row Margin Offsets */
	.voffset-xs{
		margin-top:30px;
	}
	
	/* Mobile Text Margin Offsets */
	.mg-md-xs{
		margin-top:10px;
		margin-bottom:20px;
	}
		.mg-clear-xs{
		margin:0;
	}
	
}

/* Mailchimp Newsletter */

#mc_embed_signup {
    background: rgba(0,0,0,.0) !important;
    clear: left;
    font: 16px Helvetica,Arial,sans-serif !important;
}

#mc_embed_signup form {
    display: block;
    position: relative;
    text-align: left;
    color: white !important;
    padding: 0px 0 0px 0% !important;
}

#mc_embed_signup input {
    border: 1px solid #ff9f1d;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 30px !important;
}

#mc_embed_signup .button {
    background-color: #FF9F1C !important;
    width: 200px !important;
    height: 40px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    color: white;
}

#mc_embed_signup .mc-field-group input {
    padding: 12px 0 !important;
    margin-top: 1em !important;
    width: 350px !important;
    margin-bottom: 1em;
}

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
    background-color: rgba(255,255,255,0.0) !important;
}

.mc-field-group label {
    color: white !important;
	margin-top: 10px;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    text-decoration: underline;
}

.navbar-dark .navbar-nav .nav-link:hover {
    text-decoration: underline;
}
