/*
Theme Name: Thème Brest Abers Immo
Author: Catalyst Webdesign
Description: Thème pour Brest Abers
Version: 1.0

*/

/* GENERAL region*/

:root {
    --noir: rgb(29, 29, 27);
    --bleu: #091730;
    --blanc: #ffffff;
    --or: #bf9445;
    --allura: "Allura", cursive;
    --cormorant: "Cormorant Garamond", serif;
    --abril: "Abril Fatface", serif;
    --lato: lato, sans-serif;
    --shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

html {
    margin-top: 0 !important;
    scroll-behavior: smooth;
}

.loader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: var(--blanc);
    z-index: 99999999;
    top: 0;
    left: 0;
}

.totop {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: var(--bleu);
    color: var(--blanc);
    z-index: 999999;
    padding: 10px;
    border-radius: 15px;
    transition: .5s;
    opacity: 0;
    transform: rotate(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.totop:hover {
    background-color: var(--or);
}

.totop.show {
    opacity: 1;
}

.backtolist {
    position: fixed;
    bottom: 15px;
    right: 80px;
    background: var(--bleu);
    color: var(--blanc);
    z-index: 999999;
    padding: 10px;
    border-radius: 15px;
    transition: .5s;
}

.backtolist:hover {
    background-color: var(--or);
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--blanc);
    color: var(--bleu);
    font-family: var(--cormorant);
    font-weight: 500;
    font-size: 24px;
}

main {
    overflow: hidden;
    position: relative;
}


img {
    max-width: 100%;
}

.bg-lazy {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bg-lazy.bg-loaded {
    opacity: 1;
}


/* * * Listes region*/
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h2 {
    font-size: 60px;
}

.mobile h2 {
    font-size: 40px;
}

h3 {
    font-size: 50px;
}

.mobile h3 {
    font-size: 30px;
}

.allura {
    font-family: var(--allura);
}

/*endregion*/

/* * * Boutons et liens region*/
a {
    text-decoration: none !important;
}

a.button {
    color: var(--bleu);
    transition: .5s;
    font-family: var(--abril);
    background-color: var(--blanc);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin: 20px 5px;
    font-weight: 200;
    position: relative;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile a.button {
    padding: 15px;
    margin: 10px 5px;
    font-size: 14px;
}

a.button:hover {
    color: var(--blanc);
    background-color: var(--bleu);
}

/*endregion*/
section {
    min-height: 100vh;
    padding: 100px 0;
}

.bleu {
    background-color: var(--bleu);
    color: white;
}

/* * * Wrapper region*/
.wrapper {
    width: 1200px !important;
    max-width: 90% !important;
    margin: 0 auto;
    position: relative;
}

.flex {
    display: flex;
}

/*endregion*/

/*endregion*/

/* HEADER region*/

/* * GENERAL region*/
header {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

header .wrapper {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    color: var(--blanc);
    z-index: 3;
}

header div.titre {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 150px);
    flex-direction: column;
    width: 100%;
}

header h1 {
    color: var(--blanc);
    text-transform: uppercase;
    font-family: var(--cormorant);
    font-weight: 600;
    font-size: 80px;
    text-shadow: var(--shadow);
}

.mobile header h1 {
    font-size: 40px;
}

header h1.lines {
    border-top: 1px solid var(--blanc);
    border-bottom: 1px solid var(--blanc);
    width: 100%;
    padding: 50px 0;
}

header .carousel {
    width: 100%;
    height: 100vh;
}

header .carousel .image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/*endregion*/

/* * NAV region*/

/* * * CONTENT region*/

header nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 999;
}

header nav .content-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

/*endregion*/

/* * * UL region*/
header nav #menu-principal {
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-family: var(--cormorant);
    margin-top: 20px;
}


/*endregion*/

/* * * LI region*/
header nav #menu-principal > li {
    padding: 10px 0;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
}


/*endregion*/

/* * * A region*/
header nav #menu-principal a {
    transition: .5s;
    color: var(--blanc);
    text-shadow: var(--shadow);
    font-family: var(--cormorant);
}

header nav #menu-principal a:hover {}

/*endregion*/

/* * * BURGER region*/
.burger {
    cursor: pointer;
    background-color: var(--or);
    color: var(--blanc);
    transition: .5s;
    width: fit-content;
    padding: 20px;
    font-size: 16px;
    border-radius: 15px;
    font-weight: 500;
}

