@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
    
html {
	scroll-behavior: smooth;
}

:root {
	--blu: rgba(26,109,255,1);
}

body {
	width: 100%;
	overflow-x: hidden;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	background-image: url('../img/marbre.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.7em;
}

h3 {
	font-size: 1.1em;
}

h4 {
	font-size: 1em;
}

p {
	line-height: 1.6em;
}

li {
	line-height: 1.6em;
}

button, input, textarea, select {
	font-family: 'Montserrat', sans-serif;
}

/* ========================= MAIN CONTAINER ========================= */

.container {
	width: 90%;
	max-width: 1200px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.container-2 {
	width: 100%;
	max-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* ========================= NAVBAR ========================= */

header {
	width: 100vw;
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: .95em;
	-webkit-box-shadow: 0px 2px 22px -7px rgba(0,0,0,0.54);
	-moz-box-shadow: 0px 2px 22px -7px rgba(0,0,0,0.54);
	box-shadow: 0px 2px 22px -7px rgba(0,0,0,0.54);
	position: relative;
	top: 0;
	z-index: 999999;
}

.remise {
	position: absolute;
	top: 80px;
	left: 0;
	background-color: rgb(255, 246, 209);
	width: 100%;
	padding: 10px;
	text-align: center;
}

.sticky {
	position: fixed;
	top: 0;
	width: 100%;
}

nav {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-flow: row wrap;
	padding: 0;
}

.links, .links2 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-flow: row wrap;
	width: 30%;
	transition: all .3s ease;
	font-weight: 600;
}

.links i, .links2 i {
	font-size: 1.1em;
	color: rgb(230, 193, 29);
	transition: all .3s ease;
}

.links a, .links2 a  {
	color: black;
	transition: all .3s ease;
	padding: 10px;
	font-size: .95em;
	position: relative;
	transition: all 0.3s cubic-bezier(0.2, 0, 0, 1) ease;
}

a:before, a:after, a > span:before, a > span:after {
	content: "";
	position: absolute;
	transition: transform 0.5s ease;
}

.effect-4 {
	padding: 10px;
	display: inline-block;
	overflow: hidden;
}

 .effect-4:before, .effect-4:after {
	left: 0;
	width: 100%;
	height: 2px;
	background: rgb(230, 193, 29);
}
      
.effect-4:before {
	bottom: 0;
	transform: translateX(-100%);
}
      
.effect-4:after {
	top: 0;
	transform: translateX(100%);
}
      
.effect-4:hover:before, .effect-4:hover:after {
	transform: translateX(0);
}

.links a:hover i {
	color: rgb(230, 193, 29);
}

.links a:hover {
	color: rgb(230, 193, 29);
}

.selected {
	padding: 10px;
	display: inline-block;
	overflow: hidden;
}

.selected a {
	color: rgb(230, 193, 29);
}

.selected:before, .selected:after {
	left: 0;
	width: 100%;
	height: 2px;
	background: rgb(230, 193, 29);
}

.selected:before {
	bottom: 0;
	transform: translateX(0%);
}

.selected:after {
	top: 0;
	transform: translateX(0%);
}

.logo {
	margin: 8px auto;
}

.logo img {
	width: 90px;
}

:is(.line1, .line2, .line3) {
	width: 25px;
	height: 2px;
	background-color: black;
	margin: 6px;
	transition: all .3s ease;
}

.burger {
	display: none;
}

.for-mobile {
	display: none;
}

/* ========================= HOME ========================= */

#home {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column wrap;
	width: 100%;
	min-height: 80vh;
	position: relative;
	padding-top: 50px;
}

#home .container {
	flex-flow: row wrap;
}

#home .container-2 {
	width: 90%;
	padding: 10px;
}

.home-main {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: row wrap;
}

.img_1 {
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: row wrap;
}

.img_1 img {
	width: 100%;
	border-radius: 10px;
	height: 100%;
}

.img_2 {
	width: 50%;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-flow: row wrap;
}

.img_2 img {
	width: 44.5%;
	border-radius: 15px;
}

#slider .container-2 {
	flex-flow: column wrap;
	background-color: rgb(236, 236, 236);
}

.home-text {
	text-align: center;
	width: 100%;
	margin: 50px auto;
}

.home-text h1 {
	margin-bottom: 20px;
}

.home-text h3 {
	padding: 20px;
	background-color: rgba(163, 163, 163, 0.137);
	font-weight: 500;
}

