/* base.css */
:root {
    --scroll-transition-duration: 1000ms;
    /* Inclure les unités ici */
}

html,
body {
    min-height: 100%;
    background: #fff;
    font-size: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow: visible;
}

*:focus,
*:active,
*:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none !important;
    box-shadow: none !important;
}

button:hover,
.btn:hover,
button:focus,
.btn:focus {
    box-shadow: none !important;
}

.btn-close:focus,
.btn-close:active,
.btn-close:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

*:hover {
    box-shadow: none !important;
    transition: none !important;
}


#content {
    overflow-x: hidden;
}


@media (min-width: 992px) and (max-width: 1199px) {

    html,
    body {
        font-size: 96%;
    }
}



@media (min-width: 768px) and (max-width: 991px) {

    html,
    body {
        font-size: 92%;
    }
}

@media (min-width: 500px) and (max-width: 767px) {

    html,
    body {
        font-size: 88%;
    }
}

@media (max-width: 499px) {

    html,
    body {
        font-size: 85%;
    }
}

* {
    outline: none !important;
}

.form-select,
.form-control {
    box-shadow: none !important;
}

.form-select,
.form-control:focus {
    border-color: #ccc !important
}

.clearfix {
    clear: both;
    width: 100%;
    height: 1px;
}

.btn {
    box-shadow: none !important;
    outline: none;
    cursor: pointer
}

img {
    max-width: 100%;
    height: auto !important;
}

.pointer {
    cursor: pointer
}

.nobreak,
.no-break,
.nowrap {
    white-space: nowrap;
}

.small {
    font-size: 90%;
}

.container-fluid {
    padding: 0;
    max-width: 96%;
    width: 96%;
    margin: 0 auto;
}

#above-all {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(90, 90, 90, 0.4);
    z-index: 99990;
    display: none;
}


@media screen and (max-width: 575px) {

    .article-text .float-left,
    .article-text .float-right {
        float: none !important;
        margin: 10px auto !important;
        display: block;

    }

}


.iframe-wrapper {
    background-color: var(--gray-1);
    margin: 25px 0 !important
}

.iframe-container {
    max-width: 600px;
    width: 100%;
    margin: 0 0;
    position: relative;

}

.iframe-ratio {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.iframe-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.w-33 {
    width: 33.333333%;
}


@media screen and (max-width: 1199px) {

    html,
    body {
        font-size: 90%;
    }
}


@media screen and (max-width: 991px) {

    html,
    body {
        font-size: 90%;
    }
}



@media screen and (max-width: 767px) {

    html,
    body {
        font-size: 90%;
    }
}














@media screen and (max-width: 576px) {

    html,
    body {
        font-size: 90%;
    }
}


@media screen and (max-width: 400px) {

    html,
    body {
        font-size: 90%;
    }
}._{}


/* colors.css */
:root {

  --turquoise-dark: #3ca69c;
  --navy-blue: #142b4a;
  --white: #ffffff;
  --light-gray: #eeeeee;
  --orange: #f47c1f;
  --orange-dark: #d86e1c;
  --purple: #b95da4;
  --blue-light: #8dbef8;
  --blue-deep: #0e668c;
  --mint-green: #8cd6b1;
  --peach-light: #fbd8c1;
  --lavender: #d8c1fb;
  --sky-blue: #c1e1fb;
}


.bg-turquoise-dark {
  background-color: var(--turquoise-dark) !important;
}

.bg-navy-blue {
  background-color: var(--navy-blue) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.bg-light-gray {
  background-color: var(--light-gray) !important;
}

.bg-orange {
  background-color: var(--orange) !important;
}

.bg-orange-dark {
  background-color: var(--orange-dark) !important;
}

.bg-blue-light {
  background-color: var(--blue-light) !important;
}

.bg-blue-deep {
  background-color: var(--blue-deep) !important;
}

.bg-mint-green {
  background-color: var(--mint-green) !important;
}

.bg-peach-light {
  background-color: var(--peach-light) !important;
}

.bg-lavender {
  background-color: var(--lavender) !important;
}

.bg-sky-blue {
  background-color: var(--sky-blue) !important;
}

.text-turquoise-dark {
  color: var(--turquoise-dark) !important;
}

.text-navy-blue {
  color: var(--navy-blue) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-light-gray {
  color: var(--light-gray) !important;
}

.text-orange {
  color: var(--orange) !important;
}

.text-orange-dark {
  color: var(--orange-dark) !important;
}

.text-blue-light {
  color: var(--blue-light) !important;
}

.text-blue-deep {
  color: var(--blue-deep) !important;
}

.text-mint-green {
  color: var(--mint-green) !important;
}

.text-peach-light {
  color: var(--peach-light) !important;
}

.text-lavender {
  color: var(--lavender) !important;
}

.text-sky-blue {
  color: var(--sky-blue) !important;
}

.btn-outline-orange {
  color: var(--orange);
  background-color: transparent;
  border: 1px solid var(--orange);
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.btn-orange,
.btn-outline-orange:hover,
.btn-outline-orange:focus {
  color: #fff;
  background-color: var(--orange);
  border-color: var(--orange);
  text-decoration: none;
}



.btn-outline-navy-blue {
  color: var(--navy-blue) !important;
  background-color: transparent;
  border: 1px solid var(--navy-blue);
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.btn-outline-navy-blue:hover,
.btn-outline-navy-blue:focus {
  color: #fff !important;
  background-color: var(--navy-blue);
  border-color: var(--navy-blue);
  text-decoration: none;
}._{}


/* fonts.css */
.fs-7 {
  font-size: 0.95rem;
}


.fs-8 {
  font-size: 0.9rem;
}

.fs-9 {
  font-size: 0.85rem;
}._{}


/* header.css */
header {
  position: relative;
  border-top: 12px solid var(--orange);
  padding-top: 10px;
  z-index: 1000;
  position: sticky;
  top: 0;
  background-color: white;
}

.header-col {
  flex: 1;
  min-height: 20px;
}

#header-bloc-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

#header-bloc-center a.logo {
  display: inline-block;
  padding: 0 10px 10px 10px;
  width: 200px;
  position: relative;
  margin: 0 auto;
  transition: all 500ms;
  max-width: 60vw !important;

}

#header-bloc-center a.logo img {

  position: absolute;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 500ms;

  max-width: 100%;
}


body.homepage:not(.scrolled) #header-bloc-center a.logo {
  width: 400px;
  max-width: 80%;
}

body.homepage:not(.scrolled) #header-bloc-center a.logo img {
  border-width: 30px;
}

body.infos #header-bloc-center a.logo,
body.scrolled #header-bloc-center a.logo {
  width: 200px;
  max-width: 80%;
}

