

/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: black;
    font-weight: 500;
    font-family: 'quicksand';
}


a {
    color: #4a4c70;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #FDBE33;
    outline: none;
    text-decoration: none;
}

.btn.btn-custom {
    padding: 12px 20px;
    text-align: center; 
   font-size: 16px;
    font-weight: 500;
    color: #777777;
    border-radius: 0;
    border: 2px solid #FDBE33;
    box-shadow: inset 0 0 0 0 #FDBE33;
    transition: ease-out 0.3s;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
}

.btn.btn-custom:hover {
    color: #20212B;
    box-shadow: inset 0 0 0 30px #FDBE33;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
    font-size: inherit;
    margin-left: 0;
}


/**********************************/
/****** Loader & Back to Top ******/
/**********************************/
#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #FDBE33;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.back-to-top {
    position: fixed;
    display: none;
    background: #FDBE33;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: #4a4c70;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #4a4c70;
}

.back-to-top:hover i {
    color: #FDBE33;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: absolute;
    height: 45px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 45px;
    padding: 0 10px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .text i {
    font-size: 16px;
    color: #FDBE33;
    margin-right: 5px;
}

.top-bar .text p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.top-bar .social {
    display: flex;
    height: 45px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 100%;
    font-size: 16px;
    color: #FDBE33;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .social a:hover {
    color: #ffffff;
    background: #FDBE33;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}

/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: #ffffff;
    margin-bottom: 45px;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.carousel .carousel-text h1 {
    text-align: center;
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel .carousel-text p {
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.carousel .carousel-btn .btn.btn-custom {
    color: #ffffff;
}

.carousel .carousel-btn .btn.btn-custom:hover {
    color: #20212B;
}

.carousel .carousel-btn .btn:first-child {
    margin-right: 15px;
}

.carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 60px;
    top: calc(50% - 30px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDBE33;
    background: rgba(256, 256, 256, .2);
    font-size: 22px;
    transition: .3s;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #FDBE33;
}

.carousel .owl-nav .owl-prev {
    margin-right: 2px;
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

/* Styles pour les appareils mobiles jusqu'à une largeur maximale de 768px */
@media (max-width: 768px) {
    .carousel .carousel-text h1 {
        font-size: 40px; /* Réduisez la taille du titre */
    }
    
    .carousel .carousel-text p {
        font-size: 16px; /* Réduisez la taille du texte */
        margin-bottom: 20px; /* Réduisez la marge inférieure */
    }
    
    .carousel .owl-nav .owl-prev,
    .carousel .owl-nav .owl-next {
        width: 40px; /* Réduisez la taille des boutons de navigation */
        height: 40px;
        font-size: 18px; /* Réduisez la taille de la police des boutons de navigation */
    }
}

/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 210px 0 90px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/page-header.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header h2 {
    position: relative;
    color: #FDBE33;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #FDBE33;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #ffffff;
}

.page-header a:hover {
    color: #FDBE33;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #ffffff;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h2 {
        font-size: 45px;
    }
    
    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }
    
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 45px auto;
}

.section-header p {
    margin-bottom: 5px;
    position: relative;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    color: black;
}

.section-header h2 {
    margin: 0;
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 35px;
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 35px 0;
    font-size: 20px;
}

.about .container .row {
    display: flex;
    align-items: center;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}
.about-important-mot {
    color: #FDBE33;
    font-weight: bold;
}

.about-img {
    flex: 0 0 570px; 
    margin-right: 5px;
    height: 975px;
    border: 3px solid #FDBE33;
}

.about .about-tab {
    width: 100%;
}

.about .about-tab .nav.nav-pills .nav-link {
    padding: 8px;
    font-weight: 600;
    background: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    transition: none;
}

.about .about-tab .nav.nav-pills .nav-link:hover,
.about .about-tab .nav.nav-pills .nav-link.active {
    color: #FDBE33;
    padding-bottom: 7px;
    border-bottom: 3px solid #FDBE33;
}

.about .about-tab .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
    text-align: justify;
}

.about .about-tab .tab-content .container {
    padding: 0;
}

/* Responsive Styling for Small Screens */
@media (max-width: 768px) {


    /* Image section */
    .about .col-md-8 .about-img {
        width: 100%; 
        height: 200px; 
        margin-bottom: 15px;
    }

    /* Text content section */
    .about .col-md-4 {
        padding: 0 15px;
    }

    /* Header styles */
    .about .section-header p, 
    .about .section-header h2 {
        font-size: 16px; 
    }

    /* Adjust tab font sizes for mobile */
    .about .about-tab .nav.nav-pills .nav-link {
        font-size: 14px;
    }
}

/************************************************/
/********* Formulaire de connexion CSS *********/
/**********************************************/
.section-header {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 45px auto;
}

.section-header h2 {
    color: #FDBE33;
    position: relative; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    padding-top: 4px; 
    padding-bottom: 4px; 
}

.section-header h2::before, .section-header h2::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent,#777777, transparent);
}

.section-header h2::before {
    top: 0;
}

.section-header h2::after {
    bottom: 0;
}
.form-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #F5F5F5;
    border-radius: 5px;
}

