.d-flex {
    display: flex;
}

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

.flex-column {
    flex-direction: column;
}

.bg-color {
    position: relative;
    overflow: hidden;
    background-color: white;
}

.bg-color::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: rgba(var(--primary-color-gba), 0.3);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.center{
    text-align: center;
}

.bg-why {
    background-color:#6060600f;
}

.d-none {
    display: none;
}


.bg-color::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(var(--secondary-color-gba), 0.1);
    z-index: 0;
}

.mt-50{
    margin-top: 50px;
}

.white{
    color: white !important;
}

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

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

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

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

.mb-30 {
    margin-bottom: 30px;
}

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

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

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

.flex-fill {
    flex: 1;
}

.flex-none {
    flex: none;
}

.gap {
    gap: calc(var(--gutter-x) * 2);
}

.list-plain {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.border-b-light {
    border-bottom: 1px solid var(--border-color);
}

.border-t-med-gray {
    border-top: 1px solid var(--text-color);
}

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

.bg-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.h-75 {
    min-height: 75vh;
}



.pd-0 {
    padding: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pd-30 {
    padding: 30px 0 !important;
}

.mb-50{
    margin-bottom: 50px;
}


.pt-0 {
    padding-top: 0 !important;
}

.pt-80 {
    padding-top: 80px;
}

.pd-100 {
    padding: 100px 0;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-5 {
    margin-top: 5px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.m-w-85{
    max-width: 85%;
}

.mb-15 {
    margin-bottom: 15px;
}

.mt-40 {
    margin-top: 40px;
}

.mr-80 {
    margin-right: 80px;
}

.pt-25 {
    padding-top: 25px;
}

.p-25 {
    padding: 25px;
}

.w-m-50{
    max-width: 50%;
}

.p-45 {
    padding: 0 45px !important;
}

.pd-50 {
    padding-bottom: 50px;
}

.font-40 {
    font-size: 40px !important;
}

.font-20 {
    font-size: 20px !important;
}

.color-secondary {
    color: var(--secondary-color) !important;
}

.color-gray {
    color: #5d6579 !important;
}

.hide {
    display: none;
}

.pos-unset {
    position: unset !important;
}

.font-60 {
    font-size: 60px !important;
}

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

.bg-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.position-relative{
    position: relative;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 500px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 40%, var(--background) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    z-index: -1;
    opacity: 0.9;
}

.font-black{
    color:black !important;
}

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

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

.font-30 {
    font-size: 30px !important;
}

.bg-section-blog {
    background-color: rgba(var(--primary-color-gba), 0.6);
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
}

.alert {
    font-size: 16px;
    width: 100%;
    padding: 10px 20px;
    border: none;
    color: white;
    line-height: 25px;
    border-radius: var(--border-radius);
}

.alert-danger {
    background-color: #980202;
}

.alert-warning {
    background-color: var(--secondary-color);
}

.alert-success {
    background-color: #228802;
}


/*.error:not(.form-control) {*/
/*    display: block;*/
/*    margin-top: 5px;*/
/*    font-size: 14px;*/
/*    color: red;*/
/*}*/

/*.color-med-gray {*/
/*    color: var(--dark) !important;*/
/*}*/
