/*-----------------------------------------------------------------------------------
	SOU_web_v1
	About: A shiny new Blocs website.
	Author: Blueboystudio
	Version: 1.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:transparent;
    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;}
.scroll-fx-lock-init{position:fixed!important;top: 0;bottom: 0;left: :0;right: 0;z-index:99999;} /* ScrollFX Lock */
.blocs-grid-container{display: grid!important;grid-template-columns: 1fr 1fr;grid-template-rows: auto auto;column-gap: 1.5rem;row-gap: 1.5rem;} /* CSS Grid */
nav .dropdown-menu .nav-link{color:rgba(0,0,0,0.6)!important;} /* Maintain Downdown Menu Link Color in Navigation */
[data-bs-theme="dark"] nav .dropdown-menu .nav-link{color:var(--bs-dropdown-link-color)!important;} /* Maintain Downdown Menu Link Color in Navigation in Darkmode */


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

/* = Full Width Blocs 
-------------------------------------------------------------- */

.full-width-bloc{
	padding-left:0;
	padding-right:0;
}
.full-width-bloc .row{
	margin-left:0;
	margin-right:0;
}
.full-width-bloc .container{
	width:100%;
	max-width:100%!important;
}
.full-width-bloc .carousel img{
	width:100%;
	height:auto;
}


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


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

/* = Sticky Nav
-------------------------------------------------------------- */

.sticky-nav.sticky{
	position:fixed;
	top:0;
	z-index:1000;
	box-shadow:0 1px 2px rgba(0,0,0,.3);
	 transition: all .2s ease-out;
}
/* Navbar Icon */
.svg-menu-icon{
	fill: none;
	stroke: rgba(0,0,0,0.5);
	stroke-width: 2px;
	fill-rule: evenodd;
}
.navbar-dark .svg-menu-icon{
	stroke: rgba(255,255,255,0.5);
}
.menu-icon-thin-bars{
	stroke-width: 1px;
}
.menu-icon-thick-bars{
	stroke-width: 5px;
}
.menu-icon-rounded-bars{
	stroke-width: 3px;
	stroke-linecap: round;
}
.menu-icon-filled{
	fill: rgba(0,0,0,0.5);
	stroke-width: 0px;
}
.navbar-dark .menu-icon-filled{
	fill: rgba(255,255,255,0.5);
}
.navbar-toggler-icon{
	background: none!important;
	pointer-events: none;
	width: 33px;
	height: 33px;
}

/* Nav Special Classes */
.nav-special{
	overflow-y:scroll;
}
.nav-special .site-navigation{
	top:0;
	left:0;
	width:100%;
	position: relative!important;
	max-width: 100%!important;
	z-index: 1000;
}
.nav-special .nav > li{
	width:100%;
	background: none!important;
	border:0!important;
}
.nav-special.collapsing{
	-webkit-transition: none;
	transition: none;
	height:100%!important;
	background: none!important;
}
.nav-special .navbar-nav .dropdown-menu.show{
	position: relative!important;
	transform: none!important;
	float: none;
	width: 100%;
	margin-top: 0;
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 0;
}
.nav-special .nav .dropdown-menu .nav-link{
	color:#FFF;
}
.blocsapp-special-menu{
	position: absolute;
	z-index:10000;
}
.nav-special.fullscreen-nav .caret,.nav-special.fullscreen-nav .dropdown-menu .dropdown .caret{
	border-width: 8px;
}
.nav-special .navbar-nav .show>.nav-link{
	color:#FFF;
}

/* Animate Menu Symbol */
.navbar-toggle{
	transition: all .1s linear;
}
.selected-nav{
	opacity: 0;
	transform: scale(0.3);
	transition: all .1s linear;
}


/* Special Menu Close Button */
.close-special-menu{
	position: absolute;
	display: block;
	width: 25px;
	height:25px;
	top:16px;
	right:10px;
	z-index: 10000;
}
.nav-invert .sidebar-nav .close-special-menu{
	left:260px;
}
.close-special-menu .close-icon{
	display: block;
	width:100%;
	height:1px;
	transform: rotate(45deg);
	margin-top:12px;
}
.close-special-menu .close-icon:after{
	content:"";
	display:inherit;
	width:inherit;
	height:inherit;
	background: inherit;
	transform: rotate(90deg);
}
.lock-scroll{
	overflow:hidden;
	transition: background .3s linear;
}
.nav-special::-webkit-scrollbar{
	-webkit-appearance: none;
	width:0;
	height:0;
}
.nav-special .dropdown-menu .dropdown .caret{
	border-top-color: rgba(255,255,255,.8);
	border-right-color: transparent;
	border-bottom-color: transparent;
	border-left-color: transparent;
	margin: 0 0 0 5px;
	float: none;
}
.blocsapp-special-menu .site-navigation.pull-right{
	float:none!important;
}

/* Nav Special Close Button */
.close-special-menu .close-icon{
	background:#fff;
}
.blocsapp-special-menu blocsnav{
	background: #000;
}

/* Side Bar Navigation */
.nav-special.sidebar-nav{
	position: fixed;
	right: -300px;
	top: 0;
	bottom: 0;
	width: 300px;
	z-index: 1000;
	transition: all .2s linear;
}
.nav-invert .nav-special.sidebar-nav{
	right: auto;
	left: -300px;
}
 .nav-special.sidebar-nav .site-navigation{
	margin-top:15px;
	padding-left:15px;
}
.nav-special.sidebar-nav .nav > li a{
	color:rgba(255,255,255,.8);
}
 .nav-special.sidebar-nav .nav > li a:hover{
	color:#FFF;
}
 .open.nav-special.sidebar-nav{
	right: 0;
	transition: all .2s linear;
}
.nav-invert .open.nav-special.sidebar-nav{
	left: 0;
	transition: all .2s linear;
}
.navbar-toggler:focus{
	box-shadow:none;
}
;
	
/* Content Tint */
.content-tint{
	z-index: -1;
	transition: background .2s linear;
}
.content-tint.on{
	display: block;
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	background: transparent;
	z-index: 1001;
	background:rgba(0,0,0,.4);
}
.content-tint.on:hover{
	background:rgba(0,0,0,.1);
}
/* 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-md{
	margin-top:10px;
	margin-bottom:20px;
}

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

.a-block{
	width:100%;
	text-align:left;
	display: inline-block;
}
.text-center .a-block{
	text-align:center;
}
.btn .caret{
	margin:0 0 0 5px}.dropdown a .caret{
	margin:0 0 0 5px}.btn-dropdown .dropdown-menu .dropdown{
	padding: 3px 20px;
}

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




/* = 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%;
}
}
/* = Classic Dividers
-------------------------------------------------------------- */
.divider-h{
	min-height: 1px;
	background-color:rgba(0,0,0,.2);
	margin: 20px 0;
}
.divider-half{
	width: 50%;
}
.dropdown-menu .divider-h{
	margin:0;
}

