:root {
    /* Colors */
    --custom-dark-primary: #960;
    --custom-primary: #f26522;
    --custom-secondary: #d44d0d;
    --custom-white: #f7f8fa;
    --custom-gray: #666666;
    --custom-black: #333333;
    --custom-transparent: rgba(17, 17, 17, 0.5) none repeat scroll 0 0;

    /* transition */
    --custom-transition-300: all 300ms ease;
    --custom-transition-400: all 400ms ease;

    /* Fonts */
    --custom-font-opensans: "Open Sans", sans-serif;
    --custom-font-playfair: "Playfair Display", serif;

    /* Font Size */
    --custom-fs-13: 13px;
    --custom-fs-14: 14px;
    --custom-fs-16: 16px;
    --custom-fs-18: 18px;
    --custom-fs-20: 20px;
    --custom-fs-22: 22px;
    --custom-fs-24: 24px;
    --custom-fs-25: 25px;
    --custom-fs-28: 28px;
    --custom-fs-30: 30px;
    --custom-fs-35: 35px;
    --custom-fs-40: 40px;
    --custom-fs-50: 50px;
    --custom-fs-64: 64px;
    --custom-fs-75: 75px;
    --custom-fs-140: 140px;

    --custom-fw-300: 300;
    --custom-fw-400: 400;
    --custom-fw-600: 600;
    --custom-fw-700: 700;
    --custom-fw-800: 800;

    --custom-bs: 0 0 18px rgba(0, 0, 0, 10%);
}
html {
    scroll-behavior: smooth;
}
/* Scroll Top button */
#myBtn {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--custom-black);
    color: white;
    cursor: pointer;
    padding: 7px 15px;
    font-size: var(--custom-fs-30);
    visibility: hidden;
    opacity: 0;
    transition: var(--custom-transition-400);
}
.myBtn-show {
    visibility: visible !important;
    opacity: 0.7 !important;
}

#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}

a {
    text-decoration: none;
}

table,
th,
td {
    border: 1px solid black;
}
table {
    width: 100%;
    color: var(--custom-gray);
}
.custom-transtion {
    transition: var(--custom-transition);
}
.custom-bg-primary {
    background: var(--custom-primary);
}
.custom-bg-dark-primary {
    background: var(--custom-dark-primary);
}
.custom-bg-secondary {
    background: var(--custom-secondary);
}
.custom-bg-white {
    background: var(--custom-white) !important;
}
.custom-bg-gray {
    background: var(--custom-gray);
}
.custom-bg-black {
    background: var(--custom-black) !important;
}

.custom-font-opensans {
    font-family: var(--custom-font-opensans) !important;
}
.custom-font-playfair {
    font-family: var(--custom-font-playfair) !important;
}

.custom-text-primary {
    color: var(--custom-primary);
}
.custom-text-dark-primary {
    color: var(--custom-dark-primary);
}
.custom-text-secondary {
    color: var(--custom-secondary);
}
.custom-text-gray {
    color: var(--custom-gray) !important;
}
.custom-text-white {
    color: var(--custom-white);
}
.custom-text-black {
    color: var(--custom-black) !important;
}

.custom-fs-13 {
    font-size: var(--custom-fs-13);
}
.custom-fs-14 {
    font-size: var(--custom-fs-14);
}
.custom-fs-16 {
    font-size: var(--custom-fs-16);
}
.custom-fs-18 {
    font-size: var(--custom-fs-18);
}
.custom-fs-20 {
    font-size: var(--custom-fs-20);
}
.custom-fs-22 {
    font-size: var(--custom-fs-22);
}
.custom-fs-24 {
    font-size: var(--custom-fs-24);
}
.custom-fs-25 {
    font-size: var(--custom-fs-25);
}
.custom-fs-28 {
    font-size: var(--custom-fs-28);
}
.custom-fs-30 {
    font-size: var(--custom-fs-30);
}
.custom-fs-35 {
    font-size: var(--custom-fs-35);
}
.custom-fs-40 {
    font-size: var(--custom-fs-40);
}
.custom-fs-50 {
    font-size: var(--custom-fs-50);
}
.custom-fs-64 {
    font-size: var(--custom-fs-64);
}
.custom-fs-75 {
    font-size: var(--custom-fs-75);
}
.custom-fs-140 {
    font-size: var(--custom-fs-140);
}

.custom-fw-300 {
    font-weight: var(--custom-fw-300) !important;
}
.custom-fw-400 {
    font-weight: var(--custom-fw-400) !important;
}
.custom-fw-600 {
    font-weight: var(--custom-fw-600) !important;
}
.custom-fw-700 {
    font-weight: var(--custom-fw-700) !important;
}
.custom-fw-800 {
    font-weight: var(--custom-fw-800) !important;
}

