

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

/*Fuentes///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

p, span, small, strong, a, button  {
  font-family: 'Quicksand', sans-serif!important;
}

h3,h4,h5,h6{
  font-family: 'Montserrat', sans-serif!important;
}

h1,h2{
  font-family: 'Quicksand', sans-serif!important;
}

/*Fuentes///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/



/*TAMAÑOS FUENTES///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

h1{
  font-size: 3.8rem;
}


h2 {font-size: 2.8rem;}

h3{
  font-size: 1.8rem;
}


h4{
  font-size: 1.6rem;
}

h5{
  font-size: 1.4rem;
}

h6{
  font-size: 1.1rem;
}


p{
  font-size: 0.9rem;
}

small{
 font-size: 0.8rem;
}

a{text-decoration: none;}


/*TAMAÑOS FUENTES///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


/*////////////////////////////////////////////////COLORES///////////////////////////////////////////////////////////////*/

.color-blue-1{
	color:#009CDE;
}

.bg-blue-1{
	background-color: #009CDE;
}

.border-blue-1{
	border:solid 1px #009CDE;
}

.color-grey-1{
	color: #333333;
}

.bg-grey-1{
	background-color: #333333;
}

.border-grey-1{
	border:solid 1px #333333;
}


.color-white{
	color: #fff;
}

.bg-white{
	background-color: #fff;
}

.border-white{
	border:solid 1px #fff;
}

/*////////////////////////////////////////////////COLORES///////////////////////////////////////////////////////////////*/



/*////////////////////////////////////////////////GRADIENTES///////////////////////////////////////////////////////////////*/

