/**** Basic ****/
:root {
	--gray-color: #454545;
	--white-color: #ffffff;
	--black-color: #000000;
	--site-color: #191971;
	--pink-color: #ff1493;
	--transition: 0.5s;
}
body {
	font-family: 'Lato', sans-serif;
	color: var(--gray-color);
}

body a {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    text-decoration: none;
	color: inherit;
}
body a:hover {
	text-decoration: none;
}
body button:focus,
body button:active,
body a:focus,
body a:active {
	box-shadow: none !important;
}
body .owl-carousel .owl-item img {
	width: auto;
	margin: auto;
}

p+p {
  margin-top: 1rem;
  margin-bottom: 0;
}

/**** Default CSS ****/
.section {
	padding-top: 60px;
	padding-bottom: 60px;
}
.es-title {
	font-weight: 600;
	font-size: 30px;
	color: var(--black-color);
}
.es-title span {
	color: var(--site-color);
}
.es-title-1 {
	font-weight: 600;
	font-size: 24px;
	color: var(--black-color);
}
.es-title-2 {
	font-weight: 600;
	font-size: 20px;
	color: var(--black-color);
}

.es-sub-title {
	font-weight: 600;
	font-size: 18px;
	color: var(--pink-color);
}
.es-text {
	font-size: 15px;
	line-height: 1.75;
}

.btn-default {
	font-weight: 600;
	font-size: 14px;
	padding: 8px 15px;
    position: relative;
	z-index: 1;
    text-align: center;
    overflow: hidden;
    
    -webkit-transition: var(--transition);
    transition: var(--transition);
	
	background-color: var(--site-color);
	color: var(--white-color);
	border: 2px solid var(--site-color);
	border-radius: 5px;
	
	min-width: 120px;
}

.btn-default:hover {
	background-color: transparent;
	color: var(--site-color);
}

.bg-gray {
	background-color: #f9f9f9;
}

.form-group {
	margin-bottom: 15px;
}
.input-a {
	box-shadow: none;
	background-color: #ffffff;
	border-radius: 5px;
}
.input-a:focus,
.input-a:active {
	box-shadow: none;
}
select.input-a {
	height: 45px;
	z-index: 1;
	background-image: url('../images/select-down.png');
	background-position: calc(100% - 15px) center;
	background-repeat: no-repeat;
	-webkit-appearance: none;
	-moz-appearance:    none;
	appearance:         none;
	cursor: pointer;
}
input.input-a {
	height: 45px;
}
textarea.input-a {
	height: 125px;
}
.input-label {
    font-weight: 600;
	font-size: 15px;
	color: var(--black-color);
}

/** **/
.check-label {
	position: relative;
	flex-wrap: wrap;
	cursor: pointer;
	padding-left: 25px;
}
.radio-input,
.check-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.radio-span,
.check-span {
	position: absolute;
	left: 0;
	display: block;
	width: 16px;
	height: 16px;
	margin-right: 10px;
	margin-top: 4px;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: none;
	background-repeat: no-repeat;
	border-radius: 2px;
}
.check-span {
	background-position: center center;
	border: 1px solid var(--site-color);
}
.radio-span {
	background-position: center center;
	background-size: 50% 50%;
	border-radius: 50%;
	border: 1px solid var(--site-color);
}
.radio-span:after {
	content: '';
	top: 3px;
	left: 3px;
	width: 8px;
	height: 8px;
	position: absolute;
	display: none;
	background-color: var(--site-color);
	border-radius: 50%;
}
.check-span:after {
	top: 1px;
    left: 4px;
	border-width: 0 2px 2px 0 !important;
	transform: rotate(45deg);
	content: '';
	position: absolute;
	width: 6px;
	height: 10px;
	display: none;
	border: solid #ffffff;
	
}
input:checked ~ span.radio-span:after {
	display: block;
}
input:checked ~ span.check-span:after {
	display: block;
}

input:checked ~ span.check-span {
	background-color: var(--site-color);
}

.check-label.d-inline-flex {
	margin-right: 20px;
}

/**** Header ****/
.header {
	position: sticky;
	padding-top: 10px;
	padding-bottom: 10px;
	left: 0;
	right: 0;
	top: 0;
	background-color: #ffffff;
	z-index: 999;
}
/*.header.nav-scroll {
	position: fixed;
}*/
.center-inhead {
	text-align: center
}

