@charset "UTF-8";

/* ======================================================
	01. Font Family
====================================================== */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-display: swap;
}

/* ======================================================
	02. Variables
====================================================== */

h1 {
	font-size: 47px;
	font-weight: 700;
	line-height: 1.2;
}

h2 {
	font-size: 33px;
	font-weight: 700;
	line-height: 1.2;
}

h3 {
	font-size: 27px;
	font-weight: 700;
	line-height: 1.2;
}

h4 {
	font-size: 23.5px;
	font-weight: 700;
	line-height: 1.2;
}

h5 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

h6 {
	font-size: 17.5px;
	font-weight: 700;
	line-height: 1.2;
}

p,
span {
	font-size: 16px;
	line-height: 1.5;
}

small {
	font-size: 13px;
	line-height: 1.2;
}

.h-80vh {
	height: 80vh;
}

/* ======================================================
	03. General Styles
====================================================== */

.button-pulse {
	text-align: center;
	-webkit-animation: button-shadow-pulse 1.5s infinite;
					animation: button-shadow-pulse 1.5s infinite;
}

@-webkit-keyframes button-shadow-pulse
{
  0% {
		-webkit-box-shadow: 0 0 0 0px #fff;
		        box-shadow: 0 0 0 0px #fff;
  }
  100% {
		-webkit-box-shadow: 0 0 7px 20px rgba(0, 112, 244, 0);
		        box-shadow: 0 0 7px 20px rgba(0, 112, 244, 0);
  }
}

@keyframes button-shadow-pulse
{
  0% {
		-webkit-box-shadow: 0 0 0 0px #fff;
		        box-shadow: 0 0 0 0px #fff;
  }
  100% {
		-webkit-box-shadow: 0 0 7px 20px rgba(0, 112, 244, 0);
		        box-shadow: 0 0 7px 20px rgba(0, 112, 244, 0);
  }
}

/* ======================================================
	04. Popup
====================================================== */

.popup-background {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.5s ease, visibility 0s linear 0.5s;
	-o-transition: opacity 0.5s ease, visibility 0s linear 0.5s;
	transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}

.popup-background.show {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.5s ease, visibility 0s;
	-o-transition: opacity 0.5s ease, visibility 0s;
	transition: opacity 0.5s ease, visibility 0s;
}

.popup-content {
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	position: relative;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
	        box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
	width: 80%;
	max-width: 800px;
	height: auto;
}

.close-icon {
	position: fixed;
	top: 10px;
	right: 10px;
	color: #fff;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	z-index: 1000;
}