/* ========================================================== */
/*                          MAIN CSS                          */
/* ========================================================== */

body {
    font-family: "Sora", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .btn {
    font-family: "Sora", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
}

.hero-section {
    position: relative;
    background-image: url(img/shaps-dots.svg);
    background-size: 30rem;
    background-position: bottom -2rem right 0;
    background-repeat: no-repeat;
}
@media (max-width: 576px) {
    .hero-section {
        background-position: top 45% center;
        background-size: 20rem;
    }    
}

.section {
	margin-top: 5rem;
	margin-bottom: 5rem
}

.bg-dots {
    position: relative;
    background-image: url(img/shaps-dots.svg);
    background-size: 30rem;
    background-position: top 0 right -2rem;
    background-repeat: no-repeat;
}
@media (max-width: 576px) {
    .bg-dots {
        background-position: top 57% center;
        background-size: 20rem;
    }
}

/* Check list style */
.is-style-check-list {
    list-style-type: '✓ ';
    padding-left: 1.2rem;
    line-height: 1.6;
}
ul.is-style-check-list li::marker {
    color: var(--bs-primary);
    font-size: 1.2em;
    font-weight: bold;
}
ul.is-style-check-list li {
    margin-bottom: 0.65rem;
}
ul.two-column-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}


/* Header Shadow */
[data-content-shadow] {
    position: relative;
}
[data-content-shadow]:before {
    content: attr(data-content-shadow);
    font-size: 2em;
    line-height: inherit;
    position: absolute;
    top: -130%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 180%;
    color: currentColor;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px;
    opacity: 0.15;
    z-index: -1;
}