/*	typography */
@import url("https://fonts.googleapis.com/css?family=Anton:300,400,500|Poppins:300,400,500,600,700&display=swap");

:root {
	--gj-light: #f3f3f3;
	--gj-dark: #1d1e3b;
	--gj-yellow: #e5b539;
	--gj-trans: #ffffff00;
	--gj-midgrey: #808080;
	--gj-player: #3d3d55;
}

body {
	line-height: 1.2em;
	font-family: "Poppins", sans-serif;
	-webkit-font-smoothing: antialiased;
	font-size: 18px;
	color: #000;
}

p {
	font-weight: 400;
	color: var(--gj-dark);
	font-size: 18px;
	line-height: 1.7;
	font-family: "Poppins", sans-serif;
}

.lead {
	font-size: 18px;
}

.display-1 {
	font-size: 100px;
}
@media (max-width: 575px) {
	.display-1 {
		font-size: 50px;
	}
}

h1, h2, h3, h4, h5, h6 {
	color: var(--gj-dark);
	font-family: "Anton", sans-serif;
	line-height: 1.2;
}

h1, .h1 {
	font-size: 45px;
}
@media (max-width: 575px) {
	h1, .h1 {
		font-size: 40px;
	}
}

h2, .h2 {
	font-size: 40px;
}
@media (max-width: 575px) {
	h2, .h2 {
		font-size: 36px;
	}
}

h3, .h3 {
	font-size: 34px;
}
@media (max-width: 575px) {
	h3, .h3 {
		font-size: 30px;
	}
}

h4, .h4 {
	font-size: 24px;
}

h5, .h5 {
	font-size: 18px;
}

h6, .h6 {
	font-size: 14px;
}

.small-text p,
.small-text h1,
.small-text h2,
.small-text h3,
.small-text h4,
.small-text h5,
.small-text h6 {
	font-size: 80%;
}

@media (max-width: 575px) {
	.grow-sm {
		font-size: 1.5rem;
	}
}

.icon-lg {
	font-size: 50px;
}

.icon {
	font-size: 40px;
}

.icon-sm {
	font-size: 30px;
}

.icon-xs {
	font-size: 20px;
}


/* preloader */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
}

ol,
ul {
	list-style-type: none;
	margin: 0px;
}

ul:not(.navbar-nav) {
	line-height: 2em;
	margin-bottom: 20px;
}

img {
	vertical-align: middle;
	border: 0;
}

a {
	color: var(--gj-dark);
}

a,
.btn {
	text-decoration: none;
	border-bottom: solid 1px var(--gj-midgrey);
}

.btn {
	color: var(--gj-light);
}

a,
a:hover,
a:focus, {
	color: var(--gj-light);
	text-decoration: none;
	border-bottom: solid 1px var(--gj-yellow);
}

a,
button,
select {
	cursor: pointer;
	transition: 0.2s ease;
}
a:focus,
button:focus,
select:focus {
	text-decoration: none;
	outline: 0;
}

a:hover {
	text-decoration: none;
	color: var(--gj-yellow);
	border-bottom: solid 1px var(--gj-yellow);
}

a.imglink,
img.imglink {
	text-decoration: none;
	border: none;
	padding: 11px;
}

a.text {
	text-wrap: nowrap;
}

.bg-secondary p,
.bg-secondary a,
.bg-secondary ul,
.bg-secondary .list-group-item {
	color: var(--gj-light);
}

.bg-secondary .list-group-item {
	background-color: var(--gj-dark) !important;
}

.bg-secondary a:hover,
.bg-secondary a:focus {
	color: var(--gj-yellow) !important;
}

.bg-lightgrey {
	background-color: var(--gj-light);
}

a.imglink:hover,
a.imglink:focus {
	text-decoration: none;
	border: none;
}

.imglink img:hover,
.imglink img:focus {
	text-decoration: none;
	filter: drop-shadow(0 0 2px var(--gj-yellow));
}

