@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Caption:wght@400;700&display=swap');

body {
	font-family: 'PT Sans Caption', sans-serif;
    font-weight: 400;
    line-height: 1.2;
}

span {
	font-size: 1.25rem;
	margin-top: 0;
    margin-bottom: 0.5rem;
}

p, .contact-us p, li {
	font-size: 1.25rem;
}

.contact-us a {
	color: inherit!important;
}

.bold, h1, h2, h3, .btn, .text1, .text2, .text3, .text4 {
	letter-spacing: 0.25rem;
	font-weight: 700;
}

.nav-link, .navbar-text, .bg-black, .white-text, .text3, .text4, .light-font {
	color: hsl(0deg 0% 100% / 90%)!important;
}

.ls-0, .nav-link, .btn, .navbar-text {
	letter-spacing: 0;
}

.nav-link, .btn, .footer {
	font-size: 1.25rem;
}

.navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

@media (min-width: 768px) {
	.container-fluid, .container {
	    padding-right: 3rem;
	    padding-left: 3rem;
	    margin-bottom: 6rem;
	}
}

.bg-black {
	background-color: #060709!important;
}

.centered {
	text-align: center;
}

.right {
	text-align: right;
}

.footer, .footer a {
	color: #5e5e5e!important;
}

.footer hr {
	background-color: #5e5e5e;
	opacity: 1;
}

.w-45 {
	width: 49%!important;
} 

.swiper {
	padding-left: calc(var(--mdb-gutter-x)*0.5)!important;
}

.swiper-slide a {
    cursor: pointer;
}

.modal {
	background-color: rgb(0 0 0 / 60%);
}

.swal2-x-mark-line-left, .swal2-x-mark-line-right, .swal2-success-line-long, .swal2-success-line-tip {
	font-size: 1rem;
}

.pulse-button {
	cursor: pointer;
    width: 140px;
    height: 45px;
    position: relative;
    text-align: center;
    line-height: 1rem;
    border-radius: 45px;
    padding-top: 0.4rem;
    margin: 0px 5px;
    font-size: 1rem;
    background: #b3b3b3;
}

.pulse-button:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    border: 1px solid rgba(255,255,255,.1);
    animation: pulse 4s linear infinite;
    border-radius: 999px;
    box-shadow: inset 0px 0px 15px 10px rgba(255,255,255,.1);
}

@keyframes pulse {
	0% {
		transform: scale(.99);
		opacity: 0;
		border: 1px solid rgba(255,255,255,0);
		box-shadow: inset 0px 0px 15px 10px rgba(255,255,255,0);
	}

	30% {
		transform: scale(1);
		opacity: 0.6;
		border: 1px solid rgba(255,255,255,.5);
		box-shadow: inset 0px 0px 15px 10px rgba(255,255,255,.5);
	}

	40% {
		transform: scale(1.05, 1.1);
		opacity: .85;

		border: 1px solid rgba(255,255,255,.4);
		box-shadow: inset 0px 0px 15px 10px rgba(255,255,255,.4);
	}

	70% {
		transform: scale(1.125, 1.25);
		opacity: .55;
		border: 1px solid rgba(255,255,255,.3);
		box-shadow: inset 0px 0px 15px 10px rgba(255,255,255,.3);
	}

	80% {
		transform: scale(1.15, 1.3);
		opacity: .3;
		border: 1px solid rgba(255,255,255,.2);
		box-shadow: inset 0px 0px 15px 10px rgba(255,255,255,.2);
	}

	100% {
		transform: scale(1.175, 1.35);
		opacity: 0;
		border: 1px solid rgba(255,255,255,.0);
		box-shadow: inset 0px 0px 15px 10px rgba(255,255,255,0);
	}

}