:root {
    --list-icon: "\f00c";
    --mxw: 1100px;
}

.hand {
    cursor: pointer;
}

/* TEXT */
.text-tab {
    text-indent: 50px;
}

.text-sm {
    font-size: 0.801rem;
}

/* Form */
::placeholder {
    color: #AAA !important;
    opacity: 1;
    font-style: italic;
}

.form-control:focus {
    box-shadow: none !important;
    outline: none !important;
    border-color: #ced4da;
    border: var(--bs-border-width) solid var(--bs-border-color);
}

/* Page */
.page strong {
    color: #0d6cb6;
    font-weight: 800;
}

.page .list-icon {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page .list-icon li {
    display: flex;
    align-items: center;
    line-height: 1.052;
    padding-top: 4px;
    padding-bottom: 4px;
}

.page .list-icon li::before {
    width: 25px;
    content: var(--list-icon);
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    padding-right: 3px;
}

.page .list-no-icon {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page blockquote {
    border-left: 5px solid #4ca694;
    padding: 20px 50px;
    text-align: left;
    font-family: "Helvetica";
}

.page blockquote h3 {
    font-size: 24px;
    font-weight: 300;
}

.page blockquote span {
    font-style: italic;
}

.container-xw {
    max-width: var(--mxw);
}

.img-crop-1-1 {
    max-width: 300px;
    width: 100%;
    /* Set a perfect square ratio */
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.img-crop-1-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video */
.vdo .card-item {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    will-change: transform;
}

.vdo .card-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.vdo .card-item .cover {
    position: relative;
}

.vdo .card-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.vdo .card-item .cover .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.35;
    color: #FFF;
}

.vdo .card-item:hover .icon {
    opacity: 1;
}

/* accordion */
.accordion-button {
    padding: 7px 12px;
}

.accordion-button:not(.collapsed),
.accordion-button:focus {
    outline: none;
    border-color: transparent;
    box-shadow: none;
    background-color: transparent;
}

.accordion-button::after {
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background-color: var(--bs-danger);
    background-image: none !important;
}

.accordion-button.collapsed::after {
    background-color: var(--bs-gray-300);
}