/*!
Theme Name: glostem
Theme URI: http://underscores.me/
Author: Arun Sharma
Author URI: http://www.digilinkers.com
Description: Customised WordPress Theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: glostem
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

glostem is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	float: right;
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.post,
.page {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*-----------------------------------------------------------------------------------------
	Custom CSS
-----------------------------------------------------------------------------------------*/

body {
	margin: 0;
	padding: 0;
	font-family: 'Muli', sans-serif;
	font-size: 16px;
	color: #333;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
}

p {
	color: #7f7f7f;
}

.g-text {
	color: #333;
}

ul {
	margin-bottom: 0;
}

li {
	list-style: none;
}

a:hover {
	text-decoration: none;
}

.section-wrapper {
	padding: 5rem 0;
}

.sub-section-wrapper {
	padding: 2rem 0;
}

.card-wrap {
	margin-bottom: 2rem;
}

.lead-text {
	padding-left: 35px;
	position: relative;
	color: #333;
	font-size: 20px;
}

.lead-text::before {
	position: absolute;
	content: "";
	left: 0;
	top: -10px;
	bottom: -10px;
	width: 3px;
	background-color: #fac952;
}

.glostem-btn, .cs-btn {
	background-color: #fac952;
	color: #000;
	border-radius: 0;
	padding: 0.25rem 0.7rem;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
}

.glostem-btn:hover, .cs-btn:hover {
	background-color: #e8ba4a;
}

.mb2 {
	margin-bottom: 20px;
}

.y-sec {
	color: #fac952;
}


/*-----------------------------------------------------------------------------------------
	Navbar
-----------------------------------------------------------------------------------------*/

.top-nav {
	padding: 1.3rem 0;
}

.top-nav-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.top-nav-ct-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}

.logo-img {
	width: 170px;
}

.top-nav-ph-wrap, .top-nav-time-det-wrap, .top-nav-quote-wrap {
	margin-left: 15px;
}

.top-nav-wa-wrap, .top-nav-ph-wrap, .top-nav-time-det-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-nav-wa-wrap i, .top-nav-ph-wrap i, .top-nav-time-det-wrap i {
	color: #fac952;
	font-size: 30px;
	margin-right: 10px;
}

.top-nav-wa-wrap a, .top-nav-ph-wrap a {
	color: #333;
	display: flex;
    align-items: center;
}

.nav-item {
	border-left: 1px solid #ccc;
}

.nav-item a {
	position: relative;
	display: block;
    padding: 0.7rem 2.3rem 0.7rem 3.3rem!important;
    color: #333!important;
    font-weight: 600;
}

.nav-item a::before {
	position: absolute;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	left: 25px;
    top: 11px;
    color: #808080;
}

.nav-item-hm a::before {
	content: "\f015";
}

.nav-item-ab a::before {
	content: "\f03a";
}

.nav-item-co a::before {
	content: "\f0c0";
}

.nav-item-res a::before {
	content: "\f019";
}

.nav-item-ft a::before {
	content: "\f044";
}

.nav-item-ga a::before {
	content: "\f302";
}

.nav-item-ct a::before {
	content: "\f879";
}

.nav-item-rg a::before {
	content: "\f09d";
}
.nav-item-dv a::before {
	content: "\f5fd";
}
.nav-item-in a::before {
	content: "\f46d";
}
.sub-drop a::before, .sub-drop2 a::before {
    display: none;
}

.sub-drop a {
	padding: 0.5rem!important;
}


/*-----------------------------------------------------------------------------------------
	Carousel
-----------------------------------------------------------------------------------------*/

.glostem-caption {
	bottom: 50%;
	transform: translateY(50%);
}

.glostem-caption h5 {
	font-size: 60px;
	font-weight: 900;
	text-transform: uppercase;
	text-shadow: 1px 2px rgba(0,0,0,0.2);
}

.glostem-caption p {
	font-size: 40px;
	color: #fac952;
	text-shadow: 1px 2px rgba(0,0,0,0.2);
}

.glostem-item {
	overflow: hidden;
}

.glostem-item img {
	animation: slideZoom 6s linear forwards;
}

@keyframes slideZoom {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}
}

.page-banner {
	position: relative;
}

.page-banner-caption {
	position: absolute;
	left: 10%;
	top: 50%;
	transform: translateY(-50%);
}

