@charset "utf-8";
/* CSS Document */


@media screen and (min-height: 501px) and (orientation:landscape)  {
  body, button, html, input, select, textarea {
      font-size: calc(1vh + 14px);
  }
}

@media screen and (min-width: 501px) and (orientation:portrait) {
	body, button, html, input, select, textarea {
    	font-size: calc(1vw + 14px);
    }
}

@media screen and (max-width: 500px), (max-height: 500px) {
	body, button, html, input, select, textarea {
    	font-size: 15px;
    }
}

* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body, html {
	color: #333;
	font-family: 'Poppins', Arial, "sans-serif";
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

h1, h2, h3, h4, h5, h6 {
	font-size: unset;
	margin: 0px;
}

a {
	text-decoration: none;
}

.action-btn {
	align-items: center;
	border: #000 solid 3px;
	border-radius: 50%;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,.2);
	color: white;
	cursor: pointer;
	display: flex;
	font-family: arial;
	height: 60px;
	justify-content: center;
	margin: 0px;
	width: 60px;
}

.action-btn:disabled {
	cursor: default;
	filter: grayscale(1) brightness(1.3);
}

.action-btn:focus {
	border-color: #000 !important;
}

.action-btn.add, .action-btn.save {
	background-image: radial-gradient(circle at 33% 33%, #3dc136, #005500);
	font-size: 16px;
	font-weight: bold;
}

.action-btn.delete {
	background-image: radial-gradient(circle at 33% 33%, #ff0000, #550000);
	font-family: "Material icons";
	font-size: 35px;
}

.action-btn-container {
	padding: 0px 5px;
	transition: 0.7s;
}

.action-btn-container:hover {
	transform: scale(1.2);
}

.action-btn-img {
	height: 40px;
	width: 40px;
}

.action-btn-wrapper {
	align-items: center;
	bottom: 15px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	margin-left: auto;
	position: sticky;
	position: -webkit-sticky;
	position: -moz-sticky;
	position: -o-sticky;
	width: fit-content;
	z-index: 0;
}

.align-center {
	text-align: center !important;
}

.align-left {
	text-align: left !important;
}

.btn {
	border: solid 1px #fff;
	border-radius: 50px;
	color: white;
	cursor: pointer;
	font-size: 18px;
	margin: 0px auto;
	padding: 15px 20px;
	text-align: center;
	width: 130px;
}

.btn:hover:not([disabled]), .btn-main:hover:not([disabled]) {
	filter: brightness(1.15);
}

.btn-admin {
	width: 50%;
}

.btn-main {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background-color: #0045d2;
	border-radius: 50px;
	color: #fff;
	cursor: pointer;
	margin: 10px;
	min-width: 200px;
	padding: 15px 25px;
}

.btn-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 30px auto 0px auto;
	text-align: center;
	width: 100%;
}

.btn-wrapper:not(:last-of-type) {
	margin-bottom: 20px;
}

button {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	border: none;
	background-color: transparent;
	padding: 0px;
}

.content-flex-img {
	width: 100%;
}

.content-flex-three {
	text-align: center;
	width: 33.33%;
}

.content-flex-two {
	min-width: 33%;
}

.content-flex-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.content-flex-wrapper > div {
	padding: 15px;
	text-align: center;
}

.content-flex-wrapper-center {
	align-items: center;
	justify-content: center;
}

.content-tile-img {
	height: 60px;
	width: 60px;
}

.content-tile-link {
	color: #c2c2c2;
	cursor: pointer;
	font-size: 90%;
	margin-top: 10px;
	text-align: left;
	text-decoration: underline;
}

.content-tile-text {
	color: #777;
	font-size: 90%;
	line-height: 1.5;
	margin-top: 20px;
	text-align: left;
}

.content-tile-text.name {
	margin-top: 40px;
}

.content-tile-text.name, .content-tile-text.quote {
	font-size: 80%;
}

.content-tile-text.quote {
	height: auto;
}

.content-tile-title {
	font-family: 'Montserrat';
	font-size: 125%;
	margin-top: 10px;
}

.dash-select {
	border: solid 1px #c2c2c2;
	border-radius: 5px;
	display: inline-block;
	font-size: 16px;
	margin: 2px;
	outline: none;
}

.delete-contents {
	max-height: 90vh;
	overflow-y: auto;
	padding: 20px;
}

.delete-title {
	font-size: 24px;
	margin: 20px 0px;
	text-align: center;
}

.delete-window {
	background-color: white;
	border-radius: 8px;
	box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, .6);
	margin: auto;
	position: relative;
	top: 50%;
	transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	width: 390px;
}