/* = Forms
-------------------------------------------------------------- */

.form-control{
	border-color:rgba(0,0,0,.1);
	box-shadow:none;
}


.carousel-nav-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

.hide-indicators{
	display:none;
}

.carousel-indicators li::marker{
	font-size:0;
}
/* 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;
}

/* Hide Object */
.object-hidden{
	display:none;
}

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

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Helvetica";
}
.container{
	max-width:1140px;
}
.navbar-logo{
	text-transform:none;
	text-decoration:none;
	font-size:20px;
}
.nav-link{
	font-weight:lighter;
	color:var(--swatch-var-6911)!important;
}
.h1-style{
	color:var(--swatch-var-6911)!important;
	font-weight:lighter;
	font-size:92px;
	line-height:75px;
}
.h3-style{
	font-weight:lighter;
	color:var(--swatch-var-6911)!important;
	text-decoration:none;
	font-size:40px;
}
.arrow{
	width:70px;
	position:relative;
	right:0px;
	top:120px;
}
.sou_pleca{
	width:150px;
	margin:0px 0px 0px 0px;
	z-index:1;
	position:absolute;
	right:-100px;
	top:200px;
}
.sou-pleca-abajo{
	margin:0px 0px 0px 0px;
	z-index:1;
	position:absolute;
	left:0px;
	width:150px;
	bottom:0px;
}
.p-style{
	font-weight:lighter;
	color:var(--swatch-var-6911)!important;
	font-size:18px;
	display:flex;
	text-align:left;
}
.div_soluciones{
	background-color:var(--swatch-var-971);
	padding:30px 30px 30px 30px;
}
.h2-style{
	color:var(--swatch-var-6911)!important;
	font-weight:lighter;
	font-size:60px;
	line-height:60px;
}
.sou-pleca-section{
	position:relative;
	width:150px;
	left:-100px;
}
.div-solutions{
	padding:30px 30px 30px 30px;
	border-width:0px 0px 0px 0px;
	border-radius:0px 0px 0px 0px;
	height:100%;
	background-color:var(--swatch-var-379);
	display:flex;
	flex-direction:column;
	align-items:flex-start;
}
.white-text{
	color:var(--swatch-var-971)!important;
	font-weight:normal;
}
.row-shade{
	height:100%;
}
.carousel-style{
	width:400px;
	height:400px;
}
.carousel-container{
	display:flex;
}
.new_card{
	padding:30px 30px 30px 30px;
	height:400px;
	display:flex;
	flex-direction:column;
	justify-content:flex-end;
	background-image:url("img/render_casa_bn.jpg");
	background-image: -webkit-image-set(url("img/render_casa_bn.webp") 1x,
url("img/render_casa_bn.webp") 2x);background-image: image-set(url("img/render_casa_bn.jpg") 1x,
url("img/render_casa_bn.jpg") 2x,url("img/render_casa_bn.webp") 1x,
url("img/render_casa_bn.webp") 2x);
	background-size:cover;
	background-position:center center;
}
.h4-style{
	color:var(--swatch-var-971)!important;
	font-weight:bold;
}
.paragraph-card{
	color:var(--swatch-var-971)!important;
}
.new_card:hover{
	background-size:cover;
	background-image:url("img/render_casa_color.jpg");
	background-image: -webkit-image-set(url("img/render_casa_color.webp") 1x,
url("img/render_casa_color.webp") 2x);background-image: image-set(url("img/render_casa_color.jpg") 1x,
url("img/render_casa_color.jpg") 2x,url("img/render_casa_color.webp") 1x,
url("img/render_casa_color.webp") 2x);
}
.new-card-02{
	padding:30px 30px 30px 30px;
	height:400px;
	display:flex;
	flex-direction:column;
	justify-content:flex-end;
	background-size:cover;
	background-position:center center;
	background-image:url("img/silueta_construccion_bn.jpg");
	background-image: -webkit-image-set(url("img/silueta_construccion_bn.webp") 1x,
url("img/silueta_construccion_bn.webp") 2x);background-image: image-set(url("img/silueta_construccion_bn.jpg") 1x,
url("img/silueta_construccion_bn.jpg") 2x,url("img/silueta_construccion_bn.webp") 1x,
url("img/silueta_construccion_bn.webp") 2x);
}
.new-card-02:hover{
	background-size:cover;
	background-image:url("img/silueta_construccion-color.jpg");
	background-image: -webkit-image-set(url("img/silueta_construccion-color.webp") 1x,
url("img/silueta_construccion-color.webp") 2x);background-image: image-set(url("img/silueta_construccion-color.jpg") 1x,
url("img/silueta_construccion-color.jpg") 2x,url("img/silueta_construccion-color.webp") 1x,
url("img/silueta_construccion-color.webp") 2x);
}
.new-card-03{
	background-color:var(--swatch-var-6911);
	padding:30px 30px 30px 30px;
	height:400px;
	display:flex;
	flex-direction:column;
	justify-content:flex-end;
	background-size:cover;
	background-position:center center;
	background-image:url("img/fachada_bn.jpg");
	background-image: -webkit-image-set(url("img/fachada_bn.webp") 1x,
url("img/fachada_bn.webp") 2x);background-image: image-set(url("img/fachada_bn.jpg") 1x,
url("img/fachada_bn.jpg") 2x,url("img/fachada_bn.webp") 1x,
url("img/fachada_bn.webp") 2x);
}
.new-card-03:hover{
	background-size:cover;
	background-image:url("img/fachada_color.jpg");
	background-image: -webkit-image-set(url("img/fachada_color.webp") 1x,
url("img/fachada_color.webp") 2x);background-image: image-set(url("img/fachada_color.jpg") 1x,
url("img/fachada_color.jpg") 2x,url("img/fachada_color.webp") 1x,
url("img/fachada_color.webp") 2x);
}
.div-arquitecto{
	height:800px;
	background-image:url("img/arquitecto.jpg");
	background-image: -webkit-image-set(url("img/arquitecto.webp") 1x,
url("img/arquitecto.webp") 2x);background-image: image-set(url("img/arquitecto.jpg") 1x,
url("img/arquitecto.jpg") 2x,url("img/arquitecto.webp") 1x,
url("img/arquitecto.webp") 2x);
	background-size:cover;
	background-position:center bottom;
	padding:30px 30px 30px 30px;
	margin:0px 20px 0px 0px;
}
.sou_pleca_trayectoria{
	z-index:3;
	position:relative;
	left:-50px;
	width:150px;
	top:400px;
}
.tab-trayectoria{
	display:flex;
	flex-direction:column;
	padding:30px 30px 30px 30px;
}
.tab-list{
	border-width:0px 0px 0px 0px;
	border-radius:0px 0px 0px 0px;
}
.tab-content{
	width:70%;
	padding:30px 30px 30px 30px;
}
.tab-div{
	display:flex;
	flex-direction:row;
	align-items:center;
}
.nav-tabs{
	border-style:solid;
}
.nav-tabs .nav-link{
	border-width:0px 0px 3px 0px;
	border-color:var(--swatch-var-971)!important;
	border-style:solid;
}
.h5-style{
	font-weight:lighter;
	color:var(--swatch-var-6911)!important;
	font-size:24px;
}
.nav-tabs .nav-link:active{
	border-width:0px 0px 3px 0px;
	border-style:solid;
	border-color:var(--swatch-var-6911)!important;
}
.nav-tabs .nav-link:focus{
	border-width:0px 0px 3px 0px;
	border-color:var(--swatch-var-6911)!important;
	border-style:solid;
}
.nav-tabs .nav-link:hover{
	border-width:0px 0px 3px 0px;
	border-style:solid;
	border-color:var(--swatch-var-7213)!important;
}
.divider-style{
	width:100%;
	background-color:var(--swatch-var-6911);
	height:3px;
}
.texto-portafolio{
	color:var(--swatch-var-971)!important;
	font-size:20px;
	text-decoration:none;
	margin-right:10px;
	font-weight:lighter;
}
.portafolio-02{
	height:600px;
	background-image:url("img/ext_bal-01.jpg");
	background-image: -webkit-image-set(url("img/ext_bal-01.webp") 1x,
url("img/ext_bal-01.webp") 2x);background-image: image-set(url("img/ext_bal-01.jpg") 1x,
url("img/ext_bal-01.jpg") 2x,url("img/ext_bal-01.webp") 1x,
url("img/ext_bal-01.webp") 2x);
	background-image: -webkit-image-set(url("img/ext_bal-01.webp") 1x,
url("img/ext_bal-01.webp") 2x);background-image: image-set(url("img/ext_bal-01.jpg") 1x,
url("img/ext_bal-01.jpg") 2x,url("img/ext_bal-01.webp") 1x,
url("img/ext_bal-01.webp") 2x);
	background-size:cover;
	background-repeat:no-repeat;
	padding:10px 10px 10px 10px;
	display:flex;
	align-items:flex-end;
	width:100%;
	justify-content:flex-end;
	margin:0px 0px 20px 0px;
	background-position:center center;
}
.columna-portafolio{
	display:flex;
	flex-wrap:wrap-reverse;
	justify-content:flex-end;
	flex-direction:row;
	align-items:flex-start;
}
.portafolio-03{
	background-size:cover;
	background-repeat:no-repeat;
	padding:10px 10px 10px 10px;
	display:flex;
	align-items:flex-end;
	width:100%;
	justify-content:flex-end;
	background-image:url("img/rsw_1300h_800-3.jpeg");
	background-image: -webkit-image-set(url("img/rsw_1300h_800-3.webp") 1x,
url("img/rsw_1300h_800-3.webp") 2x);background-image: image-set(url("img/rsw_1300h_800-3.jpeg") 1x,
url("img/rsw_1300h_800-3.jpeg") 2x,url("img/rsw_1300h_800-3.webp") 1x,
url("img/rsw_1300h_800-3.webp") 2x);
	background-image: -webkit-image-set(url("img/rsw_1300h_800-3.webp") 1x,
url("img/rsw_1300h_800-3.webp") 2x);background-image: image-set(url("img/rsw_1300h_800-3.jpeg") 1x,
url("img/rsw_1300h_800-3.jpeg") 2x,url("img/rsw_1300h_800-3.webp") 1x,
url("img/rsw_1300h_800-3.webp") 2x);
	height:600px;
	background-position:center center;
}
.black_btn{
	border-radius:0px 0px 0px 0px;
	background-color:var(--swatch-var-6911);
}
.black_btn:hover{
	background-color:var(--swatch-var-7213);
}
.form-style{
	font-weight:lighter;
	background-color:transparent;
	border-radius:0px 0px 0px 0px;
	border-width:0px 0px 1px 0px;
	border-style:solid;
	border-color:var(--swatch-var-6911)!important;
	padding:0px 0px 0px 0px;
	color:var(--swatch-var-6911)!important;
}
.small-text{
	font-weight:lighter;
	color:var(--swatch-var-6911)!important;
}
.footer-title{
	font-weight:bold;
	font-size:16px;
	color:var(--swatch-var-971)!important;
}
.footer-paragraph{
	font-size:14px;
	color:var(--swatch-var-971)!important;
	margin:0px 0px 0px 0px;
}
.footer-link{
	text-decoration:none;
	color:var(--swatch-var-971)!important;
}
.nav-menu-link{
	border-width:0px 0px 2px 0px;
	border-style:solid;
	border-color:var(--swatch-var-971)!important;
	margin-right:10px;
	font-size:14px;
	color:var(--swatch-var-6911)!important;
	font-weight:lighter;
}
.nav-menu-link:hover{
	border-width:0px 0px 2px 0px;
	border-color:var(--swatch-var-7213)!important;
	border-style:solid;
}
.nav-menu-link:active{
	border-width:0px 0px 2px 0px;
	border-style:solid;
	border-color:var(--swatch-var-6911)!important;
}
.menu-link{
	font-weight:lighter;
	color:var(--swatch-var-6911)!important;
	font-size:16px;
	display:flex;
	padding:0px 0px 0px 0px;
	border-radius:0px 0px 0px 0px;
}
.portafolio-01{
	background-image:url("img/proyecto_agronomos.jpg");
	background-image: -webkit-image-set(url("img/proyecto_agronomos.webp") 1x,
url("img/proyecto_agronomos.webp") 2x);background-image: image-set(url("img/proyecto_agronomos.jpg") 1x,
url("img/proyecto_agronomos.jpg") 2x,url("img/proyecto_agronomos.webp") 1x,
url("img/proyecto_agronomos.webp") 2x);
	background-size:cover;
	background-repeat:no-repeat;
	padding:10px 10px 10px 10px;
	display:flex;
	align-items:flex-end;
	width:100%;
	justify-content:flex-end;
	margin:0px 0px 20px 0px;
	flex-direction:column;
	height:600px;
	background-position:center top;
}
.vertical-list{
	display:flex;
	flex-direction:column;
	width:30%;
	border-width:0px 0px 0px 0px;
}
.tab-portafolio{
	width:70%;
}
.portafolio-column{
	display:flex;
}
.column-divider{
	border-style:solid;
	border-color:var(--swatch-var-6911)!important;
	border-width:0px 1px 0px 0px;
}
.container-portafolio{
	display:flex;
	flex-direction:row;
	align-content:flex-start;
}
.divider-background-color{
	background-color:var(--swatch-var-6911);
}
.portafolio-text{
	font-weight:lighter;
	color:var(--swatch-var-6911)!important;
	font-size:14px;
}
.sou-pleca-portafolio{
	margin:0px 0px 0px 0px;
	z-index:1;
	position:absolute;
	left:0px;
	width:150px;
	top:600px;
}
.img-style{
	width:150px;
}
.img-sou-logo-style{
	width:150px;
}
.boton-portafolio{
	background-color:var(--swatch-var-971);
	border-width:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	align-items:center;
}
.boton-portafolio:hover{
	background-color:var(--swatch-var-971);
}
.boton-portafolio:active{
	border-width:0px 0px 0px 0px;
	background-color:var(--swatch-var-971);
}
.boton-portafolio:focus{
	background-color:var(--swatch-var-971);
	border-width:0px 0px 0px 0px;
}
.dropdown-link{
	border-width:0px 0px 0px 0px;
	border-color:var(--swatch-var-971)!important;
}
.dropdown_list{
	border-width:0px 0px 0px 0px;
	border-radius:0px 0px 0px 0px;
}
.gallery{
	padding:30px 0px 30px 0px;
	flex-wrap:wrap;
}
.menu-link-portafolio{
	font-weight:lighter;
	font-size:16px;
	text-decoration:none;
	color:var(--swatch-var-6911)!important;
	background-color:var(--swatch-var-971);
	padding:0px 0px 0px 0px;
	margin-right:10px;
	border-width:0px 0px 0px 0px;
}
.portfalio-div-link{
	border-top-width:0px;
	border-right-width:0px;
	border-left-width:0px;
	padding:5px 5px 5px 5px;
}
.portafolio_menubar{
	display:flex;
	flex-direction:column;
	padding:20px 20px 20px 20px;
}
.div-casaagr{
	height:600px;
	background-color:var(--swatch-var-379);
	display:flex;
	align-items:center;
	justify-content:center;
	flex-direction:column;
}
.div-quote{
	background-color:var(--swatch-var-6911);
	padding:20px 20px 20px 20px;
}
.pos-sjl{
	position:relative;
	top:50px;
	left:-100px;
}
.portfolio-navmenu{
	top:100px;
	z-index:3;
	display:flex;
	right:0px;
	position:fixed;
	left:0px;
}
menu{
	position:relative;
	z-index:5;
}
.div-social{
	justify-content:space-around;
	display:flex;
}
.div-render{
	background-image:url("img/rsw_1300h_800.jpeg");
	background-image: -webkit-image-set(url("img/rsw_1300h_800.webp") 1x,
url("img/rsw_1300h_800.webp") 2x);background-image: image-set(url("img/rsw_1300h_800.jpeg") 1x,
url("img/rsw_1300h_800.jpeg") 2x,url("img/rsw_1300h_800.webp") 1x,
url("img/rsw_1300h_800.webp") 2x);
	background-image: -webkit-image-set(url("img/rsw_1300h_800.webp") 1x,
url("img/rsw_1300h_800.webp") 2x);background-image: image-set(url("img/rsw_1300h_800.jpeg") 1x,
url("img/rsw_1300h_800.jpeg") 2x,url("img/rsw_1300h_800.webp") 1x,
url("img/rsw_1300h_800.webp") 2x);
	background-size:cover;
	height:500px;
	width:100%;
}
.menu-link-white{
	font-weight:lighter;
	color:var(--swatch-var-971)!important;
	font-size:16px;
}
.portafolio-menu-01{
	height:350px;
	background-size:cover;
	background-repeat:no-repeat;
	padding:10px 10px 10px 10px;
	display:flex;
	align-items:flex-end;
	width:100%;
	justify-content:center;
	background-image:url("img/rsw_365h_365cg_true.jpeg");
	background-image: -webkit-image-set(url("img/rsw_365h_365cg_true.webp") 1x,
url("img/rsw_365h_365cg_true.webp") 2x);background-image: image-set(url("img/rsw_365h_365cg_true.jpeg") 1x,
url("img/rsw_365h_365cg_true.jpeg") 2x,url("img/rsw_365h_365cg_true.webp") 1x,
url("img/rsw_365h_365cg_true.webp") 2x);
	background-image: -webkit-image-set(url("img/rsw_365h_365cg_true.webp") 1x,
url("img/rsw_365h_365cg_true.webp") 2x);background-image: image-set(url("img/rsw_365h_365cg_true.jpeg") 1x,
url("img/rsw_365h_365cg_true.jpeg") 2x,url("img/rsw_365h_365cg_true.webp") 1x,
url("img/rsw_365h_365cg_true.webp") 2x);
	background-image: -webkit-image-set(url("img/rsw_365h_365cg_true.webp") 1x,
url("img/rsw_365h_365cg_true.webp") 2x);background-image: image-set(url("img/rsw_365h_365cg_true.jpeg") 1x,
url("img/rsw_365h_365cg_true.jpeg") 2x,url("img/rsw_365h_365cg_true.webp") 1x,
url("img/rsw_365h_365cg_true.webp") 2x);
}
.portafolio-menu-02{
	height:350px;
	background-size:cover;
	background-repeat:no-repeat;
	padding:10px 10px 10px 10px;
	display:flex;
	align-items:flex-end;
	width:100%;
	justify-content:center;
	background-image:url("img/rsw_1300h_800-1.jpeg");
	background-image: -webkit-image-set(url("img/rsw_1300h_800-1.webp") 1x,
url("img/rsw_1300h_800-1.webp") 2x);background-image: image-set(url("img/rsw_1300h_800-1.jpeg") 1x,
url("img/rsw_1300h_800-1.jpeg") 2x,url("img/rsw_1300h_800-1.webp") 1x,
url("img/rsw_1300h_800-1.webp") 2x);
	background-image: -webkit-image-set(url("img/rsw_1300h_800-1.webp") 1x,
url("img/rsw_1300h_800-1.webp") 2x);background-image: image-set(url("img/rsw_1300h_800-1.jpeg") 1x,
url("img/rsw_1300h_800-1.jpeg") 2x,url("img/rsw_1300h_800-1.webp") 1x,
url("img/rsw_1300h_800-1.webp") 2x);
	background-position:center center;
}
.portafolio-menu-03{
	height:350px;
	background-size:cover;
	background-repeat:no-repeat;
	padding:10px 10px 10px 10px;
	display:flex;
	align-items:flex-end;
	width:100%;
	justify-content:center;
	background-image:url("img/agr-03.jpg");
	background-image: -webkit-image-set(url("img/agr-03.webp") 1x,
url("img/agr-03.webp") 2x);background-image: image-set(url("img/agr-03.jpg") 1x,
url("img/agr-03.jpg") 2x,url("img/agr-03.webp") 1x,
url("img/agr-03.webp") 2x);
	background-position:left top;
}
.portafolio-menu-04{
	height:350px;
	background-size:cover;
	background-repeat:no-repeat;
	padding:10px 10px 10px 10px;
	display:flex;
	align-items:flex-end;
	width:100%;
	justify-content:center;
	background-image:url("img/depto_bal-02.jpg");
	background-image: -webkit-image-set(url("img/depto_bal-02.webp") 1x,
url("img/depto_bal-02.webp") 2x);background-image: image-set(url("img/depto_bal-02.jpg") 1x,
url("img/depto_bal-02.jpg") 2x,url("img/depto_bal-02.webp") 1x,
url("img/depto_bal-02.webp") 2x);
	background-image: -webkit-image-set(url("img/depto_bal-02.webp") 1x,
url("img/depto_bal-02.webp") 2x);background-image: image-set(url("img/depto_bal-02.jpg") 1x,
url("img/depto_bal-02.jpg") 2x,url("img/depto_bal-02.webp") 1x,
url("img/depto_bal-02.webp") 2x);
	background-position:center center;
}
.divider-white{
	background-color:var(--swatch-var-6911);
	height:20px;
	width:150px;
}
.img-sjl{
	width:300px;
}
.dropdown_btn{
	margin:0px 0px 0px 0px;
}
.menu-link-portafolio:hover{
	background-color:var(--swatch-var-971);
	border-width:0px 0px 0px 0px;
}
.menu-link-portafolio:active{
	background-color:var(--swatch-var-971);
	border-width:0px 0px 0px 0px;
}
.menu-link-portafolio:focus{
	background-color:var(--swatch-var-971);
	border-width:0px 0px 0px 0px;
}
.menu-link-portafolio:visited{
	background-color:var(--swatch-var-971);
	border-width:0px 0px 0px 0px;
}
.portafolio_menu_sticky{
	position:sticky;
	z-index:4;
	top:0px;
}
.portafolio-04{
	background-image:url("img/rsw_365h_365cg_true.jpeg");
	background-image: -webkit-image-set(url("img/rsw_365h_365cg_true.webp") 1x,
url("img/rsw_365h_365cg_true.webp") 2x);background-image: image-set(url("img/rsw_365h_365cg_true.jpeg") 1x,
url("img/rsw_365h_365cg_true.jpeg") 2x,url("img/rsw_365h_365cg_true.webp") 1x,
url("img/rsw_365h_365cg_true.webp") 2x);
	background-image: -webkit-image-set(url("img/rsw_365h_365cg_true.webp") 1x,
url("img/rsw_365h_365cg_true.webp") 2x);background-image: image-set(url("img/rsw_365h_365cg_true.jpeg") 1x,
url("img/rsw_365h_365cg_true.jpeg") 2x,url("img/rsw_365h_365cg_true.webp") 1x,
url("img/rsw_365h_365cg_true.webp") 2x);
	background-image: -webkit-image-set(url("img/rsw_365h_365cg_true.webp") 1x,
url("img/rsw_365h_365cg_true.webp") 2x);background-image: image-set(url("img/rsw_365h_365cg_true.jpeg") 1x,
url("img/rsw_365h_365cg_true.jpeg") 2x,url("img/rsw_365h_365cg_true.webp") 1x,
url("img/rsw_365h_365cg_true.webp") 2x);
	background-size:cover;
	background-repeat:no-repeat;
	padding:10px 10px 10px 10px;
	display:flex;
	align-items:flex-end;
	width:100%;
	justify-content:flex-end;
	margin:0px 0px 0px 0px;
	flex-direction:column;
	background-position:center top;
	height:600px;
}
.divider-portafolio-style{
	height:20px;
	background-color:var(--swatch-var-971);
	width:150px;
	margin-left:auto;
	margin-right:0;
}
.body-bkgrnd{
	background-size:cover;
	background-repeat:no-repeat;
	background-position:right bottom;
	position:fixed;
	bottom:0px;
	right:0px;
	z-index:-1;
	background-image:url("img/arch_fondo-03.jpg");
	background-image: -webkit-image-set(url("img/arch_fondo-03.webp") 1x,
url("img/arch_fondo-03.webp") 2x);background-image: image-set(url("img/arch_fondo-03.jpg") 1x,
url("img/arch_fondo-03.jpg") 2x,url("img/arch_fondo-03.webp") 1x,
url("img/arch_fondo-03.webp") 2x);
	background-image: -webkit-image-set(url("img/arch_fondo-03.webp") 1x,
url("img/arch_fondo-03.webp") 2x);background-image: image-set(url("img/arch_fondo-03.jpg") 1x,
url("img/arch_fondo-03.jpg") 2x,url("img/arch_fondo-03.webp") 1x,
url("img/arch_fondo-03.webp") 2x);
}
.movil-size{
	font-weight:lighter;
	font-size:70px;
	text-align:right;
}
.div-agronoms-large{
	background-image:url("img/agr-07.jpg");
	background-image: -webkit-image-set(url("img/agr-07.webp") 1x,
url("img/agr-07.webp") 2x);background-image: image-set(url("img/agr-07.jpg") 1x,
url("img/agr-07.jpg") 2x,url("img/agr-07.webp") 1x,
url("img/agr-07.webp") 2x);
	width:100%;
	background-size:cover;
	height:700px;
	background-position:center center;
	background-repeat:no-repeat;
	background-color:var(--swatch-var-379);
}
.p-style-portfolio{
	font-weight:lighter;
	color:var(--swatch-var-6911)!important;
	font-size:14px;
	display:flex;
	text-align:left;
}
.div-agronomos-mid-top{
	background-image:url("img/agr-01.jpg");
	background-image: -webkit-image-set(url("img/agr-01.webp") 1x,
url("img/agr-01.webp") 2x);background-image: image-set(url("img/agr-01.jpg") 1x,
url("img/agr-01.jpg") 2x,url("img/agr-01.webp") 1x,
url("img/agr-01.webp") 2x);
	background-size:cover;
	height:340px;
}
.div-agronomos-mid-btm{
	background-image:url("img/agr-05.jpg");
	background-image: -webkit-image-set(url("img/agr-05.webp") 1x,
url("img/agr-05.webp") 2x);background-image: image-set(url("img/agr-05.jpg") 1x,
url("img/agr-05.jpg") 2x,url("img/agr-05.webp") 1x,
url("img/agr-05.webp") 2x);
	background-size:cover;
	height:340px;
	margin-top:20px;
}
.div-balcana-large{
	background-image:url("img/ext_bal-01.jpg");
	background-image: -webkit-image-set(url("img/ext_bal-01.webp") 1x,
url("img/ext_bal-01.webp") 2x);background-image: image-set(url("img/ext_bal-01.jpg") 1x,
url("img/ext_bal-01.jpg") 2x,url("img/ext_bal-01.webp") 1x,
url("img/ext_bal-01.webp") 2x);
	background-image: -webkit-image-set(url("img/ext_bal-01.webp") 1x,
url("img/ext_bal-01.webp") 2x);background-image: image-set(url("img/ext_bal-01.jpg") 1x,
url("img/ext_bal-01.jpg") 2x,url("img/ext_bal-01.webp") 1x,
url("img/ext_bal-01.webp") 2x);
	width:100%;
	background-size:cover;
	height:700px;
	background-position:center center;
}
.div-balcana-mid-top{
	background-image:url("img/Render%20Depto%20A-3.png");
	background-image: -webkit-image-set(url("img/Render%20Depto%20A-3.webp") 1x,
url("img/Render%20Depto%20A-3.webp") 2x);background-image: image-set(url("img/Render%20Depto%20A-3.png") 1x,
url("img/Render%20Depto%20A-3.png") 2x,url("img/Render%20Depto%20A-3.webp") 1x,
url("img/Render%20Depto%20A-3.webp") 2x);
	background-size:cover;
	height:340px;
	background-repeat:no-repeat;
	background-position:center top;
}
.div-balcana-mid-btm{
	background-image:url("img/depto_bal-02.jpg");
	background-image: -webkit-image-set(url("img/depto_bal-02.webp") 1x,
url("img/depto_bal-02.webp") 2x);background-image: image-set(url("img/depto_bal-02.jpg") 1x,
url("img/depto_bal-02.jpg") 2x,url("img/depto_bal-02.webp") 1x,
url("img/depto_bal-02.webp") 2x);
	background-image: -webkit-image-set(url("img/depto_bal-02.webp") 1x,
url("img/depto_bal-02.webp") 2x);background-image: image-set(url("img/depto_bal-02.jpg") 1x,
url("img/depto_bal-02.jpg") 2x,url("img/depto_bal-02.webp") 1x,
url("img/depto_bal-02.webp") 2x);
	background-size:cover;
	height:340px;
	margin-top:20px;
}
.div-balcana-mid-top-01{
	background-image:url("img/depto_bal-08.jpg");
	background-image: -webkit-image-set(url("img/depto_bal-08.webp") 1x,
url("img/depto_bal-08.webp") 2x);background-image: image-set(url("img/depto_bal-08.jpg") 1x,
url("img/depto_bal-08.jpg") 2x,url("img/depto_bal-08.webp") 1x,
url("img/depto_bal-08.webp") 2x);
	background-size:cover;
	height:340px;
	background-repeat:no-repeat;
	background-position:center top;
}
.bloc-divider-t-style{
	height:1px;
	fill:var(--swatch-var-7213);
}
.bloc-divider-b-style{
	height:1px;
	fill:var(--swatch-var-7213);
}
.div-balcana-mid-btm-02{
	background-image:url("img/depto_bal-09.jpg");
	background-image: -webkit-image-set(url("img/depto_bal-09.webp") 1x,
url("img/depto_bal-09.webp") 2x);background-image: image-set(url("img/depto_bal-09.jpg") 1x,
url("img/depto_bal-09.jpg") 2x,url("img/depto_bal-09.webp") 1x,
url("img/depto_bal-09.webp") 2x);
	background-size:cover;
	height:340px;
	margin-top:20px;
}
.bloc-divider-b-fill{
	fill:var(--swatch-var-7213);
	height:1px;
}
.div-sjl-large{
	background-image:url("img/rsw_1300h_800.jpeg");
	background-image: -webkit-image-set(url("img/rsw_1300h_800.webp") 1x,
url("img/rsw_1300h_800.webp") 2x);background-image: image-set(url("img/rsw_1300h_800.jpeg") 1x,
url("img/rsw_1300h_800.jpeg") 2x,url("img/rsw_1300h_800.webp") 1x,
url("img/rsw_1300h_800.webp") 2x);
	background-image: -webkit-image-set(url("img/rsw_1300h_800.webp") 1x,
url("img/rsw_1300h_800.webp") 2x);background-image: image-set(url("img/rsw_1300h_800.jpeg") 1x,
url("img/rsw_1300h_800.jpeg") 2x,url("img/rsw_1300h_800.webp") 1x,
url("img/rsw_1300h_800.webp") 2x);
	width:100%;
	background-size:cover;
	height:700px;
}
.div-sjl-mid-top{
	background-image:url("img/rsw_1300h_800-2.jpeg");
	background-image: -webkit-image-set(url("img/rsw_1300h_800-2.webp") 1x,
url("img/rsw_1300h_800-2.webp") 2x);background-image: image-set(url("img/rsw_1300h_800-2.jpeg") 1x,
url("img/rsw_1300h_800-2.jpeg") 2x,url("img/rsw_1300h_800-2.webp") 1x,
url("img/rsw_1300h_800-2.webp") 2x);
	background-size:cover;
	height:340px;
}
.div-sjl-mid-btm{
	background-image:url("img/rsw_1300h_800-3.jpeg");
	background-image: -webkit-image-set(url("img/rsw_1300h_800-3.webp") 1x,
url("img/rsw_1300h_800-3.webp") 2x);background-image: image-set(url("img/rsw_1300h_800-3.jpeg") 1x,
url("img/rsw_1300h_800-3.jpeg") 2x,url("img/rsw_1300h_800-3.webp") 1x,
url("img/rsw_1300h_800-3.webp") 2x);
	background-image: -webkit-image-set(url("img/rsw_1300h_800-3.webp") 1x,
url("img/rsw_1300h_800-3.webp") 2x);background-image: image-set(url("img/rsw_1300h_800-3.jpeg") 1x,
url("img/rsw_1300h_800-3.jpeg") 2x,url("img/rsw_1300h_800-3.webp") 1x,
url("img/rsw_1300h_800-3.webp") 2x);
	background-size:cover;
	height:340px;
	margin-top:20px;
}
.div-santotomas-lrg{
	height:600px;
	background-image:url("img/rsw_365h_365cg_true.jpeg");
	background-image: -webkit-image-set(url("img/rsw_365h_365cg_true.webp") 1x,
url("img/rsw_365h_365cg_true.webp") 2x);background-image: image-set(url("img/rsw_365h_365cg_true.jpeg") 1x,
url("img/rsw_365h_365cg_true.jpeg") 2x,url("img/rsw_365h_365cg_true.webp") 1x,
url("img/rsw_365h_365cg_true.webp") 2x);
	background-image: -webkit-image-set(url("img/rsw_365h_365cg_true.webp") 1x,
url("img/rsw_365h_365cg_true.webp") 2x);background-image: image-set(url("img/rsw_365h_365cg_true.jpeg") 1x,
url("img/rsw_365h_365cg_true.jpeg") 2x,url("img/rsw_365h_365cg_true.webp") 1x,
url("img/rsw_365h_365cg_true.webp") 2x);
	background-image: -webkit-image-set(url("img/rsw_365h_365cg_true.webp") 1x,
url("img/rsw_365h_365cg_true.webp") 2x);background-image: image-set(url("img/rsw_365h_365cg_true.jpeg") 1x,
url("img/rsw_365h_365cg_true.jpeg") 2x,url("img/rsw_365h_365cg_true.webp") 1x,
url("img/rsw_365h_365cg_true.webp") 2x);
	background-size:cover;
	background-repeat:no-repeat;
}
.div-shade{
	height:100%;
	background-color:var(--swatch-var-6911);
}
.div-dharma-large{
	background-image:url("img/rsw_1300h_800-1.jpeg");
	background-image: -webkit-image-set(url("img/rsw_1300h_800-1.webp") 1x,
url("img/rsw_1300h_800-1.webp") 2x);background-image: image-set(url("img/rsw_1300h_800-1.jpeg") 1x,
url("img/rsw_1300h_800-1.jpeg") 2x,url("img/rsw_1300h_800-1.webp") 1x,
url("img/rsw_1300h_800-1.webp") 2x);
	background-image: -webkit-image-set(url("img/rsw_1300h_800-1.webp") 1x,
url("img/rsw_1300h_800-1.webp") 2x);background-image: image-set(url("img/rsw_1300h_800-1.jpeg") 1x,
url("img/rsw_1300h_800-1.jpeg") 2x,url("img/rsw_1300h_800-1.webp") 1x,
url("img/rsw_1300h_800-1.webp") 2x);
	width:100%;
	background-size:cover;
	height:700px;
	background-position:center center;
	background-repeat:no-repeat;
	background-color:var(--swatch-var-379);
}
.accordion-style{
	background-color:var(--swatch-var-338);
	border-width:0px 0px 0px 0px;
	border-radius:0px 0px 0px 0px;
}
.card-heading{
	border-style:solid;
	border-color:#FEFFFF!important;
	border-width:0px 0px 1px 0px;
}
.card-heading:active{
	color:var(--swatch-var-7586)!important;
}
.accordion-heading{
	font-family:"Helvetica";
	text-decoration:none;
	color:#FFFFFF!important;
	font-weight:lighter;
	font-size:30px;
}
.card-column{
	border-style:solid;
	border-width:0px 1px 0px 0px;
	border-color:#FEFFFF!important;
}
.logo-style{
	width:200px;
}
.icon-hstyle{
	color:#FEFFFF!important;
	font-size:16px;
	text-decoration:none;
}
.h5-style-white{
	font-family:"Helvetica";
	font-size:24px;
	color:var(--swatch-var-971)!important;
	font-weight:lighter;
}
.link-style{
	text-decoration:none;
	color:var(--swatch-var-971)!important;
}

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