/* Button style */
.btn {
	font-size: 18px;
	font-family: "Poppins", sans-serif;
	padding: 13px 45px;
	border-radius: 16px;
	color: var(--gj-light);
	font-weight: 600;
	border: 2px solid;
	position: relative;
	z-index: 1;
	transition: 0.2s ease;
}
.btn:hover, .btn:active, .btn:focus {
	text-decoration: none;
	color: var(--gj-yellow);
	border: 2px solid var(--gj-yellow);
	/*background-color: var(--gj-midgrey) !important;*/
	box-shadow: none;
}

.btn-primary.focus,.btn-primary:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus {
		box-shadow: none !important; /* override bootstrap 4 */
}

.btn-primary.focus, .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--gj-midgrey) !important;
    border-color: var(--gj-yellow);
}

.btn-lg {
	text-decoration: none;
	font-size: 20px;
	padding: 20px 90px;
}

.btn-fixed {
	padding: 12px;
	width: 140px;
}

.btn-primary {
	text-decoration: none;
	background: linear-gradient(37deg, rgb(74 75 99) 1%, rgb(98 100 135) 100%);
	border: 2px solid var(--gj-dark);
}
.btn-primary:active, .btn-primary:hover, .btn-primary.focus, .btn-primary.active {
	text-decoration: none;
	border: 2px solid var(--gj-yellow);
}

.btn-outline-primary {
	background: transparent;
	color: var(--gj-dark);
	border: 2px solid var(--gj-dark);
}

.btn-outline-secondary {
	background: transparent;
}

.btn-outline-primary:active, .btn-outline-primary:hover, .btn-outline-primary.focus, .btn-outline-primary.active, .btn-outline-secondary:hover {
	background: transparent;
	color: var(--gj-dark);
	border: 2px solid var(--gj-yellow);
}

.btn-secondary {
	background: var(--gj-dark);
	color: #fff;
	border: 2px solid var(--gj-light);
}
.btn-secondary:active, .btn-secondary:hover, .btn-secondary.focus, .btn-secondary.active {
	background: var(--gj-dark) !important;
	color: #fff;
	border: 2px solid var(--gj-yellow);
}

.btn-outline-light {
	background: transparent;
	color: #fff;
	border: 2px solid var(--gj-light);
}
.btn-outline-light:active, .btn-outline-light:hover, .btn-outline-light.focus, .btn-outline-light.active {
	background: #fff !important;
	color: #000;
	border: 2px solid var(--gj-yellow);
}

.slick-slide {
	outline: 0;
}

.agency-slider {
	max-width: calc(382px + 15px + 15px); /* actual image size + padding */
	margin: 0 auto;
}

.poster-slider {
	max-width: 240px;
	margin: 0 auto;
}

.section {
	margin-top: 40px;
	margin-bottom: 60px;
}

.section-sm {
	margin-top: 40px;
	margin-bottom: 40px;
}
.section-undernav {
	margin-top: 82px;
	margin-bottom: 60px;
}

.section-smtop {
	margin-top: 5px;
	margin-bottom: 40px;
}

.section-smbtm {
	margin-top: 40px;
	margin-bottom: 5px;
}


.section-xsm {
	margin-top: 5px;
	margin-bottom: 5px;
}

.section-flush {
	margin-top: 0;
	margin-bottom: 0;
}

.section-under,
.section-border {
	height: 9px;
	width: 220px;
	background: linear-gradient(37deg, rgb(74 75 99) 1%, rgb(98 100 135) 100%);
	border-radius: 5px;
}

.section-under {
	margin: 30px auto 50px;
}

.section-border {
	margin: 50px auto 50px;
}

.section-thin {
	height: 2px;
	width: 220px;
	background: linear-gradient(37deg, rgb(74 75 99) 1%, rgb(98 100 135) 100%);
	margin: 1rem auto;
}

@media (max-width:576px) {
	.section,
	.section-sm,
	.section-lg,
	.section-smtop,
	.section-smbtm,
	.section-xsm {
		margin-top: 0;
		margin-bottom: 0;
	}
	.section-under {
		margin: 20px auto;
	}
}

.container, .container-fluid {
	padding: 40px 20px 60px;
}

.container-850,
.container-1100 {
	padding: 40px 20px;
	max-width: 1100px;
	margin-right: auto;
	margin-left: auto;
	width: 100%;
}

.container-850 {
	max-width: 850px;
}

.container-1100 {
	max-width: 1100px;
}