.error-msg, .success-msg {
	border-radius: 10px;
	color: #fff;
	font-size: 20px;
	margin-bottom: 20px;
	padding: 10px 20px;
	text-align: center;
	width: calc(100% - 22px);
}

.error-msg {
	background-color: crimson;
	border: solid 3px darkred;
}

.flex-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
}

.footer-bottom-wrapper {
	background-color: #000;
	font-size: 14px;
	padding: 10px;
	text-align: center;
}

.footer-column-wrapper {
	display: inline-block;
	width: calc(33% - 5px);
	vertical-align: top;
}

.footer-img {
	display: block;
	height: 150px;
	margin: auto;
}

.footer-title {
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	margin-top: 15px;
	padding: 8px 10px;
}

.footer-txt {
	color: #bbb;
	padding: 5px 10px;
	text-decoration: none;
}

.footer-txt a {
	color: #bbb;
	text-decoration: underline;
}

.footer-txt a:hover {
	color: #fff;
}

.footer-wrapper {
	background-color: #2b2e30;
	font-size: 15px;
	padding: 40px;
	transition: 0.5s ease-out;
	-webkit-transition: 0.5s ease-out;
}

.forgot {
	color: dodgerblue;
	cursor: pointer;
	font-size: 16px;
	text-align: right;
	text-decoration: none;
	width: 100%;
}

.form-input {
	min-width: 200px;
	width: 100%;
}

.form-input-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	margin: 10px 0px;
	min-width: 200px;
}

.form-input-wrapper :not(:first-child) {
	margin-left: 8px;
}

.form-input-wrapper input:not([type=submit]):not([type=checkbox]):not([type=range]):not([type=file]), .form-input-wrapper select, .form-input-wrapper textarea, .form-input-wrapper-tall input:not([type=submit]):not([type=checkbox]):not([type=range]):not([type=file]), .form-input-wrapper-tall select, .form-input-wrapper-tall textarea, .form-input-wrapper-tall ul {
	flex: 1;
}

.form-label {
	display: inline-block;
	flex-shrink: 0;
	line-height: 1.5;
	width: 150px;
}

.form-section {
	border-top: solid 1px lightgray;
	justify-content: center;
	padding: 30px 10px;
}

.form-select {
	min-width: 150px;
	width: 100%;
}

.form-slider-basic {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background: #ccc;
	border: 3px solid #ccc;
	border-radius: 25px;
	cursor: pointer;
	height: 28px;
	margin-right: 10px;
	outline: none;
	padding: 0px;
	transition: background .3s, border .3s;
	-webkit-transition: background .3s, border .3s;
	vertical-align: middle;
	width: 54px;
}

.form-slider-basic::-webkit-slider-thumb {
	appearance: none;
	-webkit-appearance: none;
	background: #fff;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	height: 22px;
	width: 22px;
}

.form-slider-basic::-moz-range-thumb {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background: #fff;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	height: 22px;
	width: 22px;
}

.form-slider-fill {
	background-color: dodgerblue;
	border-color: dodgerblue;
}

.form-slider-profile {
	margin-top: 8px;
	margin-bottom: 8px;
}

.grey-bgrnd {
	background-color: #f2f2f2;
}

.grid {
	display: flex;
    flex-wrap: wrap;
    gap: 80px;
    justify-content: center;
    margin: 40px auto;
}

.grid-box {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
	cursor: pointer;
	flex-shrink: 0;
	height: 525px;
	overflow: hidden;
	width: 400px;
}