.bg-gradient-blue-1{
background: #009CDE;
background: -webkit-linear-gradient(90deg, #009CDE00  0%, #009CDE 100%);
background: -moz-linear-gradient(90deg, #009CDE00  0%, #009CDE 100%);
background: linear-gradient(90deg, #009CDE00  0%, #009CDE 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#009CDE00 ", endColorstr="#009CDE", GradientType=0);
}

.bg-gradient-black-up{
background: #022840;
background: -webkit-linear-gradient(0deg, #00000099  0%, #000000 100%);
background: -moz-linear-gradient(0deg, #00000099  0%, #000000 100%);
background: linear-gradient(0deg, #00000099  0%, #000000 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000099 ", endColorstr="#000000", GradientType=0);
}

/*////////////////////////////////////////////////GRADIENTES///////////////////////////////////////////////////////////////*/


/*navbar///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.navbar{
    z-index: 9;
	-webkit-transition: all 0.3s ease-in-out 0s;
     -o-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s;
}

.navbar-dark .nav-link{
  color:#fff!important
}

.nav-link:hover{
      color:#009CDE!important
    }


.link-btn{
		border-radius: 10px;
	padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
}
/*////////////////////////////////////////////////BOTONES///////////////////////////////////////////////////////////////*/

.btn-rounder{
	display: block;
  width: fit-content;
	font-size: 1.1rem;
	border-radius: 10px;
	padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;

     -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}


.btn-rounder:hover{
	 -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.btn-blue{
	color:#fff;
	background-color:#009CDE ;
	border:solid 1px #009CDE;

}
.btn-blue:hover{
	color:#009CDE;
	background-color:transparent ;
	border:solid 1px #009CDE;
}



.btn-grey{
	color:#fff;
	background-color: #333333;
	border:solid 1px #333333;

}
.btn-grey:hover{
	color:#333333;
	background-color:transparent ;
	border:solid 1px #333333;
}


.btn-white{
	color:#009CDE ;
	background-color: #fff;
	border:solid 1px #fff;

}
.btn-white:hover{
	color:#fff;
	background-color:transparent ;
	border:solid 1px #fff;
}

.btn-border-blue{
	color:#009CDE;
	background-color:transparent ;
	border:solid 1px #009CDE;
}
.btn-border-blue:hover{
	color:#fff!important;
	background-color:#009CDE ;
	border:solid 1px #009CDE;
}

.btn-border-grey{
	color:#333333;
	background-color:transparent ;
	border:solid 1px #333333;
}
.btn-border-grey:hover{
	color:#fff;
	background-color: #333333;
	border:solid 1px #333333;
}


.btn-border-white{
	color:#fff;
	background-color:transparent ;
	border:solid 1px #fff;
}
.btn-border-white:hover{
	color:#009CDE ;
	background-color: #fff;
	border:solid 1px #fff;
}



/*/////////////////////////////////////////////INPUT-TEXTAREA////////////////////////////////////////////////////*/
.input-rounder{
	max-width: 100%;
	font-size: 1.1rem;
	border-radius: 10px;
	padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
}

.textarea-rounder{
	min-height: 150px;
	width: 100%;
	font-size: 1.1rem;
	border-radius: 10px;
	padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
}


.input-white{
	color:#333333;
	background-color:#fff;
	border:solid 1px #009CDE;
}

.input-white::placeholder{
	color:#333333;
}

.input-border-white{
	color:#fff;
	background-color:transparent;
	border:solid 1px #fff;
}

.input-white::placeholder{
	color:#fff;
}

.input-border-blue{
	color:#009CDE;
	background-color:transparent ;
	border:solid 1px #009CDE;
}

.input-white::placeholder{
	color:#333333;
}


.input-shadow{
	color:#333333;
	background-color:#fff;
	border: none;
  box-shadow: 0 0 8px 1px rgb(0 156 222 / 35%);
}


.input-shadow::placeholder{
	color:#333333;
}




/*/////////////////////////////////////////////SELECT////////////////////////////////////////////////////*/


.select-rounder{
	max-width: 100%;
	font-size: 1.1rem;
	border-radius: 10px;
	padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
}



.select-white{
	color:#333333;
	background-color:#fff;
	border:solid 1px #009CDE;
}

.select-white:focus{
	color:#333333;
	background-color:#fff;
	border:solid 1px #009CDE;
}


.select-border-white{
	color:#fff;
	background-color:transparent;
	border:solid 1px #fff;
}

.select-border-white:focus{
	color:#333333;
	background-color:#fff;
	border:solid 1px #fff;
}


.select-border-blue{
	color:#009CDE;
	background-color:transparent;
	border:solid 1px #009CDE;
}

.select-border-blue:focus{
	color:#009CDE;
	background-color:#fff;
	border:solid 1px #009CDE;
}


.select-shadow{
	color:#333333;
	background-color:#fff;
	border: none;
  box-shadow: 0 0 8px 1px rgb(0 156 222 / 35%);
}


.select-shadow:focus{
	color:#009CDE;
	background-color:#fff;
	border: none;
  box-shadow: 0 0 8px 1px rgb(0 156 222 / 35%);
}


/*/////////////////////////////////////////////INPUT-SELECT-TEXTAREA////////////////////////////////////////////////////*/


/*////////////////////////////////////////////////HERO///////////////////////////////////////////////////////////////*/


.hero{
	height: 100vh;
	background-image:url(../img/bg-hero-mobile.jpg);
	background-size: cover;
}

.hero::before{
	content: '';
	position: absolute;
	height: 100vh;
	width: 100%;
	background-color: rgba(0,0,0,0.5);
}

.navbar-brand img{
	width: 250px;
}


/*/////////////////////////////////////////////////////BUSCADOR////////////////////////////////////////////////////////////////*/

.buscador-prop {
	box-shadow: 0 0 20px #01385052;
    position: sticky;
    top: 100px;
    height: auto;
}


  .select2-container {
    width: 100% !important;
    margin-bottom: 1rem !important;
  }

.select2-container--default .select2-selection--multiple {
    color:#333333;
		background-color:#fff;
		border: none;
  	box-shadow: 0 0 8px 1px rgb(0 156 222 / 35%);
    border-radius: 10px;
    cursor: text;
    padding-bottom: .5rem;
    padding-top: .5rem;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid #009cde 1px;
    outline: 0;
}


.select2-search.select2-search--inline{
height: 26px;
    display: block;
}


.select2-container .select2-search--inline .select2-search__field {
    box-sizing: border-box;
    border: none;
    font-size: 1.1rem;
    margin-top: 0px;
    margin-left: 0px;
    padding: 0;
    max-width: 100%;
    resize: none;
    height: 100%;
    vertical-align: middle;
    font-family: sans-serif;
    overflow: hidden;
    word-break: keep-all;
    background-color: transparent !important;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    position: relative;
    background: transparent;
    padding: 0 0px;
    border-radius: 8px;
    left: 0;
    top: 5px;
    width: 100%;
    height: auto;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #009cde;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    margin-bottom: 3px;
    margin-top: 3px;
    border-radius: 15px;
    padding: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	color: #ffffff;}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background-color: #b3a068;
    color: #022840;}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  position: relative;
  border-right:none;
  border-radius: 10px;
}



.select2-dropdown{
    background-color: #fff;
    border: none;
    border-radius: 8px;
}

.select2-results__option{
    position: relative;
    padding: 6px;
    color: #333333;}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #009cde;
    color: white;
}

.select2-container--default .select2-results__option--selected {
    background-color: #dddbdb;
}
.select2-container--default .select2-results__option--selected::after {
    content: "✓";
    color: #333333;
    right: 10px;
    position: absolute;
}


@media (max-width: 768px) {

.select2-container .select2-selection--multiple .select2-selection__rendered {
  

    top: 0px;
    border: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
font-size: 18px;
}
}


/*////////////////////////////////////////////////////DETALLES GENERALES/////////////////////////////////////////////////////////////////*/


.div-rounder{
	border-radius: 10px;
}


.icon-i{
	position: relative;
  top: 4px;
  font-size: 1.2rem;
}

.social-icon-i{
	position: relative;
  top: 4px;
  font-size: 2rem;
}


.page-link {
  
    color: #009cde;}

.active>.page-link, .page-link.active
 {
    color: #fff;
    background-color: #009cde;
    border-color: #009cde;
}


/*//////////////////////////////////////////PREVIEW PROPIEDADES////////////////////////////////////////////////////////////////////////*/




.listado-propiedades{
	background-image: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.6)),url(../img/deco-iso-blue.png);
	background-size: cover;

}
.item-prop{
	    background: #009cde;
	box-shadow: 0 0 20px #01385052;
}

.item-prop img {height: 520px;
 -webkit-transition: all 0.3s ease-in-out 0s;
     -o-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s;}




/*.item-prop a:hover > img{
    scale: 1.1;
    opacity: 0.5;
    mix-blend-mode: luminosity;
      -webkit-transition: all 0.3s ease-in-out 0s;
     -o-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s;
}*/


.listaDestacadas .item-prop .prop-info{
	bottom: -26%;
	-webkit-transition: all 0.3s ease-in-out 0s;
     -o-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s;
}


.slick-center  .item-prop .prop-info{
  bottom: 0%;
      -webkit-transition: all 0.3s ease-in-out 0s;
     -o-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s;
}

.slick-list {
  padding: 0 !important;
}


.item-prop:hover .prop-info{
  bottom: 0%;
      -webkit-transition: all 0.3s ease-in-out 0s;
     -o-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s;
}

.item-prop:hover img{
    scale: 1.1;
    opacity: 0.5;
    mix-blend-mode: luminosity;
      -webkit-transition: all 0.3s ease-in-out 0s;
     -o-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s;
}

/*//////////////////////////////////////////PREVIEW PROPIEDADES////////////////////////////////////////////////////////////////////////*/

/*//////////////////////////////////////////PREVIEW EMPRENDIMIENTOS///////////////////////////////////////////////////////////*/

.empre-container{
	/*background: #009cde;*/
	box-shadow: 0 0 20px #01385052;
}

/*//////////////////////////////////////////PREVIEW EMPRENDIMIENTOS///////////////////////////////////////////////////////////*/

/*///////////////////////////////////////////MAPA///////////////////////////////////////////////////////////////////////////*/

.mapprop{
   overflow: hidden;
   height: 0px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.open-map{
  height: 400px;
  -webkit-transition: all 0.3s ease-in-out 0s;
   -o-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s;
}


  /*///////////////////////////////////////////MAPA INFOBOX/////////////////////////////////////////////////////////////////*/
.infoBox{box-shadow: 0px 0px 15px rgba(0,0,0,0.5); border-radius: 15px}

.infoBox h3{background: #009cde!important;line-height:21px;text-transform:none;color:#fff!important}

.infoBox .codmapa{background:rgba(0,0,0,0.5) ;line-height:20px;color:#fff; border-radius: 15px}

.infoBox .preciomapa{background:transparent ;line-height:20px;color:#fff; border-radius: 15px}

.infoBox,.infoBox *{box-sizing:border-box;-moz-box-sizing:border-box;-o-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box}
.infoBox a{text-decoration:none;color:inherit}

.infoBox{background:#fff;box-shadow:0 2px 5px rgba(0,0,0,.3);border:none;border-radius:15px;max-width:265px;padding:0;overflow:visible}

.infoBox .imgmapa .sombra{
    background:-moz-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
    background:-webkit-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
    background:linear-gradient(to bottom,rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#a6000000',GradientType=0);
    width:100%;
    height:85px;
    position:absolute;
    bottom:0;
    left:0;
z-index: 9}

.infoBox .imgmapa{width:265px;height:175px;float:left;position:relative;overflow: hidden;}
.infoBox .imgmapa img{border-radius:15px 15px 0 0;width:100%;height:100%;float:left; overflow: hidden;}


.infoBox .closemap{background:rgba(0,0,0,0.5);border-radius:3px;font-size:15px;font-weight:700;text-align:center;line-height:9px;padding:5px 6px;color:#FFF;position:absolute;top:5px;right:5px;z-index:1}
.infoBox .closemap:hover{background:rgba(0,0,0,.8);cursor:pointer}
.infoBox .closemap:before{
    content: "\f107";
    font-family: flaticon!important;
    font-style: normal;
    font-weight: 400!important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    color: #fff;
    -webkit-font-smoothing: antialiased;}

.infoBox .closemap img{display:none}

.infoBox .arrow-left, .infoBox .arrow-right{
    background: transparent;
}

.infoBox .arrow-left{
    left: 15px;
}
.infoBox .arrow-right{
 right: 15px;
}
.infoBox .infomapa{text-align:center;padding:5px;width:100%;clear:both;overflow:hidden;}

.infoBox h3,.infoBox .infomapa p,.infoBox .infomapa a{width:100%;margin:0;padding:0;float:left}
.infoBox h3{font-size:15px;font-weight:500;padding:10px}
.infoBox .verfmapa{opacity:1;width: 100%}
.infoBox .verfmapa:hover{opacity:1}
.infoBox .infomapa p{line-height:10px;color:#606060;text-align:center;width:33.333%;padding:10px 0;float:none;display:inline-block}
.infoBox .infomapa p i{color:#404040;    font-size: 11px;}

.infoBox .codmapa{border-radius:3px;font-size:13px;padding:5px;position:absolute;left:5px;top:5px; z-index: 999}
.infoBox .preciomapa{border-radius:3px;font-size:18px;padding:5px;position:absolute;left:5px;bottom:10px; z-index: 999}

.infoBox .locmapa{font-size:15px;color:#fff;position:absolute;bottom:10px;right:10px;z-index:1}
.infoBox i.fa.fa-caret-down{font-size:40px;color:#fff;text-shadow:0 3px 2px rgba(0,0,0,0.3);text-align:center;width:100%;position:absolute;bottom:-25px;left:0}
.infoBox i.fa.fa-angle-right{font-size:23px;line-height:26px;margin-top:-4px;float:right}
.infoBox:after {display:none;}

.infoBox img {
    position: relative!important;
    top: 0px;
    right: 0px;
    bottom: auto;
    left: auto;
    z-index: 0;
    background-color: rgba(20,20,20,.6);
}
/*///////////////////////////////////////////MAPA INFOBOX/////////////////////////////////////////////////////////////////*/


/*//////////////////////////////////////////ITEM SERVICIOS////////////////////////////////////////////////////////////////////////*/
.item-serv{
	cursor: pointer;
}
.item-serv i{
	font-size: 6rem;
	    -webkit-transition: all 0.3s ease-in-out 0s;
     -o-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s;
}


.item-serv h5{
	    -webkit-transition: all 0.3s ease-in-out 0s;
     -o-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s;
}


.item-serv:hover i,.item-serv:hover h5{
	color: #009CDE!important;
	    -webkit-transition: all 0.3s ease-in-out 0s;
     -o-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s;
}


.item-serv::before {
    content: '';
    position: absolute;
    top: 150px;
    left: 200px;
    background-color: #ffffff;
    border-radius: 100%;
    height: 0px;
    width: 0px;
    -webkit-transition: all 0.3s ease-in-out 0s;
     -o-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s;
}

.item-serv-1:hover::before {
    content: '';
    position: absolute;
    top: -400px;
    left: -500px;
    background-color: #ffffff;
    border-radius: 100%;
    height: 1000px;
    width: 1000px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.item-serv-2:hover::before {
    content: '';
    position: absolute;
    top: -400px;
    left: -270px;
    background-color: #ffffff;
    border-radius: 100%;
    height: 1000px;
    width: 1000px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.item-serv-3:hover::before {
    content: '';
    position: absolute;
    top: -400px;
    left: auto;
    right: -500px;
    background-color: #ffffff;
    border-radius: 100%;
    height: 1000px;
    width: 1000px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
/*//////////////////////////////////////////ITEM SERVICIOS////////////////////////////////////////////////////////////////////////*/

/*//////////////////////////////////////////ITEM MISION-VISION//////////////////////////////////////////////////////////////////*/
.item-nos{
	cursor: pointer;
}
.item-nos i{
	font-size: 6rem;
	    -webkit-transition: all 0.3s ease-in-out 0s;
     -o-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s;
}


.item-nos h5{
	    -webkit-transition: all 0.3s ease-in-out 0s;
     -o-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s;
}


/*//////////////////////////////////////////ITEM MISION-VISION//////////////////////////////////////////////////////////////////*/
/*///////////////////////////////////////////FOOTER////////////////////////////////////////////////////////////////////////////////*/

.logo-footer{
	width: 300px;
}
.whatsapp-btn {
  position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #075e54bd;
    color: white;
    border-radius: 50%;
    padding: 10px 21px;
    font-size: 33px;
    width: 70px;
    height: 70px;
    z-index: 9;
}

.whatsapp-btn:hover{
  background-color: #25d366;
}
/*///////////////////////////////////////////FOOTER////////////////////////////////////////////////////////////////////////////////*/




.slick-prev {
    left: -80px;
    width: auto;
    height: auto;
    z-index: 2;
}
.slick-next {
    right: -80px;
    width: auto;
    height: auto;
    z-index: 2;
}


.slick-arrow i{
    border-radius: 100%;
    font-size: 50px;
    width: 70px;
    height: 70px;
    padding: 10px;
    z-index: 9999;
    position: relative;
}


.slick-prev:before {
    display: none;
}

.slick-next:before {
    display: none;
}

@media (min-width: 768px) {


.navbar-brand img{
	width: 250px;
} 

.hero{
	height: 100vh;
	background-image:url(../img/bg-hero-desktop.jpg);

}


.w-md-100{
	width:100%!important;
}

.w-md-90{
	width:90%!important;
}


.w-md-80{
	width:80%!important;
}


.w-md-70{
	width:70%!important;
}


.w-md-60{
	width:60%!important;
}


.w-md-50{
	width:50%!important;
}


.w-md-40{
	width:40%!important;
}


.w-md-30{
	width:30%!important;
}

.w-md-20{
	width:20%!important;
}

.w-md-10{
	width:10%!important;
}

}



@media (max-width: 768px) {

.buscador-prop-cont {
    position: relative;
    top: auto;
    height: auto;
}
.buscador-prop{
  position: relative;
  height: 0px;overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
        
}

.open-filter{
  opacity: 1;
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
  margin-top: 15px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}




}