@charset "UTF-8";

/*!
 * Version - 1.1.1
 * Copyright (c) 2023 2A Digital <contact@2adigital.site>

 * L’autorisation est accordée à toute personne qui en obtient une copie de ce style.
 * Il est strictement interdit de publier(vendre) sans l'autorisation préalable des auteurs.
 * Des spécialistes sont à l'origine des documents fournis.

*/

@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('../plugins/bootstrap/css/bootstrap.min.css');


* {
    font-family: var(--ff-primary);
    color: var(--dark);
}


body {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding-top: 40px; */
    /* padding-bottom: 40px; */
    background-image: url(../images/background.png);
    background-position: top center;
    background-repeat: repeat;
    background-clip: content-box;
    background-size: contain;
}

.form-control {
    border: 1px solid black !important;
}

.bg-or-color {
    background-color: gold !important;
}

.fadeIn {
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.ly-btn-dark {
    background-color: #000 !important;
    color: #fff !important;
}

.ly-btn-dark:hover {
    background-color: rgba(0, 0, 0, .6) !important;
    color: #fff !important;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

:root {
    --color: #005951;
    --ff-primary: 'Albert Sans', sans-serif;
}