body.infos #header-bloc-center a.logo img,
body.scrolled #header-bloc-center a.logo img {}

@media screen and (max-width: 576px) {
  header .d-flex {
    flex-direction: column;
  }

  header .header-col {
    min-height: 0;
    flex: 1;

  }
}._{}


/* forms.css */
form .form-label {
  font-size: 0.8rem;
  margin: 0;
  padding: 0;
}._{}


/* article-homepage-carrousel.css */
#homepage-carrousel {}

#homepage-carrousel .contents {
  position: relative;
}

#homepage-carrousel .illustration {
  height: 50vh;
  /* Fixe la hauteur */
  overflow: hidden;
}

#homepage-carrousel .illustration img {
  object-fit: cover;
  width: 100%;
  height: 100% !important;
}

#homepage-carrousel .page-title {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  text-transform: uppercase;
  width: 80%;
  max-width: 600px;
}

#homepage-carrousel h1 {
  color: white;
  text-shadow: 1px 1px #000, -1px -1px #000;
  font-size: 2.2rem;
}._{}


/* menu.css */
@media screen and (min-width: 992px) {

  .btn-menu,

  .responsive-menu {
    display: none;
  }

  header ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
  }

  header ul.menu li {
    margin: 0;
    padding: 0;
  }

  header ul.menu li a {
    display: block;
    padding: 10px 25px;
    color: var(--navy-blue);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1em;
    text-decoration: none;
  }

  header ul.menu li a:hover {
    color: var(--orange);
  }

  body.scrolled header ul.menu li a {
    padding-top: 0;
    transition: all 500ms;
  }

  #menu_256 a {
    color: var(--orange);
  }
}