.custom-layer-overlay {
    position: relative;
    z-index: 1;
}
.custom-layer-overlay::before {
    background: var(--custom-transparent);
}
.custom-layer-overlay::before,
.custom-overlay-dark::before,
.custom-overlay-light::before {
    position: absolute;
    content: "";
    inset: 0;
    z-index: -1;
}
.custom-overlay-dark::before {
    background-color: rgba(17, 17, 17, 0.9);
}
.custom-overlay-light::before {
    background-color: rgba(255, 255, 255, 0.9);
}

.container {
    max-width: 1170px;
    padding-left: 15px;
    padding-right: 15px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ---------------------- */

/* Header Section */
.header-top {
    padding: 5px 0;
}

.info {
    align-self: center;
    padding: 5px 0;
    text-align: center;
    float: right;
}
.info a {
    color: var(--custom-white);
    font-size: var(--custom-fs-14);
}
.info a i {
    margin-right: 2px;
    display: inline-block;
}
.info li {
    padding: 0px 10px;
    display: inline;
}

.header-nav {
    position: sticky;
    top: 0;
    z-index: 999;
}
.header-nav .logo {
    max-width: 200px;
    max-height: 38px;
}

.nav-item {
    padding: 18px 0;
}
.navbar-nav .nav-item .active {
    background-color: var(--custom-primary);
    color: #fff !important;
}
.navbar-nav .nav-item .nav-link {
    color: var(--custom-black);
    font-weight: var(--custom-fw-600);
    font-size: var(--custom-fs-13);
    padding: 8px 10px;
    border-radius: 20px;
}
.navbar-nav .nav-item .nav-link:hover {
    background-color: var(--custom-primary);
    color: #fff;
}

/* NavBar Dropdown */

.navbar-toggler i {
    color: var(--custom-gray);
}
.dropdown-menu {
    top: 67px;
    display: block;
    transition: var(--custom-transition-400);
    padding: 0 !important;
    border: none;
    border-radius: 0;
    font-size: var(--custom-fs-13);
    opacity: 0;
    background-color: #fff !important;
    visibility: hidden;
    position: absolute;
    white-space: nowrap;
    height: 0;
}
.navbar-nav .nav-item:hover .dropdown-menu {
    opacity: 1;
    top: 80px;
    visibility: visible;
    height: auto;
}
.dropdown {
    position: relative;
    height: 100% !important;
}
.dropdown-child {
    position: absolute ;
    background-color: #fff ;
    top: 0 ;
    left: 100% ;
    transition: var(--custom-transition-400) ;
    visibility: hidden;
    opacity: 0;
    height: 0;
}
.dropdown-menu li:hover .dropdown-child {
    opacity: 1 ;
    visibility: visible;
    bottom: 0 ;
    height: max-content;
}
.dropdown-menu .dropdown-item {
    overflow: hidden;
    transform: translateX(0);
    background-color: transparent;
}
.dropdown-menu .dropdown-item:hover {
    transform: translateX(10px);
    transition: transform 300ms ease;
}
.dropdown-menu .dropdown-item:hover {
    color: #fff;
}
.dropdown-menu li:hover {
    background-color: var(--custom-primary);
    color: #fff;
}

.quick-links {
    position: absolute;
    padding: 20px !important;
    right: 0 !important;
    width: 1100px;
    max-width: 1100px !important;
    min-width: 100% !important;
}
/* ------------- */
/* Soical Links */
.socials {
    display: flex;
    padding: 5px 0;
    justify-content: flex-start;
}
.socials .social-item {
    margin: 2px 7px 2px 0;
}
.socials .social-link {
    color: var(--custom-white);
    font-size: var(--custom-fs-13);
    height: 30px;
    background-color: var(--custom-primary);
    transition: var(--custom-transition-300);
    border-radius: 50%;
    padding: 8px 10px;
    line-height: 30px;
}
.socials .social-link:hover {
    background-color: var(--custom-secondary);
}
/* ------------- */

/* Carousel Section */
.owl-carousel {
    width: 100%;
    position: relative;
}
.owl-carousel .owl-nav {
    position: absolute;
    inset: 0;
}
.owl-carousel .owl-prev,
.owl-carousel .owl-next {
    position: absolute;
    top: 50%;
    min-width: 70px;
    min-height: 70px;
    transform: translateY(-50%);
    color: #fff;
    transition: var(--custom-transition-400);
    display: block;
    z-index: 100;
    border-radius: 35px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.1) !important;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
}
.owl-carousel:hover .owl-prev {
    opacity: 1;
    visibility: visible;
}
.owl-carousel:hover .owl-next {
    opacity: 1;
    visibility: visible;
}
.owl-carousel:hover .owl-dots {
    opacity: 1;
    visibility: visible;
}
.owl-carousel .owl-nav .owl-prev {
    left: 20px;
}
.owl-carousel .owl-nav .owl-next {
    right: 20px;
}
.owl-carousel .owl-nav span {
    color: #fff;
    font-size: var(--custom-fs-40);
    height: 100%;
}
.carousel .slider-img {
    height: 700px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.owl-carousel .owl-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--custom-transition-400);
}
.owl-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 3px;
    opacity: 0.8;
    transition: var(--custom-transition-400);
    border: 2px solid var(--custom-primary);
    position: relative;
}
.owl-carousel .owl-dots .owl-dot:hover {
    opacity: 1;
    background-color: var(--custom-primary);
}
/* ------------- */
/* About Us */
.about-us {
    padding: 20px 0;
}
.about-us img {
    float: left;
}
.about-us h3 {
    margin-bottom: 10px;
}
/* ------------- */

