/********** Template CSS **********/
:root {
    /* --primary: #06A3DA; */
    /* --blue: #056AC9; */
    /* --primary: #d19cf1; */
    --primary: #4b0776;
    --purple: #A020F0;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --color: #000000;
    /* --dark: #091E3E; */
    --dark: #301934;
}

/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

.pays {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
.fw-bold {
    font-family: 'Nunito', sans-serif;
    font-size: 30px;
    font-weight: 500 !important;
}

h2,
.fw-bold {
    font-family: 'Nunito', sans-serif;
    font-size: 30px;
    font-weight: 500 !important;
}

h3,
.fw-semi-bold {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 900 !important;
}

h4,
.fw-semi-bold {
    font-family: 'Nunito', sans-serif;
    font-size: 25px;
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 400 !important;
}

P,
.fw-medium {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 400 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


 /*** About Start ***/
.row g-5 {
    margin-top: -100px;
}

 /*** About Start ***/
#row gx-0 {
    width: 48px;
    height: 48px;
}

/*** Navbar ***/
/* .nav-link{
    
    color: #99ee82;
} */
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 20px;
    padding: 35px 0;
    color: #FFFFFF;
    /* color: #ee82ee; */
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}
.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
    /* color: #ee82ee; */
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
    /* color: #ee82ee; */
    
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
        /* color: #ee82ee; */
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(9, 30, 62, .7); */
    background: rgba(191, 177, 198, 0.2);
    z-index: 1;
}

