@font-face {
  font-family: 'PeugeotNew';
  font-weight: 300;
  font-display: swap;
  src: url('/design/fonts/PeugeotNewLight.otf') format('opentype');
}
@font-face {
  font-family: 'Montserrat';
  font-weight: 400;
  font-display: swap;
  src: url('/design/fonts/Montserrat-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'GreatVibes';
  font-weight: 400;
  font-display: swap;
  src: url('/design/fonts/GreatVibes-Regular.ttf') format('truetype');
}

* {
	box-sizing: border-box;
}
	
html {
	font-size: 14px;
}
@media only screen and (min-width: 540px) {
	html {
		font-size: 14px;
	}
}
@media only screen and (min-width: 769px) {
	html {
		font-size: 15px;
	}
}
@media only screen and (min-width: 1024px) {
	html {
		font-size: 16px;
	}
}
@media only screen and (min-width: 1366px) {
	html {
		font-size: 16px;
	}
}
body {
	font-family: 'Montserrat', Arial, Helvetica, Myriad Pro, sans-serif;
	font-weight: 400;
	color: #505050;
	background-color: #fff;
	background-image: url('/design/images/drew-beamer-kUHfMW8awpE-unsplash-2.jpg');
	background-position: center -474px;
	background-repeat: no-repeat;
	margin: 0;
	overflow-x: hidden;
	line-height: 160%;
}

h1, h2 {
	color: #333;
	line-height: 160%;
	margin: 0 0 2rem 0;
	font-size: 1.8rem;
}
@media (min-width: 993px) {
	h1, h2 {
		font-size: 2.4rem;
	}
}
h3, h4 {
	color: #333;
	line-height: 160%;
	margin: 0 0 1rem 0;
}

h1:last-child, h2:last-child, h3:last-child, h4:last-child  {
	margin-bottom: 0;
}

p:last-child {
	margin-bottom: 0;
}

p.xl {
	font-size: 1.2rem;
	line-height: 180%;
}


.gray {
	background-color: #f4f4f4;
}
.primary {
	background-color: #fb7578;
	color: #fff;
}
.primary a, .primary p, .primary h1, .primary h2, .primary h3, .primary h4 {
	color: #fff;
}

.center {
	text-align: center;
}

.max {
	max-width: 815px;
	padding: 100px 2rem 100px 0;
}

a.type-2 {
	text-decoration: none;
	font-weight: bold;
}
a.type-2:hover {
	text-decoration: underline;
}

.button {
	text-decoration: none;
	display: inline-block;
	padding: 0.8rem 2.5rem;
	border-radius: 30px;
	border: none;
	color: #fff;
	background-color: #fb7578;
	font-weight: bold;
	position: relative;
	z-index: 1;
	margin: 20px 0;
	cursor: pointer;
	font-family: 'Montserrat';
	font-size: 1rem;
	text-transform: uppercase;
	transition: all 0.3s;
}
.button:hover {
	background-color: #000;
}
.button:before {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	border: 2px solid #fb7578;
	border-radius: 50px;
}

img {
	max-width: 100%;
}

header {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 10px 0;
	height: 75px;
	z-index: 10;
	transition: all 0.5s;
}
header.scrolled {
	padding: 10px 0;
}
@media (min-width: 993px) {
	header {
		padding: 30px 0;
		height: auto;
	}
}
header.type-3 {
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}


header .container {
	display: flex;
}
header .container ul {
	margin: 0 0 0 auto;
	display: flex;
	padding: 0 1rem;
	list-style: none;
}
header .container ul li {
	
}
header .container ul li a {
	color: #000;
	padding: 1rem 1rem;
	text-decoration: none;
	font-weight: bold;
	display: block;
}
header .container ul li a.selected {
	color: #fb7578;
}

header.type-3 .container ul {
	margin: 0 auto;
}
header.type-3 .container ul li a {
	padding: 1rem 2rem;
	position: relative;
	text-transform: uppercase;
	font-size: 0.9rem;
}
header.type-3 .container ul li a:hover {
	color: #fb7578;
}

@media (max-width: 992px) {
	header .container ul {
		position: fixed;
		top: 74px;
		left: 0;
		display: block;
		background-color: #f4f4f4;
		height: calc(100vh - 74px);
		width: 300px;
		max-width: 100vw;
		transform: translate(-100%,0);
		transition: all 1s;
	}
	header .container ul.active {
		transform: translate(0,0);
	}
	.wrap-menu {
		position: fixed;
		top: 75px;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: rgba(0,0,0,0.3);
		display: none;
	}
	.wrap-menu.active {
		display: block;
	}
}


.container {
	max-width: 1240px;
	margin: 0 auto;
}

.container-sm {
	max-width: 940px;
	margin: 0 auto;
}

.section-top {
	padding: 100px 0;
	overflow: hidden;
	max-width: 100%;
	position: relative;
}
.section-top .shape-image {
	position: absolute;
	bottom: 0;
	left: calc(50% - 200px);
	z-index: 0;
}
.section-top h1.top {
	font-family: 'GreatVibes';
	color: #fb7578; /*#ffaf36;*/
	font-size: 100px;
	line-height: 100px;
	letter-spacing: 5px;
	font-weight: 400;
	margin: 50px 0 30px 0;
}

.section-top-2 {
	padding: 100px 0;
	overflow: hidden;
	max-width: 100%;
	position: relative;
	background-color: #000;
}
.section-top-2 .shape-image {
	position: absolute;
	bottom: 80px;
	left: calc(50% - 200px);
	z-index: 0;
}
.section-top-2 h1.top {
	font-family: 'GreatVibes';
	color: #fff; /*#ffaf36;*/
	font-size: 100px;
	line-height: 100px;
	letter-spacing: 5px;
	font-weight: 400;
	margin: 50px 0 30px 0;
}
.section-top-2 p {
	color: #ccc;
}
.section-top-2 .button {
	color: #000;
	background-color: #fff;
}
.section-top-2 .button:before {
	border: 1px solid #666;
}

.section-top-3 {
	padding: 60px 0;
	overflow: hidden;
	max-width: 100%;
	position: relative;
	background-color: #111;
	margin: 75px 0 0 0;
}
@media (min-width: 993px) {
	.section-top-3 {
		padding: 100px 0;
		margin: 117px 0 0 0;
	}
}
.section-top-3 .shape-image {
	z-index: 0;
	opacity: 0;
	margin: 30px 0 -65px 0;
	transition: all 0.75s;
}
.section-top-3 .shape-image.view {
	opacity: 1;
}
@media (min-width: 993px) {
	.section-top-3 .shape-image {
		position: absolute;
		bottom: 0;
		top: 0;
		left: 80%;
		margin: 0;
		z-index: 0;
		opacity: 0;
		transition: all 0.75s;
	}
	.section-top-3 .shape-image.view {
		left: 50%;
		opacity: 1;
	}
}
.section-top-3 h1.top {
	font-family: 'GreatVibes';
	color: #fff; /*#ffaf36;*/
	font-size: 60px;
	line-height: 60px;
	height: 60px;
	letter-spacing: 2px;
	font-weight: 400;
	margin: 20px 0 10px 0;
}
@media (min-width: 993px) {
	.section-top-3 h1.top {
		font-size: 100px;
		line-height: 100px;
		height: 100px;
		letter-spacing: 5px;
		margin: 50px 0 30px 0;
	}
}
.section-top-3 p {
	color: #ccc;
}
.section-top-3 .button {
	color: #000;
	background-color: #fff;
}
.section-top-3 .button:hover {
	color: #fff;
	background-color: #fb7578;
}
.section-top-3 .button:before {
	border: 2px solid #fff;
}


.top-content {
	padding: 0 1rem;
	text-align: center;
	position: relative;
	transform: translate(-30%, 0);
	opacity: 0;
	transition: all 1s;
}
.top-content.view {
	transform: translate(0, 0);
	opacity: 1;
}
@media (min-width: 993px) {
	.top-content {
		padding: 0;
		max-width: 560px;
		text-align: center;
		position: relative;
		transform: translate(-30%, 0);
		opacity: 0;
		transition: all 1s;
	}
	.top-content.view {
		transform: translate(0, 0);
		opacity: 1;
	}
}
.content {
	padding: 60px 1rem;
	overflow: hidden;
	max-width: 100%;
}
@media (min-width: 993px) {
	.content {
		padding: 100px 2rem;
		overflow: hidden;
		max-width: 100%;
	}
}



.logo {
	width: 80px;
	display: inline-block;
}
@media (min-width: 993px) {
	.logo {
		width: 120px;
	}
}
.logo img {
	max-width: 100%;
}

.logo-top {
	position: absolute;
	top: 17px;
	left: 3rem;
	width: 34px;
	opacity: 0;
	transition: all 2s;
}
@media (max-width: 992px) {
	.logo-top {
		left: 5rem;
	}
}
.scrolled .logo-top {
	opacity: 1;
}
.logo-top img {
	max-width: 100%;
}

.footer-top {
	padding: 50px 1rem 0 1rem;
}
.footer-top img {
	width: 140px;
	max-width: 33.33%;
}
.footer-content {
	background-color: #000;
	padding: 50px 1rem;
}
.footer-content a {
	color: #fff;
}
.footer-content ul {
	margin: 0;
	padding-left: 20px;
}
.footer-content ul a {
	text-decoration: none;
}
.footer-content ul a:hover {
	text-decoration: underline;
}
.footer-bottom {
	padding: 20px 0;
	text-align: center;
	font-size: 0.8rem;
	color: #000;
}
.footer-bottom span {
	color: #fb7578;
}

.footer-img {
	position: absolute;
	right: 0;
	bottom: 0;
}

.image {
	max-width: 100%;
	border: 1px solid #ccc;
	border-radius: 30px;
	padding: 10px;
	background-color: #fff;
}

.cols-2 {
	display: flex;
	flex-wrap: wrap;
	margin-left: -1rem;
	margin-right: -1rem;
	width: calc(100% + 2rem);
	max-width: calc(100% + 2rem);
}
.cols-2 > div {
	width: 50%;
	padding: 1rem;
	position: relative;
}

.cols-7-3 {
	display: flex;
	flex-wrap: wrap;
	margin-left: -2rem;
	margin-right: -2rem;
	width: calc(100% + 4rem);
	max-width: calc(100% + 2rem);
}
.cols-7-3 > div:first-child {
	width: 70%;
	padding: 0 2rem;
	position: relative;
}
.cols-7-3 > div:last-child {
	width: 30%;
	padding: 0 2rem;
	position: relative;
}

.cols-4-6 {
	display: flex;
	flex-wrap: wrap;
	margin-left: -2rem;
	margin-right: -2rem;
	width: calc(100% + 4rem);
	max-width: calc(100% + 2rem);
}
.cols-4-6 > div:first-child {
	width: 40%;
	padding: 0 2rem;
	position: relative;
}
.cols-4-6 > div:last-child {
	width: 60%;
	padding: 0 2rem;
	position: relative;
}

.cols-6-4 {
	display: flex;
	flex-wrap: wrap;
	margin-left: -2rem;
	margin-right: -2rem;
	width: calc(100% + 4rem);
	max-width: calc(100% + 2rem);
}
.cols-6-4 > div:first-child {
	width: 100%;
	padding: 0 2rem;
	position: relative;
	z-index: 2;
}
.cols-6-4 > div:last-child {
	width: 100%;
	padding: 0 2rem;
	position: relative;
}
@media (min-width: 993px) {
	.cols-6-4 > div:first-child {
		width: 60%;
	}
	.cols-6-4 > div:last-child {
		width: 40%;
	}
}


.cols-6-4 .max {
	margin-left: auto;
	padding: 100px 0 100px 2rem;
}

.cols-3 {
	display: flex;
	flex-wrap: wrap;
	margin-left: -0.5rem;
	margin-right: -0.5rem;
	width: calc(100% + 1rem);
	max-width: calc(100% + 1rem);
	position: relative;
}
@media (min-width: 541px) and (max-width: 992px)  {
	.cols-3 {
		justify-content: center;
	}
}
.cols-3 > div {
	width: 100%;
	padding: 0.5rem;
}
@media (min-width: 541px) and (max-width: 992px)  {
	.cols-3 > div {
		width: 50%;
		padding: 0.5rem;
		justify-content: center;
	}
}
@media (min-width: 993px) {
	.cols-3 > div {
		width: 33.33%;
		padding: 0.5rem;
	}
}

.cols-4 {
	display: flex;
	flex-wrap: wrap;
	margin-left: -0.5rem;
	margin-right: -0.5rem;
	width: calc(100% + 1rem);
	max-width: calc(100% + 1rem);
	position: relative;
}
.cols-4 > div {
	width: 100%;
	padding: 0.5rem;
}
@media (min-width: 541px) and (max-width: 992px)  {
	.cols-4 > div:nth-child(2)	{
		padding-right: 80px;
	}
}
@media (max-width: 992px)  {
	.cols-4 > div:nth-child(2)	{
		width: 50%;
		display: flex;
		justify-content: end;
		align-self: baseline;
	}
	.cols-4 > div:nth-child(3)	{
		width: 50%;
	}
	.cols-4 > div:first-child {
		display: flex;
		justify-content: center;
		align-self: baseline;
	}
	.cols-4 > div:last-child {
		display: flex;
		justify-content: center;
		align-self: baseline;
	}
}
@media (min-width: 993px) {
	.cols-4 > div {
		width: 25%;
	}
	.cols-4 > div:last-child {
		display: flex;
		justify-content: end;
		align-self: baseline;
	}
}

.contact-us-form {
	margin: 0 0 4rem 0;
}

.contact-us-form input {
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 15px;
	padding: 0 1rem;
	height: 50px;
	margin: 0 0 20px 0;
	font-family: 'Montserrat';
	font-size: 0.8rem;
}
.contact-us-form textarea {
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 15px;
	padding: 0.5rem 1rem;
	height: 150px;
	margin: 0 0 20px 0;
	font-family: 'Montserrat';
	font-size: 0.8rem;
}

.row {
	margin-left: -0.5rem;
	margin-right: -0.5rem;
	width: calc(100% + 1rem);
	max-width: calc(100% + 1rem);
	display: flex;
}
.row > div {
	padding: 0 0.5rem;
}
.row .col-half {
	width: 50%;
}
.row .col-full {
	width: 100%;
}

.box {
	box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.12);
	border-radius: 1.5rem !important;
	padding: 3rem;
}
.icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: inline-block;
	background-color: #fb7578;
	margin: 0 0 1rem 0;
}

