:root {
    --primary-color: #0591b8;
    --second-color: red;
    --primary: #0591b8;
    --secondary: #b4e4f165;
    --light: #F0FBFC;
    --dark: #181d38;
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #444444;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #37423b;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #5fcf80;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --contrast-color: #ffffff;
}

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

/* Global Stylings */
label {
    font-size: 16px;
    font-weight: 700;
    color: black;

}

.custom-baniere {
    height: 50vh;
    width: 100%;
}


.custom-hr {
    border-bottom: 3px solid var(--primary);
}

h2 {
    font-family: 'Times New Roman', Times, serif;
}

.width-50 {
    width: 50%;
}

.ml-auto {
    margin-left: auto;
}

/* Progressbar */
.progressbar {
    counter-reset: step;
    margin: 2rem 0 4rem;
}

.progressbar::before,
.progress {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background-color: #dcdcdc;
    z-index: -1;
}

.progress {
    background-color: var(--second-color);
    width: 0%;
    transition: 0.3s;
}

.progress-step {
    width: 2.1875rem;
    height: 2.1875rem;
    background-color: #908a8a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-step::before {
    counter-increment: step;
    content: counter(step);
}

.progress-step::after {
    content: attr(data-title);
    position: absolute;
    top: calc(100% + 0.5rem);
    font-size: 14px;
    color: #666;
}

.progress-step-active {
    background-color: var(--primary-color);
    color: #f3f3f3;
}

/* Form */
.form-details {
    border-radius: 15px;
}

.form-step {
    display: none;
    transform-origin: top;
    animation: animate 0.5s;
}

.form-step-active {
    display: block;
}

/* Button */
.btn-custom {
    padding: 0.75rem;
    color: #f3f3f3;
    text-align: center;
    border-radius: 0.25rem;
    cursor: pointer;
}

small {
    color: gray;
    font-size: 14px;

}

.input-file {
    cursor: pointer;
    font-size: 12px;
}

.input-file2 {
    cursor: not-allowed;
    font-size: 12px;
}

@media (max-width: 576px) {
    .custom-baniere {
        height: 40vh;
    }

    .custom-modals {
       padding-bottom: 100px;
    }
    .custom-modals2 {
       padding-top: 240px;
    }
}

@media (max-width: 350px) {

    .custom-modals2 {
        padding-top: 140px;
    }
   
}


.offcanvas-body {
    padding: 15px;
}


 .alert-message .btn-close {
     position: absolute;
     top: 0;
     right: 0;
     padding: 0.5rem;
 }

 .custom-popover .popover-body {
     background-color: var(--secondary);
     color: #000;
 }

 .custom-popover .popover-header {
     background-color: var(--primary);
     color: #fff;
 }