.owl-carousel {
    width: 150%;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    /* background: rgba(9, 30, 62, .7); */
    background: rgba(191, 177, 198, 0.2);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item {
    width: 210px;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/* background: rgba(191, 177, 198, 0.2); rgba(222, 189, 242, 0.7)*/
.bg-header { 
    /* background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/Shooting_JLC_GROUP/Shooting_JLC_GROUP-10711.jpg) center center no-repeat; */
    background: linear-gradient(rgba(191, 177, 198, 0.2), rgba(191, 177, 198, 0.2)), url(../img/Shooting_JLC_GROUP/Shooting_JLC_GROUP-10711.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-propos {
    /* background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/Shooting_JLC_GROUP/abouts.jpg) center center no-repeat; */
    background: linear-gradient(rgba(191, 177, 198, 0.2), rgba(191, 177, 198, 0.2)), url(../img/Shooting_JLC_GROUP/abouts.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-services {
    /* background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/Shooting_JLC_GROUP/JH4A7270b.gif) center center no-repeat; */
    background: linear-gradient(rgba(191, 177, 198, 0.2), rgba(191, 177, 198, 0.2)), url(../img/Shooting_JLC_GROUP/JH4A7270b.gif) center center no-repeat;
    background-size: cover;
}

.bg-header-filiales {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/filiales.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-filiales_cmr {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/filiales_cmr.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-filiales_benin {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/filiales_benin.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-filiales_canada {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/filiales_canada.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-filiales_congo {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/filiales_congo.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-filiales_ivoire {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/filiales_ivoire.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-filiales_gabon {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/filiales_gabon.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-filiales_liberia {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/filiales_liberia.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-filiales_rca {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/filiales_rca.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-filiales_rdc {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/filiales_rdc.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-filiales_leone {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/filiales_leone.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-filiales_tchad {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/filiales_tchad.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-actu {
    /* background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/Shooting_JLC_GROUP/JH4A7287b.gif) center center no-repeat; */
    background: linear-gradient(rgba(191, 177, 198, 0.2), rgba(191, 177, 198, 0.2)), url(../img/Shooting_JLC_GROUP/JH4A7287b.gif) center center no-repeat;
    background-size: cover;
}

.bg-header-job {
    /* background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/Shooting_JLC_GROUP/JH4A7255b.gif) center center no-repeat; */
    background: linear-gradient(rgba(191, 177, 198, 0.2), rgba(191, 177, 198, 0.2)), url(../img/Shooting_JLC_GROUP/JH4A7255b.gif) center center no-repeat;
    background-size: cover;
}

.bg-header-clients {
    /* background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/Shooting_JLC_GROUP/clients.jpg) center center no-repeat; */
    background: linear-gradient(rgba(191, 177, 198, 0.2), rgba(191, 177, 198, 0.2)), url(../img/Shooting_JLC_GROUP/clients.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-contact {
    /* background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/Shooting_JLC_GROUP/JH4A7266b.gif) center center no-repeat; */
    background: linear-gradient(rgba(191, 177, 198, 0.2), rgba(191, 177, 198, 0.2)), url(../img/Shooting_JLC_GROUP/JH4A7266b.gif) center center no-repeat;
    background-size: cover;
}
.bg-header-connexion {
    /* background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/Shooting_JLC_GROUP/JH4A7369b.gif) center center no-repeat; */
    background: linear-gradient(rgba(191, 177, 198, 0.2), rgba(191, 177, 198, 0.2)), url(../img/Shooting_JLC_GROUP/JH4A7369b.gif) center center no-repeat;
    background-size: cover;
}

.bg-filiale {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/filiale.jpg) center center no-repeat;
    background-size: cover;
}
/*  start pour changer la couleur des textes, les carrés et  le fond */
.bg-primary{
    background-color:#bfb1c6 !important
}
.text-primary{
    color:#bfb1c6 !important
}
.bg-light{
    /* background-color:#EEF9FF !important */
    background-color: #f0e6f5  !important
}
.bg-dark{
    /* background-color:#091E3E !important */
    background-color: #301934 !important
}
.btn-primary{
    color:#000;
    background-color:#bfb1c6;
    border-color:#bfb1c6
}
.btn-primary:hover{
    color:#000;
    background-color:#bfb1c6;
    /* border-color:#1facde; */
    border-color:#bfb1c6 facde
}
.btn-check:focus+.btn-primary,.btn-primary:focus{
    color:#000;
    /* background-color:#2bb1e0; */
    background-color:#A020F0;
    /* border-color:#1facde; */
    border-color:#bfb1c6 facde;
    /* box-shadow:0 0 0 .25rem rgba(5,139,185,0.5); */
    box-shadow:0 0 0 .25rem rgba(191, 177, 198, 0.5)
}
.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle{
    color:#000;
    /* background-color:#38b5e1; */
    background-color:#A020F0;
    /* border-color:#1facde; */
    border-color:#bfb1c6 facde
}
.btn-check:checked+.btn-primary:focus,.btn-check:active+.btn-primary:focus,.btn-primary:active:focus,.btn-primary.active:focus,.show>.btn-primary.dropdown-toggle:focus{
    /* box-shadow:0 0 0 .25rem rgba(5,139,185,0.5) */
    box-shadow:0 0 0 .25rem rgba(191, 177, 198, 0.5)
}
.btn-primary:disabled,.btn-primary.disabled{
    color:#000;
    background-color:#bfb1c6;
    border-color:#bfb1c6
}
/*  end*/
.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

 /*** footer Start ***/
.footer container {
    align-content: center;
}

.footer row gx-5{
    position: fixed;
}


@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}
/* style du preloader */
.preloader{
    background-color:#f7f7f7;
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:999999;
    -webkit-transition:.2s;
    -o-transition:.2s;
    transition:.2s;
    margin:0 auto
}
.preloader .preloader-circle{
    width:100px;
    height:100px;
    position:relative;
    border-style:solid;
    border-width:1px;
    /* border-top-color:#ed1c24; */
    border-top-color:#4b0776;
    border-bottom-color:transparent;
    border-left-color:transparent;
    border-right-color:transparent;
    z-index:10;
    border-radius:50%;
    -webkit-box-shadow:0 1px 5px 0 rgba(35,181,185,0.15);
    box-shadow:0 1px 5px 0 rgba(35,181,185,0.15);
    background-color:#ffffff;
    -webkit-animation:zoom 2000ms infinite ease;
    animation:zoom 2000ms infinite ease;
    -webkit-transition:.2s;
    -o-transition:.2s;
    transition:.2s
}
.preloader .preloader-circle2{
    /* border-top-color:#0078ff */
    border-top-color: #A020F0
}
.preloader .preloader-img{
    position:absolute;
    top:50%;
    z-index:200;
    left:0;
    right:0;
    margin:0 auto;
    text-align:center;
    display:inline-block;
    -webkit-transform:translateY(-50%);
    -ms-transform:translateY(-50%);
    transform:translateY(-50%);
    padding-top:6px;
    -webkit-transition:.2s;
    -o-transition:.2s;
    transition:.2s
}
.preloader .preloader-img img{
    max-width:55px
}
.preloader .pere-text strong{
    font-weight:800;
    color:#dca73a;
    text-transform:uppercase
}
@-webkit-keyframes zoom{
    0%{
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg);
        -webkit-transition:.2s;
        -o-transition:.2s;
        transition:.2s
    }100%{
        -webkit-transform:rotate(360deg);
        transform:rotate(360deg);
        -webkit-transition:.2s;
        -o-transition:.2s;
        transition:.2s
    }
}
@keyframes zoom{
    0%{
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg);
        -webkit-transition:.2s;
        -o-transition:.2s;
        transition:.2s
    }
    100%{
        -webkit-transform:rotate(360deg);
        transform:rotate(360deg);
        -webkit-transition:.2s;
        -o-transition:.2s;
        transition:.2s
    }
}
/* dropdown-item */
.dropdown-item{
    display:block;
    width:100%;
    /* padding:.25rem 1rem; */
    clear:both;
    font-weight:400;
    /* color:#212529; */
    color:#4b0776;
    text-align:inherit;
    white-space:nowrap;
    background-color:transparent;
    border:0
}
.dropdown-item:hover,.dropdown-item:focus{
    color:#1e2125;
    background-color:#e9ecef
}
.dropdown-item.active,.dropdown-item:active{
    color:#fff;
    text-decoration:none;
    /* background-color:#06A3DA */
    background-color: #4b0776
}
.dropdown-item.disabled,.dropdown-item:disabled{
    color:#adb5bd;
    pointer-events:none;
    background-color:transparent
}
.dropdown-menu.show{
    display:block
}
.dropdown-header{
    display:block;
    padding:.5rem 1rem;
    margin-bottom:0;
    font-size:.875rem;
    color:#6c757d;
    white-space:nowrap
}
.dropdown-item-text{
    display:block;
    padding:.25rem 1rem;
    color:#212529
}
.dropdown-menu-dark{
    color:#dee2e6;
    background-color:#343a40;
    border-color:rgba(0,0,0,0.15)
}
.dropdown-menu-dark .dropdown-item{
    color:#dee2e6
}
.dropdown-menu-dark .dropdown-item:hover,.dropdown-menu-dark .dropdown-item:focus{
    color:#fff;
    background-color:rgba(255,255,255,0.15)
}
.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{
    color:#fff;
    /* background-color:#06A3DA */
    background-color: #4b0776
}
.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{
    color:#adb5bd
}
.dropdown-menu-dark .dropdown-divider{
    border-color:rgba(0,0,0,0.15)
}
.dropdown-menu-dark .dropdown-item-text{
    color:#dee2e6
}