:root {
	--color1: #662d91; /* Purple from "my" */
	--color2: #f2e6ff; /* Light purple for backgrounds */
	--color3: #00a3e0; /* Blue from "gimi" */
	--color3-1: #e6f7ff; /* Light blue for backgrounds */
	--color4: #4f959d;
	--color4-1: #02ca34;
	--color5: #e0d85d;
	--color5-1: #fff3d9;
	--color6: #ddd45c;
	--color7: #333333;
	--color8: #f8f8f8;
	--color9: #bbbbbb;
	--color10: #858585;
}

@import url('/_static/_global/_supload/fonts/css/Montserrat.css?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Montserrat', sans-serif;
	background-color: var(--color8);
	color: var(--color7);
	font-size: 1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 900;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
}

h5 {
	font-size: 1.4em;
}

.padding-left-1 {
	padding-left: 0.7rem !important;
}

.padding-right-1 {
	padding-right: 0.7rem !important;
}

.top-bar {
	background-color: var(--color2);
	color: var(--color7);
	position: sticky;
	top: 0;
	z-index: 1000;
	border-radius: 0px 0px 50px 50px;
	overflow: hidden;
	padding-bottom: 10px;
}

.menu,
.menu.horizontal {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
}

.top-bar .menu li:not(:last-child)::after {
	font-family: 'Montserrat', sans-serif;
	content: '|';
	margin: 0 5px;
	color: var(--color1);
	font-weight: bold;
}

.top-bar ul {
	display: flex;
	justify-content: flex-end;
}

.top-bar ul li {
	list-style: none;
}

.top-bar ul li a {
	/* font-size: .8rem; */
	color: var(--color4);
	border-radius: 1em 1em 0em 0em;
	text-decoration: none;
	transition: 0.3s ease-in-out;
	font-weight: 700;
	text-transform: uppercase;
}

.top-bar ul li a:hover {
	color: var(--color1);
}

.section {
	position: relative;
}

.anchor-offset {
	background-color: var(--color3-1);
	border-top: 13px solid var(--color1);
	left: 0;
	width: 100%;
	height: 35px;
}

.toTheTop {
	margin-top: -2.5rem;
}

.button {
	color: var(--color8);
	background-color: var(--color4);
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.3s;
	text-decoration: none;
}

.button:hover {
	background-color: var(--color1);
}

.section-box {
	background-color: white;
	border-radius: 15px;
	overflow: hidden;
}

.title {
	background-color: var(--color3-1);
}

.numbers {
	border: 3px solid var(--color2);
	border-radius: 50px;
	overflow: hidden;
	background-color: var(--color2);
}

.banners {
	border: 3px solid var(--color4);
	border-radius: 15px;
	overflow: hidden;
	background-color: var(--color4);
	color: var(--color8);
}

.bannersFlat {
	background-color: var(--color7);
	color: var(--color8);
	border-radius: 15px 15px 0px 0px;
	border: none;
}
.pin {
	font-size: 2.7rem;
}
.postit {
	border-radius: 15px;
	background-color: var(--color5-1);
	color: var(--color7);
	overflow: hidden;
}

.no-bullet {
	font-size: 1.2rem;
}

.one,
.two,
.three,
.four,
.five {
	font-size: 1.2rem;
	font-weight: bold;
	color: #f8f8f8;
	border-radius: 0 0 90% 50%;
}

.one {
	background-color: var(--color1);
}

.two {
	background-color: var(--color4);
}

.three {
	background-color: var(--color6);
}

.four {
	background-color: var(--color7);
}

.five {
	background-color: var(--color5-1);
}

.content {
	font-size: 1rem;
}

.content2 {
	font-size: 1rem;
}

.check {
	color: var(--color4-1);
}

.footer {
	background-color: var(--color9);
	color: var(--color10);
	border-radius: 50px 50px 0px 0px;
	font-size: 0.61rem;
}

/* MODAL */

.modal {
	display: none;
	position: fixed;
	z-index: 1001;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(36, 36, 36, 0.7);
}

.modal-content {
	background-color: white;
	margin: 2% auto;
	padding: 10px;
	width: 70%;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
	border-radius: 30px;
}

