/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(178, 79%, 50%);
  --second-color: hsl(178, 79%, 40%);
  --first-gradient: linear-gradient(90deg,
                  hsl(178, 79%, 40%),
                  hsl(178, 79%, 50%));
  --transparent-menu-gradient: linear-gradient(180deg,
                  hsla(255, 0%, 0%, 0),
                  hsla(255, 0%, 0%, 0));
  --bg-menu-gradient: linear-gradient(180deg,
                  hsla(255, 0%, 0%, 1),
                  hsla(255, 0%, 0%, 0));
  --actualites-gradient: linear-gradient(180deg,
	              hsl(0, 0%, 0%),
                  hsl(0, 0%, 13%),
                  hsl(0, 0%, 0%));
  --ambassadeurs-gradient: linear-gradient(180deg,
	              hsla(0, 0%, 0%, 0),
                  hsl(0, 0%, 17%),
                  hsl(0, 0%, 0%));
  --title-color: hsl(0, 0%, 100%);
  --text-color: hsl(0, 0%, 100%);
  --text-color-light: hsl(255, 4%, 70%);
  --body-color: hsl(255, 0%, 0%);
  --container-color: hsl(255, 20%, 10%);
  --white-color: hsl(0, 0%, 100%);
  --white-color-alpha: hsl(0, 0%, 100%, .1);
  --black-color: hsl(255, 0%, 0%);
  --gray-border: hsl(255, 6%, 90%);
  --black-border: hsl(255, 10%, 20%);
  --footer: hsl(180, 15%, 11%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Questrial", sans-serif;
  --big-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  --Vitesse: 20s; /* Vitesse de défillement */
  --Direction: 1; /* écrire 1 pour une direction partant de droite ; écrire -1 pour partir de gauche */
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}
p {
	line-height: 1.8rem;
	letter-spacing: 0.05rem;
}


/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}
.section__title, 
.section__subtitle {
  text-align: center;
}

.section__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}