.home-img {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.side-img {
	width: 50%;
}

.side-img img {
	width: 100%;
}

.card {
	width: 350px;
	border-radius: 8px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column wrap;
	margin: 20px auto;
	transition: all .4s ease;
}

.autoplay {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.card img {
	width: 100%;
	margin: auto;
	transition: all .6s ease;
	border-radius: 8px;
}

.card-ctn {
	width: 350px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	border-radius: 8px;
}

.card-ctn:hover img {
	transform: scale(1.6);
	transform-origin: 50% 50%;
}


.overlay {
	position: absolute;
	bottom: 0;
	width: 350px;
	background: rgba(0, 0, 0, 0.199);
	color: white;
	padding: 30px 20px;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	transition: all .4s ease;
}

.cta-dl {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column wrap;
	margin: 50px auto;
}

.cta-btns {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: row wrap;
	margin-bottom: 10px;
}

.cta-dl img {
	width: 200px;
}

.cta-dl a {
	margin: auto 10px;
}

.cta-collection button {
	padding: 8px 20px;
	border: 2px solid transparent;
	background-color: black;
	cursor: pointer;
	color: white;
	font-weight: 600;
	text-transform: uppercase;
	transition: all .3s ease;
	margin: 30px auto;
}

.cta-collection button:hover {
	background: transparent;
	border: 2px solid black;
	color: black;
}

#collection {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column wrap;
	min-height: 60vh;
	padding-top: 100px;
	padding-bottom: 50px;
}

.main {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(163, 163, 163, 0.137);
	padding: 20px;
}

.main-text {
	width: 53%;
	text-align: left;
}

.main-text h2 {
	margin-bottom: 20px;
}

.main-text h3 {
	margin-bottom: 15px;
}

.main-text ul {
	margin: 20px;
}

.main-text li::marker {
	font-family: 'Font Awesome 5 Free';
	font-size: .9em;
	font-weight: 700;
	color: rgb(0, 14, 214);
	content: '\f054';
}

.main-text li {
	padding-left: 10px;
}

.dl-btns {
	width: 45%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column wrap;
}

.dl-btns img {
	width: 400px;
	margin: 10px auto;
}

#map {
	width: 100%;
	min-height: 30vh;
	margin: 0;
	text-align: center;
	position: relative;
}

.maps-title {
	margin-bottom: 20px;
}

#map iframe {
	border: 0;
	width: 100%;
	height: 400px;
	position: relative;
	bottom: 0;
	left: 0;
}

#contact {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 80vh;
	margin: 100px auto;
}

.ct-form {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: row wrap;
	padding: 30px 20px;
	border-radius: 5px;
	background-color: rgba(201, 201, 201, 0.288);
	backdrop-filter: blur(.5rem);
	-webkit-backdrop-filter: blur(.5rem);
}

.form {
	width: 50%;
	border-right: 1px solid black;
}

.form h2 {
	color: rgb(230, 193, 29);
	margin-bottom: 10px;
}

.ct-form form {
	width: 500px;
}

#contact label {
	margin: 8px 0;
	width: 100%;
	position:relative;
	display: inline-block;
}
	
#contact span {
	padding: 17px;
	font-size: .9em;
	pointer-events: none;
	position: absolute;
	left:0;
	top:0;
	transition: 0.3s ease;
	transition-timing-function: ease;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
	opacity:0.7;
}
    
#contact input, #contact textarea {
	padding: 17px;
	width: 100%;
	font-size: 16px;
	border-radius: 0;
	border: 1px solid black;
	outline: none;
	background-color: transparent;
	/*-webkit-box-shadow: 0px 11px 41px 1px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 11px 41px 1px rgba(0,0,0,0.75);
	box-shadow: 0px 11px 41px 1px rgba(0,0,0,0.75);
	border-left: 5px solid #ffb22e;*/
}
    
#contact input {
	height: 50px;
}
    
#contact input:focus + span, input:not(:placeholder-shown) + span {
	opacity:1;
	transform: scale(0.85) translateX(-80px);
}
    
#contact .obej input:focus + span, .obej input:not(:placeholder-shown) + span {
	opacity:1;
	transform: scale(0.85) translateX(-80px);

}
    
#contact textarea:focus + span, textarea:not(:placeholder-shown) + span {
	opacity:1;
	transform: scale(0.85) translateY(-10%) translateX(-106px);
}

.form button {
	padding: 10px 20px;
	width: 100%;
	background-color: black;
	color: white;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all  .3s ease;
}

