/* HOME */
.home {
    position: relative;
    height: 100vh;
}

.home__carousel {
    height: 100%;
    pointer-events: none;
}

.home__carousel .slick-list, 
.home__carousel .slick-track 
{
    height: 100%;
}

.slick-dots li.slick-active button:before {
    background: #000;
}

.home__carousel__item {
    overflow: hidden;
    height: 100%;
    position: relative;
    color: #fff;
}

@keyframes zoom {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.8);
	}

	100% {
		transform: scale(1);
	}
}

.home__carousel__item img {
    width: 100%;
    height: 100%;
    filter: brightness(0.8);
    animation: 50s ease-in 0s infinite normal none running zoom;
    position: absolute;
    z-index: -1;
}

.home__carousel__item__text {
    text-align: center;
    margin-top: 25vh;
}

.home__carousel__item__text h1 {
    font-weight: 500;
    font-size: 6.5rem;
    line-height: 1;
}

.home__carousel__item__text .thin {
    font-weight: 100;
    font-size: 4rem;
    line-height: 1;
}

.busca {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    position: relative;
    margin-top: -47vh;
    border-radius: 5px;

}

/****** CUSTOM SELECT ******/
/*the container must be positioned relative:*/
.custom-select {
    position: relative;
    width: 25%;
    margin: 20px 0;
    margin-left: 20px;
}

.custom-select h5 {
    color: #26262b;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.custom-select select {
    display: none; /*hide original SELECT element:*/
}

/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    right: 10px;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-color: #000 transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #000 transparent;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
    color: #000;
    cursor: pointer;
    user-select: none;
    background-color: #fff;
    font-weight: bold;
    border: none;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    border: 1px solid #e8e8f0;
    /*color: #7d7d84;*/
    padding: 8px 15px;
    height: 44px;
    overflow: hidden;
    line-height: 1.9;
}

/*style items (options):*/
.select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1;
    max-height: 175px;
    overflow-y: scroll;
}

.select-items::-webkit-scrollbar {
    width: 5px;
}

.select-items::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* .select-items::-webkit-scrollbar-thumb {
    background: #6868eb;
} */

.select-items::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: #E7E7E7;
}

/***** END CUSTOM SELECT *****/

.busca__select {
    color: #000;
    font-weight: bold;
    padding-left: 15px;
    margin-right: 20px;
    border: none;
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.5);
    font-size: 1rem;
    width: 25%;
}

/* .busca__select:focus {
    outline:2px solid #6868eb;
} */

.busca__btn {
    border: none;
    /* background-color: #6868eb; */
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 45px;
    cursor: pointer;
    font-size: 22px;
    transition: .5s ease;
    margin-left: 20px;
    align-self: stretch;
    border-radius: 0 5px 5px 0;
}

.busca__btn:hover {
    background-color: #42bc61;
}

.scroll {
    display: flex;
    justify-content: center;
    height: 0;
}

@keyframes scroll {
    50% {
        webkit-transform: rotate(90deg) translateX(-80px);
        transform: rotate(90deg) translateX(-80px);
    }

    100% {
        webkit-transform: rotate(90deg) translateX(-70px);
        transform: rotate(90deg) translateX(-70px);
    }
}