.section__subtitle {
  display: block;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--second-color);
  margin-bottom: .5rem;
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header{
	position: fixed;
	width: 100%;
	top:0;
	left: 0;
	background-color: transparent;
    box-shadow: 0 225px 35px -170px transparent inset; 
    transition: box-shadow 1s;
	z-index: var(--z-fixed);
}
.nav{
	position: relative;
	height: var(--header-height);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.nav__logo{
	display: flex;
	align-items: center;
	column-gap: .25rem;
	margin: 35px 25px 0 0;
	width: 200px;
}
.nav__logo img{
	width: 100%;
}
.nav__toggle,
.nav__close{
	font-size: 1.5rem;
	color: var(--white-color);
	cursor: pointer;
	transition: color .4s;
}
/* Navigation for mobile devices */
@media screen and (max-width: 1150px){
	.nav__menu{
		position: fixed;
		top: 0;
		right: -100%;
		background-color: var(--black-color);
		width: 50%;
		height: 100%;
		padding: 7.5rem 3.5rem 0;
		transition: right .4s;
	}
}

.nav__list{
	display: flex;
	flex-direction: column;
	row-gap: 3rem;
}

.nav__link{
	color: var(--white-color);
	font-weight: var(--font-semibold);
	text-transform: uppercase;
	transition: color .4s;
}

.nav__link:hover{
	color: var(--first-color);
}

.nav__close{
	position: absolute;
	top: 1rem;
	right: 1.5rem;
}
.button__live {
	background-color: var(--first-color);
	color: var(--white-color);
	padding: 5px 15px;
	font-weight: bold;
	transition: all .4s;
}
.button__live:hover {
	background-color: var(--second-color);
	color: var(--white-color);
}
/* Show menu */
.show-menu{
	right:0;
}

/* Change background header */
.bg-header{
	background-color: transparent;
    box-shadow: 0 225px 35px -170px black inset; 
}

/* Active link */
.active-link{
	color: var(--first-color);
}

/*=============== BUTTON ===============*/
.button__menu{
	display: inline-flex;
	background: var(--first-gradient);
	color: var(--white-color);
	font-weight: var(font-semi-bold);
	padding: .5rem 1.5rem;
	transition: box-shadow .4s;
}
.button__menu:hover{
	box-shadow: 0 8px 32px hsla(178,77%,50%, .6);
	color: var(--white-color);
}
.button__all-actualites,
.button__instagram{
  	display: flex;
  	align-items: center;
	color: var(--white-color);
	font-weight: var(font-semi-bold);
	padding: 1rem 2rem;
	transition: all .4s;
	column-gap: .5rem;
}
.button__all-actualites{
	border: 1px solid var(--first-color);
	background-color: var(--first-color);
}
.button__all-actualites:hover{
	background-color: var(--second-color);
	border: 1px solid var(--second-color);
}
.button__instagram{
	border: 1px solid var(--white-color);
}
.button__instagram:hover{
	background-color: var(--white-color);
	color: var(--black-color);
}
.button__all-actualites span,
.button__instagram span{
	font-size: .75rem;
	text-transform: uppercase;
	letter-spacing: .1rem;
	font-weight: var(--font-semi-bold);
}
.button__all-actualites i,
.button__instagram i{
	font-size: 1.5rem;
	transition: transform .4s;
}
.button__all-actualites:hover i,
.button__instagram:hover i{
	transform: translateX(.25rem);
}
.button__calendrier{
  	display: inline-flex;
  	align-items: center;
	color: var(--white-color);
	font-weight: var(font-semi-bold);
	padding: 1rem 2rem;
	transition: all .4s;
	column-gap: .5rem;
}
.button__calendrier{
	border: 1px solid var(--first-color);
	background-color: var(--first-color);
}
.button__calendrier:hover{
	background-color: var(--second-color);
	border: 1px solid var(--second-color);
}
.button__calendrier span{
	font-size: .75rem;
	text-transform: uppercase;
	letter-spacing: .1rem;
	font-weight: var(--font-semi-bold);
}
.button__calendrier i{
	font-size: 1.5rem;
	transition: transform .4s;
}
.button__calendrier:hover i{
	transform: translateX(.25rem);
}
/*=============== FLASH ===============*/
#flash {
	position: relative;
	background: var(--first-color);
	padding: 10px;
	text-align: center;
	color: var(--white-color);
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: all .4s;
}
#flash a {
	color: var(--white-color);
}
#flash:hover {
	background: var(--second-color);
}
@media screen and (max-width: 700px) { /* CSS mobile ici */
    html, body{
    --Vitesse: 50s; /* Vitesse de défillement (dépend de la longeur du texte) */
    }
}
#flash{
	position: relative;
	background: var(--first-color);
	padding: 10px;
	text-align: center;
	color: var(--white-color);
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: all .4s;
}
#flash a{
	color: var(--white-color);
}
#flash:hover{
	background: var(--second-color);
}

/*=============== HOME ===============*/
#home {
	position: relative;
	height: 100vh;
	width: 100%;
	overflow: hidden;
}
#home video {
	position: absolute;
	min-height: 100%;
	min-width: 100%;
	z-index: -100;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.desk{
	display: block;
}
.mobile{
	display: none;
}
#home::before {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	background:linear-gradient(0deg, rgba(0,0,0,1),1%,rgba(0,0,0,1),35%,rgba(0,0,0,0));
}
/* Scroll Down btn */
a#scroll-btn {
	position: absolute;
	height: 5rem;
	width: 3.25rem;
	border: 0.2rem solid #fff;
	margin: auto;
	left:0;
	right:0;
	bottom:4rem;
	border-radius: 3em;
}
a#scroll-btn::before{
	position: absolute;
	content: "";
	margin: auto;
	left:0;
	right: 0;
	height: 0.55rem;
	width:0.55rem;
	background-color: #fff;
	border-radius: 50%;
	animation: move-down 2s infinite;
}
@keyframes move-down{
	80% {
		opacity: 0.5;
	}
	100% {
		transform: translateY(2rem);
		opacity: 0;
	}
}
a#scroll-btn::after{
	position: absolute;
	content: "SCROLL DOWN";
	width:6rem;
	height:2em;
	display: block;
	text-align: center;
	left:-3em;
	bottom: -4em;
	font-size: 8px;
	color:#fff;
	letter-spacing: 3px;
	font-weight: 600;
}

/*=============== CONTEXTE ===============*/
.v-line{
	width: 5px;
	height: 150px;
	background-color: var(--first-color);
	margin: 0 auto;
	
}
.contexte__container{
	row-gap: 2rem;
	margin-bottom: 100px;
}
.contexte__description{
	text-align: justify;
	margin-bottom: 2rem;
}
.contexte_description{
	margin-bottom: 2rem;
}
/*=============== ACTUALITES ===============*/
.actualites {
	position: relative;
	background: var(--actualites-gradient);
}