.grid-box.no-cursor {
	cursor: auto;
}

.grid-content {
	padding: 15px;
}

.grid-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	height: 73%;
    padding: 20px 20px;
    transition: 0.5s;
	width: 100%;
}

.grid-link {
	font-size: 75%;
	text-decoration: underline;
}

.grid-subtitle {
	font-family: var(--title-font);
	font-weight: bold;
}

.grid-title {
	color: #999;
	font-size: 80%;
}

.grid-title + .grid-subtitle {
	margin-top: 3px;
}

#header-bar {
	align-items: center;
	background-image: linear-gradient(to bottom, #383838, #090909);
	box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.3);
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	padding: 0px 20px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	width: 100%;
	z-index: 2;
}

#header-bar[data-scroll='0'] {
	background-image: none;
	box-shadow: none;
}

.header-logo {
	height: 60px;
}

#header-wrapper {
	position: fixed;
	top: 0px;
	width: 100%;
	z-index: 1;
}

.iframe-website {
	border-width: 0px;
	height: 70%;
	overflow: hidden;
	pointer-events: none;
	width: 100%;
}

.img-bgrnd {
	background-color: #D9D9D9;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}

.img-bgrnd-page {
	height: 100vh;
}

.img-btn {
	background-color: transparent;
	border: none;
	border-radius: 0px;
	box-sizing: unset;
	cursor: pointer;
	display: inline-block;
	margin: -2px;
	padding: 0px 7px;
	height: 20px;
	vertical-align: middle;
	width: 20px;
}

.img-btn:disabled {
    filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
	opacity: 0.2;
}

.img-btn:hover {
	opacity: 0.5;
}

.img-large {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	height: 100px;
	margin: 0px auto 10px auto;
	width: 100%;
}

.img-medium {
	height: 50px;
	width: 50px;
}

.img-section {
	max-width: 600px;
	width: 100%;
}

.img-small {
	height: 35px;
	width: 35px;
}

.img-wrapper {
	margin: 40px auto;
	text-align: center;
}

input, label, select, textarea {
	font-size: 18px;
}

input, select, textarea {
	/*background-color: white;*/
	border: solid 1px gainsboro;
	border-radius: 5px;
	margin: 5px 0px;
	outline: none;
	padding: 10px;
}

input:not([type=range]):not([type=submit]):disabled, select:disabled {
	background-color: #f8f8fa;
	color: darkgray;
	cursor: default;
}

input[type=range]:disabled {
	opacity: 0.6;
}

input[type=submit]:disabled {
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
}

input:not([type=range]):focus, select:focus, textarea:focus {
	border-color: dodgerblue;
}

input::placeholder, textarea::placeholder {
	color: #bbb;
}

input::-webkit-calendar-picker-indicator {
  display: none;
}

input[type=submit] {
	color: white;
}

input[type=file], input[type=password], input[type=submit], input[type=search], input[type=text], select {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

input:required[nonvalid], select:required[nonvalid], textarea:required[nonvalid] {
	border-color: red !important;
}

input:required[nonvalid] + label, select:required[nonvalid] + label, textarea:required[nonvalid] + label {
	color: red !important;
}

.login-btn {
	background-color: #0066cc;
	margin-top: 15px;
	min-width: 200px;
	width: 50%;
}

.login-input {
	width: 100%;
}

.login-input-wrapper {
	margin: 10px 0px;
	width: 100%;
}

.login-section-bgrnd {
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0px 2px 12px 2px rgba(0, 0, 0, .5);
	margin: 0px auto;
	max-width: 500px;
	min-width: 240px;
	padding: 40px;
	width: 50%;
}

#logo {
	float: left;
	height: 125px;
	width: 125px;
}

#main-bgrnd {
	background-image: radial-gradient(circle farthest-side at center bottom,#009aef,#02029e 120%);
}

#main-img {
	margin: 0px auto;
	visibility: hidden;
	height: 30vh;
}

#main-subtitle {
	color: #fff;
	font-size: 28px;
	font-weight: normal;
	padding: 10px 40px;
	text-align: center;
	visibility: hidden;
}

