:root {
	--site-color-01: #EC008C;
	--site-color-01-hover: #EC008C;
	--site-color-02: #fcf5f9;
}

@font-face {
	font-family: Poppins;
	src: url("/fonts/Poppins-Thin.ttf") url("/fonts/Poppins-Black.ttf") url("/fonts/Poppins-Bold.ttf") url("/fonts/Poppins-Light.ttf") url("/fonts/Poppins-Regular.ttf");
}

@font-face {
	font-family: Roboto;
	src: url("/fonts/Roboto-Thin.ttf") url("/fonts/Roboto-Black.ttf") url("/fonts/Roboto-Bold.ttf") url("/fonts/Roboto-Light.ttf") url("/fonts/Roboto-Regular.ttf");
}


html {
	scroll-behavior: smooth;
}

body {
	animation: fadeInAnimation ease 2s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	background-color: var(--site-color-02);
}

@keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

body:after {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
	z-index: -1;
	content: url("../images/facebook-color.png") url("../images/instagram-color.png");
}

h1 {
	font-size: 30px;
	line-height: 36px;
	font-family: Poppins, sans-serif;
	font-weight: 500;
	margin-bottom: 30px;
}

h2 {
	font-size: 26px;
	line-height: 30px;
	color: #6D6E71;
	font-family: Poppins, sans-serif;
	font-weight: 400;
	margin-bottom: 20px;
}

p {
	font-size: 16px;
	line-height: 22px;
	color: #000000;
	font-family: Poppins, sans-serif;
	font-weight: 300;
}

p2 {
	font-weight: 600;
	font-size: 18px;
	font-family: Poppins, sans-serif;
}

p3 {
	font-weight: 600;
	font-size: 14px;
	font-family: Poppins, sans-serif;
	color: var(--site-color-01-hover);
}

a {
	cursor: pointer;
}


.wrapper-main {
	width: 1100px;
	margin: 0 auto;
}

.header-main {
	position: fixed;
	top: 0;
	width: 100%;
	height: 80px;
	background-color: white;
	display: flex;
	justify-content: space-between;
	z-index: 1000;
}

.header-main-logo {
	width: fit-content;
	height: 100%;
	padding-left: 60px;
	display: flex;
}

.header-main-logo img {
	height: 50px;
	align-self: center;
}

.header-main-nav {
	width: fit-content;
	height: 100%;
}

.header-main-nav ul {
	list-style: none;

	margin-left: 30px;
}

.header-main-nav ul li {
	display: inline;
	float: left;
}

.header-main-nav ul li a {
	padding: 0 10px;
	font-family: Poppins, sans-serif;
	line-height: 80px;
	color: black;
	font-size: 13px;
	display: block;
	height: 100%;
	font-weight: 100;
	cursor: pointer;
}

.header-main-nav ul li a:hover {
	color: var(--site-color-01-hover);
}

.header-main-sm {
	width: fit-content;
	height: 100%;
	padding-right: 30px;
	display: flex;
	align-items: center;
	column-gap: 10px;
}

.header-main-sm-fb {
	width: 20px;
	height: 20px;
	background-image: url("../images/facebook.png");
	background-repeat: no-repeat;
	background-size: cover;
}

.header-main-sm-fb:hover {
	background-image: url("../images/facebook-color.png");
	cursor: pointer;
}

.header-main-sm-in {
	width: 20px;
	height: 20px;
	background-image: url("../images/instagram.png");
	background-repeat: no-repeat;
	background-size: cover;
}

.header-main-sm-in:hover {
	background-image: url("../images/instagram-color.png");
	cursor: pointer;
}


.main-intro a {
	position: relative;
	display: inline-block;
	margin: 15px 25px;
	outline: none;
	color: #EC008C;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
	font-size: 1.35em;
}

.main-intro a:hover,
.main-intro a:focus {
	outline: none;
	color: gray;
	cursor: pointer;
}

.main-intro a {
	padding: 12px 15px 0;
	height: 45px;
	font-size: 16px;
	color: #EC008C;
	font-family: Poppins, sans-serif;
}

.main-intro a::before,
.main-intro a::after {
	position: absolute;
	width: 45px;
	height: 2px;
	background: #EC008C;
	content: '';
	opacity: 0.2;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	pointer-events: none;
}

.main-intro a::before {
	top: 0;
	left: 0;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	transform-origin: 0 0;
}

.main-intro a::after {
	right: 0;
	bottom: 0;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: 100% 0;
	-moz-transform-origin: 100% 0;
	transform-origin: 100% 0;
}

.main-intro a:hover::before,
.main-intro a:hover::after,
.main-intro a:focus::before,
.main-intro a:focus::after {
	opacity: 1;
}

.main-intro a:hover::before,
.main-intro a:focus::before {
	left: 50%;
	-webkit-transform: rotate(0deg) translateX(-50%);
	-moz-transform: rotate(0deg) translateX(-50%);
	transform: rotate(0deg) translateX(-50%);
}