.actualites__container{
	position: relative;
	row-gap: 3rem;
}
.actualites__data{
	text-align: center;
}
.actualites__description{
	margin-bottom: 2rem;
}
.actualites__card{
	width: 400px;;
	position: relative;
}
.actualites__card:hover{
	cursor: pointer;
}
.bloc-actualites {
	width: 100%;
	height: 400px;
	position: relative;
	display: block;
	margin: auto;
}
.bloc-actualites img {
	transition: all .3s ease-in-out;
	height:100%;
	position:relative;
	top: -10%;
  	left: -30%;
}
.bloc-actualites:hover img {
	transform: scale(1.05);
	opacity:0.8;
}
.bloc-image {
	overflow: hidden;
	background: #000;
	height: 400px;
}
.actualites__categorie{
	z-index: 100;
	position: absolute;
	top :1rem;
	left: 1rem;
	padding: 0 1rem;
	background-color: var(--first-color);
	color: var(--white-color);
}
.actualites__wording{
	position: absolute;
	z-index: 100;
	width: 100%;
	bottom: 0;
	padding: 20px 0 20px 0;
	background: linear-gradient(0deg,rgba(0,0,0,1),80%, rgba(0,0,0,0));
}
.actualites__title{
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: bold;
	font-size: 18px;
	color: #fff;
	line-height: 20px;
	margin-left: 20px;
	padding-left: 20px;
	border-left: 2px solid #18bbb3;
}
.actualites__title span {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: normal;
	font-size: 10px;
}
.actualites__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.actualites__shape{
	position: absolute;
	width:330px;
	height: 1000px;
	background: url("../img/teamsnefsailing_actualites_shape_img.png");
	top: -100px;
	left:-165px;
	display: none;
}
/* Swiper class */
	.swiper{
		margin-inline: initial;
		padding-bottom: 4rem;
	}
	.swiper-button{
		position: relative;
		margin: 0;
		width: 100%;
		height: 50px;
	}
	.swiper-position{
		position: relative;
		width: 80px;
		height: 50px;
		margin: auto;
	}
	.swiper-button-prev::after,
	.swiper-button-next::after{
		content: '';
	}
	.swiper-button-prev,
	.swiper-button-next{
		top: 30px;
		width: 32px;
		height: 32px;
		background-color: var(--black-color);
		border: 2px solid var(--white-color);
		border-radius:50%;
		font-size: 1.5rem;
		color: var(--white-color);
	}
	.swiper-button-prev{
		left: 0;
	}
	.swiper-button-next{
		right: 0;
	}

/*=============== PARTENARIAT ===============*/
.partenariat{
	position: relative;
}
.partenariat__container{
	position: relative;
	row-gap: 3rem;
}
.partenariat__data{
	background-color: rgba(255,255,255,0.1);
	backdrop-filter: blur(20px);
	width: 540px;
	padding: 5rem;
	margin-top: 150px;
}
.partenariat__data h2{
	text-align: left;
}
.line__title{
	padding-left: 40px;
	border-left: 5px solid #18bbb3;
	text-align: justify;
}
.partenariat__description{
	padding-top: 1rem;
}
.partenariat__co-branding{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin: 3rem 0;
}
.partenariat__logo {
	width: 30%;
	height: 100px;
	background: url("../img/teamsnefsailing-co-branding.svg")no-repeat center;
}
.partenariat__co-branding-data{
	width: 70%;
	text-align: justify;
}
.partenariat__bg-img{
	position: absolute;
	width:1613px;
	height: 1017px;
	background: url("../img/teamsnefsailing_bg_partenariat.png");
	top: -150px;
	left:0;
	z-index: -1;
}

/*=============== VALEURS ===============*/