#main-title {
	color: #fff; 
	font-family: 'Passion One', Arial, "sans-serif"; 
	font-size: 56px;
	padding: 10px 40px;
	text-align: center;
	text-shadow: 1px 1px 10px #333;
}

#main-wrapper {
	text-align: center;
	width: 100%;
}

.menu-wrapper {
	text-align: right;
	width: 100%;
}

.menu-wrapper > a {
	color: #fff;
	display: inline-block;
	font-size: 18px;
	padding: 5px 10px;
	text-align: center;
}

.menu-wrapper > a:hover {
	color: #d2d2d2;
}

.modal-close {
	color: #333;
	float: right;
	font-size: 28px;
	margin-top: -15px;
}

.modal-close:hover, .modal-close:focus {
	color: #777;
	text-decoration: none;
	cursor: pointer;
}

.modal-success {
	color: #fff;
	padding: 15px;
	text-align: center;
}

.modal-success-close {
	color: #fff;
	float: right;
	font-size: 28px;
	margin-top: -15px;
}

.modal-success-close:hover, .modal-success-close:focus {
	color: #ddd;
	text-decoration: none;
	cursor: pointer;
}

.modal-success-wrapper {
	background-color: limegreen;
	bottom: 0px;
	box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, .2);
	display: none;
	justify-content: center;
	position: fixed;
	width: 100%;
	z-index: 4;
}

.modal-wrapper {
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
	display: none;
	position: fixed;
	z-index: 4;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
}

.overlay {
	background-color: rgba(0,154,255,0.75);
	bottom: 0;
	color: white;
	height: 100%;
	left: 0;
	opacity: 0;
	padding: 30px;
	position: absolute;
	right: 0;
	top: 0;
	transition: .5s ease;
	width: 100%;
}

.overlay-txt {
	line-height: 1.4;
	position: absolute;
	text-align: left;
	width: 100%;
}

#page-bgrnd {
	background-image: radial-gradient(circle farthest-side at center bottom,#009aef,#02029e 120%);
	/*padding: 40px;*/
	min-height: calc(100vh - 116.5px);
}

.para {
	line-height: 1.7;
	margin-top: 20px;
	width: 100%; 
}

.para-small {
	font-size: 85%;
}

.pdf-window {
	height: 500px;
	width: 100%;
}

.popup-btn {
	font-size: 90%;
	min-width: 200px;
}

.popup-close {
	background-color: #111;
	border: solid 2px #fff;
	border-radius: 50px;
	color: #fff;
	cursor: pointer;
	font-family: Arial, sans-serif;
	font-size: 24px;
	font-weight: bold;
	height: 30px;
	left: calc(100% - 18px);
	position: absolute;
	text-align: center;
	top: -12px;
	width: 30px;
}

.popup-close:hover {
	background-color: #393939;
}

.popup-close-wrapper {
	position: relative;
}

.popup-contents {
	max-height: 90vh;
	overflow-y: auto;
}

.popup-contents-container {
	align-items: flex-start;
	display: flex;
	flex-wrap: nowrap;
	max-height: 90vh;
	overflow: auto;
	padding: 30px 20px;
}

.popup-contents-container > * {
	flex: 0 1 auto;
	padding: 20px;
	width: 100%;
}

.popup-img {
	flex-shrink: 0;
	height: 150px;
	width: 250px;
}

.popup-link {
	cursor: pointer;
	margin-top: 10px;
	text-decoration: underline;
}

.popup-text, .popup-link {
	color: #5c5c5c;
	font-size: 18px;
	line-height: 1.5;
	text-align: justify;
}

.popup-title {
	font-size: 30px;
	margin-bottom: 20px;
	text-align: left;
}

.popup-window {
	background-color: white;
	border-radius: 8px;
	box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, .6);
	margin: auto;
	position: relative;
	top: 50%;
	transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	width: 80%;
}

.popup-wrapper {
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
	display: none;
	height: 100%;
	left: 0;
	overflow: auto;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

#portfolio-bgrnd {
	background-image: url("/images/portfolio-img-1.png");
}