.burger:hover {
    color: var(--or);
    background-color: var(--blanc);
}






/*endregion*/

/*endregion*/

/*endregion*/

/* MAIN region*/


/*endregion*/

/* FOOTER region*/

#calltoaction {
    text-align: center;
    min-height: unset;
    font-family: var(--lato);
    font-size: 20px;
    font-weight: 300;
}

#calltoaction h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 50px;
}

#calltoaction a.button {
    background-color: var(--or);
    color: var(--blanc);
    margin: 30px 0;
    display: inline-block;
    text-transform: none;
}

#calltoaction a.button:hover {
    color: var(--or);
    background-color: var(--blanc);
}

footer {
    overflow: hidden;
    width: 100%;
    position: relative;
    font-family: var(--lato);
    font-size: 20px;
}

footer h2 {
    font-family: var(--cormorant);
    font-weight: 400;
}

footer .wrapper {
    z-index: 2;
}

footer .flex {
    justify-content: space-between;
    gap: 50px;
}

.mobile footer .flex {
    flex-direction: column;
    font-size: 18px;
}


footer h2 {
    display: inline-block;
    padding: 10px 250px 10px 50px;
    border-bottom: 1px solid var(--blanc);
    max-width: 100%;
}

footer h3 {
    font-size: 25px;
}

footer a {
    color: var(--blanc);
    transition: .5s;
}

footer a:hover {
    color: var(--or);
}

footer a:hover svg {
    fill: var(--or);
}

footer p:not(.icones) svg {
    margin-right: 10px;
}

footer .icones,
footer p:not(.icones) a {
    display: flex;
    align-items: center;
}

footer .icones a {
    display: flex;
    border: 2px solid var(--blanc);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

footer .icones a:hover {
    border: 2px solid var(--or);
}

footer #logo-brest-abers-immo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: .3;
}

footer #logo-brest-abers-immo .logo-bottom {
    stroke: var(--or);
}

footer .expertimo {
    margin: 20px auto;
    display: block;
    background: white;
    width: fit-content;
    max-width: 100px;
    padding: 10px 20px;
    border-radius: 5px;
}

footer .credits {
    background: var(--or);
}

footer .credits ul {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 10px 0;
}

.mobile footer .credits ul {
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

footer .credits ul > li {
    position: relative;
}

footer .credits ul > li::after {
    content: '';
    background-color: var(--bleu);
    position: absolute;
    display: block;
}

.desktop footer .credits ul > li::after {
    height: 30px;
    width: 1px;
    top: 0;
    right: -30px;
}

.mobile footer .credits ul > li::after {
    width: 20px;
    height: 1px;
    left: calc(50% - 10px);
    bottom: -10px;
}

footer .credits ul > li:last-of-type::after {
    display: none;
}

footer .credits a {
    color: white;
    text-decoration: underline;
    text-transform: uppercase;
    font-size: 14px;
}

footer .credits a:hover {
    color: var(--bleu);
}


/*endregion*/

/* PAGES region*/

/* home region*/

.home #bienvenue {
    text-align: center;
    box-sizing: border-box;
}

.home #bienvenue p {
    margin: 50px 0;
}

.home #bienvenue img {
    margin: 50px 0;
}

.home #bienvenue .boutons {
    display: flex;
    justify-content: space-around;
    margin: 50px 0;
}

.home #bienvenue .boutons a.button::after {
    content: '';
    height: 1px;
    width: 120%;
    left: -10%;
    bottom: -30px;
    position: absolute;
    background-color: var(--blanc);
    transition: .5s;
}

.home #bienvenue .boutons a.button:hover::after {
    bottom: -20px;
}


.mobile.home #bienvenue .boutons a.button::after {
    width: 100%;
    left: 0;
}

.home #qsn {
    text-align: center;
}

.home #qsn .flex {
    gap: 50px;
    align-items: center;
    padding-bottom: 350px;
}

.mobile.home #qsn .flex {
    padding-bottom: 0;
    flex-direction: column-reverse;
}

.home #qsn .portraits {
    position: relative;
}

.desktop.home #qsn #portraitpascal {
    position: absolute;
    top: 85%;
    left: 160px;
}

.mobile.home #qsn #portraitpascal {
    text-align: right;
}

.desktop.home #qsn img {
    max-width: unset;
    width: auto;
}