.valeurs{
	position: relative;
}
.valeurs__container{
	position: relative;
	row-gap: 3rem;
	justify-content: flex-end;
}
.valeurs__video{
	position: relative;
	margin: 200px auto 50px;
}
.valeurs__data{
	background-color: rgba(255,255,255,0.1);
	backdrop-filter: blur(20px);
	width: 650px;
	padding: 5rem;
}
.valeurs__data h2{
	text-align: left;
}
.valeurs__description{
	padding-top: 1rem;
	text-align: justify;
}
.valeurs__bg-img{
	position: absolute;
	width:2191px;
	height: 1276px;
	background: url("../img/teamsnefsailing_bg_valeurs_xl.png");
	top: -250px;
	left:-900px;
	z-index: -1;
}
/*=============== AMBASSADEURS ===============*/
.ambassadeurs{
	position: relative;
	background: var(--ambassadeurs-gradient);
}
.ambassadeurs__container{
	position: relative;
	row-gap: 3rem;
}
.ambassadeurs__description{
	width: 80%;
	margin: auto;
	text-align: center;
}
.ambassadeurs__container-cards{
  display: block;
  row-gap: 2rem;
}
.ambassadeurs__card{
	width: 540px;
	position: relative;
	margin: 2rem auto;
}
.ambassadeurs__card:hover{
	cursor: pointer;
}
.bloc-ambassadeurs {
	width: 100%;
	position: relative;
	display: block;
	margin: auto;
}
.bloc-ambassadeurs img {
	transition: all .3s ease-in-out;
	width:100%;
	position:relative;
	top: 0;
  	left: 0;
}
.bloc-ambassadeurs:hover img {
	transform: scale(1.05);
}
.bloc-image-ambassadeurs {
	overflow: hidden;
	background-color: var(--black-color);
	width: 540px;
	height: 900px;
}
.portrait-ambassadeurs{
	width: 340px;
	height: 460px;
	position: absolute;
	top:-30px;
	right: -30px;
	z-index: 1;
}
.ambassadeurs__categorie{
	z-index: 100;
	position: absolute;
	top :1rem;
	left: 1rem;
	padding: 0 1rem;
	background-color: var(--first-color);
}
.ambassadeurs__wording{
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 65%;
	bottom: 0;
}
.ambassadeurs__title{
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	font-size: var(--h2-font-size);
	color: #fff;
	line-height: 30px;
	padding: 10px 40px;
}
.ambassadeurs__title span {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: normal;
	font-size: var(--h3-font-size);
	color: var(--first-color);
}
.ambassadeurs__informations{
	padding: 10px 40px;
}
.ambassadeurs__informations ul{
	margin: 20px 0;
}

.ambassadeurs__informations ul li{
	color: var(--first-color);
	font-weight: bold;
	padding: 5px 0;
}
.ambassadeurs__informations ul li span{
	color: var(--white-color);
	font-weight: normal;
	padding-left: 50px;
}
.ambassadeurs__plamares{
	display: grid;
	grid-template-columns: repeat(2, max-content);
	align-items: start;
	grid-row-gap: 1rem;
	margin: 2rem 0;
}
.ambassadeurs__plamares .date{
	color: var(--first-color);
	font-weight: bold;
	padding-right: 20px;
}
.ambassadeurs__plamares .informations{
}
/*=============== CALENDRIER ===============*/
.calendrier__container {
  row-gap: 8rem;
  margin-bottom: 200px;
}

.calendrier__data {
  text-align: center;
}

.calendrier__description {
  margin-bottom: 2rem;
}