.sticky {
	position: fixed;
	right: 1rem;
	top: 8px;
	border: 2px solid #fb7578;
	padding: 2px;
	border-radius: 35px;
	text-decoration: none;
	color: #000;
	width: 58px;
	transition: all 0.2s;
	overflow: hidden;
	transform: scale(0);
}
.sticky.view {
	transform: scale(1);
}
@media (min-width: 993px) {
	.sticky {
		top: 26px;
		right: 3rem;
	}
}
.scrolled .sticky {
	top: 8px;
}
.sticky:hover {
	width: 245px;
	background-color: #f4f4f4;
}
.sticky span {
	margin: 0;
	display: inline-block;
	overflow: hidden;
	position: absolute;
	left: 70px;
	top: 15px;
	width: 152px;
	font-weight: bold;
}
.sticky div {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: inline-block;
	background-color: #fb7578;
	display: inline-block;
	vertical-align: middle;
}
.sticky div > svg {
	width: 20px;
	margin: 15px 0 0 15px;
}

.fix-height {
	position: absolute;
	bottom: 0;
	left: 0;
	top: 0;
}

.item {
	max-width: 100%;
	border: 1px solid #ccc;
	border-radius: 30px;
	padding: 10px;
	background-color: #fff;
	position: relative;
	opacity: 0;
	top: 200px;
	transition: all 1.5s;
}
.item.view {
	opacity: 1;
	top: 0;
}
.item img {
	border-radius: 20px;
	display: block;
	height: 280px;
	width: 100%;
	object-fit: cover;
}
.item > div {
	position: absolute;
	left: 15px;
	bottom: 15px;
	right: 15px;
	border-radius: 16px;
	background-color: rgba(255,255,255,0.75);
	padding: 10px;
	display: flex;
	flex-direction: column;
	height: 71px;
	transition: all 0.3s;
	border: 1px solid #d4d4d4;
}
.item:hover > div {
	height: calc(100% - 30px);
}