.s-padding {
    padding: 90px 0;
}
.paralax {
    background-size: cover !important;
    background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: repeat-y;
}
.title {
    font-size: var(--custom-fs-34);
    font-weight: var(--custom-fw-600);
    color: var(--custom-primary);
    font-family: var(--custom-font-playfair);
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.title span {
    color: var(--custom-black);
}
/* Contact Us Donate */
.contact-us {
    background: url(../img/donate.jpg);
    /* background-position: 50% 76px; */
}
/* --------------- */
/* Donation Login Sign up*/

.donation .form-input,
.login-form .form-input {
    max-width: 100%;
    margin: 15px 10px;
    display: flex;
}
.login-form .login-socials {
    text-indent: 0;
    font-size: var(--custom-fs-18);
}
.login-form .form-input {
    justify-content: center;
}
.login-form .form-input .twitter {
    background-color: #55acee;
}
.login-form .form-input .google {
    background-color: #ea4335;
}
.login-form .form-input .facebook {
    background-color: #4267b2;
}
.login-form .form-input > div a {
    color: #fff;
}
.login-form .form-input > div {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin: 0 5px;
}
.login-form {
    display: flex;
    justify-content: center;
}
.login-form .form-input label,
.donation .form-input label {
    max-width: 100px;
    width: 100px;
}
.login-form .radio-button {
    width: auto !important;
    align-self: center;
    margin-right: 10px;
}
.donation #message {
    height: 100px;
}
.donation .form-input label,
.login-form .form-input label {
    color: var(--custom-black);
    font-size: var(--custom-fs-14);
    margin-right: 20px;
    align-self: center;
}
.donation .form-input input,
.donation #message,
.login-form .form-input input,
.donation select,.login-form .form-input select,.login-form .form-input textarea{
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    padding: 10px 20px !important;
}
.donation select,.login-form .form-input select,.login-form .form-input textarea {
    color: var(--custom-black);
}
.donation .form-input input:focus,
.donation #message:focus,
.login-form .form-input input:focus,
.donation select:focus,.login-form .form-input select:focus,.login-form .form-input textarea:focus {
    outline: none;
}
.donation .form-input .btn,
.login-form .form-input .btn {
    background-color: var(--custom-primary);
    color: #fff;
    margin-left: auto;
    margin-top: 40px;
}
.login-form .form-input .btn {
    margin: 0 auto;
}
.donation .form-input .btn:hover {
    background-color: var(--custom-secondary);
}
/* --------------- */

/* Publication */
.publication {
    background: url(../img/publications.jpg);
}
.card {
    overflow: hidden;
    border-radius: 20px;
    padding-bottom: 82px;
    position: relative;
    margin-bottom: 20px;
}
.card .card-body {
    background-color: var(--custom-primary);
    color: #fff;
    position: absolute;
    padding: 20px;
    top: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    margin-top: -84px;
    transition: var(--custom-transition-400);
}
.card:hover .card-body {
    top: 190px;
}
.card .card-body .card-title {
    font-size: var(--custom-fs-24);
    font-weight: var(--custom-fw-600);
}
.card .card-body .card-text {
    font-size: var(--custom-fs-14);
}
.card .card-body a {
    color: var(--custom-black);
    transition: var(--custom-transition-400);
}
.card .card-body a:hover {
    color: var(--custom-gray);
}
/* --------------- */