.main-intro a:hover::after,
.main-intro a:focus::after {
	right: 50%;
	-webkit-transform: rotate(0deg) translateX(50%);
	-moz-transform: rotate(0deg) translateX(50%);
	transform: rotate(0deg) translateX(50%);
}

.main-mobile a {
	position: relative;
	display: inline-block;
	margin: 15px 25px;
	outline: none;
	color: #EC008C;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
	font-size: 1.35em;
}

.main-mobile a:hover,
.main-mobile a:focus {
	outline: none;
	color: gray;
	cursor: pointer;
}

.main-mobile a {
	padding: 12px 15px 0;
	height: 45px;

	font-size: 14px;
	
	color: #EC008C;
	font-family: Poppins, sans-serif;
}

.main-mobile a::before,
.main-mobile a::after {
	position: absolute;
	width: 45px;
	height: 2px;
	background: #EC008C;
	content: '';
	opacity: 0.2;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	pointer-events: none;
}

.main-mobile a::before {
	top: 0;
	left: 0;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	transform-origin: 0 0;
}

.main-mobile a::after {
	right: 0;
	bottom: 0;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: 100% 0;
	-moz-transform-origin: 100% 0;
	transform-origin: 100% 0;
}

.main-mobile a:hover::before,
.main-mobile a:hover::after,
.main-mobile a:focus::before,
.main-mobile a:focus::after {
	opacity: 1;
}

.main-mobile a:hover::before,
.main-mobile a:focus::before {
	left: 50%;
	-webkit-transform: rotate(0deg) translateX(-50%);
	-moz-transform: rotate(0deg) translateX(-50%);
	transform: rotate(0deg) translateX(-50%);
}

.main-mobile a:hover::after,
.main-mobile a:focus::after {
	right: 50%;
	-webkit-transform: rotate(0deg) translateX(50%);
	-moz-transform: rotate(0deg) translateX(50%);
	transform: rotate(0deg) translateX(50%);
}

/* FOOTER */

.footer-main {
	width: 100%;
	height: 30px;
	padding: 5px 60px 5px;
	background-color: #FFFFFF;
	display: flex;
	justify-content: space-between;
}

.footer-main-menu {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.footer-main-menu-logo {
	display: flex;
	letter-spacing: 8px;
}

.footer-main-menu-logo img {
	height: 20px;
	width: 20px;
	margin: auto 10px auto 0;
}

.footer-main-menu-logo p {
	font-family: Poppins, sans-serif;
	font-size: 12px;
	color: #696A6D;
	display: block;
	height: 100%;
	font-weight: 300;
}

.footer-main-menu ul li {
	display: inline;
	float: left;
	margin-top: 2px;
	letter-spacing: 1px;
}

.footer-main-menu ul li a {
	padding: 0 15px;
	font-family: Poppins, sans-serif;
	font-size: 10px;
	color: #000000;
	display: block;
	height: 100%;
	font-weight: 100;
}

.footer-main ul li a:hover {
	color: #e6007e;
	cursor: pointer;
}

.footer-main-menu-logo a:hover {
	cursor: pointer;
}

/* BURGER MENU */
.burger-menu, .burger-menu-btn {
	display: none;
}

/* MOBILE VERSION */


@media only screen and (max-width: 992px) {
	
	.burger-menu-btn {
		display: block;
		margin-right: -40px;
		margin-left: 10px;
		width: 40px;
		height: 40px;
		background-image: url("../images/icons/burger-menu.png"), url("../images/icons/close.png");
		background-size: 100%;
		background-repeat: no-repeat;
		background-position: center, center left 50px;
	}
	
	.burger-menu {
		display: none;
		position: fixed;
		margin-top: -10px;
		width: 100%;
		height: 100vh;
		z-index: 900;
		background-color: #2A2A2A;
		background: rgba(0,0,0,0.89);
	}
	
	.burger-menu ul {
		width: 100%;
		height: calc(100vh - 50px);
		display: flex;
		flex-wrap: wrap;
		align-content: flex-start;
	}
	
	.burger-menu ul li {
		flex-basis: 100%;
		border-top: 2px solid #000000;
	}
	
	.burger-menu ul li:last-child {
		border-bottom: 2px solid #000000;
	}
	
	.burger-menu ul li a {
		display: block;
		font-family: Roboto, sans-serif;
		height: 100%;
		font-size: 16px;
		color: #FFFFFF;
		font-weight: 300;
		padding: 30px 0;
		flex-basis: 100%;
		text-align: center;
	}
	
	
	
	
	.wrapper-main {
		width: 100%;
	}

	.header-main {
		height: 50px;
	}
	
	.header-main-logo {
		padding-left: 20px;
	}
	
	.header-main-logo img {
		height: 35px;
	}
	
	.header-main-nav {
		display: none;
	}
	
	.footer-main {
		padding: 5px 20px 5px;
	}
	
	.footermenu {
		display: none;
	}

}