.portfolio-content-flex {
	max-width: 33%;
	min-width: 25%;
	position: relative;
}

.portfolio-content-flex:hover .overlay, .portfolio-content-flex:active .overlay {
	opacity: 1;
}

.quote {
	color: #888;
	font-family: 'Patrick Hand';
	font-size: 120%;
	line-height: 1.5;
}

.quote-img {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border: solid 3px #ddd;
	border-radius: 50%;
	flex-shrink: 0;
	height: 190px;
	width: 190px;
}

.quote-name {
	color: #333;
	font-size: 90%;
	margin-top: 15px;
	text-align: right;
}

.quote-wrapper {
	justify-content: space-between;
}

.quote-wrapper > * {
	margin: 20px;
}

.quote-wrapper:nth-child(even) .quote-img {
	order: 2;
}

.section-bgrnd {
	padding: 100px 7%;
}

.section-bgrnd.blue {
	background-image: radial-gradient(circle farthest-side at center bottom,rgba(0,154,239,0.6),#02029e 120%);
}

.section-bgrnd.blue .para, .section-bgrnd.blue .title {
	color: white;
}

.section-bgrnd.top {
	padding-top: 200px;
}

.section-bgrnd-admin {
	padding: 40px;
}

.section-line {
	border: solid 0.5px #ccc;
	margin: 0px 50px;
}

.section-wrapper {
	background-color: #fff;
	/*border-radius: 3px;
	box-shadow: 0px 2px 8px 2px rgba(0,0,0,.2);
	margin: 20px 0px;*/
	width: 100%;
}

.section-wrapper:not(:last-child) {
	border-bottom: solid 5px #aaa;
}

select {
	background-image: url(../images/down-arrow.png);
	background-position: right 7px center;
	background-repeat: no-repeat;
	background-size: 8px;
	padding-right: 20px !important;
}

select::-ms-expand {
    display: none;
}

#select-bgrnd {
	background-color: #d2d2d2;
	box-shadow: 2px 2px 8px 1px rgba(0,0,0,.2);
	color: white;
	overflow: auto;
	padding: 10px 0px;
	z-index: 1;
}

#select-wrapper {
	background-color: #d2d2d2;
	display: flex;
	flex-wrap: nowrap;
	margin: auto 20px;
	padding: 2px;
}

.shift {
	margin-left: 250px;
	transition: 0.5s ease-out;
	-webkit-transition: 0.5s ease-out;
}

.subtitle {
	font-size: 135%;
	font-weight: bold;
	margin-bottom: 10px;
	text-align: center;
}

.success-msg {
	background-color: limegreen;
	border: solid 3px darkgreen;
}

.tab {
	background-color: #0066cc;
	border: solid 2px #fff;
	border-radius: 0px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	flex: 1;
	font-size: 16px;
	margin: 0px;
	padding: 15px 0px;
	text-align: center;
}

.tab:hover {
	filter: brightness(1.1);
}

.tab:not(:first-child) {
	border-left: 0px;
}

.tab-click {
	background-color: #fff !important;
	color: #222 !important;
	font-weight: bold;
}

table.display thead th {
	background-color: #4d4d4d;
}

.tabs-wrapper {
	align-content: center;
	display: flex;
	flex-wrap: nowrap;
	white-space: nowrap;
	width: 100%;
}

.tab-title {
	font-size: 20px;
	padding: 0px 10px;
}

.tab-title:hover {
	color: #999;
	cursor: pointer;
}

.tbl-action-wrapper {
	margin: 10px 0px;
}

.text-dark {
	color: #333 !important;
}

.text-light {
	color: white;
}

.tile {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.2);
	cursor: pointer;
	flex-shrink: 0;
	height: 525px;
	width: 400px;
}

.tile-base {
	padding: 20px;
}

.tile-container {
	flex: 1;
	margin: 10px 0px;
	max-width: 25%;
	min-width: 400px;
	padding: 0px 10px;
}

.tile-img {
	height: auto;
	width: 100%;
}

