@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --bg: #f5f5f5;
    --bg-2: #f5f5f5;
    --card: #FFFFFF;
    --heading: #000000;
    --text: #6b6b6b;
    --accent: #0F2043;
    --accent-2: #ffff00;
    --accent-3: #ffffff;
    --accent-4: #162F65;
    --font-1: "Calibri", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Playfair Display", sans-serif;
    background-color: var(--bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading);
}

p {
    color: var(--text);
}

img {
    width: 100%;
}

.box {
    padding: 28px;
}

.btn-dark {
    background-color: var(--accent);
}

.box_bg_blue {
    padding: 28px;
    background-color: var(--accent);
}

.box_bg_blue .card {
    background-color: var(--accent);
}

.box_bg_yellow {
    padding: 28px;
    background-color: var(--accent-2);
}

.box_bg_yellow .card {
    background-color: var(--accent-2);
}

.header {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 28px;
    background-color: var(--accent);
}

.header .logo {
    text-align: center;
}

.header .logo img {
    width: 80px;
    margin-bottom: 8px;
}

.header .logo p {
    font-family: var(--font-1);
    font-size: 12px;
    color: #fff;
    margin-bottom: 0;
}

.header .text h2 {
    color: #ffffff;
}

.header .text p {
    color: #eeeeee;
}


.about p {
    font-family: "DM Sans", sans-serif;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 28px;
}

.schedule-grid .date {
    color: var(--accent-2);
    font-size: 24px;
    margin-bottom: 8px;
}

.schedule-grid .place,
.schedule-grid .desc {
    font-family: "DM Sans", sans-serif;
}

.schedule-grid .place {
    font-weight: 600;
}


.zone-meeting .sub {
    font-family: "DM Sans", sans-serif;
}

.zone-meeting .item {
    border: none;
    box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
}

.zone-meeting h6,
.zone-meeting p {
    font-family: "DM Sans", sans-serif;
}

@media (max-width: 576px) {


    .header {
        flex-direction: column;
    }

    .header .logo {
        text-align: center;
    }

    .header .logo img {
        width: 60px;
        margin-bottom: 8px;
    }

    .header .logo p {
        font-family: var(--font-1);
        font-size: 12px;
        color: #fff;
        margin-bottom: 0;
    }

    .header .text {
        text-align: center;
    }

    .header .text h2 {
        color: #ffffff;
        font-size: 20px;
    }

    .header .text p {
        color: #eeeeee;
    }


    .schedule-grid {
        grid-template-columns: 1fr;
    }
}




.r_event {
    background-color: var(--bg-2);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
}

.r_event .hed img {
    width: 10%;
    margin-bottom: 8px;
}

.r_event .bg-primary {
    background: var(--accent) !important;
}

.r_event .btn-primary {
    background: var(--accent) !important;
    border: none;
}

.r_event .card {
    width: 60%;
    margin: 0 auto;
}

.icon {
    margin-top: -69px;
}

.icon img {
    display: inline-block;
    width: 90px;
    height: 90px;
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .r_event .card {
        width: 90%;
        margin: 0 auto;
    }

    .r_event .hed h6 {
        font-size: 12px;
    }

    .img_logo {
        width: 20% !important;
    }

    .icon {
        margin-top: -53px;
    }

    .icon img {
        display: inline-block;
        width: 60px;
        height: 60px;
        margin-bottom: 8px;
    }

    .icon h6 {
        font-size: 12px;
    }
}

.table_event {
    font-family: "DM Sans", sans-serif;
}

.table thead tr th {
    text-align: center !important;
}