.bg-cover {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.bg-contain {
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}

.bg-contain-right {
	background-size: contain;
	background-position: center right;
	background-repeat: no-repeat;
}

.bg-contain-left {
	background-size: contain;
	background-position: center left;
	background-repeat: no-repeat;
}

@media (max-width:576px) {
	.bg-contain,
	.bg-contain-left,
	.bg-contain-right {
		background-size: cover;
	}
	.centre-sm {
		background-position: center center;
	}
}

.border-primary {
	border-color: #d2d2e2 !important;
}

.sticker {
	border: 0;
	border-radius: 8px;
}

.homestar {
	width: 100px;
	height: 100px;
}

@media (max-width:992px) {
	.homestar {
		width: 60px;
		height: 60px;
	}
}

@media (max-width:576px) {
	.img-shrink {
		max-width: 75px;
	}
}

@media (min-width:992px) {
	.hide-lg {
		display: none;
	}
}

@media (max-width:768px) {
	.hide-md {
		display: none;
	}
}

@media (max-width:576px) {
	.hide-sm {
		display: none;
	}
}

.show-sm {
	display: none;
}

@media (max-width:576px) {
	.show-sm {
		display: initial;
	}
}

.show-md {
	display: none;
}

@media (max-width:768px) {
	.show-md {
		display: initial;
	}
}


.show-lg {
	display: none;
}

@media (min-width:992px) {
	.show-lg {
		display: block;
	}
}

/* overlays */
.overlay,
.overlay-primary,
.overlay-secondary,
.overlay-primary-left,
.overlay-secondary-left,
.overlay-primary-right,
.overlay-secondary-right,
.overlay-primary-centre {
	position: relative;
}
.overlay::before,
.overlay-primary::before,
.overlay-secondary::before,
.overlay-primary-left::before,
.overlay-primary-right::before,
.overlay-secondary-left::before,
.overlay-secondary-right::before,
.overlay-primary-centre::before {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
;
}
.overlay::before {
	background: #000;
	opacity: 0.8;
}
.overlay-primary::before {
	background: var(--gj-dark);
	opacity: 0.8;
}
.overlay-primary-left::before {
	background: linear-gradient(to right, #fff 50%, transparent);
}
.overlay-primary-right::before {
	background: linear-gradient(to left, #fff 50%, transparent);
}
.overlay-primary-centre::before {
	background: linear-gradient(90deg, #FFFFFF10 0%, #FFFFFFED 40%, #FFFFFFED 60%, #FFFFFF10 100%);
}
.overlay-secondary::before {
	background:  var(--gj-dark);
	opacity: 0.8;
}
.overlay-secondary-left::before {
	background: linear-gradient(to right, var(--gj-dark) 50%, transparent);
}
.overlay-secondary-right::before {
	background: linear-gradient(to left, var(--gj-dark) 50%, transparent);
}

@media (max-width: 575px) {
	.overlay-primary-centre::before {
		background: linear-gradient(90deg, #FFFFFF10 0%, #FFFFFFED 30%, #FFFFFFED 70%, #FFFFFF10 100%);
	}
}
.overlay-image {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}

.outline-0 {
	outline: 0 !important;
}

.d-unset {
	display: unset !important;
}

.bg-primary {
	background: #fff !important;
}

.bg-secondary {
	background: var(--gj-dark) !important;
}

.text-primary {
	color: var(--gj-dark) !important;
}

.text-secondary {
	color: var(--gj-light) !important;
}

.text-gradient-primary {
	background: linear-gradient(37deg, rgb(244 215 78) 1%, rgb(221 166 47) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-yellow {
	color: var(--gj-yellow) !important;
}

.text-light {
	color: #fff !important;
}

.text-color {
	color: #6c6c86 !important;
}

.text-onblk {
	text-shadow: 0 0 1px black, 0 0 2px black, 0 0 3px black;
}

.mb-10 {
	margin-bottom: 10px !important;
}

.mb-20 {
	margin-bottom: 20px !important;
}

.mb-30 {
	margin-bottom: 30px !important;
}

.mb-40 {
	margin-bottom: 40px !important;
}

.mb-50 {
	margin-bottom: 50px !important;
}

.mb-60 {
	margin-bottom: 60px !important;
}

.mb-70 {
	margin-bottom: 70px !important;
}

.mb-80 {
	margin-bottom: 80px !important;
}

.mb-90 {
	margin-bottom: 90px !important;
}

.mb-100 {
	margin-bottom: 100px !important;
}

.zindex-1 {
	z-index: 1;
}

.top-100 {
	top: 100px;
}

.overflow-hidden {
	overflow: hidden !important;
}

.font-primary {
	font-family: "Poppins", sans-serif !important;
}

.font-secondary {
	font-family: "Anton", sans-serif !important;
}

.shadow {
	box-shadow: 14px 14px 30px -5px rgba(0,0,0,0.55) !important;
	-webkit-box-shadow: 14px 14px 30px -5px rgba(0,0,0,0.55) !important;
	-moz-box-shadow: 14px 14px 30px -5px rgba(0,0,0,0.55) !important;
}

.bg-gradient-primary {
	background: linear-gradient(37deg, rgb(74 75 99) 1%, rgb(98 100 135) 100%) !important;
}

.transition {
	transition: 0.5s ease;
}

.vertical-align-middle {
	vertical-align: middle;
}

/* form control */
.form-control {
	height: 50px;
	border-radius: 0;
	border: 0;
	border-bottom: 1px solid #d2d2e2;
}
.form-control:focus {
	box-shadow: none !important;
	border-color: #f7463a;
}

textarea.form-control {
	height: 150px;
}

/* page-title */
.page-title {
	padding: 170px 0 190px;
}

/* list style */
.list-styled {
	padding-left: 0;
}
.list-styled li {
	position: relative;
	padding-left: 25px;
	list-style-type: none;
}
.list-styled li::before {
	position: absolute;
	content: url('/images/stars/white.svg');
	left: 0;
	top: 0px;
	color: var(--gj-dark);
	transition: 0.3s ease;
}

.inline {
    display: inline-block;
}

.list-group {
	margin-bottom: 20px;
}

.list-group-item {
	padding: 0.75rem 0;
	border: none;
}

.list-group-item:focus, .list-group-item:hover {
	z-index: 0;
}

.list-group li {
	border: solid 1px #00000000;
}

@media (max-width: 575px) {
    .list-group li {
        border-top: solid 1px #80808060; /* var(--gj-midgrey) with trans */;
    }
	.list-group li:last-child {
        border-bottom: solid 1px #80808060; /* var(--gj-midgrey) with trans */;
	}
}

ul.star {
	margin-bottom: 40px;
}

.star li {
/* so text wraps right of star */
	margin-left: 0; /* was 1.5rem */
	text-indent: -18px; /* was -1rem */
}

.star li:before {
	content: url(/images/stars/menu-star.svg);
	display: inline-block;
	width: 18px;
	/*filter: grayscale(100%) brightness(300%); turns star white */
}

@media (max-width: 575px) {
    .star li {
        margin-left: -2.5rem;
        border-top: solid 1px #80808060; /* var(--gj-midgrey) with trans */;
        text-indent: -1.2rem;
        padding: 8px 0 8px 2.3rem;
    }
	.star li:last-child {
        border-bottom: solid 1px #80808060; /* var(--gj-midgrey) with trans */;
	}
}

/* social icons */
.social-icons a {
	display: block;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	line-height: 50px;
	background: var(--gj-dark);
	color: #fff;
	text-align: center;
}

/* logo, banner ,nav */
.logo-state {
	display: none;
}
.navigation {
	padding: 8px 16px;
}
.nav-bg {
	background-color: var(--gj-dark);
	transition: background-color 0.6s ease;
}

.nav-shadow {
	box-shadow: 1px 0 12px #000;
}

@media (max-width: 991px) {
	.logo-state {
		display: inline-block;
	}
}
@media (max-width: 991px) {
	.navigation {
		background: var(--gj-dark);
	}
}
.navbar-dark .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar .nav-item .nav-link {
	font-family: "Poppins", sans-serif;
	padding: 15px;
	font-size: 18px;
}

.navbar a {
	border-bottom: none;
}

.navbar a:hover,
.navbar a:focus {
	border-bottom: none;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: var(--gj-yellow);
}

@media (max-width: 991px) {
	.navbar-nav {
		border-top: 1px solid #4d4d4d;/*light grey*/
    	margin-top: 20px;
	}
	.nav-item {
        padding-top: 15px;
        background: var(--gj-dark);
        border-bottom: solid 1px var(--gj-trans);
        margin-left: 20px;
	}
	.nav-item:hover,
	.nav-item:focus {
		color: var(--gj-light);
		text-decoration: none;
		border-bottom: solid 1px var(--gj-yellow);
	}
	.nav-link:before {
		content: url('/images/stars/menu-star.svg');
		display: inline-block;
		width: 15px;
		margin-right: 10px;
		filter: grayscale(100%) brightness(300%);
	}
	.nav-link:hover::before {;
		filter: none;
	}
}
.navbar .nav-item.active {
	font-weight: bold;
}
.navbar .dropdown-menu {
	box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
	padding: 15px;
	border: 0;
	top: calc(100% - 2px);
	left: -10px;
	border-radius: 0;
	background: #fff;
}
.navbar .dropdown-menu.show {
	display: block !important;
}
.navbar .dropdown-item {
	position: relative;
	color: #000;
	transition: 0.2s ease;
	font-family: "Poppins", sans-serif;
	padding: 10px;
	text-decoration: none;
	margin-bottom: 0 !important;
}
.navbar .dropdown-item:not(:last-child) {
	margin-bottom: 10px;
}
.navbar-dark .navbar-nav .nav-link {
	color: #fff;
}
.navbar-nav .nav-link:focus, .navbar-nav .nav-link:hover {
    color: var(--gj-yellow);
}

.navbar-dark .navbar-toggler {
	color: rgba(255,255,255,.5);
	border: none !important;
}

/* menu toggle*/
.navbar-toggler span {
	display: block;
	background-color: var(--gj-light);
	height: 3px;
	width: 25px;
	border-radius: 2px;
	margin-top: 5px;
	margin-bottom: 5px;
	position: relative;
	left: 0;
	opacity: 1;
	transition: all 0.35s ease-out;
	transform-origin: center left;
}
.navbar-toggler span:nth-child(1) {
	margin-top: 0.3em;
}
.navbar-toggler:not(.collapsed) span:nth-child(1) {
	transform: translate(15%, -33%) rotate(45deg);
}
.navbar-toggler:not(.collapsed) span:nth-child(2) {
	opacity: 0;
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
	transform: translate(15%, 33%) rotate(-45deg) ;
}
.navbar-toggler span:nth-child(1) {
	transform: translate(0%, 0%) rotate(0deg) ;
}
.navbar-toggler span:nth-child(2) {
	opacity: 1;
}
.navbar-toggler span:nth-child(3) {
	transform: translate(0%, 0%) rotate(0deg) ;
}
/* stars background*/
#starfield-lg,
#starfield-sm {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: -1;
	background-color: #000;
	background-image: linear-gradient(to bottom, rgba(0,0,0,1) 95%, rgba(0,0,0,0));
}

#starfield-lg {
	height: 90vh;
}

#starfield-sm {
	height: 50vh;
}

.banner-lg {
	height: 90vh;
	background-image: url('/images/header/banner.webp');
	background-repeat: no-repeat;
	background-position: center center;
}

.banner-msg {
	height: 90vh;
	padding-top: 70px; /* allow for menu */
}

.banner-sm {
	height: 50vh;
	background-image: url('/images/header/bannersm.webp');
	background-repeat: no-repeat;
	background-position: center 66%;
	background-repeat: no-repeat;
}

@media (max-width: 600px) {
	#starfield-lg {
		height: 100vmin;
	}
	.banner-lg {
		background-position: 50% 70%;
		background-size: 80vw;
		height: 100vmin;
	}
	.banner-msg {
		height: 100vmin;
	}
}

@media (max-width: 400px) {
	#starfield-sm {
		height: 100vmin;
	}
	.banner-lg,
	.banner-sm {
		background-image: url('/images/header/bannersm.webp');
		background-position: 50% 70%;
		background-size: 80vw;
		height: 100vmin;
	}
	.banner-msg {
		padding-top: 60px; /* allow for menu */
	}
}

.content-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.icon-box {
	height: 100px;
	width: 100px;
	background-color: #000;
}

.icon-box-sm {
	height: 80px;
	width: 80px;
}

.icon-watermark {
	position: absolute;
	left: 50%;
	top: 32%;
	transform: translate(-50%, -50%);
	opacity: 0.1;
	transition: inherit;
}

.icon-middle {
	position: relative;
	top: 25%;
}

.bg-image {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: auto;
}
.bg-image img {
	height: 100%;
	max-width: 100%;
}
@media (max-width: 991px) {
	.bg-image img {
		display: none;
	}
}
@media (max-width: 767px) {
	.bg-image img {
		display: block;
		height: auto;
	}
}

.hover-shadow::before {
	transition: 0.3s ease;
	position: absolute;
	height: 100%;
	box-shadow: 0px 33px 49px 0px rgba(190, 193, 228, 0.31);
	width: 100%;
	left: 0;
	right: 0;
	z-index: 1;
	content: "";
	opacity: 0;
}
.hover-shadow:hover::before {
	opacity: 1;
}

/* audio pages */
.pp-price-box  {
	width: 130px;
    float: right;
	text-align: right;
}

.pp-total-box {
	width: 130px;
    float: right;
	text-align: right;
    border-top: solid 1px #80808060;
}

@media (max-width: 576px) {
	.pp-total-box {
		border-top: 1px solid var(--gj-trans);
	}
}

/* footer */
.footer-top {
	padding: 40px 60px 50px;
	text-align: left;
	background: url(/images/stars/blue.webp) -20px 100px no-repeat, url(/images/stars/red.webp) 100% -10px no-repeat, url(/images/stars/yellow.webp) 75% 300px no-repeat;
	background-size: 75px;
	background-color: var(--gj-dark);
}

.footer-bottom {
	padding: 16px 0;
	background-color: #000;
}

.footer-top p {
	font-size: 0.9rem;
	line-height: 1.8;
	color: var(--gj-light);
	margin: 2px 2px 10px;	
}

.footer-top a{
	color: var(--gj-light);
}

.footer-top a:hover,
.footer-top a:focus {
	color: var(--gj-yellow);
}

@media (max-width: 576px) {
	.footer-top {
		padding-left: 10%;
	}
	.footer-top p {
		font-size: 1rem;
	}
}

.footer-bottom p {
	font-size: 0.8rem;
	line-height: 1.5;
	color: var(--gj-light);
	margin: 2px 2px 10px;	
}

@media (max-width: 350px) { /*extra small*/
	.footer-top {
		padding-left: 0;
	}
	.footer-bottom p {
		font-size: 0.6rem;
	}
}

.footer-icon {
	font-size: 20px;
	vertical-align: middle;
}

.social-box {
	width: 155px;
}

.footer-social a {
	margin: 0 12px 0 2px;
	border: 0;
}

.footer-bottom a {
	margin-left: 30px;
}

@media (max-width: 767px) { /* fix small pages */
	.fixed-bottom {
		bottom: revert;
	}
}

/* card slider */
@media (max-width: 991px) {
	.ui-card-slider .left-slide::before {
		left: -100px;
	}
}
@media (max-width: 767px) {
	.ui-card-slider .left-slide::before {
		display: none;
	}
}

@media (max-width: 991px) {
	.ui-card-slider .right-slide::before {
		right: -100px;
	}
}
@media (max-width: 767px) {
	.ui-card-slider .right-slide::before {
		display: none;
	}
}

/* google map */
.map {
	height: 500px;
	background-color: #e5e3df; /* while map loads #e5e3df: map faun flash, #f1f3f4: map grey */
}

/*.map:hover,
#gmap_canvas:hover {
	pointer-events: none; /* disable overlay when scrolling
}*/

/* team */
.img-thumb-circle {
	border-radius: 50%;
	overflow: hidden;
	max-height: 260px;
	max-width: 260px;
}

.card-img-top {
	border-radius: 0;
}
.card-header {
	border: 0;
}
.card-body {
	border: 0;
	border-radius: 0;
}