.tile-link {
	font-size: 16px;
	margin-top: 15px;
	text-decoration: underline;
}

.tile-popup {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.1);
	height: 100%;
	overflow: hidden;
	padding: 50px;
	transition: 0.5s;
}

.tile-popup-arrow, .flickity-button {
	align-items: center;
	background-color: #0066cc !important;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	height: 2em;
	justify-content: center;
	position: absolute;
	text-align: center;
	width: 2em;
}

.tile-popup-arrow:hover, .flickity-prev-next-button:hover {
	filter: brightness(1.15) !important;
}

.tile-popup-base {
	margin-top: 30px;
}

.tile-popup-container {
	/*flex: 0 0 60%;*/
	margin: 30px 5%;
	width: 60%;
}

.tile-popup-container.small {
	margin: 20px;
	width: 100%;
}

.tile-popup-img {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: auto;
	overflow: hidden;
	padding-bottom: 56.25%; 
	position: relative;
	width: 100%;
}

.tile-popup-link {
	color: #3377cc;
	cursor: pointer;
	font-size: 80%;
	margin-top: 8px;
	text-decoration: underline;
}

.tile-popup-links {
	margin-top: 20px;
}

.tile-popup-subtitle {
	color: #777;
	font-size: 90%;
	line-height: 1.7;
	margin-top: 5px;
}

.tile-popup-title {
	font-size: 120%;
}

.tile-popup-wrapper {
	margin-top: 30px;
}

.tile-subtitle {
	font-size: 20px;
	margin-top: 8px;
}

.tile-title {
	font-family: Raleway;
	font-size: 24px;
	font-weight: bold;
}

.tiles-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	margin-top: 50px;
	padding: 10px;
}

.title {
	font-size: 170%;
	font-weight: bold;
	text-align: center;
}

.tooltip {
	display: inline-block;
	position: relative;
}

.tooltip-img {
	background-color: #333;
	border-radius: 6px;
	bottom: 100%;
	color: #fff;
	font-size: 14px;
	right: 0;
	min-width: 42px;
	opacity: 0.9;
	padding: 5px 8px;
	position: absolute;
	text-align: center;
	z-index: 1;
}

.tooltip-img::after {
	border-color: #333 transparent transparent transparent;
	border-style: solid;
	border-width: 5px;
	content: "";
	margin-left: -5px;
	opacity: 0.9;
	position: absolute;
	left: 50%;
	top: 100%;
}

.tooltip-wrapper {
	margin: 5px 0px;
}

.tooltiptext {
	background-color: #333;
	border-radius: 6px;
	color: #fff;
	display: none;
	font-size: 14px;
	left: 100%;
	margin-left: 5px;
	min-width: 100px;
	padding: 5px 8px;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	z-index: 1;
}

.tooltiptext::after {
	border-color: transparent #333 transparent transparent;
	border-style: solid;
	border-width: 5px;
	content: "";
	margin-top: -5px;
	position: absolute;
	right: 100%;
	top: 50%;
}

.upload-img-box {
	border: none;
	display: block;
	margin: 0px auto;
}

@media (min-width: 1217px) and (max-width: 1600px) {

	.tile-container {
		max-width: 33.33%;
	}
	
}

@media (min-width: 817px) and (max-width: 1216px) {

	.tile-container {
		max-width: 50%;
	}
	
}

@media screen and (max-width: 816px) {

	.tile-container {
		max-width: 100%;
	}
	
}