@media screen and (max-width: 991px) {

  .desktop-menu {
    display: none;
  }

  header ul.menu {
    display: none;
  }

  header .btn-menu {
    font-size: 1.8rem;
    margin-top: 0px;
    position: absolute;
    background-color: white;
    z-index: 999;
  }

  #menu {
    position: fixed;
    top: 0;
    left: -10px;
    height: 100vh;
    background-color: var(--navy-blue);
    z-index: 1000;
    width: calc(100vw + 10px);
    max-width: 0px;
    transition: all 700ms;
    overflow: hidden;
  }

  #menu .btn-close {
    position: absolute;
    top: 40px;
    right: 40px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(141deg) brightness(110%) contrast(99%);
    width: 1.5em;
    height: 1.5em;
    opacity: 1;
  }

  #menu ul {
    list-style: none;
    margin: 90px auto 0;
    padding: 17vh 0 0 0;
    text-align: center;
    width: 400px;
    max-width: 100vw;
    background-image: url("/msmedias/logo/logo-blanc.png?w=250");
    background-repeat: no-repeat;
    background-position: center top;
  }

  #menu li {
    margin: 0;
    padding: 15px 0;


  }

  #menu a {
    display: inline-block;
    width: 250px;
    border-radius: 50px;
    border: 1px solid white;
    color: var(--navy-blue);
    background-color: white;
    font-size: 1.4rem;
    text-decoration: none;
    padding: 7px 15px;
    text-align: center;
    text-transform: uppercase;

  }

  body.menu-on #menu {
    max-width: 100vh;
  }

  #menu a:hover {
    background-color: var(--navy-blue);
    color: white;

  }


}

body.menu-on #menu {
  max-height: 100vh;
  overflow-y: hidden;
}._{}


/* content.css */
#content {
  min-height: 100vh;
}

article {
  border: 0px solid pink;
}

.infos #content {}

.infos #page-cover {
  position: relative;
  height: 180px;
  margin-bottom: 3rem;
}

.infos #page-illustration {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.infos #page-illustration img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
}

.infos #content article a {
  color: var(--orange);
  transition: all 200ms;
}

.infos #content article h3 {
  font-size: 1.3rem;
  color: var(--navy-blue);
  padding: 0;
  margin: 0 0 1rem;
}


.infos #content article a:hover {
  filter: brightness(0.8);
}

.infos #content article:last-child {
  margin-bottom: 5rem;
}

#content ul.custom-bullets {
  list-style: none;
  padding-left: 1.2em;
  margin: 0;
  padding: 0;
}

#content ul.custom-bullets li {
  position: relative;
  margin-left: 20px;
}

#content ul.custom-bullets li::before {
  position: absolute;
  top: 10px;
  left: -20px;
  content: '';
  background-color: var(--orange);
  font-weight: bold;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 15px;


  /* 🔸 augmente la taille ici */
}._{}


/* article-default.css */
.article-title-default {
  color: var(--orange);
  margin-bottom: 2rem;
}._{}


/* footer.css */
footer {
  background-color: #7A8A99;
  color: white;
  font-size: 0.9rem;

}

footer ul.mentions-legales {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}




footer ul.mentions-legales li {
  margin: 0;
  padding: 0 1rem 0 0;
  border-right: 1px solid #000;
  line-height: 1;
}

footer ul.mentions-legales li:last-child {
  border: none;
}

footer ul.mentions-legales a {
  color: white;
  text-decoration: none;
}

footer ul.mentions-legales a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  .footer-col {
    margin-bottom: 35px;
  }

  #footer-col-3 p {
    text-align: center !important;
    margin-bottom: 5px;
  }

}._{}


/* attachments.css */
article.has-attachments {}

article.has-attachments .article-content {
  display: flex;
  gap: 35px;
  align-items: flex-start;
}

article .attachments.width-25pc {
  flex: 0 0 25%;
}

article .attachments.width-33pc {
  flex: 0 0 33.3333%;
}

article .attachments.width-50pc {
  flex: 0 0 50%;
}

article .attachments.width-66pc {
  flex: 0 0 66.6666%;
}

article .attachments.width-75pc {
  flex: 0 0 75%;
}

article .attachments.width-100pc {
  flex: 0 0 100%;
}

@media screen and (max-width: 576px) {
  article.has-attachments .article-content {
    flex-direction: column;

  }

  article .attachments.width-25pc,
  article .attachments.width-33pc,
  article .attachments.width-50pc,
  article .attachments.width-66pc,
  article .attachments.width-75pc {
    flex: 0 0 100%;
  }

}._{}


/* widths.css */
:root {
  --container-gutter-x: 0.75rem;
  --container-sm: 540px;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1140px;
  --container-xxl: 1320px;
}


.container,
.article-content,
.article-group-content {
  width: 100%;
  padding-left: var(--container-gutter-x);
  padding-right: var(--container-gutter-x);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 576px) {

  .container,
  .article-content,
  .article-group-content {
    max-width: var(--container-sm);
  }
}

@media (min-width: 768px) {

  .container,
  .article-content,
  .article-group-content {
    max-width: var(--container-md);
  }
}

@media (min-width: 992px) {

  .container,
  .article-content,
  .article-group-content {
    max-width: var(--container-lg);
  }
}