.form button:hover {
	background-color: transparent;
	border: 2px solid black;
	color: black;
}

.infos {
	text-align: center;
	padding: 20px;
}

.infos h2 {
	margin-bottom: 20px;
}

.infos p {
	margin: 30px auto;
}

.infos i {
	color: rgb(230, 193, 29);
	font-size: 1.4em;
}

#coll {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 100vh;
}

.coll {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: row wrap;
}

.big {
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.349);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column wrap;
	cursor: default;
	padding: 10px;
	transition: all .4s ease;
	z-index: -1;
}

.show {
	opacity: 1;
	z-index: 9999999;
}

.big .container {
	position: relative;
}

.big-img {
	padding: 30px;
	width: 100%;
	height: auto;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: row wrap;
	margin: 50px;
}

.autoplay2 {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: row wrap;
	width: 100%;
	position: relative;
}

.autoplay2 img {
	width: 600px;
	border-radius: 8px;
	-webkit-box-shadow: 0px 0px 44px -13px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 44px -13px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 44px -13px rgba(0,0,0,0.75);
}

.close {
	position: absolute;
	z-index: 9999999999999999;
	top: 50px;
	right: 90px;
	color: rgb(206, 168, 0);
	text-align: center;
	font-size: 1.3em;
	padding: 3px 8px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: rgb(230, 230, 230);
	cursor: pointer;
}


.coll-cards {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: row wrap;
}

.gallery-img {
	width: 250px;
	cursor: pointer;
	margin: 20px auto;
	-webkit-box-shadow: 0px 0px 14px -4px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 14px -4px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 14px -4px rgba(0,0,0,0.75);
}

.card-ctn2 {
	width: 250px;
}

.overlay2 {
	width: 250px;
}

.coll-text {
	width: 100%;
	text-align: center;
	min-height: 30vh;
	margin-top: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column wrap;
	outline: 2px solid rgba(230, 193, 29, 0.431);
	outline-offset: -15px;
}

.cta-coll {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: row wrap;
	margin-top: 20px;
}

.cta-coll img {
	width: 200px;
	margin: auto 20px;
}

.coll-text h3 {
	margin-top: 30px;
	padding: 30px;
	background-color: rgba(163, 163, 163, 0.137);
	font-weight: 500;
}

.page-btn {
	width: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 50px auto;
	position: relative;
	padding: 30px;
}

.page-btn button {
	position: absolute;
	width: 250px;
	right: 20px;
	top: 28%;
	padding: 8px 20px;
	border: 2px solid transparent;
	background-color: black;
	cursor: pointer;
	color: white;
	font-weight: 600;
	font-size: 1em;
	text-transform: uppercase;
	transition: all .3s ease;
}

.page-btn button:hover {
	background: transparent;
	border: 2px solid black;
	color: black;
}

.lefto {
	position: absolute;
	left: 20px;
	top: 28%;
}

#app {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 85vh;
	margin: 80px auto;
}

.app-img {
	width: 100vw;
	height: 700px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	background-image: url('../img/iphone-app.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.app-img img {
	width: 1000px;
}

.app-text {
	width: 100%;
	text-align: center;
}





.lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
      }
      .lds-ellipsis div {
	position: absolute;
	top: 33px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: rgb(230, 193, 29);;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
      }
      .lds-ellipsis div:nth-child(1) {
	left: 8px;
	animation: lds-ellipsis1 0.6s infinite;
      }
      .lds-ellipsis div:nth-child(2) {
	left: 8px;
	animation: lds-ellipsis2 0.6s infinite;
      }
      .lds-ellipsis div:nth-child(3) {
	left: 32px;
	animation: lds-ellipsis2 0.6s infinite;
      }
      .lds-ellipsis div:nth-child(4) {
	left: 56px;
	animation: lds-ellipsis3 0.6s infinite;
      }
@keyframes lds-ellipsis1 {
0% {
	transform: scale(0);
}
100% {
	transform: scale(1);
}
}
@keyframes lds-ellipsis3 {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0);
	}
}

@keyframes lds-ellipsis2 {
	0% {
	transform: translate(0, 0);
	}
	100% {
	transform: translate(24px, 0);
	}
}

.loader {
	position: fixed;
	z-index: 9999999999999999999999999999999999999999999999;
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: white;
	transition: all 0.3s ease;
	opacity: 1;
	pointer-events: none;
}
      
.preload-finish {
	opacity: 0;
	pointer-events: none;
	z-index: -1;
}