/*
*
* ==========================================
* CUSTOM UTILS CLASSES
* ==========================================
*
*/
.red a {
    text-decoration: underline;
}

/* EFFECT 1 ========================================== */

.effect-1 {
    position: relative;
}
.effect-1::before, .effect-1::after {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 15px;
    left: 10px;
    width: 50%;
    top: 80%;
    max-width: 300px;
    background: #aaa;
    box-shadow: 0 15px 10px #aaa;
    transform: rotate(-3deg);
}
.effect-1::after {
    transform: rotate(3deg);
    right: 10px;
    left: auto;
}


/* EFFECT 2 ========================================== */
.effect-2::before{
    position: absolute;
    content: "";
    z-index: -1;
    bottom: 5px;
    left: 30px;
    right: 30px;
    top: 80%;
    background: #aaa;
    box-shadow: 0 0 25px 17px #aaa;
    border-radius: 100px/10px;
}


/* EFFECT 3 ========================================== */
.effect-3 {
    position: relative;
}

.effect-3::before {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 15px;
    left: 10px;
    width: 50%;
    top: 80%;
    max-width: 300px;
    background: #aaa;
    box-shadow: 0 15px 10px #aaa;
    transform: rotate(-3deg);
}


/* EFFECT 4 ========================================== */
.effect-4 {
    position: relative;
}

.effect-4::before {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 15px;
    right: 10px;
    left: auto;
    width: 50%;
    top: 80%;
    max-width: 300px;
    background: #aaa;
    box-shadow: 0 15px 10px #aaa;
    transform: rotate(3deg);
}


/* EFFECT 5 ========================================== */
.effect-5::before{
	position: absolute;
	content: "";
	z-index: -1;
	bottom: 20px;
	left: 8px;
	right: 8px;
	top: 20px;
	background: #aaa;
	box-shadow: 0 0 25px 10px #aaa;
	border-radius: 10px/40px;
}
.effect-5::after{
	position: absolute;
	content: "";
	z-index: -1;
	bottom: 14px;
	left: 30px;
	right: 30px;
	top: 14px;
	background: #aaa;
	box-shadow: 0 0 25px 17px #aaa;
	border-radius: 100px/10px;
}

/* EFFECT 6 ========================================== */
.effect-6 {
    position: relative;
}

.effect-6::before {
	position: absolute;
	content: "";
	z-index: -1;
	top: 26px;
	left: 12px;
	bottom: 50px;
	width: 20%;
	transform: rotate(-10deg);
	box-shadow: 0 10px 25px 10px #aaa;
}

.effect-6::after {
	position: absolute;
	content: "";
	z-index: -1;
	top: 26px;
	right: 10px;
	bottom: 50px;
	width: 20%;
	transform: rotate(8deg);
	box-shadow: 0 10px 25px 10px #aaa;
}

/*
*
* ==========================================
* CUSTOM UTIL CLASSES
* ==========================================
*
*/

/* List with bullets */
.list-bullets {
    list-style: none;
}

.list-bullets li {
    display: flex;
    align-items: center;
}

.list-bullets li::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #000;
    display: block;
    margin-right: 1rem;
}

/* Unordered list with custom numbers style */
ol.custom-numbers {
    list-style: none;
}

ol.custom-numbers li {
    counter-increment: my-awesome-counter;
}

ol.custom-numbers li::before {
    content: counter(my-awesome-counter) ". ";
    color: #000;
    font-weight: bold;
    font-size:18px;
}

a.l-a::after {
    content: " →";
    font-weight: bold;
    font-size:18px;
}

a.l-a {
    border-bottom: 1px solid;
    padding-bottom: 3px;
    color: #a11105;
}