/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */

body {
    padding-top: 3rem;
    padding-bottom: 3rem;
    color: rgb(var(--bs-tertiary-color-rgb));
    font-family:
        -apple-system, "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande",
        Arial, sans-serif;
}

/* CUSTOMIZE THE CAROUSEL
  -------------------------------------------------- */

/* Carousel base class */
.carousel {
    margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
    bottom: 3rem;
    z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
    height: 32rem;
}

/* MARKETING CONTENT
  -------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
    margin-bottom: 1.5rem;
    text-align: center;
}
/* rtl:begin:ignore */
.marketing .col-lg-4 p {
    margin-right: 0.75rem;
    margin-left: 0.75rem;
}
/* rtl:end:ignore */

/* Featurettes
  ------------------------- */

.featurette-divider {
    margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
/* rtl:begin:remove */
.featurette-heading {
    letter-spacing: -0.05rem;
}

/* rtl:end:remove */

/* RESPONSIVE CSS
  -------------------------------------------------- */

@media (min-width: 40em) {
    /* Bump up size of carousel content */
    .carousel-caption p {
        margin-bottom: 1.25rem;
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .featurette-heading {
        font-size: 50px;
    }
}

@media (min-width: 62em) {
    .featurette-heading {
        margin-top: 7rem;
    }
}

@media (max-width: 40em) {
    /* Make the image responsive */
    .rounded-md,
    .sm:rounded-xl,
    .object-cover,
    .w-full {
        width: 100%;
        height: auto;
    }

    /* Adjust text sizes and margins */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    /* Ensure buttons are full-width on small screens */
    .sm:w-auto {
        width: 100%;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #ffffff;
    }
    .bg-white {
        background-color: #1e1e1e !important;
    }
    .text-gray-900,
    .text-gray-500 {
        color: #ffffff !important;
    }
    /* Additional dark mode styles for the Read More button */
    a.bg-[#00416b] {
        background-color: #00416b !important;
        color: #ffffff !important;
    }
    a.hover:bg-[#00638a]:hover {
        background-color: #00638a !important;
    }
}

/* ==================================================================
    KATEX
================================================================== */

body {
    counter-reset: eqnum;
}

.katex {
    font-size: 1em !important;
}

.katex-display .katex {
    /* Overwrite KaTeX settings. */
    display: inline-block;

    /* Allow display equations to wrap on small screens. */
    white-space: normal;
}

.katex-display::after {
    counter-increment: eqnum;
    content: "(" counter(eqnum) ")";
    position: relative;
    float: right;
    padding-right: 5px;
}

.nonumber .katex-display::after {
    counter-increment: nothing;
    content: "";
}

/* ==================================================================
    CODE & HIGHLIGHT.JS
================================================================== */
/* Inline code inside paragraphs */
.franklin-content p code {
    font-family:
        ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    background: var(--block-background, #f6f8fa);
    padding: 0.1em 0.25em;
    border-radius: 3px;
    font-size: 0.9em;
    display: inline;
    color: inherit;
}

/* Block code (highlight.js) */
.franklin-content pre code.hljs {
    display: block;
    font-family:
        ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    background: var(--block-background, #f6f8fa);
    padding: 1em;
    border-radius: 8px;
    line-height: 1.5;
    overflow-x: auto;
}

/* Pre elements containing code blocks */
.franklin-content pre {
    max-width: 70ch;
    margin: 0 auto 1.25rem auto;
    text-align: left;
    display: block;
    font-family:
        ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Highlight.js base styles */
.hljs {
    font-size: 14px;
    line-height: 1.35em;
    border-radius: 10px;
    font-family:
        ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.language-julia hljs {
    font-size: 14px;
    line-height: 1.35em;
    border-radius: 10px;
    font-family:
        ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.hljs-number {
    color: blue;
    font-family:
        ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.hljs-comment {
    color: gray;
    font-family:
        ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Highlight.js meta styling */
.hljs-meta {
    font-weight: bold;
    font-family:
        ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.hljs-meta.shell_ {
    color: crimson;
    font-family:
        ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.hljs-meta.prompt_ {
    color: rgb(25, 179, 51);
    font-family:
        ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Code output boxes */
.code-output {
    background: var(--output-background);
    border: 1px dashed #dbdbdb;
    font-family:
        ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.fndef-content {
    line-height: 1.5em;
}

/* ==================================================================
    Franklin Base
================================================================== */

.franklin-content .row {
    display: block;
}

.franklin-content .left {
    float: left;
    margin-right: 15px;
}

.franklin-content .right {
    float: right;
}

.franklin-content .container img {
    width: auto;
    padding-left: 0;
    border-radius: 10px;
}

.franklin-content .footnote {
    position: relative;
    top: -0.5em;
    font-size: 70%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

h1 a {
    color: #1c1c1c !important;
}
h2 a {
    color: #1c1c1c !important;
}
h3 a {
    color: #1c1c1c !important;
}
h4 a {
    color: #1c1c1c !important;
}
h5 a {
    color: #1c1c1c !important;
}

h1 a:visited {
    color: #1c1c1c !important;
}
h2 a:visited {
    color: #1c1c1c !important;
}
h3 a:visited {
    color: #1c1c1c !important;
}
h4 a:visited {
    color: #1c1c1c !important;
}
h5 a:visited {
    color: #1c1c1c !important;
}

@media (prefers-color-scheme: dark) {
    h1 a,
    h2 a,
    h3 a,
    h4 a,
    h5 a,
    h1 a:visited,
    h2 a:visited,
    h3 a:visited,
    h4 a:visited,
    h5 a:visited {
        color: #ffffff !important;
    }
}

.franklin-content p {
    margin: 0 auto 1.25rem auto;
    padding: 0;
    line-height: 1.6;
    max-width: 70ch;
    text-align: justify;
}

.franklin-content h1,
.franklin-content h2,
.franklin-content h3,
.franklin-content h4,
.franklin-content h5,
.franklin-content h6 {
    margin: 0 auto 1.5rem auto;
    max-width: 70ch;
    padding: 0;
    font-weight: 800;
}

.franklin-content table {
    margin: 20px auto;
    border-collapse: collapse;
}

.franklin-content th,
td {
    padding: 8px 12px;
    text-align: left;
}

.franklin-content th {
    border-bottom: 2px solid #333;
}

/* ==================================================================
    TEXT GEOMETRY
================================================================== */

.franklin-toc li {
    /* Avoid clickable elements being too close together. */
    margin: 0.6rem 0;
}

/* ==================================================================
    BOXES
================================================================== */

.franklin-content .colbox-blue {
    background-color: #eef3f5;
    padding-top: 5px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 5px;
    margin-left: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 0 10px 10px 0;
    border-left: 5px solid #4c9cf1;
}

/* ==================================================================
    LINKS
================================================================== */

.franklin-content h1 {
    padding-bottom: 0.5em;
    margin-top: 1.5em;
    margin-bottom: 1em;
}

.franklin-content h2 {
    padding-bottom: 0.5em;
    margin-top: 1.5em;
    margin-bottom: 1em;
}

.franklin-content a {
    color: #00415b;
    text-decoration: none;
}

.franklin-content a:hover,
.franklin-content a:focus {
    color: #00638a;
    text-decoration: underline;
}

/* ==================================================================
    Footer
================================================================== */
.franklin-content .page-foot a {
    text-decoration: none;
    color: #a6a2a0;
    text-decoration: underline;
}

.page-foot {
    font-size: 80%;
    color: #a6a2a0;
    text-align: center;
    margin-top: 6em;
    border-top: 1px solid lightgrey;
    padding-top: 2em;
    margin-bottom: 4em;
}

.footer-icons ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.footer-icons li {
    display: inline-block;
    padding-top: 5px;
    padding-bottom: 5px;
    font-family:
        -apple-system, "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande",
        Arial, sans-serif;
    font-size: 0.75em;
    text-transform: uppercase;
}

.footer-icons li + li::before {
    content: "";
    padding-right: 5px;
}

.footer-icons a {
    padding-right: 10px;
    font-weight: bold;
}

.footer-icons .social-icons a {
    white-space: nowrap;
}

.footer-icons .social-icons a:link {
    text-decoration: none;
}
.footer-icons .social-icons a:visited {
    text-decoration: none;
}
.footer-icons .social-icons a:hover {
    text-decoration: none;
}
.footer-icons .social-icons a:active {
    text-decoration: none;
}

.float-end a:link {
    text-decoration: none;
}
.float-end a:visited {
    text-decoration: none;
}
.float-end a:hover {
    text-decoration: none;
}
.float-end a:active {
    text-decoration: none;
}

.copyright a:link {
    text-decoration: none;
}
.copyright a:visited {
    text-decoration: none;
}
.copyright a:hover {
    text-decoration: none;
}
.copyright a:active {
    text-decoration: none;
}

body {
    margin-top: 0px;
    padding-top: 0px;
}
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}
.pt-5 {
    padding-top: 3rem !important;
}
.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}
.border-0 {
    border: 0 !important;
}
.position-relative {
    position: relative !important;
}
.shadow-lg {
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%) !important;
}
.card {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.member-profile {
    top: -50px;
    left: 0;
}
.text-center {
    text-align: center !important;
}
.w-100 {
    width: 100% !important;
}
.position-absolute {
    position: absolute !important;
}

.member-profile img {
    width: 100px;
    height: 100px;
}
.rounded-circle {
    border-radius: 50% !important;
}
.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%) !important;
}

.contact2 {
    font-family: "Montserrat", sans-serif;
    color: #8d97ad;
    font-weight: 300;
    padding: 60px 0;
    margin-bottom: 170px;
    background-position: center top;
}

.contact2 h1,
.contact2 h2,
.contact2 h3,
.contact2 h4,
.contact2 h5,
.contact2 h6 {
    color: #3e4555;
}

.contact2 .font-weight-medium {
    font-weight: 500;
}

.contact2 .subtitle {
    color: #8d97ad;
    line-height: 24px;
}

.contact2 .bg-image {
    background-size: cover;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.contact2 .card.card-shadow {
    -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
    box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}

.contact2 .detail-box .round-social {
    margin-top: 100px;
}

.contact2 .round-social a {
    background: transparent;
    margin: 0 7px;
    padding: 11px 12px;
}

.contact2 .contact-container .links a {
    color: #8d97ad;
}

.contact2 .contact-container {
    position: relative;
    top: 200px;
}

.contact2 .btn-danger-gradiant {
    background: #ff4d7e;
    background: -webkit-linear-gradient(
        legacy-direction(to right),
        #ff4d7e 0%,
        #ff6a5b 100%
    );
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#ff4d7e),
        to(#ff6a5b)
    );
    background: -webkit-linear-gradient(left, #ff4d7e 0%, #ff6a5b 100%);
    background: -o-linear-gradient(left, #ff4d7e 0%, #ff6a5b 100%);
    background: linear-gradient(to right, #ff4d7e 0%, #ff6a5b 100%);
}

.contact2 .btn-danger-gradiant:hover {
    background: #ff6a5b;
    background: -webkit-linear-gradient(
        legacy-direction(to right),
        #ff6a5b 0%,
        #ff4d7e 100%
    );
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#ff6a5b),
        to(#ff4d7e)
    );
    background: -webkit-linear-gradient(left, #ff6a5b 0%, #ff4d7e 100%);
    background: -o-linear-gradient(left, #ff6a5b 0%, #ff4d7e 100%);
    background: linear-gradient(to right, #ff6a5b 0%, #ff4d7e 100%);
}

* {
    box-sizing: border-box;
    list-style: none;
    font-family: "Montserrat", sans-serif;
}

p {
    margin: 5%;
    padding: 3%;
}

.category .job {
    height: 280px;
    border: 1px solid transparent;
    padding: 30px 19px 25px 19px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.category .job:hover {
    border: 1px solid #0d6efd;
}

.category .job span {
    padding: 6px 20px;
    font-weight: 400;
    border-radius: 26px;
    display: inline-block;
}

.category .job .colors1 {
    font-weight: 800;
    color: #f27e42;
    background: #f27e4242;
}

.category .job .colors2 {
    font-weight: 800;
    color: #4294f2;
    background: rgba(66, 148, 255, 0.26);
}

.category .job .colors3 {
    font-weight: 800;
    color: #2eb98d;
    background: rgba(46, 185, 141, 0.03);
}

.category .job .colors4 {
    font-weight: 800;
    color: #6a42f2;
    background: rgba(106, 66, 242, 0.07);
}

.category .job .colors5 {
    font-weight: 800;
    color: #f162bc;
    background: rgba(241, 98, 188, 0.07);
}

.category .job .colors2 {
    font-weight: 800;
    color: #4294f2;
    background: rgba(66, 148, 255, 0.26);
}

.place {
    display: flex;
    align-items: center;
    font-size: 12px;
    padding-left: 0px;
    color: #76787a;
}

.left {
    font-weight: 800;
}

.category .job span.time {
    font-weight: 900;
}

.btn.btn-primary {
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}