.mobile.home #qsn img {
    max-width: 100%;
    height: auto;
    width: 300px;
}

.home #qsn figure {
    text-align: left;
    font-size: 18px;
}

.home #qsn .texte span {
    display: block;
    text-align: center;
    font-weight: 600;
}



.home #liens .wrapper > div {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    margin: 50px 0;
    align-items: center;
}

.mobile.home #liens .wrapper > div {
    flex-direction: column-reverse;
}

.desktop.home #liens .wrapper > div:nth-of-type(2) {
    flex-direction: row-reverse;
}

.home #liens .photo {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.desktop.home #liens .photo {
    width: calc(50% - 50px);
}

.home #liens .photo .button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    background-color: var(--or);
    color: var(--blanc);
    text-transform: none;
}

.home #liens .photo .button:hover {
    color: var(--or);
    background-color: var(--blanc);
}


.home #liens .texte {
    text-align: center;
}

.desktop.home #liens .texte {
    width: 50%;
}

.home #liens h3 {
    text-transform: uppercase;
    font-weight: 400;
}

.home #pourquoinous {
    min-height: unset;
}

.home #pourquoinous h3 {
    text-transform: uppercase;
    color: var(--or);
    font-weight: 300;
}

.home #pourquoinous .circles {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.home #pourquoinous .circles div {
    background-color: var(--bleu);
    color: var(--blanc);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.home #avis {
    min-height: unset;
}

.home #avis .flex {
    gap: 50px;
    justify-content: space-between;
}

.mobile.home #avis .flex {
    flex-direction: column;
}

.home #avis .flex .quotes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.desktop.home #avis .flex .quotes {
    width: 30%;
}

.home #avis .flex .bleu {
    padding: 50px;
}

.mobile.home #avis .flex .bleu {
    padding: 50px !important;
}

.desktop.home #avis .flex .bleu {
    width: calc(70% - 50px);
    box-sizing: border-box;
}

.home #avis .flex .avissylvie {
    border-bottom: 1px solid var(--or);
    padding-bottom: 20px;
    margin-bottom: 10px;
}

.home #avis .flex .bleu > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.home #avis .flex .bleu > div span {
    font-family: var(--abril);
    font-weight: 400;
    font-size: 18px;
}

.home #avis a.button {
    background-color: var(--or);
    color: var(--blanc);
    margin: 40px 0;
    text-transform: none;
}

.home #avis a.button:hover {
    color: var(--or);
    background-color: var(--blanc);
}

/*endregion*/

/* * liste annonces region*/

.page-template-liste_annonces #annonces-container {
    background-image: url(https://brest-abers-immobilier.com/wp-content/themes/brestabers/images/logo.png);
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: contain;
    font-family: var(--lato);
}

.page-template-liste_annonces #annonces-container .flex {
    padding: 100px 0;
    flex-wrap: wrap;
    gap: 80px 50px;
    justify-content: center;
    box-sizing: border-box;
    background: linear-gradient(0deg, rgba(255, 251, 245, 1) 0%, rgba(255, 251, 245, 0) 5%);
}

.page-template-liste_annonces #annonces-container .flex article {
    background-color: var(--bleu);
    border-radius: 15px 15px 30px 30px;
    clip-path: inset(0 round 15px);
    width: 360px;
    max-width: 100%;
}

.page-template-liste_annonces #annonces-container .flex article .photo {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    transform: scale(1.01);
}

.page-template-liste_annonces #annonces-container .flex article .infos {
    color: white;
    padding: 20px 10px;
    text-align: center;
}

.page-template-liste_annonces #annonces-container .flex article .infos .infosbien {
    margin-bottom: 10px;
    font-weight: 800;
}

.page-template-liste_annonces #annonces-container .flex article .infos .infosbien a {
    color: white;
}


.page-template-liste_annonces #annonces-container .flex article .infos .icones {
    display: flex;
    gap: 20px;
    font-size: 16px;
    justify-content: center;
}

.page-template-liste_annonces #annonces-container .flex article .infos img {
    width: 20px;
}

.page-template-liste_annonces #annonces-container .flex article .infos a.button {
    display: block;
    background-color: var(--or);
    color: var(--blanc);
    padding: 10px 20px;
    text-transform: none;
    font-size: 16px;
    font-weight: 200;
    width: fit-content;
    margin: 30px auto;
}