.page-banner-rt {
	position: absolute;
	right: 10%;
	width: 50%;
	top: 50%;
	transform: translateY(-50%);
}

.glo-breadcrumb {
	padding: 0.3rem 0;
	background-color: transparent;
	margin-bottom: 0;
}

.glo-breadcrumb .breadcrumb-item a:hover {
	color: #525456;
	text-decoration: underline;
}

.glo-breadcrumb .breadcrumb-item.active, .glo-breadcrumb .breadcrumb-item a {
	color: #525456;
	text-decoration: none;
}


/*-----------------------------------------------------------------------------------------
	Home
-----------------------------------------------------------------------------------------*/

.main-wrapper {
	position: relative;
}

.gconf-top-row, .gsupport-top-row, .gservices-top-row {
	margin-bottom: 3rem;
}

.gconf-inner-cover {
	height: 100%;
	background-color: #f7f7f7;
}

.gconf-text-wrap {
	text-align: center;
	padding: 1.5rem;
}

.gfeatures-list {
	margin-bottom: 0;
}

.gfeatures-list li {
	list-style: none;
	position: relative;
	line-height: 25px;
	margin-bottom: 10px;
	height: 63px;
}

.gfeatures-list li::before {
	position: absolute;
	content: "";
	background-image: url('/wp-content/themes/glostem/asset/img/star.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	left: -40px;
	top: 4px;
	width: 25px;
	height: 25px;
}

.gsupport-wrapper {
	padding-top: 5rem;
}

.gsupport-inner-cover {
	height: 100%;
	background-color: #efefef;
	padding: 1rem;
	text-align: center;
}

.gsupport-icon-wrap {
	padding: 1.5rem;
}

.gsupport-icon {
	width: 60px;
	height: auto;
	display: table;
    margin: 0 auto;
}

.gserve-inner {
    position: relative;
    overflow: hidden;
}

.gserve-overlay-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: -100.1%;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.gserve-inner:hover .gserve-overlay-wrap {
    transform: translateY(-50.1%);
}

.gserve-ft-text-overlay {
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.2);
}

.gserve-ft-title {
    color: #fff;
    margin-bottom: 0;
    text-align: center;
}

.gserve-overlay {
    height: 50.1%;
    background-color: #fdd33c;
    padding: 1rem;
}

.gft-sec-title {
	margin-bottom: 1.3rem;
}

.gfooter-content-news {
	padding-right: 1rem;
}

.gft-news-list, .gft-partners-list {
	padding: 0;
	margin: 0;
}

.gft-partners-list {
	max-height: 300px;
	overflow: scroll;
}

.gft-news-list li, .gft-partners-list li {
	margin-bottom: 1rem;
}

.gft-news-wrapper, .gft-partners-wrapper {
	display: flex;
}

.gft-partners-wrapper {
	background-color: #f1f1f1;
	padding: 12px;
}

.gft-news-list li img {
	width: 70px;
	height: auto;
}

.gft-partners-list li img {
	width: 70px;
	height: auto;
}

.gft-news-text {
	margin-bottom: 0;
	padding-left: 14px;
	line-height: 20px;
    font-size: 15px;
}

.gft-partners-wrap {
	padding-left: 14px;
}

.gft-partners-text {
	margin-bottom: 0;
	line-height: 20px;
    font-size: 15px;
}

.gft-news-text span {
	color: #fac952;
	font-size: 13px;
}

.lt-offer-img-wrap {
	position: relative;
}

.lt-offer-img-wrap ul.wp-block-latest-posts.wp-block-latest-posts__list {
	padding-left: 0;
}

.lt-offer-img-wrap img {
	width: 100%;
	height: auto;
}

.lt-offer-text-wrap {
	position: absolute;
	left: 25px;
	right: 25px;
	bottom: -70px;
	background-color: #fff;
	text-align: center;
}

.lt-offer-text-wrap h5 {
	text-transform: uppercase;
	padding-top: 20px;
}

.lt-offer-text-wrap p {
	/*color: #7f7f7f;*/
}

.glostem-twitter .ctf-header {
	background-color: #0d1b6a;
}

.glostem-twitter.ctf-super-narrow .ctf-header-user {
    min-height: 25px!important;
}

#ctf .ctf-header-name {
	color: #fff;
	font-size: 12px;
}