/* Swatch Variables */
:root{
	
	--swatch-var-6911:rgba(0,0,0,1.00);
	
	--swatch-var-971:rgba(255,255,255,1.00);
	
	--swatch-var-379:rgba(0,0,0,0.35);
	
	--swatch-var-7213:rgba(150,150,150,1.00);
	
	--swatch-var-1192:rgba(255,255,255,1.00);
	
	--swatch-var-338:rgba(255,255,255,0);
	
	--swatch-var-7586:#799AB0;
	
}


/* Background colour styles */

.bgc-1192{
	background-color:var(--swatch-var-1192);
}
.bgc-6911{
	background-color:var(--swatch-var-6911);
}

/* Text colour styles */

.tc-971{
	color:var(--swatch-var-971)!important;
}

/* Icon colour styles */

.icon-6911{
	color:var(--swatch-var-6911)!important;
	border-color:var(--swatch-var-6911)!important;
}
.icon-971{
	color:var(--swatch-var-971)!important;
	border-color:var(--swatch-var-971)!important;
}
.icon-1192{
	color:var(--swatch-var-1192)!important;
	border-color:var(--swatch-var-1192)!important;
}

/* Bloc image backgrounds */

.bg-section-bkgrnd-01{
	background-image:url("img/section_bkgrnd_01.jpg");
	background-image: -webkit-image-set(url("img/section_bkgrnd_01.webp") 1x,
url("img/section_bkgrnd_01.webp") 2x);background-image: image-set(url("img/section_bkgrnd_01.jpg") 1x,
url("img/section_bkgrnd_01.jpg") 2x,url("img/section_bkgrnd_01.webp") 1x,
url("img/section_bkgrnd_01.webp") 2x);
}
.bg-form-background{
	background-image:url("img/form_background-1.jpg");
	background-image: -webkit-image-set(url("img/form_background-1.webp") 1x,
url("img/form_background-1.webp") 2x);background-image: image-set(url("img/form_background-1.jpg") 1x,
url("img/form_background-1.jpg") 2x,url("img/form_background-1.webp") 1x,
url("img/form_background-1.webp") 2x);
}
.bg-arch-fondo{
	background-image:url("img/arch_fondo.jpg");
	background-image: -webkit-image-set(url("img/arch_fondo.webp") 1x,
url("img/arch_fondo.webp") 2x);background-image: image-set(url("img/arch_fondo.jpg") 1x,
url("img/arch_fondo.jpg") 2x,url("img/arch_fondo.webp") 1x,
url("img/arch_fondo.webp") 2x);
}
.bg-arch-fondo-02{
	background-image:url("img/arch_fondo-02.jpg");
	background-image: -webkit-image-set(url("img/arch_fondo-02.webp") 1x,
url("img/arch_fondo-02.webp") 2x);background-image: image-set(url("img/arch_fondo-02.jpg") 1x,
url("img/arch_fondo-02.jpg") 2x,url("img/arch_fondo-02.webp") 1x,
url("img/arch_fondo-02.webp") 2x);
}
.bg-arch-fondo-03{
	background-image:url("img/arch_fondo-03.jpg");
	background-image: -webkit-image-set(url("img/arch_fondo-03.webp") 1x,
url("img/arch_fondo-03.webp") 2x);background-image: image-set(url("img/arch_fondo-03.jpg") 1x,
url("img/arch_fondo-03.jpg") 2x,url("img/arch_fondo-03.webp") 1x,
url("img/arch_fondo-03.webp") 2x);
	background-image: -webkit-image-set(url("img/arch_fondo-03.webp") 1x,
url("img/arch_fondo-03.webp") 2x);background-image: image-set(url("img/arch_fondo-03.jpg") 1x,
url("img/arch_fondo-03.jpg") 2x,url("img/arch_fondo-03.webp") 1x,
url("img/arch_fondo-03.webp") 2x);
}



