html,
body {
	font-family: "EB Garamond", serif;
	font-size: 18px;
	font-weight: 400;
	min-height: 100%;
	min-width: 100%;
	width: 100%;
	max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
}
a,
a:hover,
a:focus,
a:active {
	color: rgb(250, 170, 180);
}
strong {
	font-weight: 700;
}

.animation-fade {
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s 1s, opacity 1s linear;
}
.animation-bounce {
	-moz-animation: bounce 4s infinite;
	-webkit-animation: bounce 4s infinite;
	animation: bounce 4s infinite;
}

.bg-pink {
	background: -moz-linear-gradient(0deg, rgba(250, 170, 180, 1) 0%, rgba(238, 162, 168, 1) 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(250, 170, 180, 1)), color-stop(100%, rgba(238, 162, 168, 1)));
	background: -webkit-linear-gradient(0deg, rgba(250, 170, 180, 1) 0%, rgba(238, 162, 168, 1) 100%);
	background: -o-linear-gradient(0deg, rgba(250, 170, 180, 1) 0%, rgba(238, 162, 168, 1) 100%);
	background: -ms-linear-gradient(0deg, rgba(250, 170, 180, 1) 0%, rgba(238, 162, 168, 1) 100%);
	background: linear-gradient(90deg, rgba(250, 170, 180, 1) 0%, rgba(238, 162, 168, 1) 100%);
}

.btn-outline-secondary {
	background: transparent;
	border-color: #999;
	color: #999;
}
.btn-outline-secondary:hover,
.btn-outline-secondary:active,
.btn-outline-secondary:focus {
	background: transparent;
	border-color: #666;
	color: #666;
}

.card {
	background-color: rgba(255, 255, 255, 0.98);
	border-color: rgb(250, 170, 180);
}

.container-max {
	max-width: 1200px;
}

.font-900 {
	font-weight: 900;
}
.hover-enlarge {
	transition: transform 0.2s;
}
.hover-enlarge:hover {
	transform: scale(1.05);
}

.lg-backdrop {
	background: rgba(255, 255, 255, 0.96);
}
.lg-backdrop,
.lg-outer {
	padding-top: 57px;
}
.lg-toolbar {
	margin-top: 5px;
}
.lg-toolbar,
.lg-sub-html,
.lg-actions .lg-next,
.lg-actions .lg-prev {
	background: transparent;
	color: #222;
}
.lg-toolbar .lg-icon,
.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover,
.lg-toolbar .lg-icon:hover,
#lg-counter {
	color: #000;
}

.navbar {
	display: none;
}
.navbar .nav-link {
	color: #111;
}
#nav {
	transition: background 0.2s ease, margin 0.2s ease;
}
#nav.scrolled {
	display: block;
	background-color: rgba(255, 255, 255, 0.98) !important;
	margin-top: 0 !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	z-index: 9999;
}

.scroll-icon {
	opacity: 0.4;
}
.scroll-icon-wrapper.scrolled {
	display: none !important;
}

.stroke-pink {
	stroke: rgb(250, 170, 180);
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next,
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	background: #fff;
	height: 40px;
	width: 40px;
	border-radius: 20px;
	color: #666;
	text-align: center;
	line-height: 40px;
	padding: 0;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	display: none;
}
.swiper-slide {
	width: auto;
}
.swiper-scrollbar {
	width: calc(100% - 6rem);
}
.swiper-scrollbar-drag {
	background: #999;
}

.text-pink {
	color: rgb(250, 170, 180);
}
.text-caps {
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 2px;
	font-weight: 700;
}

/* Mobile */
@media screen and (max-width: 991px) {
	.h1-header {
		font-size: 50px;
	}
	html,
	body {
		font-size: 16px;
	}
}

@media screen and (max-width: 575px) {
	.h1-header {
		font-size: 40px;
	}
	html,
	body {
		font-size: 14px;
	}
}

/* Edge/IE */
@supports (-ms-ime-align: auto) {
	.form-label-group > label {
		display: none;
	}
	.form-label-group input::-ms-input-placeholder {
		color: #777;
	}
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.form-label-group > label {
		display: none;
	}
	.form-label-group input:-ms-input-placeholder {
		color: #777;
	}
}

/* Animations */
@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-15px);
	}
	60% {
		transform: translateY(-10px);
	}
}