/*** Navigation ***/
.header-row .navbar-nav > li {
	position: relative;
}
.header-row .navbar-nav > li > a {
	font-size: 12px;
	padding: 8px;
	position: relative;
	text-decoration: none;
	display: block;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.header-row .navbar-nav li.current-menu-item > a {
	color: var(--site-color);
}
.header-row .navbar-nav li > a:hover {
	color: var(--site-color);
}
.navbar-nav > li.menu-item-has-children > a:after {
    content: '';
    border-style: solid;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    top: -3px;
    position: relative;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin-left: 10px;
}
/** Sub Menu **/
.sub-menu > li.menu-item-has-children > a:after {
	content: '';
    border-style: solid;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 2px;
    top: -2px;
    position: relative;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    margin-left: 10px;
}

li:hover .sub-menu {
	display: block;
}

.sub-menu {
	padding: 15px 20px;
	box-shadow: 0 0 15px rgba(0,0,0,.15);
	background-color: #ffffff;
	list-style: none;
	min-width: 856px;
	position: absolute;
	left: -488px;
	top: 145%;
	margin: -0.45em 0 0;
	border-radius: 5px;
	z-index: 100;
}
.sub-menu > li {
	margin-bottom: 0;
}
.sub-menu > li > a {
	font-weight: 500;
	font-size: 12px;
	padding: 5px 10px 5px 15px;
	position: relative;
	text-transform: capitalize;
	text-decoration: none;
	display: inline-block;
	/* white-space: nowrap; */
/* flex-wrap: nowrap; *//* flex-direction: row; *//* align-content: center; *//* justify-content: space-between; *//* align-items: center; */}
.sub-menu > li > a:hover {
	color: #000000;
}
.sub-menu > li > a:before {
	content: '';
    border-style: solid;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 2px;
    position: relative;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
	
	position: absolute;
	left: 0;
	top: 12px;
}
.custom-logo-link img {
	max-width: 70px;
}

/*** Video Banner ***/
.banner-section {
	position: relative;
	z-index: 5;
	width: 100%;
}
.video-bg {
	position: relative;
	min-height: 500px;
	width: 100%;
	overflow: hidden;
}
.video-bg::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	margin: 0;
	background-color: rgba(0,0,0,0.075);
	z-index: 1;
}
.video-section {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 0;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
.hero-captions {
	padding-top: 15px;
	padding-bottom: 15px;
}
.hero-captions {
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	right: 0;
	left: 0;
	z-index: 10;
}
.hero-title {
	font-weight: 400;
	font-size: 35px;
	color: var(--white-color);
}

.footer {
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px solid var(--black-color);
}
.copy-right {
	font-size: 14px;
}
.copy-link a {
	margin-left: 10px;
}

.social-link {
	margin-left: auto;
	display: table;
}
.social-link a {
	font-size: 18px;
}
.social-link a+a {
	margin-left: 15px;
}

.btn.btn-link {
	padding: 0;
	color: var(--site-color);
}


/** **/
.inner-banner-section {
	position: relative;
	height: 400px;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}
.article-sub-title {
	font-weight: 300;
	font-size: 40px;
	color: var(--white-color);
}
.article-title {
	font-weight: 500;
	font-size: 40px;
	color: var(--white-color);
}
.article-text {
	font-weight: 300;
	font-size: 20px;
	color: var(--white-color);
}

/** **/
.services-title {
	font-size: 32px;
}
.services-ul li{
	position: relative;
	font-size: 18px;
	margin-bottom: 7.5px;
	padding-left: 25px;
}
.services-ul li:before {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	background-color: var(--site-color);
	border-radius: 50%;
	position: absolute;
	left: 5px;
	top: 10px;
}


/** **/
.name-post-box {
	box-shadow: 0 0 15px rgba(0,0,0,0.075);
	background-color: #ffffff;
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 20px;
}
.name-post-image {
	height: 250px;
}
.name-post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.name-post-content {
	padding: 15px;
}
.name-post-title {
	font-weight: 600;
	font-size: 16px;
}
.name-post-sub-title {
	font-size: 14px;
}



/* Filter Style */
.mel-nav ul{
	display:flex;
	flex-direction: row;
	list-style: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.mel-nav li{
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
	letter-spacing: 1px;
	
	padding: 15px;
	border-top: 1px solid transparent;
	transition: border-color 0.2s;
	-moz-transition: border-color 0.2s;
	-webkit-transition: border-color 0.2s;
	-o-transition: border-color 0.2s;
	margin-left: 5px;
	margin-right: 5px;
}
.is-checked{
	color: var(--site-color);
}

/* Grid Style */
.mel-grid {
	max-width: 100%;
	padding: 15px 0;
}
.mel-grid:after {
	content: '';
	display: block;
	clear: both;
}
.mel-grid-sizer,
.mel-grid-item{
	width: 25%;
}
.mel-grid-item{
	float: left;
}
.mel-item-wrapper{
	border-radius: 4px;
	margin: 15px;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	overflow: hidden;
	-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.095);
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.095);
}
.mel-item-wrapper:hover{
	-webkit-box-shadow: none;
	box-shadow: none;
}
.mel-image-container {
	width: 100%;
	height: 200px;
	max-height: 200px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}
