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

* {
    margin: 0;
    padding: 0;
}

ul[role=list], ol[role=list] {
    list-style: none;
}

html:focus-within {
    scroll-behavior: smooth;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

img, picture, svg, video, canvas {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
}

input, button, textarea, select {
    font: inherit;
}

@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;
        transition: none;
    }
}
body, html {
    height: 100%;
    scroll-behavior: smooth;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

* {
    font-family: "Roboto", sans-serif;
}

body {
    background-color: #EFF2F5;
}

ul,li {
    margin: 0;
    padding: 0;
}

div {
    background-color: #FFFFFF;
}

h2 {
    font-size: 26px;
    font-weight: bold;
}

p {
    font-size: 18px;
}

@media screen and (min-width: 768px) {
    p {
        margin-bottom: 5px;
    }
}

.bold {
    font-weight: bold;
}

.gradient-icon {
    color: #009A63;
}

.orange-txt {
   color: #0B42B0;
}

.content {
    position: relative;
}

.caption {
    display: flex;
    justify-content: center;
}

.btn-colored {
    background: #009A63;
    display: block;
    max-width: 260px;
    border-radius: 2px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    padding: 13px;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;
    letter-spacing: 0.5px;
    font-size: 18px;
    width: 100%;
}

.btn-black {
    background-color: #062460;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    min-height: 77px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.btn-colored.full-w {
    max-width: 100%;
}

@media screen and (min-width: 768px) {
    .btn-colored.full-w, .btn-black{
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

.flex-ul li {
    display: flex;
    gap: 10px;
}

.flex-ul-default li {
    display: flex;
    gap: 10px;
}

.flex-ul-default li div {
    margin-top: -3px;
}


.flex-ul li div {
    margin-top: -3px;
    background: transparent;
    display: flex;
    flex-direction: column;
}

.progress-bar-box {
    background-color: #D1D5DB!important;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    height: 32px;
    display: flex;
}

.progress-bar-box #progress-bar {
    width: 14%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #163860;
    color: white;
    font-size: 14px;
    height: 100%;
    transition: width 0.1s ease-in-out;
}

.tab-title {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}


.tab {
    width: 100%;
}

.tab .inner {
    width: 100%;
}

.tab-btns-box {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: 100%;
}



.tab-btn {
    border: 1px solid transparent;
    border-radius: 6px;
    background-image:
            linear-gradient(white, white),
            linear-gradient(90deg, #B07908 0%, #C19325 8.1%, #DDBD53 22.32%, #EED66F 33.29%, #F4E07A 39.61%, #EFD873 44.19%, #D5B354 68.25%, #C69C41 87.71%, #C0943A 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: background-image 0.3s ease, color 0.3s ease;
    color: black;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 0.5px;
}


.tab-btn:hover,.tab-btn:active {
    background-image:
            linear-gradient(90deg, #B07908 0%, #C19325 8.1%, #DDBD53 22.32%, #EED66F 33.29%, #F4E07A 39.61%, #EFD873 44.19%, #D5B354 68.25%, #C69C41 87.71%, #C0943A 100%),
            linear-gradient(90deg, #B07908 0%, #C19325 8.1%, #DDBD53 22.32%, #EED66F 33.29%, #F4E07A 39.61%, #EFD873 44.19%, #D5B354 68.25%, #C69C41 87.71%, #C0943A 100%);
}

#form-wrap {
    background-color: #F9FAFB;
}

#form-wrap div {
    background: transparent;
}

form input {
    font-size: 18px;
    border: 1px solid #BDBDBD;
    padding: 20px;
    border-radius: 4px;
    width: 100%;
    margin: 0 0 20px;
}

form input::placeholder {
    color: #BDBDBD;
}

.footer{
    background: #EFF2F5;
}

.footer div {
    background: inherit;
}

.footer a{
    text-decoration: none;
    color: #0B42B0;
}

.header .logo {
    max-width: 220px;
}


@media screen and (max-width: 768px) {

    #form-wrap {
        padding: 60px 10px;
    }

    .form-title {
        text-align: center;
    }

    .form-title .title{
       margin-bottom: 30px;
    }

    .progress-bar-box {
        width: 100%;
        margin: 25px auto; ;
    }

    .tab-btns-box .tab-btn {
        max-width: 145px;
    }

    .tab-btn {
        display: block;
        width: 100%;
        padding: 20px;
        font-size: 18px;
    }

    .tab-btns-box {
        margin: 20px 0;
    }

    .tab-title {
        margin-bottom: 20px;
    }

    .tab-title .title {
        font-size: 21px;
        line-height: 130%;
        font-weight: 700;
        text-align: center;
    }

    .tab-title .sub-title {
        font-size: 16px;
        line-height: 130%;
        text-align: center;
    }

    .small-fs {
        font-size: 12px!important;
    }

}

#popup-form {
    transition: transform .3s ease;
    transform: translateX(-100%);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #F9FAFB;;
}

#popup-form.active-form {
    transform: translateX(0);
}

@media screen and (max-width: 768px) {
    .desktop {
        display: none;
    }

    .header .logo {
        max-width: 180px;
    }
}

@media screen and (min-width: 768px) {
    .mobile {
        display: none;
    }
}

.text-logo {
    color:#072360;
    font-size: 32px;
    font-weight: 900;
    display: flex;
    gap: 8px;
}

@media screen and (max-width: 768px) {
    .text-logo {
        font-size: 22px;
    }
}


.footer {
    background: #062460;
    padding: 60px 0;
    text-align: center;
    color: #E2E2E2;
    font-family: "Poppins", sans-serif;

    font-weight: 400;
}
.footer .link {
    color: #e20514;
    text-decoration: none;
}
.footer p {
    margin-bottom: 10px;
    font-size: 9px!important;
}
@media screen and (max-width: 768px) {
    .footer {
        padding: 30px 20px;
    }
}

/* Politique popup */
#politique-popup {
    margin: 0 auto;
}
#politique-popup::backdrop {
    background: rgba(0, 0, 0, 0.8);
}
#politique-popup .dialog-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    max-width: 640px !important;
    padding: 30px;
}
#politique-popup .dialog-content ul {
    margin: 20px 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#politique-popup .dialog-content a {
    color: #de0000;
}
#politique-popup .dialog-content .close-btn {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
    background: none;
    border: none;
    font-weight: bold;
}