.page-template-liste_annonces #annonces-container .flex article .infos a.button:hover {
    color: var(--or);
    background-color: var(--blanc);
}

.page-template-liste_annonces #annonces-container .flex article .infos .vendu {
    display: block;
    background-color: var(--or);
    color: var(--blanc);
    padding: 10px 20px;
    text-transform: none;
    font-size: 16px;
    font-weight: 200;
    width: fit-content;
    margin: 30px auto;
    border-radius: 15px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--abril);
    letter-spacing: 1px;
}


.page-template-liste_annonces #annonces-container .flex article .infos .nomagent {
    font-size: 16px;
    font-style: italic;
}

/*endregion*/

/* Single annonce  region*/

.page-template-annonce .pdf-regeneration {
    width: 100vw;
    height: 100vh;
    background: var(--bleu);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.page-template-annonce .pdf-regeneration a {
    opacity: 0;
}

.page-template-annonce h1 {
    display: none;
}

.page-template-annonce header svg {
    width: 400px;
    max-width: 100%;
}

.page-template-annonce main {
    font-family: var(--lato);
    font-size: 16px;
}

.page-template-annonce main .bleu {
    padding: 50px 0;
}

.page-template-annonce main .presentation {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    text-align: center;
}

.mobile.page-template-annonce main .presentation {
    flex-direction: column;
}

.page-template-annonce main .presentation h2 {
    font-size: 25px !important;
}

.page-template-annonce main .presentation span {
    font-style: italic;
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
}

.desktop.page-template-annonce main .presentation > div {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-template-annonce main .presentation .left .texte {
    position: relative;
    margin-bottom: 80px;
}

.page-template-annonce main .presentation .left .texte::after {
    content: "";
    width: 50%;
    height: 5px;
    background-color: var(--or);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.page-template-annonce main .icones {
    display: flex;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.page-template-annonce main .icones img {
    width: 30px;
    margin-bottom: 5px;
}

.page-template-annonce .carousels {
    position: relative;
}

.page-template-annonce .carousel-main .owl-stage {
    padding: 0 !important;
}

.page-template-annonce .carousel-main .photo {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 300px;
}

.page-template-annonce .carousel-thumbs {
    position: absolute;
    left: 0;
    bottom: 5px;
    display: none;
}

.page-template-annonce .carousel-thumbs .owl-item {
    cursor: pointer;
}

.page-template-annonce .carousel-thumbs .owl-dots {
    display: none;
}

.page-template-annonce .carousel-thumbs .photo {
    background-size: cover;
    background-position: center;
    width: 30px;
    height: 30px;
}


.page-template-annonce .presentation .button {
    margin: 30px auto;
    display: flex;
    background-color: var(--or);
    color: white;
    padding: 5px 20px;
    width: fit-content;
    align-items: center;
    gap: 5px;
    text-transform: none;
}

.page-template-annonce .presentation .button:hover {
    color: var(--or);
    background-color: white;
}


.page-template-annonce .detail,
.page-template-annonce .dossier {
    padding: 50px 0;
    text-align: center;
}

.page-template-annonce .dossier .button {
    background-color: var(--or);
    color: var(--blanc);
    margin: 30px auto;
    display: block;
    text-transform: none;
    width: fit-content;
}

.page-template-annonce .dpe {
    display: flex;
    justify-content: center;
    gap: 100px;
    padding: 50px 0;
    align-items: center;
}

.mobile.page-template-annonce .dpe {
    flex-direction: column;
}

.page-template-annonce .dpe .energetique,
.page-template-annonce .dpe .climatique {
    width: 300px;
    font-family: Arial, sans-serif;
}

.page-template-annonce .dpe .dpe-row {
    position: relative;
    display: flex;
    align-items: center;
    margin: 4px 0;
    padding: 6px 12px;
    color: #fff;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
    opacity: 0.5;
    box-sizing: border-box;
}

.page-template-annonce .dpe .dpe-row:nth-of-type(1) {
    width: 40%;
}

.page-template-annonce .dpe .dpe-row:nth-of-type(2) {
    width: 50%;
}

.page-template-annonce .dpe .dpe-row:nth-of-type(3) {
    width: 60%;
}

.page-template-annonce .dpe .dpe-row:nth-of-type(4) {
    width: 70%;
}

.page-template-annonce .dpe .dpe-row:nth-of-type(5) {
    width: 80%;
}

.page-template-annonce .dpe .dpe-row:nth-of-type(6) {
    width: 90%;
}

.page-template-annonce .dpe .dpe-row:nth-of-type(7) {
    width: 100%;
}

.page-template-annonce .dpe .dpe-letter {
    font-weight: bold;
    font-size: 16px;
}

.page-template-annonce .dpe .dpe-value {
    margin-left: auto;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
}

.page-template-annonce .dpe .dpe-row.active {
    opacity: 1;
}

.page-template-annonce .dpe .energetique .dpe-D.active {
    color: var(--bleu);
}

/* Couleurs */
.page-template-annonce .dpe .energetique .dpe-A {
    background: #2ecc71;
}

.page-template-annonce .dpe .energetique .dpe-B {
    background: #7ed957;
}

.page-template-annonce .dpe .energetique .dpe-C {
    background: #b5e61d;
}

.page-template-annonce .dpe .energetique .dpe-D {
    background: #ffe599;
}

.page-template-annonce .dpe .energetique .dpe-E {
    background: #f6b26b;
}

.page-template-annonce .dpe .energetique .dpe-F {
    background: #e69138;
}

.page-template-annonce .dpe .energetique .dpe-G {
    background: #cc0000;
}

.page-template-annonce .dpe .climatique .dpe-A {
    background: #d6cedb;
}

.page-template-annonce .dpe .climatique .dpe-B {
    background: #c8a0c1;
}

.page-template-annonce .dpe .climatique .dpe-C {
    background: #b77da6;
}

.page-template-annonce .dpe .climatique .dpe-D {
    background: #ad6499;
}

.page-template-annonce .dpe .climatique .dpe-E {
    background: #ae498d;
}

.page-template-annonce .dpe .climatique .dpe-F {
    background: #9d1c79;
}

.page-template-annonce .dpe .climatique .dpe-G {
    background: #911077;
}

.page-template-annonce .dpe .unite {
    font-size: 10px;
}

.page-template-annonce .visite {
    padding: 50px 0;
}

.page-template-annonce .visite iframe {
    width: 700px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    height: 80vh;
}


/* endregion */

/* * Articles region*/
.single {}

/*endregion*/

/* * Page 404 region*/
.error404 main {
    text-align: center;
    min-height: calc(100vh - 646px);
}

/*endregion*/

/* * Page Search region*/
.search {}

/*endregion*/

/*endregion*/

/* EXTENSIONS region*/

/* * Owlcarousel region*/
.owl-carousel {
    overflow: hidden;
}

.owl-carousel .owl-stage-outer,
.owl-carousel .owl-stage,
.owl-carousel .owl-item {
    height: 100%;
}


/*endregion*/

/* * Mentions légales region*/


.page-template-mentionslegales header nav #menu-principal a {
    color: var(--bleu);
}

.page-template-mentionslegales header div.titre {
    height: calc(50vh - 150px);
    position: relative;
}

.page-template-mentionslegales header svg {
    background: white;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100px;
}

.page-template-mentionslegales header .titre h1::before {
    content: "";
    position: absolute;
    left: 0;
    background: #1b1b1b;
    height: 3px;
    width: 100%;
    top: -50px;
}


.page-template-mentionslegales header svg line {
    stroke: var(--or) !important;
}

.page-template-mentionslegales header h1 {
    color: var(--or) !important;
    font-size: 40px;
    text-shadow: none;
    margin-top: 0;
    position: relative;
}

.page-template-mentionslegales header .carousel {
    opacity: 0;
    height: 50vh;
}

.page-template-mentionslegales main .wrapper {
    font-size: 20px;
}

.page-template-mentionslegales h2,
.page-template-mentionslegales h3 {
    color: var(--or);
    margin-top: 30px;
}

.page-template-mentionslegales h2 {
    font-size: 25px;
}

.page-template-mentionslegales h3 {
    font-size: 20px;
}

.page-template-mentionslegales main a {
    color: var(--bleu);
}

.page-template-mentionslegales table {
    border: 1px solid var(--bleu);
    border-collapse: collapse;
}

.page-template-mentionslegales table th,
.page-template-mentionslegales table td {
    padding: 15px;
    text-align: center;
    border: 1px solid var(--bleu);
}

/*endregion*/

/*endregion*/