.form-container label {
    font-size: 18px;
    font-weight: 600;
    color: #FDBE33;
}
/* Sélectionnez les champs de formulaire avec l'attribut placeholder */
.form-control::placeholder {
    color: white;
}

.form-container input[type="text"],
.form-container select,
.form-container textarea,
.form-container input[type="number"],
.form-container input[type="file"],
.form-container input[type="tel"],
.form-container input[type="tel"],
.form-container input[type="password"],
.form-container input[type="email"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.form-container input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #FDBE33;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.form-container input[type="submit"]:hover {
    background-color: #FCA22F;
}

/*******************************/
/********* Service CSS *********/
/*******************************/

/* Conteneur global */
.services-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 850px;
    padding: 20px 0; 
    background-color: #20212B;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}

/* Les sections professionnelles et particulières */
.services-section {
    width: 48%;
    box-sizing: border-box;
    padding: 1%;
    background-color: #20212B;
    border-radius: 10px;
}

.services-section h1 {
    color: #FDBE33;
    text-align: center;
    margin-bottom: 20px;
    text-decoration: underline;
}

/* Liste des services */
.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0; 
}

/* Chaque élément de service */
.service-item {
    flex: 0 0 calc(50% - 1rem);
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden; 
    border-radius: 8px;
    transition: transform 0.3s ease; 
    height: 200px; /* hauteur fixe pour tous les éléments service-item */
    width: 150px;  /* largeur fixe pour tous les éléments service-item */
}

.service-item:hover {
    transform: scale(1.05);
}

.service-item img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease; 
    border: #FDBE33 2px solid;
    width: 100%;   /* force l'image à prendre la largeur totale de l'élément parent */
    height: 100%;  /* force l'image à prendre la hauteur totale de l'élément parent */
    object-fit: cover; /* ajuste l'image pour qu'elle couvre l'espace sans déformer son rapport d'aspect */
}

.service-item:hover img {
    opacity: 0.9; 
}

/* Nom du service à l'intérieur de l'image */
.service-name {
    position: absolute;
    bottom: 10%;
    left: 5%;
    color: #FDBE33;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); 
}

/* Un peu de style pour les liens */
.service-item a {
    text-decoration: none; 
}

/* Amélioration des transitions lors du survol */
.service-item a:hover .service-name, 
.service-item a:focus .service-name {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Séparateur entre les sections */
.separator {
    flex: 0 0 5px; 
    height: 650px;
    background-color: #FDBE33; 
    align-self: center; 
    border: 0.5px solid;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); 
}

/* Effet de survol global */
.service-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background-color: rgba(253, 190, 51, 0.1); 
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover::before {
    opacity: 1;
}

/* Media Query pour les appareils mobiles jusqu'à une largeur maximale de 768px */
@media (max-width: 768px) {
    /* Placez ici les styles spécifiques aux appareils mobiles */
    .services-container {
        flex-direction: column; /* Empilez les sections verticalement */
        height: auto; /* Ajustez la hauteur automatiquement en fonction du contenu */
    }

    .services-section {
        width: 100%; /* Occupe toute la largeur */
    }

    .service-item {
        flex: 0 0 100%; /* Occupe toute la largeur */
        margin-right: 0; /* Aucune marge à droite */
    }

    .separator {
        display: none; /* Masquez le séparateur */
    }

    /* Ajoutez d'autres styles spécifiques aux appareils mobiles ici */
}

/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    clear: both; 
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial .testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #FDBE33;
}

.testimonial .testimonial-profile img {
    width: 80px;
    margin-bottom: -1px;
}

.testimonial .testimonial-name {
    padding-left: 15px;
    width: calc(100% - 95px);
}

.testimonial .testimonial-name h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #FDBE33;
    text-decoration: underline;
}

.testimonial .testimonial-name p {
    margin: 0;
    font-style: italic;
    font-size: 22px;
    color: black;
}