/* Gallery Section */
.gallery {
    background: url(../img/gallery.jpg);
}
.gallery-wrap .img-wrap {
    position: relative;
    overflow: hidden;
}
.gallery-wrap .img-wrap img {
    transition: var(--custom-transition-400);
}
.gallery-wrap .img-wrap:hover img {
    transform: scale(1.2);
}
.gallery-wrap .overlay-shade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: var(--custom-transition-400);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}
.gallery-img-wrap, .gallery-video-wrap{
    cursor: pointer;
}
.gallery-wrap .img-wrap:hover .overlay-shade {
    border: 8px solid #eeeeee;
    opacity: 0.9;
}
.gallery-wrap .img-wrap:hover .icon {
    top: 40%;
}
.gallery-wrap .overlay-shade .icon {
    background-color: var(--custom-primary);
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--custom-transition-400);
    top: 0;
}
.gallery-wrap .overlay-shade .icon span {
    cursor: pointer;
}
.gallery-wrap .show{
    display: block;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5px;
}
/* --------------- */
body {
    overflow-x: hidden;
}
/* Title */
.header-title-section {
    background-color: rgba(17, 17, 17, 0.5);
    position: relative;
    background: url(../img//headerbg.jpg);
    z-index: 0;
    padding: 10px 0;
}
.header-title-section .header-title {
    padding-top: 20px;
    font-family: var(--custom-font-playfair);
}
.header-title-section .header-title h3 {
    margin: 20px 0 10px 0;
    color: var(--custom-white);
    font-size: var(--custom-fs-35);
    z-index: 1;
    font-weight: var(--custom-fw-600);
}
.header-title-section::before {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(17, 17, 17, 0.5) none repeat scroll 0 0;
    z-index: -1;
}

/* -------------------------------- */
/* List Group */
.list-group-item {
    color: var(--custom-gray) !important;
    font-size: var(--custom-fs-14);
}
.list-group-item:hover {
    background-color: #f7f7f7;
}
/* -------------------------------- */

/* Article */
.article {
    padding: 40px 20px;
    border-bottom: 1px dashed #d3d3d3 !important;
    background-color: #f7f7f7;
    color: var(--custom-gray) !important;
    margin-bottom: 40px;
}
.article p {
    color: var(--custom-gray) !important;
    font-size: var(--custom-fs-14);
    text-align: justify;
    font-weight: var(--custom-fw-500);
    text-indent: 100px;
}
/* -------------------------------- */
/* Footer */
.footer {
    background-color: rgb(37, 39, 46);
}
.footer p {
    font-size: var(--custom-fs-14);
    color: var(--custom-gray);
    padding: 0 10px 5px 0;
    margin: 0;
}
.footer a {
    color: var(--custom-gray);
}
.footer i,
.footer .view {
    color: var(--custom-primary);
}
.footer-title:after {
    bottom: -1px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 50px;
    background-color: var(--custom-primary);
}
.footer-title {
    font-family: var(--custom-font-playfair);
    color: #fff;
    font-weight: var(--custom-fw-600);
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #444;
    margin-bottom: 20px;
}
.footer li {
    margin: 5px 0 8px 0;
    padding-bottom: 8px;
}
.footer .facebook a,
.footer .fab {
    color: #fff;
    font-size: var(--custom-fs-14);
}

.footer-bottom {
    font-size: 11px;
}

.custom-border-bottom li {
    border-bottom: 1px dashed var(--custom-gray);
}
.widget li,
.events li {
    margin: 5px 0 8px 0;
    padding-bottom: 8px;
    color: var(--custom-gray);
    transition: var(--custom-transition-300);
}
.widget li:hover,
.events li:hover {
    background-color: #fff;
}
.events a:hover li {
    color: var(--custom-gray) !important;
}
.widget a:hover li {
    color: var(--custom-primary);
    margin-left: 10px;
}
.widget a,
.events a {
    font-size: var(--custom-fs-14);
}
.widget .view {
    float: right;
    color: var(--custom-primary);
}
/* --------------- */

/* Aside widget */
.aside-widget {
    margin-bottom: 30px;
}
.aside-widget .widget-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-family: var(--custom-font-playfair);
    color: var(--custom-black) !important;
    font-weight: var(--custom-fw-600);
    position: relative;
    padding-bottom: 10px;
}
.aside-widget .widget-title::before {
    bottom: -1px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 50px;
    background-color: var(--custom-primary);
}
.aside-widget ul {
    margin-top: 13px;
}
.aside-widget li {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #d3d3d3;
    font-size: var(--custom-fs-14);
}
.aside-widget ul a,
.aside-widget .view {
    font-weight: 500;
    color: var(--custom-gray);
}
.aside-widget .tags {
    font-size: var(--custom-fs-14);
}
.aside-widget .tags a {
    border: 1px solid #ddd;
    display: inline-block;
    font-size: 12px;
    margin: 5px 4px 5px -2px;
    padding: 5px 10px;
    color: var(--custom-gray);
}
.aside-widget .tags a:hover {
    background-color: var(--custom-primary);
    color: #fff;
}
/* --------------- */
/* modal section */
.modal-content {
    width: 100%;
    height: 100%;
    z-index: 1051 !important;
    max-height: 775px;
    background: transparent !important;
    border: none;
}
.modal-backdrop {
    z-index: -1;
}
.modal::before {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(17, 17, 17, 0.4);
}
.modal-dialog {
    max-width: 100% !important;
    padding: 0 ;
    margin: 0;
}
.modal-header {
    border-bottom: none;
}
.modal-header button {
    background: none !important;
}
.modal-header button span {
    color: #fff;
}
.modal-body {
    display: grid;
    place-items: center;
    padding: 0;
    z-index: 1000;
}
.modal-body img {
    max-height: 80vh;
}
#modal-video{
    width: 70%;
    min-height: 60vh;
}
/* --------------- */
/* dontaion-table */
.dontaion-table {
    display: flex;
    width: 100%;
}
.dontaion-table td {
    padding: 10px 1.5px;
}
.dontaion-table table {
    font-size: 12px;
    text-align: center;
}
.dontaion-table table button {
    border: none;
}
.dontaion-table thead th {
    background: rgba(242, 99, 33, 0.8);
    color: rgb(243, 243, 243);
}
.dontaion-table .date,
.dontaion-table .rnumber,
.dontaion-table .amount {
    max-width: 20px !important;
    width: 20px;
    height: 100%;
}
.dontaion-table a {
    color: var(--custom-black) !important;
    background-color: #fff;
}
.dontaion-table a:hover {
    color: var(--custom-primary);
}
/* --------------- */