@media screen and (max-width: 920px) and (max-height: 500px), screen and (max-height: 920px) and (max-width: 500px) {

	body {
		font-size: 16px;
		-webkit-text-size-adjust: 100%;
	}
	
	.btn {
		font-size: 14px;
		padding: 10px 15px;
		width: 80px;
	}

	.btn-main {
		min-width: 160px;
		padding: 10px 20px;
	}
	
	.content-flex-three {
		padding-left: 0px;
		padding-right: 0px;
	}
	
	.content-flex-three, .content-flex-two {
		width: 100%;
	}
	
	.content-flex-wrapper {
		flex-direction: column;
	}
	
	.content-flex-wrapper > div {
		padding: 10px;
	}
	
	.content-tile-img {
		height: 50px;
		width: 50px;
	}
	
	.dash-select {
		font-size: 12px;
	}
	
	.flex-wrapper {
		flex-direction: column;
	}
	
	.footer-column-wrapper {
		text-align: center;
		width: 100%;
	}
	
	.footer-img {
		height: 50px;
		width: 50px;
	}
	
	.footer-title {
		font-size: 12px;
	}
	
	.footer-txt {
		font-size: 11px;
		padding: 3px 0px;
	}
	
	.footer-wrapper {
		padding: 20px;
	}

	.grid {
		gap: 40px;
	}

	.grid-box {
		max-width: 100%;
	}
	
	#header-bar {
		height: 50px;
	}

	.header-logo {
		height: 40px;
	}
	
	.img-medium {
		height: 40px;
		width: 40px;
	}
	
	#main-subtitle {
		font-size: 20px;
		padding: 10px;
	}
	
	.menu-wrapper > a {
		font-size: 14px;
		padding: 5px;
	}
	
	.popup-contents {
		padding-left: 0px;
		padding-right: 0px;
	}
	
	.popup-contents-container {
		flex-wrap: wrap;
	}
	
	.popup-img {
		margin-left: auto;
		margin-right: auto;
	}
	
	.popup-link, .popup-text {
		font-size: 14px;
	}
	
	.popup-title {
		font-size: 20px;
	}
	
	.popup-window {
		width: 90%;
	}
	
	.portfolio-content-flex {
		max-width: 100%;
		min-width: calc(100% - 40px);
	}
	
	.quote-img {
		height: 140px;
		width: 140px;
	}
	
	.quote-wrapper > * {
		margin: 15px;
	}
	
	.section-bgrnd {
		padding: 60px 30px;
	}

	.section-bgrnd.top {
		padding-top: 140px;
	}
	
	.section-line {
		margin: 0px 30px;
	}
	
	#select-bgrnd {
		padding: 5px 0px;
	}
	
	.shift {
		margin-left: 0px;
	}
	
	.tile-container {
		flex: 0 0 100%;
		min-width: 200px;
	}
	
	.tile-link {
		font-size: 14px;
	}
	
	.tile-subtitle {
		font-size: 17px;
	}
	
	.tile-title {
		font-size: 20px;
	}
	
	.tiles-container {
		padding: 30px 10px;
	}
	
	.title {
		font-size: 26px;
		margin-bottom: 20px;
	}
	
}

@media only screen and (max-width: 500px), screen and (max-height: 500px) {
	
	.para-small {
		font-size: 16px;
	}
	
	#select-wrapper {
		margin: auto 10px;
	}

	.subtitle {
		font-size: 18px;
	}
	
}


/* Navigation menu styling */

.header-menu {
	align-items: center;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	flex-wrap: none;
	z-index: 4;
}

.header-menu:hover .menu-bottom-bar {
	width: 40px;
}

.menu-bar1.change {
	-webkit-transform: translate(0px, 9px) rotate(45deg);
	transform: translate(0px, 9px)  rotate(45deg);
}

.menu-bar2.change {
    opacity: 0;
}

.menu-bar3.change {
	-webkit-transform: translate(0px, -9px) rotate(-45deg);
	transform: translate(0px, -9px) rotate(-45deg);
}

.menu-bar1, .menu-bar2, .menu-bar3 {
	background-color: #fff;
	height: 3px;
	margin: 6px 0;
	transition: 0.5s ease-out;
	-webkit-transition: 0.5s ease-out;
	width: 30px;
}

.menu-bottom-bar {
	background-color: #fff;
	height: 3px;
	margin-top: 3px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	width: 30px;
}

.menu-txt {
	color: #fff;
	font-size: 16px;
	margin: 0px;
}

.menu-txt:before {
	content: 'Menu';
}

.menu-txt.active:before {
	content: 'Close';
}