.mel-image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: transform 0.5s;
	-moz-transition: transform 0.5s;
	transition: transform 0.5s;
}
.mel-item-wrapper:hover .mel-image-container img{
	transform: scale(1.1);
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	
}
.mel-content{
	padding: 15px;
}
.mel-content h3 {
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 0;
}

@media all and (min-width: 769px) and (max-width: 980px) {
	.mel-grid-item{
		width: 50%;
	}
}
@media (max-width: 768px) {
	.mel-grid-item{
		width: 100%;
	}
}

/**** ***/

.reg-panel {
	background-color: var(--white-color);
	padding: 20px 15px;
	box-shadow: 0 0 15px rgba(0,0,0,0.075);
}

.tsp-image {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	box-shadow: 0 0 15px rgba(0,0,0,0.075);
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}
.tsp-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}
.tsp-text {
	font-size: 18px;
}
.tsp-desic strong {
	font-size: 18px;
}
.tsp-desic {
	font-size: 16px;
}

body .call-term {
	text-decoration: underline;
	color: var(--site-color);
}

.client-thumbs {
	height: 100px;
	line-height: 85px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #f0f0f0;
	text-align: center;
}
.client-thumbs img {
	max-height: 80px;
	display: inline-block !important;
}

.client-thumbs:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}


/*** **/
.news-box {
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(0,0,0,0.099);
	border-bottom: 4px solid var(--pinkColor);
	margin-bottom: 25px;
	overflow: hidden;
}

.news-img {
	height: 225px;
	position: relative;
}
.news-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news-captions {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.25);
}
.news-link {
	font-size: 20px;
	position: relative;
	z-index: 10;
	color: var(--white-color);
	flex: 1;
	text-align: center;
}
.news-title {
	font-weight: 600;
	font-size: 16px;
	
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.news-text {
	font-size: 14px;
	height: 45px;
	overflow: hidden;
}
.news-content {
	padding: 15px;
}
.news-caps {
	height: 100%;
}
.news-captions{
	display: none;
}
.news-box:hover .news-img .news-captions{
	display: block;
}
.read-more {
	font-size: 13px;
}
.read-more a {
	color: var(--site-color);
	text-decoration: none;
}


.press-box {
	margin-bottom: 30px;
}
.press-title {
	font-size: 20px;
}
.press-text {
	font-size: 14px;
}



/** Events **/
.event-box {
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(0,0,0,0.099);
	border-bottom: 4px solid var(--pinkColor);
	margin-bottom: 25px;
	overflow: hidden;
}

.event-img {
	height: 375px;
	position: relative;
	overflow: hidden;
}
.event-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.event-captions {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.25);
}
.event-link {
	font-size: 20px;
	position: relative;
	z-index: 10;
	color: var(--white-color);
	flex: 1;
	text-align: center;
}
.event-title {
	font-size: 16px;
	
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.event-content {
	padding: 15px;
}
.event-caps {
	height: 100%;
}
.event-captions{
	display: none;
}
.event-box:hover .event-img .event-captions{
	display: block;
}
.event-box:hover .event-img img{
	transform: scale(1.02,1.02);
	-ms-transform: scale(1.02,1.02);
	-webkit-transform: scale(1.02,1.02);

	filter: blur(1px);
	-webkit-filter: blur(1px);
	-moz-filter: blur(1px); 
	-o-filter: blur(1px); 
	-ms-filter: blur(1px);

	-webkit-transition: filter 1.5s,transform 0.5s;
	-moz-transition: filter 1.5s,transform 0.5s;
	transition: filter 1.5s,transform 0.5s;
}


.events-details-slider {
	max-width: 768px;
	margin-left: auto;
	margin-right: auto;
}
.ed-title {
	font-size: 30px;
}
.ed-sub-title {
	font-weight: 400;
	font-size: 22px;
}
.ed-text {
	font-size: 15px;
}

#sync1 .item{
    padding: 25% 0px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
}
#sync2 .item {
    /*background: #C9C9C9;*/
    padding: 40% 0px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
	pointer: relative;
	overflow: hidden;
}
#sync1 .item img{
	position: absolute;
	left: 0;
	top: 0;
	object-fit: contain;
	padding: 2.5px 1px;
}
#sync2 .item img{
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
	padding: 2px;
}
#sync2 .synced .item{
	background: var(--site-color);
}
 