@media (min-width: 1200px) {

  .container,
  .article-content,
  .article-group-content {
    max-width: var(--container-xl);
  }
}

@media (min-width: 1400px) {

  .container,
  .article-content,
  .article-group-content {
    max-width: var(--container-xxl);
  }
}._{}


/* article-homepage-les-metiers.css */
#hompage-les-metiers {}

#hompage-les-metiers .article-inner {}

#hompage-les-metiers .article-content {}

#hompage-les-metiers .article-content .d-flex {
  flex-direction: column;
  background-color: var(--navy-blue);
  border-radius: 80px;
}

#hompage-les-metiers .picto {
  max-width: 120px;
}

#hompage-les-metiers .title {
  text-align: center;
}


#hompage-les-metiers ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
}


#hompage-les-metiers li {
  flex: 0 0 100%;
}




#hompage-les-metiers li a {
  font-size: 1.1rem;
  font-weight: bold;
}



@media screen and (min-width: 768px) {

  #hompage-les-metiers li {
    flex: 0 0 calc(50% - 15px);
  }

}


@media screen and (min-width: 992px) {

  #hompage-les-metiers .article-content .d-flex {
    flex-direction: row;
  }

  #hompage-les-metiers li {
    flex: 0 0 calc(33% - 15px);
  }

}._{}


/* partial-actualite.css */
.actualite-item {
  border: 2px #aaa solid;
  border-radius: 15px;
  padding: 10px;
  background: linear-gradient(to bottom, #ffffff, #f0f0f0);
  transition: all 500ms;

}


.actualite-item:hover {
  background: white;

}



.actualite-item .cover {
  aspect-ratio: 1.6;
  overflow: hidden;
  position: relative;
}

.actualite-item .cover img {
  object-fit: cover;
  height: 100% !important;
  width: 100% !important;
  transition: all 400ms;
}

.actualite-item .inner:hover img {
  transform: scale(1.1);
}



.actualite-item .date {
  display: none;
  text-align: center;
  font-size: 0.8rem;
  position: absolute;
  bottom: 0;
  right: 0;
  color: white;
  padding: 3px 10px;
  line-height: 1.2;
}

.actualite-item .date .bg {
  position: absolute;
  background: #000;
  transform: translate3d(0, 0, 0) skew(-30deg, 0deg);
  width: 200%;
  top: 0;
  left: -10px;
  bottom: 0;
}

.actualite-item .date .hover {
  width: 60px;
  position: relative;
}

.actualite-item .day-month {
  font-weight: bold;
}

.actualite-item .year {}

.actualite-item a {
  text-decoration: none;
}

.actualite-item .title {
  padding: 0 25px;
  height: 60px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.actualite-item .title a {
  text-decoration: none !important;
}



.actualite-item .bottom {
  height: 160px;

}

.actualite-item .picto i {
  font-size: 30px;
}


.actualite-item .inner:hover img {
  transform: scale(1.1);
}

.actualite-item .inner:hover .picto {
  padding-right: 0px;

}

@media screen and (max-width: 767px) {
  .actualite-item .title {
    text-align: center;

  }
}._{}


/* article-homepage-a-propos.css */
#homepage-a-propos {}

#homepage-a-propos .article-content {
  display: flex;
  gap: 35px;
  align-items: center;

}

#homepage-a-propos .article-text {
  padding-left: 80px;
  font-size: 1.2rem;
}

#homepage-a-propos p.logo {}

@media screen and (min-width: 768px) {
  #homepage-a-propos .side {
    flex: 0 0 47%;

  }
}

@media screen and (max-width: 1399px) {


  #homepage-a-propos .article-text {
    padding-left: 0px;
  }
}



@media screen and (max-width: 991px) {
  #homepage-a-propos .article-content {
    flex-direction: column;
  }

  #homepage-a-propos .article-text {
    padding-left: 0px;
  }
}._{}


/* homepage-actualites.css */
article.homepage-actualites .article-content {
  display: block !important;
  /* Avoid a bug of swiper */
}

#homepage-actualites {
  /* Conteneur général */
  margin: 0 auto;


}


#homepage-actualites .swiper-container {
  overflow-x: hidden;


}


#homepage-actualites .actualite-item {}


#homepage-actualites .swiper-slide div.inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}






@media screen and (min-width: 1200px) {
  #homepage-actualites .swiper-button {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  #homepage-actualites .swiper-container {
    max-width: calc(100% - 80px);
    margin: 0 auto;
  }
}._{}


