:root {
	/*--bs-dark-rgb: 68,131,140;*/
	--bs-dark-rgb: 2,2,140;
	--bs-dark-hex: 44838C;
}

/* ===== style ===== */
html, p, body, ul, li, a, div, span, label, input, button, i, em, b, strong {
	font-family: 'Montserrat', sans-serif;
	color: var(--color-dark-blue);
	font-size: 17px;
}

img {
	max-width: 100%;
}

a, button, input, textarea, .form-control {
	transition: all 0.3s;
	cursor: pointer !important;
}

a {
	color: rgb(var(--bs-dark-rgb));
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	color: rgb(var(--bs-dark-rgb));
}

hr {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.no-underline {
	text-decoration: none !important;
}

.full-height {
	height: 100%;
}

/* ===== top bar ===== */
.top-social-bar {
	padding-top: 5px;
	padding-bottom: 5px;
}

.top-social-bar .d-flex {
	justify-content: flex-end;
}

.top-social-bar a {
	color: rgb(var(--bs-dark-rgb));
    display: block;
    border: 1px solid rgb(var(--bs-dark-rgb));
    margin-right: 5px;
    margin-left: 5px;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    padding: 3px 5px;
    text-align: center;
}
.top-social-bar a:hover{
	color: #fff;
	background: rgb(var(--bs-dark-rgb));
}

/* ===== menu ===== */
.logo {
    width: 100%;
    max-width: 140px;
    position: absolute;
    top: -30px;
}
.navbar {
	--bs-navbar-nav-link-padding-x: 15px;
}
.navbar-nav {
	--bs-nav-link-padding-y: 20px;
}
.nav-link {
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
}
.navbar-dark, .navbar[data-bs-theme=dark] {
	--bs-navbar-toggler-border-color: #fff;
}
.navbar-collapse {
	justify-content: end;
}

/* ===== header ===== */
.header {
	background: url('../images/bg.jpg') center center no-repeat;
	background-size: cover;
}

.header .overlay {
	background-color: rgba(255, 255, 255, 0.5);
	padding: 100px 0 0 0;
	text-shadow: 0 0 15px #fff;
	color: #000;
}

/* ===== tax links ===== */
.tax-links {
	max-width: 300px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.tax-links:hover {
	transform: scale(1.02);
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* ===== states svg ===== */
#us-map{
    display: block;
    width: 100%;
    height: 100%;
}
path:hover, circle:hover {
    stroke: #002868 !important;
    stroke-width:2px;
    stroke-linejoin: round;
    fill: #002868 !important;
    cursor: pointer;
}
#info-box {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    background-color: #ffffff;
    border: 2px solid #000;
    border-radius: 5px;
    padding: 5px 10px;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
#info-box a,
#info-box span {
    font-size: 15px;
}

/* ===== affiliate links (sidebar) ===== */
.affiliate-links { 
	overflow: hidden;
	display: inline-block;
	margin-bottom: 15px;
	text-align: right;
	max-width: 300px;
}
.affiliate-links img {
	background-color: #fff;
	border-radius: 0.375rem;
	padding: 10px;
}

/* ===== calendar ===== */
.google-calendar-pg {
	min-height: 600px;
	width: 100%;
}

/* ===== scroll to top ===== */
#scrollToTopBtn {
	position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgb(var(--bs-dark-rgb));
    color: white;
    border: none;
    border-radius: 50%;
    padding: 10px;
    font-size: 15px;
    cursor: pointer;
    display: none;
    transition: background-color 0.3s ease-in-out;
    height: 42px;
    width: 42px;
    border: 1px solid #fff;
}

#scrollToTopBtn:hover {
	background-color: #00474f;
}

/* ===== footer ===== */
footer {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-menu a {
	color: #000;
	text-decoration: none;
	margin: 5px 10px;
}
.footer-menu a:hover{
	text-decoration: underline;
}

.copyright-message {
	color: #757575;
    font-size: 90%;
}

/* ===== media queries ===== */
@media screen and (max-width: 991px) {
	.top-social-bar .d-flex {
		/*justify-content: center;*/
	}
	.navbar-collapse {
		justify-content: center;
	}
	.navbar {
		--bs-navbar-padding-y: 15px;
	}
	.logo {
	    max-width: 100px;
	    top: -15px;
	}
	.navbar-nav {
	    --bs-nav-link-padding-y: 10px;
	    text-align: center;
	}
	.tax-links {
		max-width: 250px;
	}
	.google-calendar-pg {
		min-height: 500px;
	}
	.affiliate-links {
		text-align: center;
		max-width: 250px;
	}
}