/* Styling Pagination */
.pagination .active .page-link {
    background-color: #F26522 !important;
    color: #fff !important;
    border: 1px solid #F26522 !important;
}
.pagination .disabled .page-link {
    color: gray !important;
}
.pagination .page-link {
    color: #F26522 !important;
}

@media (max-width: 1199px) {
    .container {
        max-width: 970px;
    }
    .quick-links {
        width: 970px;
        position: static;
    }
    .dontaion-table {
        flex-direction: column;
    }
    .dontaion-table table tr,
    .dontaion-table table td,
    .dontaion-table table thead th {
        display: block;
        width: 100%;
    }
    .dontaion-table table tr {
        margin-bottom: 15px !important;
    }
    .dontaion-table input {
        width: 80% !important;
    }
    .dontaion-table table thead th {
        width: 100%;
        border: none !;
    }
    .dontaion-table table {
        margin-bottom: 20px;
        border: none !important;
        font-size: var(--custom-fs-16) !important;
        max-width: 500px;
        width: 500px;
    }
}
/* Responsive LG */
@media (max-width: 991px) {
 
    .article {
        margin-top: 20px;
    }
    .quick-links {
        width: 650px;
    }
    .socials {
        justify-content: center;
    }
    .footer .socials {
        justify-content: flex-start;
    }
    .info {
        float: none;
    }
    .carousel img {
        height: 600px !important;
    }
    .container {
        max-width: 750px !important;
    }
    .dropdown-child {
        background-color: #fff;
        z-index: 10000;
        position: static !important;
    }
    .dropdown-menu {
        display: none !important;
    }
    .show {
        display: block !important;
    }
    .nav-item {
        padding: 0;
        border-bottom: solid 1px #f0f0f0;
    }
    .nav-item .nav-link {
        border-radius: 0 !important;
    }
    .navbar-nav {
        margin: 20px 0 0 0;
    }
    #modal-video{
        width: 100%;
        min-height: 60vh;
    }
}
/* ------------- */

/* Responsive MD */
@media (max-width: 767px) {
    .carousel img {
        height: 500px !important;
    }
    .donation .form-input {
        flex-direction: column;
    }
    .donation .form-input label {
        align-self: flex-start;
        margin-bottom: 5px;
    }
    .quick-links {
        width: 550px;
    } .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* ------------- */

/* Responsive SM */
@media (max-width: 575px) {
    .quick-links {
        width: 300px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .dontaion-table table {
        max-width: 240px;
        width: 240px;
    }

    .login-form .form-input{
        flex-direction: column;
    }
    .login-form .form-input label{
        align-self: start;
        margin-bottom: 20px;
    }
    .form-flex{
        flex-direction: row !important;
    }
    .video-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* -------------- */