.calendrier__list {
  text-align: initial;
  grid-template-columns: repeat(2, 130px);
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.calendrier__list-item {
  display: flex;
  column-gap: .5rem;
  color: var(--title-color);
}

.calendrier__list-item i {
  font-size: 1.25rem;
  color: var(--first-color);
}

.calendrier__images {
  position: relative;
  justify-self: center;
}

.calendrier__img-1 {
  width: 200px;
  border: 5px solid var(--body-color);
  position: absolute;
  top: -5rem;
  left: 6rem;
}
.calendrier__img-2 {
  width: 250px;
  margin-right: 2.5rem;
}

/*=============== PAGE ALL ACTUALITES ===============*/
.page-all-actualites__container{
	margin-bottom: 200px;
}
.page-all-actualites__description{
	text-align: center;
	margin-bottom: 2rem;
}
.page-all-actualites__description{
	margin-bottom: 2rem;
}
.page-all-actualites__all-cards{
	display:grid;
	grid-template-columns: repeat(2, max-content);
	justify-content: center;
	align-items: center;
	align-content: center;
	column-gap: 2rem;
	row-gap: 2rem;
}
.page-all-actualites__card{
	width: 360px;
	position: relative;
}
.page-all-actualites__card:hover{
	cursor: pointer;
}
.page-all-actualites__bloc-actualites {
	width: 100%;
	height: 400px;
	position: relative;
	display: block;
	margin: auto;
}
.page-all-actualites__bloc-actualites img {
	transition: all .3s ease-in-out;
	height:100%;
	position:relative;
	top: -10%;
  	left: -30%;
}
.page-all-actualites__bloc-actualites:hover img {
	transform: scale(1.05);
	opacity:0.8;
}
.page-all-actualites__bloc-image {
	overflow: hidden;
	background: #000;
	height: 400px;
}
.page-all-actualites__actualites__categorie{
	z-index: 3;
	position: absolute;
	top :1rem;
	left: 1rem;
	padding: 0 1rem;
	background-color: var(--first-color);
	color: var(--white-color);
}
.page-all-actualites__actualites__wording{
	position: absolute;
	z-index: 2;
	width: 100%;
	bottom: 0;
	padding: 20px 0 20px 0;
	background: linear-gradient(0deg,rgba(0,0,0,1),80%, rgba(0,0,0,0));
}
.page-all-actualites__actualites__title{
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: bold;
	font-size: 18px;
	color: #fff;
	line-height: 20px;
	margin-left: 20px;
	padding-left: 20px;
	border-left: 2px solid #18bbb3;
}
.page-all-actualites__actualites__title span {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: normal;
	font-size: 10px;
}
/*=============== NEWS ===============*/
.news__container{
	row-gap: 2rem;
	margin-bottom: 100px;
	margin-top: 20px;
}
.news-data a{
	color: var(--first-color);
	text-decoration: underline;
	font-weight: bold;
	transition: color .4s;
}
.news-data a:hover{
	color: var(--second-color);
	cursor: pointer;
}
.news__date{
	text-align: center;
	padding: 20px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
}
.news__description{
	text-align: justify;
	margin-bottom: 2rem;
}
.news_description{
	margin-bottom: 2rem;
}
.img__bg__header{
	width: 100%;
}
.img__bg__header img{
	width: 100%;
}
.news__container .v-line{
	width: 5px;
	height: 80px;
	background-color: var(--first-color);
	margin: -80px auto;	
}
.question{
	color: var(--first-color);
	font-size:1.5rem;
	padding-bottom: 2rem;
}
.credits{
	font-weight: bold;
}
.img-illustration{
	width: 100%;
	margin: 50px auto;
}
.img-illustration img{
	width: 100%;
}
.video-illustration video{
  width: 100%;
  height: auto;
}
/*=============== FOOTER ===============*/
.footer{
	border-top: 1px solid var(--black-border);
	background-color: var(--footer);
	color: var(--white-color);
	padding-block: 3.5rem 2rem;
}
.footer__container{
	display: flex;
	justify-content: space-between;
}
.footer__logo{
	width: 200px;
}
.footer__description{
	margin-block: 1rem;
}
.footer__container-logo{
	width: 40%;
}
.footer__content{
	display: flex;
	justify-content: center;
	align-content: space-between;
}
.footer__title{
	font-size: var(--h3-font-size);
	color : var(--white-color);
	margin-bottom: 1rem;
	letter-spacing: .1rem;
}
.footer__links{
	display: grid;
	row-gap: .5rem;
}
.footer__link{
	color : var(--white-color);
	transition : color .4s;
}
.footer__link:hover {
	color: var(--first-color);
}
.footer__social{
	display:flex;
	column-gap: 1rem;
}
.footer__social-link{
	font-size: 1.5rem;
	color: var(--first-color);
	transition: transform .4s;
}
.footer__social-link:hover{
	transform: translateY(-.25rem);
}
.footer__copy{
	display: block;
	text-align: center;
	font-size: var(--small-font-size);
	padding-top: 2rem;
	border-top: 1px solid var(--white-color-alpha);
}
/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
	width: .6rem;
	background-color: hsl(255, 5%, 35%);
}
::-webkit-scrollbar-thumb{
	background-color: hsl(255, 5%, 65%);
}
::-webkit-scrollbar-thumb:hover{
	background-color: hsl(255, 5%, 45%);
}

/*=============== SCROLL UP ===============*/
.scrollup{
	position: fixed;
	right: 1rem;
	bottom: -50%;
	background-color: var(--first-color);
	color: var(--white-color);
	display: inline-flex;
	padding: 6px;
	font-size: 1.25rem;
	z-index: var(--z-tooltip);
	transition: bottom .4s, transform .4s;
}
.scrollup:hover{
	transform: translateY(-.5rem);
}
/* Show Scroll Up */
.show-scroll{
	bottom: 3rem;
}







