@charset "UTF-8";

/*!
Additions
 */
body {
    background-color: #FAFAFD;
    font-family: 'Montserrat'
}

th, td {
    padding: 5px;
    vertical-align: top;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #BECCC0;
    --bs-btn-border-color: none;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #BFD2C5;
    --bs-btn-hover-border-color: none;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #BECCC0;
    --bs-btn-active-border-color: none;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #BECCC0;
    --bs-btn-disabled-border-color: none;
}

.nav-link.btn {
    color: #fff;
    border: 1px solid transparent;
}

.start {
    position: relative;
}

.start::before {
    position: absolute;
    content: "";
    right: 0px;
    width: 80%;
    height: 95%;
    /*background: #36413B;*/
    background: #BECCC0;
    border-radius: 20px 0px 0px 20px;
    z-index: -1;

    animation: fadeInRightBig;
    animation-duration: 1s;
}

.about::before {
    position: absolute;
    content: "";
    left: 0px;
    width: 80%;
    height: 75%;
    /*background: #36413B;*/
    /*background: #cbbfbb;*/
    background: #BECCC0;
    border-radius: 0px 20px 20px 0px;
    z-index: -1;

    animation: fadeInLeftBig;
    animation-duration: 1s;
}

#hero.img-fluid {
    max-height: 500px;
    border: 10px solid #fff;
    border-radius: 20px;
    animation: fadeInLeftBig;
    animation-duration: 1s;
}

#about_hero.img-fluid {
    max-height: 500px;
    border: 10px solid #fff;    
    border-radius: 20px;
    animation: fadeInRightBig;
    animation-duration: 1s;
}

.navbar {
    background-color: #F8F9FA;
    height: 102px;
    border-bottom: 1px solid #e7e7e7;
    --bs-navbar-nav-link-padding-x: 1rem;
    --bs-navbar-padding-y: 1.5rem;
    position: sticky;
}

.navbar-collapse {
    background-color: #F8F9FA;
    text-align: center;
    padding: 20px;
}

a.nav-link {
    margin: 10px;
}

a.nav-link:hover {
    font-weight: bold;
}

a.nav-link.active {
    font-weight: bold;
}

.navbar-brand img {
    max-height: 50px;
    padding-left: 20px;

}

.navbar-toggler {
    margin-right: 20px;
}

.py-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
}

.fi {
    margin-right: 10px;
}

.container-fluid#nav {
    --bs-gutter-x: 0rem;
}

.carousel-indicators {
    position: relative;
    margin-top: 20px;
}

@media (max-width: 992px) {

    .carousel-control-prev {
        display: none;
    }

    .carousel-control-next {
        display: none;
    }
  
    .start::before {
    width: 100%;
    }

    .about::before {
        width: 100%;
    }
}


.about_card {
    flex: 0 50%;
    background: #fff;
    box-shadow: 0px 10px 29px -16px rgba(0, 0, 0, 0.12);
    border-radius: 15px;
    margin: 8px;
    padding: 10px 15px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 265px;
    transition: 0.7s;
    height: 100%;
}


.about_cards_box .about_card:before {
    content: "";
    position: absolute;
    background: rgb(160 178 166 / 10%);
    width: 100%;
    height: 150%;
    z-index: -1;
    transform: rotate(45deg);
    right: -150px;
    top: -23px;
    border-radius: 35px;
}

.card-body {
    padding-top: 10px;
    padding-bottom: 10px;
}


/*start media query*/
@media screen and (min-width: 320px) {
    .about_cards_box {
        flex: auto;
    }
}

@media only screen and (min-width: 768px) {
    .about_cards_box {
        flex: 1;
    }
}

@media only screen and (min-width: 1200px) {
    .about_card {
        min-height: 510px;
    }
}

@media only screen and (min-width: 632px) and (max-width: 1199px) {
        .about_cards_box .about_card:before {
        width: 500px;
        height: 500px;
    }
}

footer a {
    text-decoration: none;
    color: #fff;
}

footer a:hover {
    text-decoration: underline;
    color: #fff;
}

#contact_infos a {
    text-decoration: none;
    color: #000;
}

#contact_infos a:hover {
    text-decoration: underline;
    color: #000;
}

.accordion {
    margin: 0 auto;
    box-shadow: 0px 10px 29px -16px rgba(0, 0, 0, 0.12);
    border-radius: 15px;
    background: #fff;
    --bs-accordion-active-color: #000;
    --bs-accordion-active-weight: bold;
    --bs-accordion-active-bg: #fff;
}

.accordion-body {
    background: rgba(0, 0, 0, 0.02);
}

.accordion-button {
    background-color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-item {
    border-top: none;
    border-left: none;
    border-right: none;
}

.accordion-item:last-of-type {
    border: none;
}

#services:before {
    content: "";
    position: fixed;
    background: rgb(160 178 166 / 15%);
    width: 105%;
    height: 75%;
    z-index: -1;
    right: -150px;
    top: -20px;
    border-radius: 35px;
}

.form-control {
    border-radius: 25px;
    padding: 0.75rem;
}

.btn {
    border-radius: 25px;
}

.btn.active {
    border: 1px solid #000;
}