#ctf.ctf-super-narrow .ctf-header-bio, #ctf .ctf-header-text .ctf-header-bio, #ctf.ctf-super-narrow .ctf-header-bio {
	/*margin-left: 60px!important;*/
	color: #d5efff;
}

#ctf .ctf-header-img img {
	width: 40px;
    height: auto;
    margin-top: 15px!important;
}

.lt-offer-text-wrap h5 a {
	color: #0d1b6a;
}

.lt-offer-text-wrap h5 a:hover {
	color: #007bff;
}




/*-----------------------------------------------------------------------------------------
	About Us
-----------------------------------------------------------------------------------------*/

.t-cusl-top-row {
	padding-top: 5rem;
}

.t-cusl-top-inner-cover {
	padding: 1rem 0 2rem;
}

.t-cusl-top-title {
	text-align: center;
	margin-bottom: 1rem;
}

.t-cusl-us-inner-cover {
	background-color: #f7f7f7;
	height: 100%;
	padding: 1.2rem 0.5rem;
}

.t-cusl-us-cover {
	margin-bottom: 20px;
	overflow: hidden;
}

.usp-icon-cover {
	padding-right: 0;
}

.usp-icon-inner-cover {
	height: 100%;
	text-align: center;
}

.usp-icon-inner-cover i {
	font-size: 35px;
	color: #fac952;
}

.t-cusl-usp-text {
	margin-bottom: 0;
}

.testimonial-row {
	padding-top: 5rem;
}

.testimonial-cover {
	position: relative;
}

.testimonial-inner-cover {
	padding: 0 1rem;
	position: relative;
	height: 100%;
}

.testimonial-text::before {
	position: absolute;
	content: "\f10e";
	font-family: "Font Awesome 5 Free";
	font-size: 30px;
    font-weight: 600;
    color: #efefef;
    top: -14px;
    left: -3px;
    z-index: -1;
}

.testimonial-name {
	margin-bottom: 0;
}

.testimonial-pos {
	font-size: 14px;
}