/* Responsive iframe container */
.responsive-iframe-container {
	position: relative;
	padding-bottom: 70%;
	/* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
	max-width: 100%;
	margin-bottom: 0px;
}

.responsive-iframe-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	z-index: 1003;
}

.close {
	float: right;
	cursor: pointer;
	padding: 5px 16px;
	font-size: 1.4rem;
	font-weight: bold;
	background-color: var(--color7);
	color: #f8f8f8;
	transition: 0.3s ease-in-out;
}

.close:hover {
	background-color: var(--color4);
	color: #f8f8f8;
}

.textLeft {
	text-align: left;
}

.textRight {
	text-align: right;
}

/* All Mobile Devices */

@media screen and (max-width: 38em) {
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-size: 1rem;
	}

	body {
		font-size: 0.8rem;
	}

	.top-bar {
		border-radius: 0px 0px 30px 30px;
		padding-bottom: 0px;
	}

	.footer {
		border-radius: 30px 30px 0px 0px;
		padding-top: 10px;
	}

	.anchor-offset {
		border-top: 8px solid var(--color1);
		height: 0px;
	}

	.padding-1 {
		padding: 0.7rem;
	}

	.padding-left-1 {
		padding-left: 0.5rem !important;
	}

	.margin-left-2 {
		margin-left: 0.5rem !important;
	}

	.margin-right-2 {
		margin-right: 0.5rem !important;
	}

	.margin-bottom-1 {
		margin-bottom: 0.8rem !important;
	}

	.textLeft,
	.textRight {
		text-align: center !important;
	}

	.postit {
		border-radius: 10px;
	}

	.postit ul {
		border-radius: 10px;
		font-size: 0.8rem;
	}
	.bannersFlat {
		background-color: var(--color7);
		color: var(--color8);
		border-radius: 15px 15px 0px 0px;
		border: none;
	}
	.bannersFlat .pin {
		font-size: 2rem;
	}

	.no-bullet,
	.button.large {
		font-size: 1rem;
	}

	.modal-content {
		margin: 2% auto;
		padding: 3px;
		width: 93%;
		height: 93%;
		border-radius: 15px;
	}

	.responsive-iframe-container {
		padding-bottom: 100%;
		height: 100%;
		z-index: 1002;
	}

	.close {
		padding: 5px 12px;
		font-size: 1rem;
	}

	.top-bar img,
	.footer img {
		max-width: 150px !important;
	}
	.banners {
		border-radius: 15px;
	}
}

/* iPads Portrait */

@media only screen and (min-width: 760px) and (max-width: 775px) {
	.numbers .padding-1 {
		padding: 13rem;
	}

	.modal-content {
		margin: 2% auto;
		padding: 3px;
		width: 93%;
		height: 93%;
		border-radius: 15px;
	}

	.responsive-iframe-container {
		padding-bottom: 100%;
		height: 100%;
		z-index: 1002;
	}
}

/* Nexus Portrait */

@media only screen and (min-width: 776px) and (max-width: 984px) {
	.numbers .padding-1 {
		padding: 2rem;
	}

	.top-bar {
		border-radius: 0px 0px 40px 40px;
	}

	.top-bar ul li a {
		font-size: 0.6rem;
	}

	.modal-content {
		margin: 2% auto;
		padding: 3px;
		width: 93%;
		height: 93%;
		border-radius: 15px;
	}

	.responsive-iframe-container {
		padding-bottom: 100%;
		height: 100%;
		z-index: 1002;
	}
}

/* 1280x720 */

@media only screen and (min-width: 720px) and (max-width: 1280px) {
	.top-bar ul li a {
		font-size: 0.6rem;
	}

	.modal-content {
		margin: 2% auto;
		padding: 3px;
		width: 93%;
		height: 93%;
		border-radius: 15px;
	}

	.responsive-iframe-container {
		padding-bottom: 100%;
		height: 100%;
		z-index: 1002;
	}
}

/* iPads Landscape */

@media only screen and (min-width: 776px) and (max-width: 1024px) {
	.modal-content {
		margin: 2% auto;
		padding: 3px;
		width: 93%;
		height: 93%;
		border-radius: 15px;
	}

	.responsive-iframe-container {
		padding-bottom: 100%;
		height: 100%;
		z-index: 1002;
	}
}