/* = 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){
	.columna-form{
		padding-bottom:60px;
	}
	.pos-sjl{
		left:0px;
	}
	.gallery{
		flex-wrap:wrap;
		display:flex;
	}
	.portafolio-texto{
	}
	.movil-size{
		font-size:55px;
	}
	.h2-style{
		font-size:40px;
	}
	.div-balcana-mid-top-01{
		margin-top:20px;
	}
	
}

@media (max-width: 767px){
	.pos-sjl{
		top:20px;
		left:0px;
	}
	.gallery{
		display:flex;
		flex-direction:column;
	}
	.portafolio-menu-03{
		height:150px;
	}
	.portafolio-menu-04{
		height:150px;
	}
	.portafolio-menu-02{
		height:150px;
	}
	.portafolio-menu-01{
		height:150px;
	}
	.blocsapp-special-menu blocsnav{
		background-color:var(--swatch-var-971);
	}
	.h1-style{
		font-size:70px;
	}
	.sou_pleca{
		top:250px;
	}
	.tab-container{
		width:100%;
	}
	.div-agronomos-mid-top{
		margin-top:20px;
	}
	.div-balcana-mid-top{
		margin-top:20px;
	}
	.div-sjl-mid-top{
		margin-top:20px;
	}
	.accordion-heading{
		font-size:40px;
	}
	.card-column{
		border-right-width:0px;
		border-bottom-width:1px;
		padding:20px 20px 20px 20px;
	}
	.sidebar-nav{
		width:230px!important;
	}
	.nav-special.sidebar-nav .nav > li{
		width:80%;
	}
	.nav-invert .sidebar-nav .close-special-menu{
		left:200px;
	}
	
}

@media (max-width: 575px){
	.navbar-logo{
		font-size:18px;
	}
	.footer-paragraph{
		text-align:left;
	}
	.footer-link{
		text-align:left;
	}
	.pos-sjl{
		left:0px;
		top:0px;
	}
	.div-casaagr{
		height:600px;
	}
	.boton-portafolio{
	}
	.portafolio-menu-03{
		height:150px;
	}
	.portafolio-menu-04{
		height:150px;
	}
	.portafolio-menu-02{
		height:150px;
	}
	.portafolio-menu-01{
		height:150px;
	}
	menu{
		z-index:5;
	}
	.menu-icon-stroke{
		stroke:var(--swatch-var-6911)!important;
		fill:var(--swatch-var-6911)!important;
	}
	.h1-style{
		font-size:40px;
		line-height:40px;
	}
	.sou_pleca{
		top:200px;
	}
	.h2-style{
		line-height:50px;
		font-size:34px;
	}
	.new_card{
		height:300px;
	}
	.new-card-03{
		height:300px;
	}
	.new-card-02{
		height:300px;
	}
	.tab-list{
	}
	.tab-trayectoria{
		padding-left:0px;
		padding-right:0px;
	}
	.h5-style{
	}
	.tab-div{
		width:100%;
	}
	.tab-container{
		width:100%;
	}
	.h3-style{
		font-size:20px;
	}
	.portafolio-01{
		height:300px;
	}
	.portafolio-04{
		height:300px;
	}
	.portafolio-02{
		height:300px;
		justify-content:flex-end;
		align-items:flex-start;
		background-position:right top;
	}
	.portafolio-03{
		height:300px;
	}
	.movil-size{
		font-size:40px;
		text-align:right;
		color:var(--swatch-var-1192)!important;
	}
	.div-agronoms-large{
		background-position:center top;
	}
	.div-balcana-large{
		background-position:center center;
	}
	.div-agronomos-mid-top{
		margin-top:20px;
	}
	.div-balcana-mid-top{
		margin-top:20px;
	}
	.div-balcana-mid-top-01{
		margin-top:20px;
	}
	.div-sjl-mid-top{
		margin-top:20px;
	}
	.div-santotomas-lrg{
		background-position:center center;
		background-size:cover;
		height:300px;
	}
	.div-dharma-large{
		background-position:center top;
	}
	.accordion-heading{
		font-size:25px;
	}
	.card-column{
		border-width:0px 0px 1px 0px;
		margin-bottom:50px;
	}
	
}

