@charset "UTF-8";
/* CSS Document */

@font-face {
	font-family: "Montserrat";
	font-display: swap;
	src: url("/wp-content/themes/slightlychilled-child/assets/fonts/Montserrat/Montserrat-VariableFont_wght.ttf"); /* IE9 Compat Modes */
	src: local(""),
		url("/wp-content/themes/slightlychilled-child/assets/fonts/Montserrat/Montserrat-VariableFont_wght.ttf");
}

:root {
	--primary: #ec008c;
	--secondary: #ff0001;
	--tertiary: #f37021;

	--primary-rgba: rgba(236, 0, 140, 0.7);
	--tertiary-rgba: rgba(243, 112, 33, 0.7);

	--white: #fff;

	--black: #000;
}

.card {
	background: none;
	padding: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	border-radius: 0;
	border: none;
}

.card-header,
.card-body,
.card-footer {
	background: none;
	padding: 0;
	margin: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	border-radius: 0;
	border: none;
}

.primary-gradient {
	background-image: linear-gradient(var(--primary), var(--secondary));
}

.secondary-gradient {
	background-image: linear-gradient(var(--secondary), var(--tertiary));
}

.transparent-gradient {
	background-image: linear-gradient(
		var(--tertiary-rgba),
		var(--primary-rgba)
	);
}

.fullBlock {
	display: block;
	width: 100%;
	height: 100%;
	animation: flash 2s infinite;
}

@keyframes flash {
	0%,
	100% {
		background-image: linear-gradient(
			var(--tertiary-rgba),
			var(--primary-rgba)
		);
	}
	50% {
		background-image: linear-gradient(
			var(--primary-rgba),
			var(--tertiary-rgba)
		);
	}
}

.black-bg {
	background-color: var(--black);
}

.white-text {
	color: var(--white);
}

.primary-text {
	color: var(--primary);
}

.secondary-text {
	color: var(--secondary);
}

.tertiary-text {
	color: var(--tertiary);
}
body {
	font-family: "Montserrat";
	font-size: 1.3rem;
	font-weight: 400;
}

section.header {
}

section.header span {
	position: absolute;
	z-index: 100;
	bottom: 0;
	display: block;
	width: 100%;
	text-align: center;
	font-size: 1.3rem;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: -1px;
}

section.header img {
	z-index: 0;
}

.mainContent {
	padding-top: 80px;
}

.navbar-brand {
	margin-top: 0 !important;
	padding-top: 0 !important;
}
.navbar-brand img {
	max-width: 100px;
	height: auto;
}

.navbar-custom {
	padding-top: 0;
	position: relative;
}

.navbar-custom #menu-main.nav {
	bottom: 0;
	right: 15px;
}
.navbar-custom li a {
	color: var(--white);
}

.navbar-custom li.active a,
.navbar-custom li a:hover,
a:hover,
.navbar-custom li a.focus {
	color: #000;
}

.navbar-toggler {
	border-color: #000;
}

.dropdown-menu {
	margin-top: 0;
	background-image: linear-gradient(var(--secondary), var(--primary));
	border-top: none;
	border-color: rgba(109, 90, 65, 0.2);
}
.dropdown-menu li a:hover,
.dropdown-menu li.active a {
	background: #fff;
	color: #000;
}

.dropdown-menu[data-bs-popper] {
	margin-top: 0;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	-khtml-border-radius: 20px;
	border-radius: 0 0 5px 5px;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-custom li.active a,
.navbar-custom li a:hover,
a,
.btn:focus {
	outline: none;
	box-shadow: none;
}

.btn-site {
	background: var(--primary);
	color: var(--white);
	border: 1px solid var(--primary) !important;
}

.btn-site:hover {
	background: var(--white);
	color: var(--primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 800;
	text-transform: uppercase;
}

a {
	text-decoration: none;
}

.flex {
	display: flex;
	align-items: center;
	justify-content: center;
}

.myIframe {
	position: relative;
	padding-bottom: 56%;
	padding-top: 30px;
	height: 0;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	/*pointer-events: none;*/
	border: none;
}
.myIframe iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

iframe {
	border: 0;
	background: none;
}

#copyright {
	font-size: 0.8rem;
}

#footer ul {
	padding: 0;
	margin: 0;
}

#footer ul li {
	padding: 0;
	margin: 0;
	list-style: none;
}

#footer a {
	color: var(--white);
	text-decoration: none;
	font-weight: 200;
}

/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
}

@media (min-width: 62em) {
}

@media (max-width: 768px) {
}

@media (max-width: 992px) {
}

@media (max-width: 1200px) {
}

.card.gallery-card {
	background-image: linear-gradient(
		var(--tertiary-rgba),
		var(--primary-rgba)
	);
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
	padding: 2rem;
}

.card.gallery-card .carousel-item {
	aspect-ratio: 1;
	background-color: none;
}

.card.gallery-card .carousel-item img {
	object-fit: contain;
	height: 100%;
	width: 100%;
	padding: 0;
}

.card.gallery-card .carousel-control-prev,
.card.gallery-card .carousel-control-next {
	width: 5%;
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	height: 40px;
	width: 40px;
	top: 50%;
	transform: translateY(-50%);
}

.card.gallery-card .carousel-control-prev {
	left: 10px;
}

.card.gallery-card .carousel-control-next {
	right: 10px;
}

.card.gallery-card .carousel-indicators {
	margin-bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 0.5rem;
}

.card.gallery-card .carousel-indicators button {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin: 0 4px;
	background-color: rgba(255, 255, 255, 0.5);
}

.card.gallery-card .carousel-indicators button.active {
	background-color: #fff;
}
