:root {
    --primary: #001978;
    --secondary: #a17948;
    --secondary-light: #e1cdaa;
    --body-text: #fff;
}

@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-Regular.woff2") format("woff2"),
         url("/fonts/Montserrat-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-Bold.woff2") format("woff2"),
         url("/fonts/Montserrat-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-Italic.woff2") format("woff2"),
         url("/fonts/Montserrat-Italic.woff") format("woff");
    font-weight: normal;
    font-style: italic;
}

.montserrat {
    font-family: "Montserrat", sans-serif;
}

body {
    color: var(--body-text);
    background-color: #0C1431;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0.5px;
    /* background-image: url(../images/bottom-image.png);
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat; */
}

.centralised-list {
    text-align: left;
    width: fit-content;
    margin: 0 auto;
}

.polygon-shapes {
    background-image: url(../images/polygons-2.png?v=3);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.programme-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* min-height: 150px; */
    margin: auto;
    /* max-width: 22em; */
    position: relative;
    padding: 1.5rem 2.5rem;
    box-sizing: border-box;
    color: var(--body-text);
    /* border-top: 1px solid rgba(0,0,0,0.3); */
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    /* background-clip: padding-box; */
    /* !importanté */
    /* border: solid 2px transparent; */
    /* !importanté */
    /* border-radius: 200px; */
    text-align: center;
    /* font-size: 18px; */
}

.programme-box:last-of-type {
    border-bottom: none !important;
}

.programme-box .time {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

/* .bottom-image {
    width: 100%;
    min-height: 600px;
    background-image: url(../images/bottom-image.png);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
} */

/********** COUNTER ***********/

.counter {
    text-align: center;
    padding: 12px 0 12px;
    color: var(--body-text);
    /* color: #FFF; */
    margin-top: 12px;
}


.counter-container {
    /* border: 1px solid #c9a5cd;
    border-radius: 1rem;
    width: 100%; */
    /* min-width: 650px; */
    max-width: 780px;
    margin: 1rem auto;
    font-size: 1.25rem;
    font-weight: 300;
    /* padding: 1.5rem 0; */
}

.counter-number {
    font-size: 4.5rem;
    font-weight: 600;
    color: #bb9362;
    line-height: 1em;
    margin-bottom: 10px;
    /* text-shadow: 7px 6px 10px rgba(0, 0, 0, .5); */
}

@media screen and (max-width: 576px) {
    .counter-number {
        font-size: 2.75rem;
    }

    .counter-container {
        font-size: 1rem;
    }

}

/********** End of COUNTER ***********/

/* Registration Form */
.ticket-form-group {
    padding: 0 0 1.5rem;
    /* margin-bottom: 1rem; */
}

.btn-blue {
    background-color: var(--primary);
    border: 1px solid #FFF;
    color: #FFF;
    transition: all .3s;
}

.btn-blue:hover {
    background-color: rgba(17, 55, 137, 0.6);
    color: #FFF;
}

.btn-red {
    background-color: var(--secondary);
    border: 1px solid #FFF;
    color: #FFF;
    transition: all .3s;
}

.btn-red:hover {
    background-color: rgba(218, 41, 28, 0.6);
    color: #FFF;
}

.btn-gradient {
    background: linear-gradient(135deg, #bb9362, #a27a49, #af7930);
    border: 1px solid #e1cdaa;
    color: #fff;
    transition: all .3s;
    padding: 0.5rem 1.25rem;
    border-radius: 0.75rem;
}

section {
    scroll-margin: 5rem;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.5;
}

/* Generic classes */
.primary-text {
    color: var(--primary);
}

.primary-light-text {
    color: var(--primary-light) !important;
}

.secondary-dark-text {
    color: var(--secondary-dark);
}

.secondary-text {
    color: var(--secondary);
}

.secondary-light-text {
    color: var(--secondary-light) !important;
}

.bold-text {
    font-weight: 700;
}

.header-font {
    font-family: var(--header-font);
}

.text-link:visited,
.text-link:link {
    color: var(--secondary) !important;
}

.text-link:hover {
    color: var(--secondary-light) !important;
}

.btn-rounded {
    border-radius: 2rem;
    padding: .5rem 2rem;
}

.btn-normal {
    padding: .75rem 3rem;
    border: 1px solid var(--primary-dark);
    background-color: var(--primary-dark);
    color: #FFF;
    /* border-radius: 0; */
    text-transform: uppercase;
    /* font-size: 1rem; */
    font-weight: 500;
    transition: 0.3s all ease-in;
}

.btn-normal:hover {
    background-color: inherit;
    color: var(--primary-dark);
    border: 1px solid var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border: 1px solid var(--secondary-dark);
}

.btn-outlined-secondary {
    background-color: #FFF;
    border: 1px solid var(--secondary);
}

.btn-outlined-secondary:hover {
    background-color: #FFF;
    border: 1px solid var(--secondary-light);
}

.btn-primary {
    background-color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    /* background-color: var(--primary-dark); */
    background-color: transparent;
    border: 1px solid var(--primary) !important;
    color: var(--primary) !important;
}

strong {
    font-weight: 700;
}

.dotted-line {
    margin: 0.5rem auto;
    border-bottom: 2px dotted var(--body-text-color);
}

.dotted-line.white {
    border-bottom: 2px dotted #FFF;
}

.dotted-line.grey {
    border-bottom: 2px dotted #8c8c8c;
}

.divider {
    width: 100%;
    height: 1px;
    border-bottom: 1px solid var(--primary-light);
}

.gradient-divider {
    height: 1px;
    width: 100%;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 15%, var(--primary) 50%, rgba(255, 255, 255, 0) 85%, rgba(255, 255, 255, 0) 100%);
}

.black-overlay {
    background-color: rgba(51, 51, 51, .6);
    content: " ";
    display: block;
    height: 100%;
    width: 100%;
}

.heading,
.heading2 {
    font-size: 2.5rem;
    font-weight: 600;
}

.heading2 {
    width: fit-content;
    color: var(--primary);
}

/* .heading2 span,
.heading span {
    border-bottom: 2px solid var(--primary);
    width: fit-content;
} */

.heading2 span {
    color: var(--body-text-color);
}

@media (max-width: 576px) {

    .heading2,
    .heading {
        font-size: 2rem;
    }

    .heading2 span {
        border-bottom: none;
        /* width: fit-content; */
    }
}

/* .heading2:after,
.heading:after {
    content: "";
    height: 1px;
    display: block;
    width: 100%;
    border-bottom: 2px solid #000;
} */

.square-list {
    margin-top: .5rem;
    margin-left: 0rem;
    padding-left: 0.5rem;
}

.square-list li {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.square-list li:before {
    content: '';
    width: 5px;
    height: 5px;
    display: inline-block;
    margin-left: 0;
    margin-right: 0.5rem;
    vertical-align: middle;
    /* margin-top: -6px; */
    background-color: var(--primary);
}

#tickets {
    border: 2px dotted var(--secondary);
    background-color: #f7f7f7;
    border-radius: 2rem;
    padding: 2rem 1rem;
    margin-top: 2rem;
    color: var(--primary);
}

.event-info {
    line-height: 1.5;
}

.event-date {
    font-size: 2rem;
    font-weight: 600;
}

@media (max-width: 576px) {
    .event-date {
        font-size: 1.75rem;
    }
}