.scroll span {
    transform: rotate(90deg) translateX(-70px);
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    color: #fff;
    transition: all .3s ease;
    animation-name: scroll;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.scroll img {
    transform: rotate(-90deg) translateY(-15px);
    margin-left: 40px;
    display: block;
}

@media(max-width: 768px) {
    .busca {
        flex-flow: row wrap;
        padding: 20px;
    }

    .custom-select {
        width: 100%;
        margin: unset;
        margin-left: unset;
    }

    .busca__btn {
        width: 100%;
        border-radius: 5px;
        margin-top: 20px;
        padding: 10px 45px;
        margin-left: 0;
    }

    .scroll {
        display: none;
    }

    .home__carousel__item__text .thin {
        font-size: 2rem;
    }

    .home__carousel__item__text h1 {
        font-size: 4rem;
    }
}
/* END HOME */

/* DESTAQUE */
.destaque {
    display: flex;
    flex-flow: row wrap;
    padding: 60px 0;
}

.destaque__container {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 0 15px;
}

.destaque__text {
    width: 38%;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: flex-start;
    padding-right: 15px;
    padding-left: 13%;
}

.destaque__text h3 {
    position: relative;
    font-size: 34px;
    margin: 0;
    position: relative;
    padding-bottom: 28px;
    margin-bottom: 20px;
}

.destaque__text h3:before {
    left: 0;
    bottom: 0;
    position: absolute;
    width: 60px;
    height: 1px;
    /* background: #6868eb; */
    content: "";
}

.destaque__text p {
    color: #7d7d84;
    margin-bottom: 2rem;
}

.btn1 {
    line-height: 1;
    letter-spacing: 3px;
    text-shadow: 0px 0px 10px rgba(0,0,0,.3);
    /* background-color: #6868eb; */
    border-radius: 3px;
    padding: 10px 20px;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    transition: .3s ease;
}

.btn1:hover {
    background-color: #42bc61;
}

.btn1 .pipe {
    width: 1px;
    height: 33px;
    background: hsla(0,0%,100%,.3);
    margin: 0 20px;
}

.destaque__carousel {
    width: 62%;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.destaque__carousel .slick-track {
    padding: 20px 0;
}

.destaque__carousel__item {
    width: 435px;
    margin: 15px;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: .5s;
    box-shadow: 0 16px 16px 0 rgba(0,0,0,.1);
}

.destaque__carousel__item:before
{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 100%;
    right: 100%;
    opacity: 0;
    border-top: 2px solid;
    border-right: 2px solid;
	/* border-color: #6868eb; */
	z-index: 1;
    pointer-events: none;
    border-radius: 5px;
}

.destaque__carousel__item:after
{
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    top: 100%;
    left: 100%;
    opacity: 0;
    border-bottom: 2px solid;
    border-left: 2px solid;
	/* border-color: #6868eb; */
	z-index: 1;
    pointer-events: none;
    border-radius: 5px;
}

.destaque__carousel__item:hover:before
{
    opacity: 1;
    right: 0px;
    bottom: 0px;
    transition: opacity .001s, right .125s linear .001s, bottom .125s linear .126s;
}

.destaque__carousel__item:hover:after
{
    transition: opacity .001s linear .251s, left .125s linear .252s, top .125s linear .377s;
    opacity: 1;
    left: 0px;
    top: 0px;
}

.destaque__carousel__item__img {
    border-radius: 5px;
    position: relative;
    height: 290px;
}

.destaque__carousel__item__img__container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.destaque__carousel__item__img__container img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    display: block;
    transition: .2s;
}

.destaque__carousel__item:hover .destaque__carousel__item__img__container img{
    transform: scale(1.2);
}

.destaque__carousel__item__img__tag1
{
    position: absolute;
    color: #fff;
    background-color: #f7884c;
    z-index: 2;
    top: -15px;
    left: 45px;
    text-transform: uppercase;
    font-size: 0.7rem;
    padding: 0 13px;
    line-height: 25px;
    border-radius: 2px;
    letter-spacing: 2px;
}

.destaque__carousel__item__img__tag2
{
    position: absolute;
    color: #fff;
	background: rgba(255,0,0,0.5);
    z-index: 2;
    top: 17px;
    left: 45px;
    text-transform: uppercase;
    font-size: 0.7rem;
    padding: 0 13px;
    line-height: 25px;
    border-radius: 2px;
    letter-spacing: 2px;
}

.destaque__carousel__item__img__bottom {
    bottom: 0;
    left: 0;
    position: absolute;
    padding: 15px 15px 15px;
    background: linear-gradient(0deg,#26262b,rgba(63,68,72,.25) 90%,rgba(37,39,40,0));
    z-index: 3;
    width: 100%;
    border-radius: 5px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.destaque__carousel__item__img__bottom__corretor {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
	width:80%;
}

.destaque__carousel__item__img__bottom__corretor__img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    overflow: hidden;
    margin-right: 14px;
}

.destaque__carousel__item__img__bottom__corretor__img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.destaque__carousel__item__img__bottom__corretor p {
    color: #fff;
	font-size: 1.2rem;
    max-width: calc( 100% - 80px );
    line-height: 1;	
	width: 145px;
}

.destaque__carousel__item__img__bottom__corretor__img .iconc{
    color: #FFF;
    text-align: center;
    padding: 12px;
    font-size: 31px;
    margin: 0;	
	}

.destaque__carousel__item__img__bottom__tag {
    color: #fff;
    background-color: #42bc61;
    z-index: 2;
    text-transform: uppercase;
    font-size: 0.7rem;
    padding: 0 13px;
    line-height: 25px;
    border-radius: 2px;
    letter-spacing: 2px;
	position: absolute;
    right: 15px;
    bottom: 15px;	
}

.destaque__carousel__item__info {
    padding: 20px 45px;
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: #fff;
    width: 100%;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.destaque__carousel__item__info__title {
    font-size: 1.1rem;
}

.destaque__carousel__item__info__description {
    color: #7d7d84;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
    min-height: 70px;
}

.destaque__carousel__item__info__features {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 12px;
    width: 100%;
}

.destaque__carousel__item__info__features__item {
    margin-right: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: center;
    position: relative;
}

.destaque__carousel__item__info__features__item__tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    padding: 5px;
    border-radius: 4px;
    background-color: #000;
    color: #fff;
    visibility: hidden;
    opacity: 0;
    transition: .2s ease;
	transform: translateY(-20px);
}

.destaque__carousel__item__info__features__item__tooltip:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
}

.destaque__carousel__item__info__features__item:hover .destaque__carousel__item__info__features__item__tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.destaque__carousel__item__info__features__item i{
    /* color: #6868eb; */
    font-size: 1.3rem;
    margin-right: 5px;
}

.destaque__carousel__item__info__valor {
    /* color: #6868eb; */
    font-size: 1.7rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.destaque__carousel__item__info__valor p {
    margin-left: auto;
    color: #7d7d84;
    font-weight: 500;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .destaque__text {
        width: 100%;
        padding-bottom: 60px;
        padding-top: 60px;
        padding-left: unset;
        padding-right: unset;
    }

    .destaque__carousel {
        width: 100%;
    }

    .destaque__carousel__item {
        width: 345px;
    }

}
/* END DESTAQUE */

/* DESTAQUE2 */
.destaque2 {
    padding: 60px 0;
}

.destaque2 .container {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
}

.destaque2 .destaque__text,
.destaque2 .destaque__carousel
{
    width: 100%;
}

.destaque2 .destaque__text {
    align-items: center;
    padding-left: unset;
}

.destaque2 .destaque__text h3 {
    display: flex;
    justify-content: center;
}

.destaque2 .destaque__text h3:before {
    left: unset;
}

.destaque2__carousel {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.destaque2__carousel .slick-track {
    padding: 20px 0;
}
/* END DESTAQUE2 */

/* MÓDULOS */
.modulos {
    display: flex;
    flex-flow: row wrap;
    padding: 60px 0 0;
}

.modulos .container {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.modulos__text {
    width: 100%;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    padding-right: 15px;
}

.modulos__text h3 {
    position: relative;
    font-size: 34px;
    margin: 0;
    position: relative;
    padding-bottom: 28px;
    margin-bottom: 20px;
}

.modulos__text h3:before {
    left: calc(50% - 30px);
    bottom: 0;
    position: absolute;
    width: 60px;
    height: 1px;
    /* background: #6868eb; */
    content: "";
}

.modulos__text p {
    color: #7d7d84;
    margin-bottom: 2rem;
}

.modulos__item {
    border: 1px solid #fff;
    padding: 20px;
    width: calc(33.33% - 20px);
    color: #2d3e52;
    /*height: 335px;*/
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 30px 80px 0 rgba(0,0,0,.06);
    position: relative;
    margin: 10px;
    text-align: center;
    border-radius: 5px;
    transform: translateY(120px);
	box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.2);
}

.modulos__item:before
{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 100%;
    right: 100%;
    opacity: 0;
    border-top: 2px solid;
    border-right: 2px solid;
	/* border-color: #6868eb; */
	z-index: 1;
    pointer-events: none;
    border-radius: 5px;
}

.modulos__item:after
{
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    top: 100%;
    left: 100%;
    opacity: 0;
    border-bottom: 2px solid;
    border-left: 2px solid;
	/* border-color: #6868eb; */
	z-index: 1;
    pointer-events: none;
    border-radius: 5px;
}

.modulos__item:hover:before
{
    opacity: 1;
    right: 0px;
    bottom: 0px;
    transition: opacity .001s, right .125s linear .001s, bottom .125s linear .126s;
}

.modulos__item:hover:after
{
    transition: opacity .001s linear .251s, left .125s linear .252s, top .125s linear .377s;
    opacity: 1;
    left: 0px;
    top: 0px;
}

.modulos__item__icone {
    font-size: 3.714rem;
    padding: 40px;
    /* background-color: #6868eb; */
    border-radius: 50%;
    color: #fff;
    margin-top: -52.5px;
    z-index: 1;
}

.modulos__item__separator {
    width: 100px;
    height: 1px;
    /* background-color: #6868eb; */
    display: inline-table;
}

.modulos__item__description {
    font-weight: normal;
    color: #000;
}

.modulos__item .btn1 {
    margin: 0 auto;
    text-transform: unset;
	border:0;
	cursor:hand;
	cursor:pointer;
}

.modulos__item__link {
    font-weight: normal;
    padding: 5px 0;
    color: #000;
    z-index: 1;
    cursor: pointer;
    transition: .2s;
    text-decoration: none;
}

.modulos__item__link:hover {
	/* color: #6868eb; */
	text-decoration: underline;
}

.modulos__item__form{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.modulos__item__form__input {
    width: 48%;
    border: 1px solid #fff;
    padding: 10px;
    font-weight: bold;
    color: #222;
    margin-bottom: 7px;
    background-color: #f6f6f6;
    outline: none;
    z-index: 2;
}

.modulos__item__form__codigo {
    width: 48%;
    text-align: end;
    white-space: nowrap;
    z-index: 2;
}

.modulos__item__form__codigo input {
    width: 44%;
    padding: 10px;
    background-color: #f6f6f6;
    border: 1px solid #fff;
    outline: none;
    font-weight: bold;
    text-align: center;
}

.modulos__item__form__codigo span {
    font-weight: bold;
}

.modulos__item__form .modulos__item__btn {
    margin: 0 auto;
    margin-top: 10px;
}

.modulos__item .btn1 {
    padding: 20px 30px;
}

@media (max-width: 990px) {
    .modulos__item {
        width: calc(50% - 20px);
        margin-bottom: 60px;
    }
}

@media (max-width: 768px){
    .modulos__item {
        width: calc(100% - 20px);
    }
}
/* END MÓDULOS */

/* PARALLAX */
.parallax {
    width: 100%;
    display: block;
    height: 854px;
    background-color: transparent;
}
/* END PARALLAX */

/* CORRETOR */
.corretor {
    padding-bottom: 75px;
}

.corretor__item {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    min-height: 273px;
    position: relative;
    margin-top: -10%;
    padding-right: 100px;
    border-radius: 10px;
    background: rgb(43,38,38);
    background: linear-gradient(90deg, rgba(43,38,38,1) 0%, rgba(73,66,66,1) 100%);
    padding-left: 363px;
}

.corretor__item img {
    position: absolute;
    color: #fff;
    left: 0;
    bottom: 0;
    max-width: 363px;
}

.corretor__item h2 {
    color: #fff;
    z-index: 1;
    line-height: 1;
    margin-right: 20px;
    text-align: center;
}

.corretor__item h5 {
    color: #fff;
    font-weight: normal;
    z-index: 1;
    margin-right: 20px;
    text-align: center;
}

.corretor_item_btn{width: fit-content; margin: 25px auto 0 auto;}

@media (max-width: 768px) {
    .corretor__item img {
        display: none;
    }

    .corretor__item h2,
    .corretor__item h5 {
        padding: 0;
        text-align: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .corretor__item {
        padding-right: unset;
        justify-content: center;
        padding: 20px;
    }
	
	.destaque__carousel__item__img__bottom__corretor p {width:100%;}
	.destaque__carousel__item__img__bottom__corretor{ margin-bottom:5px; }
}
/* END CORRETOR */

/* MAIS PESQUISADOS */
.maispesquisados {
    display: flex;
    flex-flow: row wrap;
    padding: 60px 0;
    background-color: #fff;
}

.maispesquisados .container {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.maispesquisados__text {
    width: 38%;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: flex-start;
    padding-right: 15px;
}

.maispesquisados__text h3 {
    position: relative;
    font-size: 34px;
    margin: 0;
    position: relative;
    padding-bottom: 28px;
    margin-bottom: 20px;
}

.maispesquisados__text h3:before {
    left: 0;
    bottom: 0;
    position: absolute;
    width: 60px;
    height: 1px;
    /* background: #6868eb; */
    content: "";
}

.maispesquisados__text p {
    color: #7d7d84;
    margin-bottom: 2rem;
}

.maispesquisados__lista {
    width: 62%;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.maispesquisados__item {
	padding: 10px 20px;
	margin: 0 5px 5px 0;
	cursor: pointer;
	border: 1px solid #000;
    transition: .2s;
    color: #26262b;
    border-color: #26262b;
    border-radius: 5px;
}

.maispesquisados__item:hover {
	background-color: transparent;
    /* background-color: #6868eb; */
    color: #fff;
	/* border-color: #6868eb; */
}

.maispesquisados__item i {
	margin: 0 5px 0 0;
}

@media (max-width: 768px) {
    .maispesquisados__text {
        width: 100%;
        margin-bottom: 60px;
    }

    .maispesquisados__lista {
        width: 100%;
    }
}
/* END MAIS PESQUISADOS */

/* NOTICIAS */
.noticias {
	padding: 80px 0;
}

.noticias__row {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: flex-start;
}

.noticia {
	width: calc(50% - 30px);
	margin: 15px;
	background-color: #fff;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-flow: row wrap;
	cursor: pointer;
    position: relative;
    border-radius: 5px;
}

.noticia:before
{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 100%;
    right: 100%;
    opacity: 0;
    border-top: 2px solid;
    border-right: 2px solid;
	/* border-color: #6868eb; */
	z-index: 1;
    pointer-events: none;
    border-radius: 5px;
}

.noticia:after
{
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    top: 100%;
    left: 100%;
    opacity: 0;
    border-bottom: 2px solid;
    border-left: 2px solid;
	/* border-color: #6868eb; */
	z-index: 1;
    pointer-events: none;
    border-radius: 5px;
}

.noticia:hover:before
{
    opacity: 1;
    right: 0px;
    bottom: 0px;
    transition: opacity .001s, right .125s linear .001s, bottom .125s linear .126s;
}

.noticia:hover:after
{
    transition: opacity .001s linear .251s, left .125s linear .252s, top .125s linear .377s;
    opacity: 1;
    left: 0px;
    top: 0px;
}

.noticia__img {
	width: 250px;
	height: 180px;
    overflow: hidden;
    border-radius: 5px 0 0 5px;
}

.noticia__img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	transition: .5s;
	z-index: 0;
}

.noticia:hover .noticia__img img{
	transform: scale(1.2);
}

.noticia__info {
	padding: 15px;
	display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
	align-items: flex-start;
	width: calc(100% - 250px);
}

.noticia__info .modelbtn {
	background-color: #2d3e52;
	color: #fff;
	z-index: 2;
}

.noticia__info h3{ font-size: 1.2rem; line-height: 1.2; }
.noticia__info p{ font-weight:normal; line-height:1.2; margin: 10px 0;}

@media (max-width: 992px) {
	.noticia {
		width: 100%;
	}
}

@media (max-width: 576px) {
	.noticia__img,
	.noticia__info
	{
		width: 100%;
	}

	.noticia__info p {
		margin: 10px 0;
	}

}
/* END NOTICIAS */



/*imgbanner*/
.imgbanner {
    margin: 70px 0 70px 0px;
}

.imgbanner .slick-prev:before,
.imgbanner .slick-next:before 
{
    content: none;
}

.imgbanner .slick-prev,
.imgbanner .slick-next 
{
    z-index: 2;
    color: var(--primary);
    font-size: 1.2rem;
    background-color: rgba(255,255,255,0.6);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
}

.imgbanner .slick-prev:hover, 
.imgbanner .slick-next:hover
{
    color: var(--primary);
    background: #fff;
    box-shadow: 4px 2px 0 0 var(--primary);
}

.imgbanner .slick-prev {
    left: 15px;
}

.imgbanner .slick-next {
    right: 15px;
}

.imgbanner__carousel {
    height: auto;
	max-height:800px;
}

.imgbanner__carousel .slick-list,
.imgbanner__carousel .slick-track
{
    height: 100%;
}

.imgbanner__carousel img {
    max-height: 650px;
    max-width: 100%;
	margin:0 auto;
    object-fit: fill;
	border-radius:5px;
}

.imgbanner__carousel .item {
    position: relative;
}

.imgbanner__carousel .item__text {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /* background: rgba(0,0,0,0.2); */
    display: none;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
}

.imgbanner__carousel .item__text span {
    color: #fff;
    padding: 20px;
    font-size: 2rem;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
/*end imgbanner*/