.side-menu {
    background-color: #111;
	color: #fff;
	float: right;
	height: 100vh;
	overflow-x: hidden;
    overflow-y: auto;
	padding-top: 80px;
	position: fixed;
	right: 0;
	top: 0;
    transition: 0.7s ease-in-out;
	-webkit-transition: 0.7s ease-in-out;
	visibility: hidden;
	width: 0px;
    z-index: 1;
}

.side-menu.active {
	visibility: visible;
	width: 360px;
}

.side-menu a, .side-menu p {
	background-color: none;
	color: #fff;
    display: block;
    text-decoration: none;
}

.side-menu a {
	font-size: 90%;
	padding: 10px 30px 10px 45px;
}

.side-menu a:hover {
	background-color: #0045d2;
	color: #fff;
}

.side-menu p {
	height: 0px;
}

.side-menu-header {
	height: 60px;
}

.side-menu-header-img {
	display: block;
	max-height: 85px;
	margin: 0px auto 30px auto;
	max-width: 100px;
}

.side-menu-img {
	display: inline-block;
	height: 20px;
	margin-right: 10px;
	width: 20px;
}

.side-menu-open {
	background-color: #fff;
	background-image: url(../images/open-arrow.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 10px;
	box-shadow: 0px 0px 3px 1px rgb(0,0,0,0.2);
	display: none;
	cursor: pointer;
	height: 100%;
	width: 15px;
}

.side-menu-wrapper {
	background-color: #111;
	box-shadow: 0px 0px 8px 1px rgb(0,0,0,0.2);
	display: flex;
	flex-wrap: nowrap;
	height: 100vh;
	left: 0px;
	overflow: auto;
	position: fixed;
	top: 0px;
	transition: 0.5s ease-out;
	-webkit-transition: 0.5s ease-out;
	z-index: 3;
}

.side-menu-wrapper.open {
	left: 0px;
}

@media screen and (max-width: 500px) {

	.header-menu {
		display: flex;
	}
	
	.menu-bar1.change {
		background-color: #fff;
		-webkit-transform: translate(0px, 0px) rotate(45deg);
		transform: translate(0px, 5.75px)  rotate(45deg);
	}

	.menu-bar3.change {
		background-color: #fff;
		-webkit-transform: translate(0px, 0px) rotate(-45deg);
		transform: translate(0px, -5.75px) rotate(-45deg);
	}

	.menu-bar1, .menu-bar2, .menu-bar3 {
		height: 2px;
		margin: 4px 0;
		width: 20px;
	}

	.menu-bottom-bar {
		width: 25px;
	}

	.menu-txt {
		font-size: 12px;
	}

	.side-menu {
		padding-top: 50px;
	}

	.side-menu.active {
		width: 100%;
	}

	.side-menu a {
		font-size: 15px;
		padding: 5px 5px 5px 10px;
	}
	
	.side-menu-header {
		height: 45px;
	}
	
	.side-menu-header-img {
		height: 50px;
		width: 50px;
	}
	
	.side-menu-img {
		display: inline-block;
		height: 18px;
		margin-right: 10px;
		width: 18px;
	}
	
	.side-menu-wrapper {
		height: calc(100vh - 45px);
		left: -200px;
		top: 45px;
	}

}

/* rating stars */
.ratings {
    position: relative;
    vertical-align: middle;
    display: inline-block;
    color: #b1b1b1;
    overflow: hidden;
}

.rating-line {
	border-top: solid 2px #0066cc;
	margin: 10px auto;
	text-align: center;
	width: 50px;
}

.full-stars {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    overflow: hidden;
    color: orange;
}

.empty-stars:before, .full-stars:before {
    content:"\2605\2605\2605\2605\2605";
    font-size: 150%;
}

.empty-stars:before {
    -webkit-text-stroke: 1px #848484;
}

.full-stars:before {
    -webkit-text-stroke: 1px orange;
}

/* Webkit-text-stroke is not supported on firefox or IE */

/* Firefox */
 @-moz-document url-prefix() {
    .full-stars {
        color: #ECBE24;
    }
}