.testimonial .testimonial-text p {
    margin: 0;
    font-size: 22px;
    color: black;
}

.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: #FDBE33;
}

.testimonial .owl-dot.active {
    background: #20212B;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1); 
}

.contact .contact-img {
    position: relative;
    width: 100%;
}

.contact .contact-img img {
    width: 100%;
    height: auto;
    max-height: 680px;
    object-fit: cover;
    object-position: center;
    border: black 2px solid;
}

.contact .contact-form {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-top: -90px;
    padding: 30px;
    background: #20212B;
    border: #FDBE33 2px solid;
}

@media (max-width: 991.98px) {
    .contact .contact-form {
        max-width: 600px;
    }
}

@media (max-width: 767.98px) {
    .contact .contact-form {
        max-width: 400px;
        margin-top: -60px; 
    }

    .contact .contact-img img {
        max-height: 650px; 
    }

    .contact .contact-form input,
    .contact .contact-form textarea {
        font-size: 18px; 
        padding: 10px; 
    }
}

@media (max-width: 575.98px) {
    .contact .contact-form {
        max-width: 300px;
        margin-top: -40px;
    }

    .contact .contact-img img {
        max-height: 500px; 
    }

    .contact .contact-form input,
    .contact .contact-form textarea {
        font-size: 16px; 
        padding: 8px;
    }
}

.contact .contact-form .btn.btn-custom {
    width: 100%;
    font-size: 22px;
    color: white;
}

.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 0;
    border: 1px solid white;
    font-size: 22px;
}

.contact .contact-form textarea {
    height: 150px;
    padding: 8px 15px;
    background: none;
    border-radius: 0;
    border: 1px solid white;
    font-size: 22px;
}

.contact .contact-form .btn.btn-custom {
    width: 100%;
    font-size: 22px;
    color: white;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/********* Formulaire projet CSS *********/
/*******************************/

/* Styles spécifiques au formulaire de devis */
.form-container {
    margin: 0 auto;
    max-width: 700px;
    padding: 30px;
    background: #20212B;
    border: 2px solid #FDBE33;
}
.form-container h2 {
    margin-bottom: 10px;
    font-size: 42px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    color: #FDBE33;
    text-decoration: underline;
}
@media (max-width: 991.98px) {
    .form-container {
        max-width: 600px;
    }
}

@media (max-width: 767.98px) {
    .form-container {
        max-width: 400px;
    }
}

@media (max-width: 575.98px) {
    .form-container {
        max-width: 300px;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #FDBE33;
}

.fichier1 {
    font-size: medium;
}
.fichier2 {
    font-size: small;
    font-style: italic;
}
.textsouligne {
    text-decoration: underline;
}
.form-control {
    display: block;
    width: 100%;
    padding: 10px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

textarea.form-control {
    resize: vertical;
}

.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FDBE33;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.btn-primary:hover {
    background-color: #FCA22F;
}

/* Styling pour les messages d'erreur  */
.error-message {
    color: red;
    font-size: 18px;
    margin-top: 5px;
    font-weight: bold;
}
/* Style du séparateur  */
.separateur {
    height: 2px; 
    background-color: #ccc; 
    margin-top: 20px;
    margin-bottom: 20px; 
}



/*********************************************************/
/********* Conditions , politique , cookies CSS *********/
/*******************************************************/

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #20212B;
    box-shadow: 0 2px 4px #FDBE33;
}

main h2 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    color: #FDBE33;
}

main p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #FDBE33;
}

main p:first-child {
    margin-top: 0;
}

main h2:first-child,
main p:first-child {
    margin-top: 0;
}

/* Style du cookies */
#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #20212B; 
    color: #fff;
    padding: 10px;
    text-align: center;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1); 
    opacity: 1; 
    z-index: 3000;
}

#cookie-banner p {
    font-size: 22px;
    margin: 0;
    padding: 10px;
}

#accept-cookie, #reject-cookie {
    background-color: #FDBE33; 
    color: #fff; 
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 22px;
}

#accept-cookie:hover, #reject-cookie:hover {
    background-color: #FCA22F; 
}
/* Media query pour les petits écrans (par exemple, les écrans d'une largeur inférieure à 768px) */
@media (max-width: 768px) {
    #cookie-banner {
        padding: 5px; 
    }

    #cookie-banner p {
        font-size: 16px; 
    }

    #accept-cookie, #reject-cookie {
        padding: 6px 12px; 
        font-size: 16px; 
    }
}