/* decoration.css */
.border-bottom-orange-special .article-content {
  /* border-bottom: 3px solid var(--orange); */
}

.border-bottom-orange-special .article-inner {
  border-bottom: 3px solid var(--orange);
}

.border-bottom-orange-special .article-content {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
}



.border-bottom-orange-special .article-content::after {
  position: absolute;
  bottom: -30px;
  right: calc(100% - 1px);
  height: 12px;
  width: 1000px;
  background-color: var(--orange);
  content: '';
  display: block;
  transform: translateY(7px);
}


.underline-on-hover {
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.underline-on-hover:hover,
.underline-on-hover:focus {
  text-decoration: underline;
}._{}


/* column-group.css */
.column-group {}

.column-group {}

.column-group {}

.column-group .article-group-content {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 728px) {
  .column-group .article-group-content {

    flex-direction: row;
  }

}._{}


/* article-separateur.css */
article.separateur {
  margin-top: 3rem;
  margin-bottom: 3rem;

}



article.separateur .article-content {
  /* border-bottom: 3px solid var(--orange); */
}

article.separateur .article-inner {
  border-bottom: 3px solid var(--orange);
}

article.separateur .article-content {
  position: relative;
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
  max-height: 0 !important;


}



article.separateur .article-content::after {
  position: absolute;
  bottom: -0px;
  right: calc(100% - 1px);
  height: 12px;
  width: 1000px;
  background-color: var(--orange);
  content: '';
  display: block;
  transform: translateY(7px);
}._{}


/* section-page-cover.css */
section#page-cover {}

section#page-cover {}._{}


/* dev.css */
.dev-only {
  display: none !important;
}

.is-dev .dev-only {
  display: block !important;
}._{}


/* ul-job-categories.css */
ul.job-categories {
  padding: 0;
  margin: 0;
  list-style: none;
}

/*

*/






ul.job-categories li>* {
  display: block;
  border-radius: 50rem !important;

}


ul.job-categories a.batiment,
ul.job-categories span.batiment,
span.slug.batiment {
  background: var(--orange);
  color: #000 !important;
}

ul.job-categories a.travaux_publics,
ul.job-categories span.travaux_publics,
span.slug.travaux_publics {
  background: var(--turquoise-dark);
  color: #000 !important;
}

ul.job-categories a.metallurgie,
ul.job-categories span.metallurgie,
span.slug.metallurgie {
  background: var(--purple);
  color: #000 !important;
}


ul.job-categories a.conception,
ul.job-categories span.conception,
span.slug.conception {
  background: var(--blue-light);
  color: #000 !important;
}

ul.job-categories a.chauffeur_d_engins,
ul.job-categories span.chauffeur_d_engins,
span.slug.chauffeur_d_engins {
  background: var(--peach-light);
  color: #000 !important;
}

ul.job-categories a.second_oeuvre,
ul.job-categories span.second_oeuvre,
span.slug.second_oeuvre {
  background: var(--mint-green);
  color: #000 !important;
}




ul.job-categories a.second_oeuvre,
ul.job-categories span.second_oeuvre,
span.slug.second_oeuvre {
  background: var(--mint-green);
  color: #000 !important;
}



ul.job-categories a.autres,
ul.job-categories span.autres,
span.slug.autres {
  background: var(--sky-blue);
  color: #000 !important;
}




ul.job-categories a:hover,
ul.job-categories a:focus {
  filter: brightness(0.90);
  text-decoration: none;
}._{}


/* article-hompage-recrutements.css */
#homepage-recrutements {}

#homepage-recrutements .article-inner {}

#homepage-recrutements .article-content {}

#homepage-recrutements .article-content .d-flex {
  flex-direction: column;
  background-color: #7a8a99;
  border-radius: 80px;
}

#homepage-recrutements .picto {
  max-width: 120px;
}

#homepage-recrutements .title {
  text-align: center;
}


#homepage-recrutements .text {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 1rem;
}

@media screen and (min-width: 992px) {

  #homepage-recrutements .article-content .d-flex {
    flex-direction: row;
  }


}._{}


/* modal.css */
.modal-header {
  background-color: var(--navy-blue);
  color: white;
}


.modal-header .logo {
  flex: 0 0 110px;
}


@media screen and (min-width: 768px) {


  .modal-header .logo {
    flex: 0 0 150px;
  }
}





.modal-header .btn-close {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(141deg) brightness(110%) contrast(99%);
}._{}


/* swiper.css */
.swiper-button-next,
.swiper-button-prev {
  color: var(--navy-blue);
}._{}