.item h3 {
	font-size: 1rem;
	margin: 0;
}
.item span {
	/*color: #fb7578;*/
	font-weight: 100;
	font-size: 0.9rem;
	display: block;
	margin: 0 0 10px 0;
}
.item p {
	color: #333;
	overflow: hidden;
	opacity: 0;
	margin: 0;
	transition: all 0.75s;
}
.item:hover p {
	margin: auto 0 0 0;
	opacity: 1;
}
.social {
	display: inline-block;
	margin: 10px;
	transform: scale(0);
	opacity: 0;
	transition: all 0.2s;
}
.social.view {
	transform: scale(1);
	opacity: 1;
}
.social svg {
	width: 40px;
}
.social svg path {
	fill: #fff;
}

.delivary-icon {
	width: 90px;
	height: 90px;
	background-color: #fff;
	border-radius: 50%;
	border: 15px solid #fff;
	display: inline-block;
	margin: 0 0 2rem 0;
	transform: scale(0);
	opacity: 0;
	transition: all 0.2s;
}
.delivary-icon.view {
	transform: scale(1);
	opacity: 1;
}
@media (max-width: 992px) {
	.content-logo {
		display: none;
	}
}
@media (min-width: 993px) {
	.content-logo {
		position: absolute;
		top: -300px;
		right: 0;
		z-index: 9;
		width: 200px;
		background: #000;
		padding: 30px;
		transition: all 1.5s;
	}
	.content-logo.view {
		top: -100px;
	}
}
@media (max-width: 992px) {
.img-col {
		margin: -60px -1rem 60px -1rem;
		object-fit: cover;
		object-position: center;
		height: 60vw;
		width: 100vw;
		max-width: calc(100% + 2rem);
		transition: all 1s;
		opacity: 0;
	}
	.img-col.view {
		opacity: 1;
	}
}
@media (min-width: 993px) {
	.img-col {
		position: absolute;
		top: -14rem;
		right: 0;
		width: 50vw;
		object-fit: cover;
		object-position: center;
		max-width: calc(100% + 25rem);
	}
}
@media (min-width: 993px) {
	.wbgr:after {
		content: '';
		position: absolute;
		top: 0;
		left: 50vw;
		right: 0;
		bottom: 0;
		background: linear-gradient(-90deg, rgba(255,255,255,0) 10%, rgb(255, 255, 255, 0.5) 40%, rgb(255, 255, 255, 1) 80%);
	}
}
@media (max-width: 992px) {
	.toggle-menu {
		position: absolute;
		top: 25px;
		left: 1rem;
		width: 28px;
		height: 24px;
		border-top: 3px solid #000;
		border-bottom: 3px solid #000;
	}
	.toggle-menu.active {
		border: none !important;
	}
	.toggle-menu:after {
		content: '';
		width: 28px;
		height: 3px;
		background-color: #000;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	.toggle-menu.active:after {
		transform: translate(-50%,-50%) rotate(45deg);
	}
	.toggle-menu.active:before {
		content: '';
		width: 28px;
		height: 3px;
		background-color: #000;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%) rotate(-45deg);
	}
}

.accordion {
	overflow: hidden;
	max-height: 0;
	transition: 0.3s;
}
.accordion.open {
	max-height: 2000px;
}