/* IMPORTS */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.4/font/bootstrap-icons.css");

/* ANDY BELL MODERN CSS RESET */
/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
    list-style: none;
}

/* Set core root defaults */
html:focus-within {
    scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/*//////////////////////////////////////////////////////////////*/
/*///////////////////// CSS STARTS HERE ////////////////////////*/
/*//////////////////////////////////////////////////////////////*/

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #3f474f;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 15px;
}

*::-webkit-scrollbar-track {
    background: #ffffff;
}

*::-webkit-scrollbar-thumb {
    background-color: #3f474f;
}

html {
    font-family: 'Lato', sans-serif;
    font-size: 10px;
}

body {
    color: #212529;
    background-image: url('../images/Background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#logo {
    margin-left: 10%;
    text-decoration: none;
    color: white;
}

#logo img {
    margin: 0 auto;
    height: 40px;
    width: auto;
}

#logo:active {
    color: #0a96da;
}

#logo2 {
    margin: 0 auto;
    text-decoration: none;
    color: white;
}

#logo2 img {
    height: 100px;
    width: auto;
}

#logo2:active {
    color: #0a96da;
}

hr {
    color: #212529;
}

nav {
    border-bottom: 5px solid #0a96da;
    position: sticky !important;
    top: 0 !important;
    z-index: 100;
    height: 130px;
    width: 100%;
}

nav a.nav-title {
    font-size: 25px;
    font-weight: 500;
    text-decoration: none;
}

.btn.navlinks {
    background-color: var(--bs-dark) !important;
    color: white !important;
    border-radius: 0 !important;
    height: 50px !important;
    line-height: 40px !important;
    border: none !important;
}

.btn.navlinks:hover {
    color: #2d7ae5 !important;
}

.btn.navlinks:active {
    color: #2d7ae5 !important;
}

.btn.navlinks.active {
    color: #0a96da !important;
}

.page-container {
    position: relative !important;
    min-height: 100vh !important;
}

.content-wrap {
    padding-bottom: 30rem !important;
}

.footer {
    width: 100%;
    border-top: 5px solid #0a96da;
    color: white;
    position: absolute;
    left: 0 !important;
    bottom: 0 !important;
    padding: 20px !important;
}

.footer .row .col {
    margin: 0 auto;
    max-width: 400px;
}

.tab-content p {
    font-weight: 400 !important;
    font-size: 18px !important;
}

.list-group {
    border-radius: 10px;
}

.list-group a {
    background: #212529;
    border: none;
    font-size: 20px;
    color: white;
    padding: 15px;
}

.list-group a:hover {
    background-color: #212529 !important;
    color:  #00aaff;
}

.list-group a:active {
    background-color: #212529 !important;
    color:  #00aaff;
}

.list-group a.active {
    background-color: #212529 !important;
    color:  #00aaff;
    font-weight: bold;
}

.contact-info {
    text-decoration: none;
    display: block;
    color: white;
    font-size: 20px;
    margin: 10px;
    text-align: center;
}

.card {
    border-radius: 10px;
    border: 1.5px solid #212529;
}

#contact-facebook {
    color: white;
}

#contact-facebook:hover {
    color: dodgerblue;
}

#contact-location {
    color: white;
}

#contact-location:hover {
    color: gold;
}

#contact-telephone {
    color: white;
}

#contact-telephone:hover {
    color: greenyellow;
}

#contact-courriel {
    color: white;
}

#contact-courriel:hover {
    color: tomato;
}

#Description {
    margin: 0 auto;
    max-width: 800px;
}

#Soumission {
    margin: 0 auto;
    max-width: 800px;
    margin-bottom: 100px;
}

#Soumission input {
    height: 45px;
    font-size: 20px;
    border: 1px solid #2d7ae5;
}

#Soumission textarea {
    height: 200px;
    font-size: 18px;
    border: 1px solid #2d7ae5;
}

#Soumission .btn {
    height: 60px;
    width: 100%;
    font-size: 20px;
}

.confirmation {
    background: white;
    border: 1.5px solid #212529;
    border-radius: 10px;    
    padding: 10px;
}

.confirmation button {
    width: 100%;
    font-size: 18px;
}

/*//////////////////////////////////////////////////////////////*/
/*///////////////// MOBILE - CSS STARTS HERE ///////////////////*/
/*//////////////////////////////////////////////////////////////*/

@media only screen and (max-width: 1000px) {}