/**
 *
 * Custom styles for Alcantara theme
 *
 * @package Alcantara
 */


/* BUTTONS */

.btn.btn--transparent {
	background-color: transparent;
}

.btn.btn--transparent:hover {
	background-color: #fff;
    color: #000 !important;
}


/* CUSTOM */

.bg-block-grey {
	background-color: #f7f7f7;
}

.py-5 {
	padding-top: 8rem;
	padding-bottom: 8rem;
}

.carousel-v2-block .category.supertitle {
	text-transform: uppercase;
	margin-bottom: 10px;
}


/* TABLE */

.table-row-style,
.table-row-style th, 
.table-row-style td {
	border: 0px;
}

.table-row-style th, 
.table-row-style td {
	border-bottom: 1px solid #000;
}

.table-row-style tr:first-child > th, 
.table-row-style tr:first-child > td {
	border-top: 1px solid #000;
}


/* STYLE */

.title-small .intro-inner .title * {
	font-size: 32px;
}

.a-head {
	position: relative;
	text-align: center;
	text-transform: uppercase;
}

.a-head:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    height: 1px;
    background: rgb(187, 187, 187);
}

.a-head :is(h1, h2, h3, h4, h5, h6) {
    position: relative;
    font-size: 26px;
    z-index: 2;
    background: #fff;
    display: inline-block;
    padding: 0 15px;
    vertical-align: top;
    margin-bottom: 0;
    word-break: break-word;
}

.title-uppercase :is(h1, h2, h3, h4, h5, h6) {
	font-size: 40px;
    line-height: 1.1;
    text-transform: uppercase;
}


/* GRID */

.d-flex {
	display: flex;
	flex-wrap: wrap;
}

.w-50 {
	width: 50%;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}


/* SWIPER */

.overflow-visible .swiper {
	overflow: visible;
}







/* RESPONSIVE */

@media (max-width: 48.0525em) {
    .w-50 {
        width: 100%;
		flex: 0 0 auto;
        max-width: 100%;
    }
}

@media (min-width: 48.0525em) {
    .order-md-1 {
        order: 1;
    }
	
	.order-md-2 {
        order: 2;
    }
}

@media (max-width: 29.99em) {
    .title-uppercase :is(h1, h2, h3, h4, h5, h6) {
        font-size: 32px;
        word-break: break-word;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