.logo-row-wrapper {
	padding: 4rem 0 2rem;
    background-image: url(/wp-content/themes/glostem/asset/img/bg1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.logo-img-inner-wrap {
	height: 100%;
	display: flex;
	align-items: center;
}

.director-row {
	margin-top: 5rem;
}

/*-----------------------------------------------------------------------------------------
	Marketing Services
-----------------------------------------------------------------------------------------*/

.ms-link, .ms-link:hover {
	color: #333;
}

.t-cusl-usp-title {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	display: inline-block;
	position: relative;
}

.ms-link:hover .t-cusl-usp-title {
	transform: translateX(20px);
}

.ms-img {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.ms-link:hover .ms-img {
	transform: scale(1.2);
}

.ms-link:hover .t-cusl-usp-title::after {
	position: absolute;
	content: ">>";
	right: -30px;
	top: 0;
}

.ms-list-outer-wrap ul, .d-imgtext-body-wrap ul {
	margin-top: 2rem;
}

.ms-list-outer-wrap ul li, .d-imgtext-body-wrap ul li {
	list-style: none;
    position: relative;
    line-height: 25px;
    margin-bottom: 10px;
    height: 50px;
}

.ms-list-outer-wrap ul li::before, .d-imgtext-body-wrap ul li::before {
	position: absolute;
    content: "";
    background-image: url(/wp-content/themes/glostem/asset/img/star.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    left: -40px;
    top: 4px;
    width: 25px;
    height: 25px;
}

.m-area-list {
	display: flex;
	flex-wrap: wrap;
}

.m-area-list li {
	position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.area-list-row {
	padding-top: 2rem;
}

/*-----------------------------------------------------------------------------------------
	Email Marketing
-----------------------------------------------------------------------------------------*/

.d-imgtext-inner-cover {
    height: 100%;
}

.d-imgtext-imdig-cover {
	background-image: url('/wp-content/themes/glostem/asset/img/digital-marketing.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.d-imgtext-img-cover {
    background-image: url('/wp-content/themes/glostem/asset/img/email-marketing-service.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.d-imgtext-teleimg-cover {
    background-image: url('/wp-content/themes/glostem/asset/img/telemarketing.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.d-imgtext-startimg-cover {
    background-image: url('/wp-content/themes/glostem/asset/img/startup.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.d-imgtext-pmt-cover {
    background-image: url('/wp-content/themes/glostem/asset/img/glostem-pmt.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.d-imgtext-link-wrap {
    margin-top: 2rem;
}

.other-services-wrapper {
	padding-top: 5rem;
}

.other-services-title-wrap {
	padding-bottom: 2rem;
}

.other-services-title {
	text-align: center;
}

.t-itcard-inner-cover {
    position: relative;
    height: 100%;
    background-color: #f5f5f5
}

.t-itcard-body-wrap {
    background-color: #f5f5f5;
    padding: 1rem 1.5rem 4rem;
}

.t-itcard-title-wrap {
    padding: 0.5rem;
}

.t-itcard-title {
    text-align: center;
}

.t-itcard-text {
    text-align: center;
}

.t-itcard-footer-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f5f5f5;
    text-align: center;
    padding: 1rem ;
}

/*-----------------------------------------------------------------------------------------
	Conference Management
-----------------------------------------------------------------------------------------*/

.cms-title {
	text-align: center;
	margin-bottom: 1.5rem;
}

.conf-top-title-wrap {
	text-align: center;
	margin-bottom: 3rem;
}

.conf-title-wrapper {
	height: 50px;
	margin-bottom: 1rem;
}

.conf-list li {
	text-align: left;
	list-style: none;
	position: relative;
	line-height: 25px;
	margin-bottom: 10px;
	/*height: 50px;*/
}

.conf-list li::before {
	position: absolute;
	content: "";
	background-image: url('/wp-content/themes/glostem/asset/img/star.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	left: -35px;
	top: 3px;
	width: 20px;
	height: 20px;
}

.testimonial-wrapper {
	padding-top: 5rem;
}

.testimonial-wrapper h3 {
	text-align: center;
	margin-bottom: 3rem;
}


/*-----------------------------------------------------------------------------------------
	Privacy Policy
-----------------------------------------------------------------------------------------*/

.privacy-inner-cover p {
	text-align: justify;
}

/*-----------------------------------------------------------------------------------------
	Contact Us
-----------------------------------------------------------------------------------------*/

.t-ctcard-us-inner-cover {
	background-color: #f7f7f7;
	height: 100%;
	padding: 1.2rem 1rem;
}

.t-ctcard-us-cover {
	margin-bottom: 20px;
}

.ctcard-icon-cover {
	padding-left: 0;
}

.ctcard-icon-inner-cover {
	height: 100%;
	text-align: center;
}

.ctcard-icon-inner-cover i {
	font-size: 40px;
	color: #ffa500;
}

.t-ctcard-text {
	margin-bottom: 0;
    color: #7f7f7f;
}

.ct-phn-href, .ct-card-mail {
    color: #7f7f7f;
}

.ct-phn-href:hover, .ct-card-mail:hover {
    color: #333;
}

.ct-form-map-wrapper {
	padding-bottom: 5rem;
}

.d-ctform {
    margin: 2rem 0;
}

.d-ctform-control::placeholder {
    color: #ccc;
}

.d-ctform-inner-cover {
    height: 100%;
}

.faqCard {
	margin-bottom: 8px;
	border: none;
}

.faq-card-header {
	border: none;
	padding: 5px;
}

.btn-faq-link {
	color: #fac952;
	position: relative;
	padding-left: 40px;
	text-decoration: none;
}

.btn-faq-link, .btn-faq-link:hover, .btn-faq-link:focus, .btn-faq-link.focus {
	text-decoration: none!important;
}

.btn-faq-link::before {
	position: absolute;
	content: "\f058";
	font-family: 'Font Awesome 5 Free';
	font-weight: 400;
	top: 6px;
	left: 6px;
}

.btn-faq-link:hover {
	color: #fac952;
}

.btn-faq-link.collapsed, .btn-faq-link.collapsed:hover {
	color: #333;
}

.btn-faq-link.collapsed::before {
	content: "\f059";
}

.query-form-wrap {
	position: relative;
    height: 3600px;
    overflow: hidden;
}

.query-form-wrap iframe {
	position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
}

.query-row {
	margin-top: 3rem;
}

/*-----------------------------------------------------------------------------------------
	Features
-----------------------------------------------------------------------------------------*/

.content-row {
	padding: 1rem 0;
	-webkit-box-shadow: 0 2px 6px -1px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 6px -1px rgba(0, 0, 0, 0.2);
	margin-bottom: 2rem;
}

.post-thumbnail {
	margin: 2rem 0;
}

.content-thumnail-cover .post-thumbnail {
	margin: 0;
}

.content-thumnail-cover img {
	max-width: 100%;
	height: auto;
}

/*-----------------------------------------------------------------------------------------
	Gallery
-----------------------------------------------------------------------------------------*/

.gallery-image-section h2 {
	margin-bottom: 2rem;
}

.gallery-dn-btn {
	cursor: pointer;
	margin-bottom: 0;
}

.gallery-dn-wrap {
	padding: 0.5rem;
	text-align: center;
}

.gallery-pop-wrap {
	position: absolute;
	background-color: rgba(0,0,0,0.7);
	top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.gallery-pop-inner {
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 50vh;
    width: 50vw;
    background-color: #fff;
    padding: 2rem 1rem 1rem;
    text-align: center;
}

.gallery-pop-inner h6 {
	margin-bottom: 1.5rem;
}

.sub-close-wrap {
	position: absolute;
    top: 7px;
    right: 12px;
}

.sub-close-wrap i {
	font-size: 20px;
	cursor: pointer;
}

.gallery-pop-hide {
	display: none;
}

.gallery-pop-vis {
	display: block;
}

.gallery-pop-vis {
	display: block;
}

.gallery-image-section {
	margin-bottom: 2rem;
}

.gallery-image-cover {
	margin-bottom: 1rem;
}

.gallery-image-section h2 {
	position: relative;
}

.gallery-image-section h2::after {
	content: "";
	position: absolute;
	left: 0;
    width: 80px;
    bottom: -10px;
    height: 2px;
    background-color: #f1bf22;
}

.gallery-dn-btn-hide {
	display: none;
}

.gallery-dn-btn-vis {
	display: block;
}

.gallery-dn-btn-hide a, .gallery-dn-btn-vis a {
	color: #232323;
}

/*-----------------------------------------------------------------------------------------
	Footer
-----------------------------------------------------------------------------------------*/

.footer-wrapper {
	background-color: #030b3c !important;
	padding: 3rem 0 1rem; 
}

.social-ul {
	padding-left: 0.5rem;
	display: inline-block;
	margin-bottom: 0;
}

.social-li {
	display: inline-block;
	padding: 2rem 1rem 0rem 0rem;
}

.social-circle {
	border: 1px solid #e9ae0b;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.social-li i {
	color: #e9ae0b;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}

.social-circle:hover,.social-li i:hover {
	color: #adb5bd;
} 

.menu-ul {
	padding-left: 0;
}

.menu-title {
	color: #fff;
}

.menu-li a {
	color: #fff;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
	font-weight: 300;
	font-size: 14px;
}

.menu-li a:hover,.email-text a:hover  {
	color:#adb5bd; 
} 

.contact-us-title,.email-text a {
	color: #fff;
}

.address-wrap {
	display: flex;
}

.address-text p, .email-text a, .phone-number p {
	margin-bottom: 0;
	font-weight: 300;
	color: #fff;
	font-size: 14px;
}

.address-icon, .address-text, .email-icon, 
.email-text, .phone-icon, .phone-number {
	display: inline-block;
	color: #e9ae0b;
}

.address-icon,.email-icon,.phone-icon {
	padding-right: 0.8rem;
}

.lft-row {
	padding-top: 1.5rem;
	text-align: center;
}

.lft-list {
	display: flex;
	justify-content: center;
}

.lft-list li {
	padding: 0 0.75rem;
    border-right: 1px solid #fff;
}

.lft-list li.lft-list-last-item {
	border-right: none;
}

.lft-list li a {
	color: #fff;
	font-weight: 300;
	font-size: 14px;
}

.copyright-wrap {
	background-color: #040c3c;
}

.copyright-inner h5 {
	color: #fff;
	text-align: center;
	padding: 0.5rem;
	font-weight: 300;
	font-size: 13px;
	line-height: 20px;
}

.copy-link {
	color: #e9ae0b;
}

.copy-link:hover {
	color: #fff;
}


/*-----------------------------------------------------------------------------------------
	Custom Resize
-----------------------------------------------------------------------------------------*/

/*-----------------------------------------
	Dropdown navbar
-----------------------------------------*/

@media only screen and (min-width: 992px) {
    .sub-menu {
        position: absolute;
        list-style: none;
        z-index: 10;
        opacity: 0;
        visibility: hidden;
        padding: 0;
    }
    .sub-menu li {
        padding: 0.5rem 1rem;
        background-color: #f8f9fa;
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    }
    .sub-menu li a {
        text-decoration: none;
        color: #333;
        display: block;
    }
    .nav-item:hover .sub-menu {
        perspective: 1000px;
        opacity: 1;
        visibility: visible;
    }
    .nav-item:hover .sub-menu li {
        opacity: 1;
        visibility: visible;
        animation: viewMenu 0.8s ease-in-out forwards;
    }
    .sub-menu li:hover {
        background-color: #fff;
    }
    .sub-menu li:hover a {
        color: #333;
    }
    @keyframes viewMenu {
        0% {
            opacity: 0;
            transform: rotateX(-90deg);
            transform-origin: top;
        }
        100% {
            opacity: 1;
            transform: rotateX(0deg);
        }
    }
    .hidden-menu, .hidden-menu2 {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .dropdown-nav {
        position: relative;
    }
    .nav-item {
        border-left: none;
        border-bottom: 1px solid #ccc;
    }
    .hidden-menu, .hidden-menu2 {
        position: absolute;
        top: 12px;
        right: 12px;
        color: #f8f9fa;
        background: #333;
        width: 25px;
        height: 25px;
        line-height: 25px;
        border-radius: 50%;
        text-align: center;
        cursor: pointer;
    }
    .sub-drop, .sub-menu {
        position: absolute;
        opacity: 0;
        visibility: hidden;
    }
    .sub-menu-small {
        position: static;
        list-style: none;
        z-index: 10;
        opacity: 1;
        visibility: visible;
        padding: 0;
        width: 100%;
    }
    .sub-menu-small li {
        padding: 0.5rem 1rem 0.5rem 2rem;
        background-color: #f8f9fa;
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    }
    .sub-menu-small li a {
        text-decoration: none;
        color: #333;
        display: block;
    }
    .sub-menu-small li:hover {
        background-color: #fff;
    }
    .sub-menu-small li:hover a {
        color: #333;
    }
    @keyframes viewMenu {
        0% {
            opacity: 0;
            transform: rotateX(-90deg) ;
            transform-origin: top;
        }
        100% {
            opacity: 1;
            transform: rotateX(0);
        }
    }
    .dropdown-nav-link {
        width: 90%;
    }
}

/*-----------------------------------------
	Dropdown navbar ends
-----------------------------------------*/

/*-----------------------------------------
    Bootstrap changes
-----------------------------------------*/

@media only screen and (min-width: 576px) {
    .container {
        max-width: 600px;
    }
}

@media only screen and (min-width: 768px) {
    .container {
        max-width: 850px;
    }
    .m-area-list li {
    	-ms-flex: 0 0 33.333333%;
	    flex: 0 0 33.333333%;
	    max-width: 33.333333%;
    }
}

@media only screen and (min-width: 992px) {
    .container {
        max-width: 1000px;
    }
}

@media only screen and (min-width: 1199px) {
    .container {
        max-width: 1150px;
    }
}

/*-----------------------------------------
    Bootstrap changes
-----------------------------------------*/


/*-----------------------------------------
    Custom Resize
-----------------------------------------*/

@media only screen and (min-width: 992px) {
	.top-nav-inner-sm {
		display: none;
	}
}

@media only screen and (max-width: 991px) {
    .d-ctform-map-wrap {
        padding-bottom: 50%;
    }
    .d-ctform {
        margin: 2rem 0 4rem;
    }
    .gserve-overlay {
        padding: 0.5rem;
    }
    .gserve-ft-title {
        font-size: 1.3rem
    }
    .gserve-title {
        font-size: 1rem;
    }
    .gserve-text {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    .d-imgtext-img-cover, .d-imgtext-teleimg-cover, .d-imgtext-startimg-cover {
        padding-bottom: 50%;
    }
    .d-imgtext-cover {
        margin-bottom: 2rem;
    }
    .navbar {
    	background-color: #fff!important;
    	border-top: 1px solid #e0ddd5;
    }
    .top-nav-logo-wrap {
    	display: none;
    }
    .logo-img-sm {
    	width: 170px;
    }
    .top-nav-inner {
    	justify-content: center;
    }
}

 

<!--
#recruitersSlider .owl-prev{color: #000; font-size: 25px; position: absolute; top: 50%; left: -40px; transform: translateY(-50%);}
#recruitersSlider .owl-next{color: #000; font-size: 25px; position: absolute; top: 50%; right: -40px; transform: translateY(-50%);}
#recruitersSlider .owl-prev:hover, .testimonial_slider .owl-next:hover{color: #d00000;}
#recruitersSlider .item{border:0px solid #ccc; border-radius:8px; padding:10px; margin:10px;}-->

.section-wrapper{padding:2rem 0;}
.mtop20{margin-top:20px !important;}.mtop30{margin-top:30px !important;} .mtop40{margin-top:40px !important;}
.Sidelinks {clear:both; margin:10px 0px 50px 0px;}
.Sidelinks ul{margin:0px; padding:0px;}
.Sidelinks li a{font-size:16px; padding:10px; color:#333; display:block; }
.Sidelinks li a:hover{color:#f4b34b; text-decoration:none;  }

.Sidelinks{background: #f8f9fb;border-right: 2px solid #e9ae0c;}
.Sidelinks li{border-bottom: 1px solid #e3e3e3;}
.Sidelinks li .activeT{background: #e9ae0c;}

.headSection, h2.headSection{font-size:18px; margin-top:20px; color:#011a6c}
.topicsSec h2{border-bottom:2px solid #f4b34b; margin-bottom:10px; padding-bottom:8px; color:#f4b34b}

.aboutConference{margin:20px 0px; clear:both;}
.aboutConference h2{font-size:18px; margin-top:0px; color:#011a6c}
.aboutConference p{font-size:14px; margin-bottom:10px;color: #555;line-height: 22px;}

.rotatorWrap{clear:both; margin:10px 0px;}
.rotatorWrap h3{text-align:center; font-size:18px; font-weight:bold;}
#recruitersSlider .owl-nav{display:none;}
#recruitersSlider .owl-dots{text-align:center;}
#recruitersSlider .owl-dots .owl-dot {background:#ccc; width:10px; height:10px; margin:5px;}
#recruitersSlider .owl-dots .active{background:#001d7b !important; }
#recruitersSlider .owl-item img{margin:0 auto;width:auto;}

#recruitersSlider2 .owl-nav{display:none;}
#recruitersSlider2 .owl-dots{text-align:center;}
#recruitersSlider2 .owl-dots .owl-dot {background:#ccc; width:10px; height:10px; margin:5px;}
#recruitersSlider2 .owl-dots .active{background:#001d7b !important; }
#recruitersSlider2 .owl-item img{ margin:0 auto;width:auto;}

#mediaSlider .owl-nav{display:none;}
#mediaSlider .owl-dots{text-align:center;}
#mediaSlider .owl-dots .owl-dot {background:#ccc; width:10px; height:10px; margin:5px;}
#mediaSlider .owl-dots .active{background:#001d7b !important; }
#mediaSlider .owl-item img{ margin:0 auto;width:auto;}

#bottomSlider .owl-prev{color: #000; font-size: 25px; position: absolute; top: 50%; left: -40px; transform: translateY(-50%);}
#bottomSlider .owl-next{color: #000; font-size: 25px; position: absolute; top: 50%; right: -40px; transform: translateY(-50%);}
#bottomSlider .owl-prev:hover, .testimonial_slider .owl-next:hover{color: #d00000;}
#bottomSlider .item{border:1px solid #ccc; border-radius:8px; padding:10px; margin:10px;}



#plenarySpeakers .owl-nav{display:none;}
#plenarySpeakers .owl-dots{text-align:center;}
#plenarySpeakers .owl-dots .owl-dot {background:#ccc; width:10px; height:10px; margin:5px;}
#plenarySpeakers .owl-dots .active{background:#001d7b !important; }
#plenarySpeakers .owl-item img{width:70%; margin:0 auto;}
/*
#plenarySpeakers .owl-prev{color: #000; font-size: 25px; position: absolute; top: 50%; left: -40px; transform: translateY(-50%);}
#plenarySpeakers .owl-next{color: #000; font-size: 25px; position: absolute; top: 50%; right: -40px; transform: translateY(-50%);}
#plenarySpeakers .owl-prev:hover, .testimonial_slider .owl-next:hover{color: #d00000;}*/



#plenarySpeakers .item{border-radius:8px; padding:10px; margin:10px;}
#plenarySpeakers h2{font-size:15px;}
#plenarySpeakers p{font-size:12px; margin-bottom: 5px;}
#plenarySpeakers p a{font-size:12px; color:#000; font-weight:bold; text-decoration:none;}

#keynoteSpeakers .owl-nav{display:none;}
#keynoteSpeakers .owl-dots{text-align:center;}
#keynoteSpeakers .owl-dots .owl-dot {background:#ccc; width:10px; height:10px; margin:5px;}
#keynoteSpeakers .owl-dots .active{background:#001d7b !important; }
#keynoteSpeakers .owl-item img{width:70%; margin:0 auto;}

/*
#keynoteSpeakers .owl-prev{color: #000; font-size: 25px; position: absolute; top: 50%; left: -40px; transform: translateY(-50%);}
#keynoteSpeakers .owl-next{color: #000; font-size: 25px; position: absolute; top: 50%; right: -40px; transform: translateY(-50%);}
#keynoteSpeakers .owl-prev:hover, .testimonial_slider .owl-next:hover{color: #d00000;}*/
#keynoteSpeakers .item{border-radius:8px; padding:10px; margin:10px;}
#keynoteSpeakers h2{font-size:15px;}
#keynoteSpeakers p{font-size:12px; margin-bottom: 5px;}
#keynoteSpeakers p a{font-size:12px; color:#000; font-weight:bold; text-decoration:none;}



#chairPerson .owl-prev{color: #000; font-size: 25px; position: absolute; top: 50%; left: -40px; transform: translateY(-50%);}
#chairPerson .owl-next{color: #000; font-size: 25px; position: absolute; top: 50%; right: -40px; transform: translateY(-50%);}
#chairPerson .owl-prev:hover, .testimonial_slider .owl-next:hover{color: #d00000;}
#chairPerson .item{border-radius:8px; padding:10px; margin:10px;}
#chairPerson h2{font-size: 18px;color: #011a6c;}
#chairPerson p{font-size:12px; margin-bottom: 5px;}
#chairPerson p a{font-size:12px; color:#000; font-weight:bold; text-decoration:none;}

.bfeatures-list {
	margin-bottom: 0;
}

.bfeatures-list li {
	list-style: none;
	position: relative;
	line-height: 25px;
	margin-bottom: 10px;
	height: 50px;
}

.bfeatures-list li::before {
	position: absolute;
	content: "";
	background-image: url('/wp-content/themes/glostem/asset/img/star.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	left: -40px;
	top: 4px;
	width: 25px;
	height: 25px;
}

.topicsSec{background:#f2f2f2; padding:5px; border:1px solid #ccc;}
ul.list6{margin:0px; padding:0px;}
.list6 li{list-style:none; font-size:13px; margin-bottom:8px;}

.list6 li ul{padding-left:10px; margin-top:10px;}
.list6 li ul li{list-style: circle;}



@media only screen and (max-width: 767px) {
	.usp-icon-inner-cover {
		text-align: left;
	}
    .ctcard-row {
        flex-direction: column-reverse;
    }
    .ctcard-icon-inner-cover {
        text-align: left;
        margin-bottom: 12px;
    }
    .ctcard-icon-cover {
        padding-left: 15px;
    }
    .gserve-overlay {
        padding: 1rem;
    }
    .gserve-ft-title {
        font-size: 1.5rem
    }
    .gserve-title {
        font-size: 1.25rem;
    }
    .gserve-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .ms-img {
        width: 50px;
        height: auto;
        padding-bottom: 1rem;
    }
    .gallery-pop-inner {
	    width: 75vw;
	}
    
}


@media only screen and (max-width: 650px) {
	.page-banner-rt p.lead-text {
		font-size: 16px;
		margin-bottom: 0;
	}
}


@media only screen and (max-width: 575px) {
	.gallery-pop-inner {
	    width: 90vw;
	}
	.page-banner-rt p.lead-text {
		padding-left: 10px;
	}
	.page-banner-rt p.lead-text::before {
		top: 0;
		bottom: 0;
	}
	.page-banner {
		min-height: 175px;
		background-image: url('/wp-content/themes/glostem/asset/img/page-banner.jpg');
		background-size: cover;
		background-repeat: no-repeat;
		background-position: right center
	}
	.page-banner img {
		display: none;
	}
}


@media only screen and (max-width: 500px) {
	.page-banner-rt p.lead-text {
		display: none;
	}
}