.entry-content h3 {
	font-size: 24px;
}	
.entry-content ol,
.entry-content ul {
	padding-left: 20px;
}	
.entry-content ol > li,
.entry-content ul > li {
	margin-top: 10px;
}	
.entry-content p {
	margin-bottom: 15px;
}


.contact-title-1 {
	font-weight: 600;
	font-size: 18px;
	color: var(--black-color);
}
hr.contact-hr {
    width: 100%;
    height: 2px;
    border-top: 2px dashed var(--site-color);
    opacity: 1;
    background: none;
}
.contact-text-1 {
	font-size: 15px;
}
.contact-text-1 strong{
	font-weight: 600;
	color: var(--black-color);
	line-height: 1;
	font-style: italic;
}
.contact-title-2 {
	font-weight: 600;
	font-size: 16px;
	color: var(--black-color);
}

.item-label a {
	text-decoration: underline;
}





body .choices__inner {
    background-color: #ffffff;
	outline: 0;
	border-radius: 7px;
}
body .choices__input {
	background-color: #ffffff;
}
body .choices__list--multiple .choices__item {
	background-color: #979797;
	border: 1px solid #979797;
	font-size: 13px;
}
body .choices[data-type*="select-multiple"] .choices__button {
	border-left: 1px solid #979797;
}
body .choices__list--dropdown .choices__item--selectable.is-highlighted {
	background-color: var(--site-color);
	color: #ffffff;
}

.es-about-thumb img {
	max-width: 70%;
}


.file-upload-wrapper {
	position: relative;
	width: 100%;
	height: 45px;
}
.file-upload-wrapper:before {
	content: attr(data-text);
	
	background: #fff;
	padding: 8px 12px;
	display: block;
	pointer-events: none;
	z-index: 20;
	height: 100%;
	
	flex: 1;
	max-width: 100%;
	position: relative;
	
	/*position: absolute;
	top: 0;
	left: 0;*/
	
	border: 1px solid #ced4da;
	border-radius: 5px 0 0 5px;
	
}
.file-upload-button {
	
	display: inline-block;
	z-index: 25;
	text-transform: uppercase;
	pointer-events: none;
	font-weight: 600;
	font-size: 14px;
	background-color: var(--site-color);
	color: var(--white-color);
	padding: 10px 20px;
	border: none;
	text-align: center;
	overflow: hidden;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	border-radius: 0 5px 5px 0;
	
	flex: 0 0 auto;
	position: relative;
	/*position: absolute;
	top: 0;
	right: 0;
	bottom: 0;*/
	
}
.file-upload-wrapper input {
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99;
	margin: 0;
	padding: 0;
	display: block;
	cursor: pointer;
	width: 100%;
}

/** **/
body .topnav {
    text-align: center;
}
body .topnav a {
  float: none;
  display: inline-block;
}




.form-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
.form-container h1 {
    font-weight: 700;
}
.form-icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: #6c757d;
}
.submit-btn {
  background-color: #f0ad4e;
  color: white;
  font-weight: bold;
  border: none;
}
.submit-btn:hover {
  background-color: #ec971f;
}




