@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&family=Roboto:wght@100;300;400;500;700;900&display=swap");

:root {
    --primary-color: #17202a;
    --dark-primary-color: #10161d;
    --secondary-color: #f2b10d;
    --selection-color: #af7e00;
    --shadow-color: #9d9fb3;
    --label-color: #ced4da;
    --white-color: #fbfbfb;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0 auto;
    --bs-body-bg: linear-gradient(
        135deg,
        #000000 0%,
        #000000 22%,
        #000f1b 49%,
        #000f1b 75%
    );
    background-color: #000f1b;
    background-image: url("../images/mainPage/hero-bg-img.webp"),
        linear-gradient(
            135deg,
            #000000 0%,
            #000000 22%,
            #000f1b 49%,
            #000f1b 75%
        );
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow-x: hidden;
}

html {
    background-color: #000000;
    background-image: linear-gradient(
        135deg,
        #000000 0%,
        #000000 22%,
        #000f1b 49%,
        #000f1b 75%
    );
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: rgb(51, 51, 51);
    border-radius: 0px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--secondary-color);
    border-radius: 10px;
}


.faq-boxes {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 0 20px;
}

.faq-box {
    position: relative;
    background-image: linear-gradient(
        135deg,
        rgba(0, 15, 27, 0.8) 0%,
        rgba(0, 0, 0, 0.8) 90%
    );
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-grid;
    align-items: center;
    text-align: center;
    border: 1px solid var(--shadow-color);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

.faq-box .icon {
    color: var(--label-color);
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px;
    height: 20px;
}

.faq-box:hover,
.faq-box.selected {
    background-color: var(--primary-color);
    border: 1px solid var(--secondary-color);
}

@media screen and (max-width: 768px) {
    .faq-boxes {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0 10px;
    }
}

.faq-box__subtitle {
    font: 400 18px "Lato", sans-serif;
    color: var(--shadow-color);
    margin: 5px auto;
}

.faq-box__title {
    font: 700 26px "Lato", sans-serif;
    color: var(--white-color);
    margin: 0 auto;
}

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

/* Bootstrap Accordion */

.accordion {
    background-image: linear-gradient(
        135deg,
        rgba(0, 15, 27, 0.8) 0%,
        rgba(0, 0, 0, 0.8) 90%
    );
    background-repeat: no-repeat;
    background-size: cover;
    --bs-accordion-border-width: 0 !important;
}

.accordion-button:not(.collapsed) {
    background-color: transparent !important;
    box-shadow: none !important;
}

.accordion-item:first-of-type .accordion-button {
    background-image: linear-gradient(
        135deg,
        rgba(0, 15, 27, 1) 0%,
        rgba(0, 0, 0, 1) 90%
    );
    background-repeat: no-repeat;
    background-size: cover;
}

.accordion-item {
    color: var(--shadow-color) !important;
    font: 400 18px "Roboto", sans-serif !important;
}

.accordion-button:focus {
    border-color: transparent !important;
    --bs-accordion-btn-focus-box-shadow: transparent !important;
}

.accordion-button {
    font: 700 21px "Lato", sans-serif !important;
    color: var(--white-color) !important;
}

.accordion-button::after {
    order: -1 !important;
    margin-left: 0 !important;
    margin-right: 0.5em !important;
    background-image: url("../images/white-arrow.webp") !important;
}

.accordion-body {
    margin-left: 2em !important;
}

/* Breadcrumb */
.breadcrumb-item a {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    --bs-breadcrumb-item-active-color: var(--selection-color);
}
