@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yellowtail&display=swap');

:root {
    --primary-color: #7EB693;
    --secondary-color: #274C5B;
    --black-color: rgb(21, 18, 18);
    --gray-color: #D4D4D4;
    --color-green-200: #EFF6F1;

}

body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    color: var(--secondary-color);
}

h2 {
    font-size: 40px;
    font-weight: 900;
    line-height: 82.03px;

}


h3 {
    font-size: 30px;
    font-weight: 800;
    line-height: 50px;
    color: var(--secondary-color);
}

h4 {
    font-size: 38px;
    font-weight: 700;
    text-align: left;
    color: var(--secondary-color);

}

h5 {
    font-size: 20px;
    font-weight: 600;
}

h6 {
    font-size: 15px;
    font-weight: 500;
}

.fixed-top {
    top: 0;
}

.relative {
    position: relative;
}

.absolute{
    position: absolute;
}

.container {
    margin: 0 8%;
}

.yellowtail-regular {
    font-family: "Yellowtail", cursive;
    font-weight: normal;
    font-size: 30px;
    color: var(--primary-color);
}

.d-flex {
    display: flex;
}

.d-none {
    display: none;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.justify-start {
    justify-content: start;
}

.justify-end {
    justify-content: end;
}


.justify-around {
    justify-content: space-around;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: end;
}

.flex-1 {
    flex: 1;
}

.flex-columns {
    flex-direction: column !important;
}

.gap-1 {
    gap: 1%;
}

.gap-2 {
    gap: 0.6rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 2rem;
}

/* Padding dans toutes les directions */
.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

/* Padding dans toutes les directions en pourcentage */
.p-10p {
    padding: 10% !important;
}


.p-20p {
    padding: 20% !important;
}

.p-30p {
    padding: 30% !important;
}

.p-40p {
    padding: 40% !important;
}

.p-50p {
    padding: 50% !important;
}




.py-10 {
    padding-top: 5%;
    padding-bottom: 5%;
}

.py-20 {
    padding-top: 10%;
    padding-bottom: 10%;
}

.pt-10{
    padding-top: 10%;
}

.pt-20 {
    padding-top: 10%;
}

.py-5 {
    padding-top: 2.5%;
    padding-bottom: 2.5%;
}

.px-5 {
    padding-left: 2.5%;
    padding-right: 2.5%;
}



.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

.w-90 {
    width: 90%;
}

.w-80 {
    width: 80%;
}

.w-40 {
    width: 40%;
}

.w-30 {
    width: 30%;
}

.w-20 {
    width: 20%;
}

.w-10 {
    width: 10%;
}

.w-100 {
    width: 100%;
}

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

.hover-primary:hover {
    color: var(--primary-color);
}

.decoration-none {
    text-decoration: none;
}

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

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

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

.text-end {
    text-align: end;
}

.text-sm {
    font-size: smaller;
}


.bg-primary {
    background-color: var(--primary-color);
}

.bg-gray {
    background-color: var(--gray-color);
}

.stroke-primary {
    stroke: var(--primary-color);
}

.px-10 {
    padding-left: 10%;
    padding-right: 10%;
}

.pt-5{
    padding-top: 4rem;
}


.m-0 {
    margin: 0;
}

.m-1 {
    margin: 1px 0px;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-10 {
    margin-top: 10%;
}

/* Marges inférieures */
.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mb-10p {
    margin-bottom: 10% !important;
}

.mb-20p {
    margin-bottom: 20% !important;
}

.mb-30p {
    margin-bottom: 30% !important;
}

.mb-40p {
    margin-bottom: 40% !important;
}

.mb-50p {
    margin-bottom: 50% !important;
}

.rounded-full {
    border-radius: 100%;
}

.cursor-pointer {
    cursor: pointer;
}

.bg-tansparent {
    background: transparent;
}

.bg-white {
    background-color: white;
}

.border-none {
    border: none;
}

.border {
    border: 1px solid var(--gray-color) !important;
}
.d-inline-block{
    display: inline-block;
}

.mr-0, .ml-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.mr-1, .ml-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
}

.mr-2, .ml-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
}

.mr-3, .ml-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
}

.mr-4, .ml-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
}

.mr-5, .ml-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
}

.pr-0, .pl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.pr-1, .pl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
}

.pr-2, .pl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}

.pr-3, .pl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.pr-4, .pl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}

.pr-5, .pl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}

.d-grid{
    display: grid;
}

.grid-template-1-columns{
    grid-template-columns: 1fr;
}

.grid-template-2-columns{
    grid-template-columns: repeat(2, 1fr);
}

.grid-template-3-columns{
    grid-template-columns: repeat(3, 1fr);
}

.grid-template-4-columns{
    grid-template-columns: repeat(4, 1fr);
}

.grid-template-1-rows{
    grid-template-rows: 1fr;
}

.grid-template-2-rows{
    grid-template-rows: repeat(2, 1fr);
}

.grid-template-3-rows{
    grid-template-rows: repeat(3, 1fr);
}

.grid-template-4-rows{
    grid-template-rows: repeat(4, 1fr);
}

.mx-auto{
    margin: 0 auto;
}

.ht-1 {
    height: 10% !important;
}

.ht-2 {
    height: 20% !important;
}

.ht-3 {
    height: 30% !important;
}

.ht-4 {
    height: 40% !important;
}

.ht-5 {
    height: 50% !important;
}

.ht-6 {
    height: 60% !important;
}

.ht-7 {
    height: 70% !important;
}

.ht-8 {
    height: 80% !important;
}

.ht-9 {
    height: 90% !important;
}

.ht-10 {
    height: 100% !important;
}

.g-align-justify-center{
    align-self: center;
    justify-self: center;
}

.align-self-center{align-self: center}


.rounded{
    border-radius: 8px;
}

