html {
  box-sizing: border-box;
}
*, *::after, *::before {
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
}
*, *::after, *::before {
  box-sizing: inherit;
}
.wpb_text_column.wpb_content_element {
    clear: left;
}

/* ---------- GGT Heading: icon alignment ---------- */
.ggt-heading .ggt-heading-icon {
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
}
.ggt-heading .ggt-subtitle { color: var(--ggt-subtitle-color) !important; }
.ggt-heading .ggt-text { color: var(--ggt-description-color) !important; }
.ggt-heading.text-align-left .ggt-title .ggt-heading-icon { margin-right: 10px; }
.ggt-heading.text-align-right .ggt-title .ggt-heading-icon { margin-left: 10px; }
.ggt-heading .ggt-heading-icon-wrap.ggt-align-center {
	text-align: center;
	margin-bottom: 8px;
}

/* ---------- Clients: logo opacity (carousel only) ---------- */
.ggt-clients.ggt-swiper-wrap .ggt-client img{
	opacity: var(--ggt-client-logo-opacity, 1);
	transition: opacity .2s ease-in-out;
}

/* ---------- Contact Form (CF7) skins ---------- */
.ggt-contact-form .wpcf7 label{
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	color: var(--ggt-cf7-text, #000);
}
.ggt-contact-form .wpcf7 input[type="text"],
.ggt-contact-form .wpcf7 input[type="email"],
.ggt-contact-form .wpcf7 input[type="tel"],
.ggt-contact-form .wpcf7 input[type="url"],
.ggt-contact-form .wpcf7 input[type="number"],
.ggt-contact-form .wpcf7 input[type="date"],
.ggt-contact-form .wpcf7 textarea,
.ggt-contact-form .wpcf7 select{
	width: 100%;
	max-width: 100%;
	border: 1px solid var(--ggt-cf7-border, rgba(0,0,0,.15));
	color: var(--ggt-cf7-text, #000);
	background: var(--ggt-cf7-bg, #fff);
}
.ggt-contact-form .wpcf7 ::placeholder{
	color: var(--ggt-cf7-placeholder, rgba(0,0,0,.45));
}
.ggt-contact-form .wpcf7 .wpcf7-submit{
	background: var(--ggt-cf7-btn-bg, var(--ggt-main-color));
	color: var(--ggt-cf7-btn-text, #fff);
	border-color: var(--ggt-cf7-btn-bg, var(--ggt-main-color));
}
.ggt-contact-form.ggt-contact-form-skin-light{
	--ggt-cf7-text: #000;
	--ggt-cf7-bg: #fff;
	--ggt-cf7-border: rgba(0,0,0,.18);
	--ggt-cf7-placeholder: rgba(0,0,0,.45);
	--ggt-cf7-btn-bg: var(--ggt-main-color);
	--ggt-cf7-btn-text: #fff;
}
.ggt-contact-form.ggt-contact-form-skin-dark{
	--ggt-cf7-text: #fff;
	--ggt-cf7-bg: rgba(255,255,255,.06);
	--ggt-cf7-border: rgba(255,255,255,.25);
	--ggt-cf7-placeholder: rgba(255,255,255,.6);
	--ggt-cf7-btn-bg: #fff;
	--ggt-cf7-btn-text: #000;
}
.ggt-contact-form.ggt-contact-form-skin-main{
	--ggt-cf7-text: #000;
	--ggt-cf7-bg: #fff;
	--ggt-cf7-border: rgba(0,0,0,.18);
	--ggt-cf7-placeholder: rgba(0,0,0,.45);
	--ggt-cf7-btn-bg: var(--ggt-main-color);
	--ggt-cf7-btn-text: #fff;
}

/* Apply skin text color to CF7 helper texts */
.ggt-contact-form .wpcf7 .wpcf7-not-valid-tip,
.ggt-contact-form .wpcf7 .wpcf7-response-output{
	color: var(--ggt-cf7-text, #000);
}

/* ---------- Piecharts: Semi Gauge type ---------- */
.ggt-piechart.ggt-type-gauge {
	text-align: center;
	padding: 20px 10px;
}
.ggt-piechart.ggt-type-gauge .ggt-gauge {
	width: 100%;
	max-width: 220px;
	height: auto;
	display: block;
	margin: 0 auto;
}
.ggt-piechart.ggt-type-gauge .ggt-gauge-wrap {
	position: relative;
	display: inline-block;
}
.ggt-piechart.ggt-type-gauge .ggt-gauge-value {
	position: absolute;
	left: 50%;
	top: 75%;
	display: block;
	font-weight: 500;
	font-size: 45px;
	line-height: 1;
	left: 0;
	right: 0;
	margin: 0px auto 0 auto;
}


/* Text skins for piecharts */
.ggt-piecharts.ggt-text-skin-light .ggt-label,
.ggt-piecharts.ggt-text-skin-light .ggt-gauge-value,
.ggt-piecharts.ggt-text-skin-light .ggt-percentage span { color: #111; }
.ggt-piecharts.ggt-text-skin-dark .ggt-label,
.ggt-piecharts.ggt-text-skin-dark .ggt-gauge-value,
.ggt-piecharts.ggt-text-skin-dark .ggt-percentage span { color: #fff; }

/* ---------- Piecharts: Default circle – prevent initial layout jump ---------- */
.ggt-piechart {
	position: relative;
	display: inline-block;
}
.ggt-piechart .ggt-percentage {
	position: relative;
	/* add breathing room so full circle (with stroke) never clips */
	width: 180px;
	height: 180px;
	display: inline-block;
	vertical-align: middle;
	overflow: visible;
}
.ggt-piechart .ggt-percentage > span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: inline-block;
	text-align: center;
}
.ggt-piechart .ggt-label {
	position: relative;
	left: 50%;
	top: 40px;
	transform: translate(-50%, -50%);
	width: 80%;
  line-height: 1.2;
  opacity: .5;
	text-align: center;
}
.ggt-piechart .ggt-percentage canvas {
	position: absolute;
	left: 0;
	top: 0;
	/* ensure canvas is centered inside the larger 220x220 wrap */
	margin: 10px;
}

/* ---------- Parallax dots stagger fallback (duplicate here to ensure load) ---------- */
@keyframes ggtDotPulse {
	/* Quick blink in the beginning, then pause for the rest of the cycle */
	0%   { opacity: .35; }
	10%  { opacity: 1; }
	20%  { opacity: .35; }
	100% { opacity: .35; }
}
/* Ensure animation applies even if theme later overrides properties */
.horizontal-header-parallax-multi-level-1 .menu-right-fixed .parallax-wrap li::before,
.horizontal-header-parallax-multi-level-topbar-2 .menu-right-fixed .parallax-wrap li::before,
.horizontal-header-parallax-menu-5 .menu-right-fixed .parallax-wrap li::before {
	/* 11s total: ~1s blink + 10s pause */
	animation: ggtDotPulse 11s ease-in-out infinite !important;
	animation-delay: var(--ggtDotDelay, 0s) !important;
}
.horizontal-header-parallax-multi-level-topbar-2 .menu-right-fixed .parallax-wrap li::before {
	animation: ggtDotPulse 2.4s ease-in-out infinite !important;
}
.horizontal-header-parallax-multi-level-1 .menu-right-fixed .parallax-wrap li:nth-child(1)::before,
.horizontal-header-parallax-multi-level-topbar-2 .menu-right-fixed .parallax-wrap li:nth-child(1)::before,
.horizontal-header-parallax-menu-5 .menu-right-fixed .parallax-wrap li:nth-child(1)::before { animation-delay: 0s !important; }
.horizontal-header-parallax-multi-level-1 .menu-right-fixed .parallax-wrap li:nth-child(2)::before,
.horizontal-header-parallax-multi-level-topbar-2 .menu-right-fixed .parallax-wrap li:nth-child(2)::before,
.horizontal-header-parallax-menu-5 .menu-right-fixed .parallax-wrap li:nth-child(2)::before { animation-delay: .1s !important; }
.horizontal-header-parallax-multi-level-1 .menu-right-fixed .parallax-wrap li:nth-child(3)::before,
.horizontal-header-parallax-multi-level-topbar-2 .menu-right-fixed .parallax-wrap li:nth-child(3)::before,
.horizontal-header-parallax-menu-5 .menu-right-fixed .parallax-wrap li:nth-child(3)::before { animation-delay: .2s !important; }
.horizontal-header-parallax-multi-level-1 .menu-right-fixed .parallax-wrap li:nth-child(4)::before,
.horizontal-header-parallax-multi-level-topbar-2 .menu-right-fixed .parallax-wrap li:nth-child(4)::before,
.horizontal-header-parallax-menu-5 .menu-right-fixed .parallax-wrap li:nth-child(4)::before { animation-delay: .3s !important; }
.horizontal-header-parallax-multi-level-1 .menu-right-fixed .parallax-wrap li:nth-child(5)::before,
.horizontal-header-parallax-multi-level-topbar-2 .menu-right-fixed .parallax-wrap li:nth-child(5)::before,
.horizontal-header-parallax-menu-5 .menu-right-fixed .parallax-wrap li:nth-child(5)::before { animation-delay: .4s !important; }
.horizontal-header-parallax-multi-level-1 .menu-right-fixed .parallax-wrap li:nth-child(6)::before,
.horizontal-header-parallax-multi-level-topbar-2 .menu-right-fixed .parallax-wrap li:nth-child(6)::before,
.horizontal-header-parallax-menu-5 .menu-right-fixed .parallax-wrap li:nth-child(6)::before { animation-delay: .5s !important; }
.horizontal-header-parallax-multi-level-1 .menu-right-fixed .parallax-wrap li:nth-child(7)::before,
.horizontal-header-parallax-multi-level-topbar-2 .menu-right-fixed .parallax-wrap li:nth-child(7)::before,
.horizontal-header-parallax-menu-5 .menu-right-fixed .parallax-wrap li:nth-child(7)::before { animation-delay: .6s !important; }
.horizontal-header-parallax-multi-level-1 .menu-right-fixed .parallax-wrap li:nth-child(8)::before,
.horizontal-header-parallax-multi-level-topbar-2 .menu-right-fixed .parallax-wrap li:nth-child(8)::before,
.horizontal-header-parallax-menu-5 .menu-right-fixed .parallax-wrap li:nth-child(8)::before { animation-delay: .7s !important; }
.horizontal-header-parallax-multi-level-1 .menu-right-fixed .parallax-wrap li:nth-child(9)::before,
.horizontal-header-parallax-multi-level-topbar-2 .menu-right-fixed .parallax-wrap li:nth-child(9)::before,
.horizontal-header-parallax-menu-5 .menu-right-fixed .parallax-wrap li:nth-child(9)::before { animation-delay: .8s !important; }
.horizontal-header-parallax-multi-level-1 .menu-right-fixed .parallax-wrap li:nth-child(10)::before,
.horizontal-header-parallax-multi-level-topbar-2 .menu-right-fixed .parallax-wrap li:nth-child(10)::before,
.horizontal-header-parallax-menu-5 .menu-right-fixed .parallax-wrap li:nth-child(10)::before { animation-delay: .9s !important; }
.horizontal-header-parallax-multi-level-1 .menu-right-fixed .parallax-wrap li:nth-child(11)::before,
.horizontal-header-parallax-multi-level-topbar-2 .menu-right-fixed .parallax-wrap li:nth-child(11)::before,
.horizontal-header-parallax-menu-5 .menu-right-fixed .parallax-wrap li:nth-child(11)::before { animation-delay: 1s !important; }
.horizontal-header-parallax-multi-level-1 .menu-right-fixed .parallax-wrap li:nth-child(12)::before,
.horizontal-header-parallax-multi-level-topbar-2 .menu-right-fixed .parallax-wrap li:nth-child(12)::before,
.horizontal-header-parallax-menu-5 .menu-right-fixed .parallax-wrap li:nth-child(12)::before { animation-delay: 1.1s !important; }

.horizontal-header-parallax-menu-1 .to-preset .parallax-menu .menu-item.current a {
	background: transparent !important;
}

.ggt-post-loop-wrap.ggt-container {
  padding: 40px 20px 80px 20px;
}
.ggt-padding {
  padding: 20px 20px;
}

/* --------------- Addon: Filters styles --------- */

.ggt-taxonomy-filter {
  display: inline-block;
  margin-bottom: 20px;
}
.ggt-filter-item {
  float: left;
  position: relative;
}
.ggt-filter-item a {
	display: inline-block;
	padding: 0px 0px;
	color: #555555;
	margin: 0 20px;
	letter-spacing: 2px !important;
	font-size: 1rem !important;
}
.ggt-filter-item svg {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -5px;
}
.ggt-filter-item .wave {
  opacity: 1;
}
.ggt-filter-item .svg-wrap {
  width: 0px;
  overflow: hidden;
  display: block;
  position: absolute;
  height: 20px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -10px;
  transition: all .3s ease-in-out;
}
.ggt-filter-item:hover .svg-wrap {
  width: 40px;
}
.ggt-filter-item.ggt-active .svg-wrap {
  width: 40px;
}

/* Lavalamp effect for portfolio filters */
.ggt-taxonomy-filter {
  position: relative;
}
.ggt-taxonomy-filter .svg-wrap { display: none !important; } /* disable old wave */
.ggt-taxonomy-filter .ggt-lavalamp {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: currentColor;
  pointer-events: none;
  transition: left .35s cubic-bezier(0.22, 0.61, 0.36, 1), width .35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.ggt-taxonomy-filter .ggt-filter-item {
  margin-right: 8px;
}
.ggt-taxonomy-filter .ggt-filter-item a {
  padding-bottom: 10px;
}

/* Lavalamp color by skin (explicit background to override theme) */
.ggt-portfolio-wrap.dark-skin .ggt-taxonomy-filter { color: #ffffff; }
.ggt-portfolio-wrap.dark-skin .ggt-taxonomy-filter .ggt-lavalamp { background: #ffffff !important; }
.ggt-portfolio-wrap:not(.dark-skin) .ggt-taxonomy-filter { color: #000000; }
.ggt-portfolio-wrap:not(.dark-skin) .ggt-taxonomy-filter .ggt-lavalamp { background: #000000 !important; }

/* Testimonials skins (text colors) */
.ggt-testimonials-slider.ggt-nav-skin-dark,
.ggt-testimonials-slider.ggt-nav-skin-dark .ggt-testimonial,
.ggt-testimonials-slider.ggt-nav-skin-dark .ggt-testimonial * { color: #ffffff !important; }
.ggt-testimonials-slider.ggt-nav-skin-dark .ggt-testimonial-text,
.ggt-testimonials-slider.ggt-nav-skin-dark .ggt-testimonial-text p,
.ggt-testimonials-slider.ggt-nav-skin-dark .ggt-author-name,
.ggt-testimonials-slider.ggt-nav-skin-dark .ggt-author-credentials,
.ggt-testimonials-slider.ggt-nav-skin-dark .ggt-rate span,
.ggt-testimonials-slider.ggt-nav-skin-dark a { color: #ffffff !important; }
.ggt-testimonials-slider.ggt-nav-skin-dark .ggt-rate i { color: #ffcc33 !important; } /* keep stars high-contrast */
.ggt-testimonials-slider.ggt-nav-skin-light,
.ggt-testimonials-slider.ggt-nav-skin-light .ggt-testimonial,
.ggt-testimonials-slider.ggt-nav-skin-light .ggt-testimonial * { color: #000000 !important; }
.ggt-testimonials-slider.ggt-nav-skin-light .ggt-testimonial-text,
.ggt-testimonials-slider.ggt-nav-skin-light .ggt-testimonial-text p,
.ggt-testimonials-slider.ggt-nav-skin-light .ggt-author-name,
.ggt-testimonials-slider.ggt-nav-skin-light .ggt-author-credentials,
.ggt-testimonials-slider.ggt-nav-skin-light .ggt-rate span,
.ggt-testimonials-slider.ggt-nav-skin-light a { color: #000000 !important; }
/* main: inherit theme text color -> no override */

/* Testimonials skins (controls colors) */
.ggt-testimonials-slider.ggt-nav-skin-dark .ggt-swiper-nav { border-color: #ffffff !important; }
.ggt-testimonials-slider.ggt-nav-skin-dark .ggt-swiper-nav::before { color: #ffffff !important; }
.ggt-testimonials-slider.ggt-nav-skin-dark .swiper-pagination-bullet { background: rgba(255,255,255,.6) !important; }
.ggt-testimonials-slider.ggt-nav-skin-dark .swiper-pagination-bullet.swiper-pagination-bullet-active { background: #ffffff !important; }
.ggt-testimonials-slider.ggt-nav-skin-light .ggt-swiper-nav { border-color: #000000 !important; }
.ggt-testimonials-slider.ggt-nav-skin-light .ggt-swiper-nav::before { color: #000000 !important; }
.ggt-testimonials-slider.ggt-nav-skin-light .swiper-pagination-bullet { background: rgba(0,0,0,.55) !important; }
.ggt-testimonials-slider.ggt-nav-skin-light .swiper-pagination-bullet.swiper-pagination-bullet-active { background: #000000 !important; }
/* main skin: use theme main color for controls */
.ggt-testimonials-slider.ggt-nav-skin-main .swiper-pagination-bullet { background: var(--ggt-main-color) !important; opacity: .5; }
.ggt-testimonials-slider.ggt-nav-skin-main .swiper-pagination-bullet.swiper-pagination-bullet-active { background: var(--ggt-main-color) !important; opacity: 1; }
.ggt-testimonials-slider.ggt-nav-skin-main .ggt-swiper-nav { border-color: var(--ggt-main-color) !important; }
.ggt-testimonials-slider.ggt-nav-skin-main .ggt-swiper-nav::before { color: var(--ggt-main-color) !important; }

/* Generic nav_skin rules for all Swiper wraps */
.ggt-swiper-wrap.ggt-nav-skin-dark .ggt-swiper-nav { border-color: #ffffff !important; }
.ggt-swiper-wrap.ggt-nav-skin-dark .ggt-swiper-nav::before { color: #ffffff !important; }
.ggt-swiper-wrap.ggt-nav-skin-dark .swiper-pagination-bullet { background: rgba(255,255,255,.6) !important; }
.ggt-swiper-wrap.ggt-nav-skin-dark .swiper-pagination-bullet.swiper-pagination-bullet-active { background: #ffffff !important; }
.ggt-swiper-wrap.ggt-nav-skin-light .ggt-swiper-nav { border-color: #000000 !important; }
.ggt-swiper-wrap.ggt-nav-skin-light .ggt-swiper-nav::before { color: #000000 !important; }
.ggt-swiper-wrap.ggt-nav-skin-light .swiper-pagination-bullet { background: rgba(0,0,0,.55) !important; }
.ggt-swiper-wrap.ggt-nav-skin-light .swiper-pagination-bullet.swiper-pagination-bullet-active { background: #000000 !important; }
.ggt-swiper-wrap.ggt-nav-skin-main .ggt-swiper-nav { border-color: var(--ggt-main-color) !important; }
.ggt-swiper-wrap.ggt-nav-skin-main .ggt-swiper-nav::before { color: var(--ggt-main-color) !important; }
.ggt-swiper-wrap.ggt-nav-skin-main .swiper-pagination-bullet { background: var(--ggt-main-color) !important; opacity: .5; }
.ggt-swiper-wrap.ggt-nav-skin-main .swiper-pagination-bullet.swiper-pagination-bullet-active { background: var(--ggt-main-color) !important; opacity: 1; }

/* Portfolio: Load more button skin */
.ggt-portfolio-wrap.dark-skin .ggt-portfolio-load-more { 
  border-color: #ffffff !important;
  color: #ffffff !important;
}
.ggt-portfolio-wrap.dark-skin .ggt-portfolio-load-more .btn-text-1,
.ggt-portfolio-wrap.dark-skin .ggt-portfolio-load-more .btn-text-2 { color: #ffffff !important; }
.ggt-portfolio-wrap:not(.dark-skin) .ggt-portfolio-load-more { 
  border-color: #000000 !important;
  color: #000000 !important;
}
.ggt-portfolio-wrap:not(.dark-skin) .ggt-portfolio-load-more .btn-text-1,
.ggt-portfolio-wrap:not(.dark-skin) .ggt-portfolio-load-more .btn-text-2 { color: #000000 !important; }

/* Testimonials one-column centered layout */
.ggt-testimonials-slider[data-display_columns="1"] .ggt-testimonial,
.ggt-testimonials-slider[data-display_columns="1"] .ggt-testimonial * {
  text-align: center;
}
.ggt-testimonials-slider[data-display_columns="1"] .ggt-testimonial .ggt-testimonial-avatar {
  display: block;
  margin: 16px auto 8px auto;
  float: none;
}
.ggt-testimonials-slider[data-display_columns="1"] .ggt-testimonial .ggt-testimonial-author,
.ggt-testimonials-slider[data-display_columns="1"] .ggt-testimonial .ggt-testimonial-credentials,
.ggt-testimonials-slider[data-display_columns="1"] .ggt-testimonial .ggt-testimonial-rating {
  display: block;
  margin: 6px auto;
}

/* -------- Generic scroll animations -------- */
.ggt-anim { opacity: 0; transform: translateZ(0); will-change: opacity, transform; }
.ggt-anim-in { opacity: 1; }
.ggt-anim-fadein { transition: opacity .6s ease; transform: none; }
.ggt-anim-fadeup { transition: opacity .6s ease, transform .6s ease; transform: translateY(18px); }
.ggt-anim-fadeup.ggt-anim-in { transform: translateY(0); }


/* --------------- Addon: External Portfolio --------- */

.ggt-external-portfolio-item {
  padding: 0 15px;
  position: relative;
}
.ggt-external-portfolio-title a{
  color: inherit;
  display: block;
  padding: 20px 20px 50px 20px;
  text-align: center;
}
.ggt-external-portfolio-image {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 12px;
  transition: all .5s ease-in-out;
}
.ggt-external-portfolio-image:hover {
  transform: scale(.97);
}
.ggt-external-portfolio-item img {
  height: auto;
  width: 100%;
  transition: all .5s ease-in-out;
}
.ggt-external-portfolio-image:hover img {
  transform: scale(1.1)
 }
.ggt-portfolio-overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
}
.ggt-external-portfolio-item .hover-hint-wrap {
  overflow: hidden !important;
  position: absolute;
  z-index: 1;
  cursor: none;
  width: 100%;
  height: 100%;
  opacity: .5;
  transition: all .2s ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.ggt-external-portfolio-item .hover-hint-wrap:hover {
  opacity: 1;
}
.ggt-external-portfolio-item .hover-hint-wrap:hover .hover-hint {
  transform: scale(1);
  opacity: 1;
}
.ggt-external-portfolio-item .hover-hint {
  position: absolute;
  transform: scale(.7);
  transition: transform .3s ease-in-out;
  opacity: 0;
  width: 120px;
  height: 120px;
  border-radius: 100px;
  background: #fff;
  color: #000;
  text-align: center;
  line-height: 35px;
  cursor: none;
  padding: 0 20px;
  box-shadow: 0 1.8px 2.2px rgba(0, 0, 0, 0.004), 0 6.7px 5.3px rgba(0, 0, 0, 0.008), 0 12.5px 10px rgba(0, 0, 0, 0.01), 0 22.3px 17.9px rgba(0, 0, 0, 0.012), 0 41.8px 33.4px rgba(0, 0, 0, 0.006), 0 100px 80px rgba(0, 0, 0, 0.028);
}
.ggt-button.ggt-portfolio-load-more {
	width: 200px;
	margin: 50px auto 0px auto;
	display: block;
}
.ggt-external-portfolio-item .hover-hint span {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

/* --------------- Addon: Post Grid --------- */

.ggt-post-grid-header {
  text-align: center;
}
.ggt-post-grid-wrap .ggt-entry-text-wrap {
  position: relative;
  padding: 40px 40px;
}
.ggt-post-grid-wrap .ggt-post-grid-overlay {
  background-position: center;
  background-size: cover;
  border-radius: 12px;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.ggt-post-grid-wrap .ggt-post-grid-overlay::after {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: .6;
  border-radius: 12px;
  z-index: 0;
}
.ggt-post-grid-wrap .thumbnail-background .ggt-entry-meta, 
.ggt-post-grid-wrap .thumbnail-background .post-title, 
.ggt-post-grid-wrap .thumbnail-background .post-date, 
.ggt-post-grid-wrap .thumbnail-background .entry-summary, 
.ggt-post-grid-wrap .thumbnail-background .post-media-controls, 
.ggt-post-grid-wrap .thumbnail-background .link-more {
  position: relative;
  z-index: 1;
} 
.ggt-post-grid-wrap .thumbnail-background .ggt-entry-meta a, 
.ggt-post-grid-wrap .thumbnail-background .post-title a, 
.ggt-post-grid-wrap .thumbnail-background .post-date, 
.ggt-post-grid-wrap .thumbnail-background .entry-summary, 
.ggt-post-grid-wrap .thumbnail-background .post-media-controls, 
.ggt-post-grid-wrap .thumbnail-background .link-more {
  color: #ffffff;
  position: relative;
  z-index: 1;
} 
.ggt-post-grid-wrap .entry-summary {
  margin-top: 20px;
}



/* --------------- Addon: Portfolio --------- */

.ggt-portfolio-header {
  text-align: center;
}
.ggt-portfolio-wrap .ggt-entry-text-wrap {
  position: relative;
  padding: 40px 40px;
}
.ggt-portfolio-wrap .ggt-portfolio-overlay {
  background-position: center;
  background-size: cover;
  border-radius: 12px;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all .5s ease-in-out;
  transform: scale(1);
}
.ggt-portfolio-item:hover .ggt-portfolio-overlay {
  border: 2px solid;
  transform: scale(1.1);
}

.ggt-portfolio-wrap .thumbnail-background .ggt-entry-meta, 
.ggt-portfolio-wrap .thumbnail-background .post-title, 
.ggt-portfolio-wrap .thumbnail-background .post-date, 
.ggt-portfolio-wrap .thumbnail-background .entry-summary, 
.ggt-portfolio-wrap .thumbnail-background .post-media-controls, 
.ggt-portfolio-wrap .thumbnail-background .link-more {
  position: relative;
  z-index: 1;
} 
.ggt-portfolio-wrap .thumbnail-background .ggt-entry-meta a, 
.ggt-portfolio-wrap .thumbnail-background .post-title a, 
.ggt-portfolio-wrap .thumbnail-background .post-date, 
.ggt-portfolio-wrap .thumbnail-background .entry-summary, 
.ggt-portfolio-wrap .thumbnail-background .post-media-controls, 
.ggt-portfolio-wrap .thumbnail-background .link-more {
  color: #ffffff;
  position: relative;
  z-index: 1;
} 
.ggt-portfolio-wrap .entry-summary {
  margin-top: 20px;
}

.ggt-portfolio-wrap article.post {
  position: relative;
}
.ggt-portfolio-wrap .ggt-entry-text-wrap.thumbnail-background {
  min-height: 400px;
  overflow: hidden;
  border-radius: 12px;
}
.ggt-portfolio-wrap .hover-hint-wrap {
  overflow: hidden !important;
  position: absolute;
  z-index: 999;
  cursor: none;
  width: 100%;
  height: 100%;
  opacity: .5;
  transition: all .2s ease-in-out;
}
.ggt-portfolio-wrap .hover-hint-wrap:hover {
  opacity: 1;
}
.ggt-portfolio-wrap .hover-hint-wrap:hover .hover-hint {
  transform: scale(1);
  opacity: 1;
}
.ggt-portfolio-wrap .hover-hint {
  position: absolute;
  transform: scale(.7);
  transition: transform .3s ease-in-out;
  opacity: 0;
  width: 140px;
  height: 140px;
  border-radius: 100px;
  background: #fff;
  color: #000;
  text-align: center;
  line-height: 35px;
  cursor: none;
  padding: 0 20px;
  box-shadow: 0 1.8px 2.2px rgba(0, 0, 0, 0.004), 0 6.7px 5.3px rgba(0, 0, 0, 0.008), 0 12.5px 10px rgba(0, 0, 0, 0.01), 0 22.3px 17.9px rgba(0, 0, 0, 0.012), 0 41.8px 33.4px rgba(0, 0, 0, 0.006), 0 100px 80px rgba(0, 0, 0, 0.028);
}
.ggt-portfolio-wrap .hover-hint span {
	display: block;
	font-size: 13px;
	line-height: 1.2;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	font-weight: normal;
}
.ggt-portfolio-wrap .ggt-portfolio-item {
}
.ggt-portfolio-wrap .ggt-portfolio-item article{
  position: relative;
}
.ggt-portfolio-wrap .ggt-portfolio-title a {
  color: inherit;
  display: block;
  padding: 20px 20px 0 20px;
  text-align: center;
}
.ggt-project-image-thumb {
  position: relative;
}
.ggt-project-image-thumb a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.ggt-portfolio-wrap .ggt-entry-meta {
  text-align: center;
}
.ggt-portfolio-wrap .ggt-entry-meta a, 
.ggt-portfolio-wrap .ggt-entry-meta a:hover {
  font-size: .8rem;
  padding: 0 5px;
}
.ggt-portfolio-wrap .post-categories li::after {
  content: "";
  display: none;
}

.ggt-portfolio-wrap.dark-skin .ggt-filter-item a,
.ggt-portfolio-wrap.dark-skin .ggt-portfolio-title a,
.ggt-portfolio-wrap.dark-skin .cat-links a {
  color: #fff;
}

/* --------------- Addon: Counters --------- */


.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
  display: inline-block;
  vertical-align: middle;
  visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
  text-align: left;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden; }

.ggt-stats-title > h5 {
    color: inherit;
}
.ggt-stats-title-wrap {
  margin-top: 50px;
}
.ggt-stats-title-wrap .ggt-icon {
  font-size: 20px;
  margin: auto;
  width: 60px;
  height: 60px;
  line-height: 60px;
}
.ggt-stats-title-wrap .ggt-image {
  width: 120px;
  height: auto;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
  display: block; }

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
  display: block;
  -webkit-backface-visibility: hidden; }

.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-default .odometer-digit .odometer-value {
  display: block;
  -webkit-transform: translateZ(0); }

.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value, .odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
  position: absolute; }

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s; }

.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%); }

.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%); }

.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0); }

.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  line-height: 1em; }

.odometer.odometer-auto-theme .odometer-value, .odometer.odometer-theme-default .odometer-value {
  text-align: center; }

/* --- Animate Numbers ---- */
.ggt-odometers {
    font-size: 0;
}
.ggt-odometers .ggt-odometer {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  position: relative;
}
    .ggt-odometers .ggt-odometer:last-child:after {
      border: none; }
.ggt-odometers .ggt-odometer .ggt-prefix, .ggt-odometers .ggt-odometer .ggt-suffix {
    display: block;
}
.ggt-odometers .ggt-odometer .ggt-suffix {
  display: block;
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.ggt-odometers .ggt-odometer .ggt-number {
    color: #333;
    font-size: 60px;
    font-weight: 700;
}
.ggt-odometers .ggt-odometer .ggt-number span {
    font-size: 60px;
}
.ggt-dark-bg .ggt-odometers .ggt-odometer .ggt-number {
    color: #e5e5e5;
}
.ggt-odometers .ggt-odometer .ggt-stats-title {
  display: flex;
  text-align: left;
}
.ggt-stats-title > h4 {
    color: inherit;
    display: inline-block;
}
.ggt-dark-bg .ggt-odometers .ggt-odometer .ggt-stats-title {
    color: #909090;
}
.ggt-odometers .ggt-odometer .ggt-stats-title span {
    float: left;
    margin-right: 15px;
}
.ggt-odometers .ggt-odometer .ggt-stats-title .ggt-icon-wrapper {
  display: block;
  font-size: 32px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 50px;
  box-shadow: 0 1.8px 2.2px rgba(0, 0, 0, 0.004), 0 6.7px 5.3px rgba(0, 0, 0, 0.008), 0 12.5px 10px rgba(0, 0, 0, 0.01), 0 22.3px 17.9px rgba(0, 0, 0, 0.012), 0 41.8px 33.4px rgba(0, 0, 0, 0.006), 0 100px 80px rgba(0, 0, 0, 0.028);
  height: 60px;
  width: 60px;
  text-align: center;
}


@media only screen and (max-width: 960px) {
    .ggt-odometers .ggt-odometer .ggt-number {
        font-size: 48px;
        line-height: 56px;
        margin-bottom: 0;
    }
    .ggt-odometers .ggt-odometer .ggt-number span {
        font-size: 48px;
    }
    .ggt-odometers .ggt-odometer .ggt-stats-title {
        font-size: 15px;
        line-height: 26px;
    }
    .ggt-taxonomy-filter {
      width: 100%;
      overflow: scroll;
      display: flex;
      margin-top: 20px;
      margin-bottom: 40px;
    }
}
@media only screen and (max-width: 479px) {
	.ggt-padding {
		display: block;
	}
  .ggt-banner.ggt-fourcol {
  margin-bottom: 30px;
}
.ggt-heading .ggt-text {
  width: 90%;
}
    .ggt-odometers .ggt-odometer {
        text-align: center;
    }
    .ggt-odometers .ggt-odometer .ggt-stats-title span {
        float: none !important;
        margin: 0 !important;
    }
}

.os-animation{
    opacity: 0;
}

.os-animation.animated{
    opacity: 1;
}



/* --------------- Addon: Post Slider --------- */


.slick-initialized .slick-slide {
  display: block;
}


/* --------------- Addon: Post Ticker --------- */

.posts-ticker-item.slick-slide {
    background: #fff;
    box-shadow: 0 5px 50px 0 rgba(0,0,0,0.07000000000000001);
    margin: 30px 40px;
    border-radius: 12px;
}
.posts-ticker-item .author-name {
  top: 0;
  vertical-align: middle;
}
.ggt-container.ggt-posts-ticker-wrap button.slick-next {
  transform: rotate(90deg);
  top: auto;
  bottom: 71px;
  right: 15px;
}
.ggt-container.ggt-posts-ticker-wrap button.slick-prev {
  transform: rotate(90deg);
  right: 15px;
  left: auto;
  top: 71px;
} 
.ggt-container.ggt-fullwidth-carousel button.slick-next {
  right: 55px;
}
.ggt-container.ggt-fullwidth-carousel button.slick-prev {
  left: 55px;
}
/* --------------- Addon: Post Carousel styles --------- */

.ggt-posts-carousel-item .post-title,
 .ggt-post-loop-item .post-title a,
 .ggt-fullwidth-carousel-item .post-title a,
 .posts-ticker-item.slick-slide .post-title a{
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 2.5rem;
}
.ggt-fullwidth-carousel-item .published.post-date {
	width: 70px;
	height: 70px;
	text-align: center;
	line-height: 70px;
	border-radius: 100px;
	background: #fff;
	display: block;
	position: absolute;
	top: -37px;
	left: 0;
	right: 0;
	margin: auto;
}
.ggt-fullwidth-carousel-swiper article.post {
	background: transparent;
}
.ggt-posts-carousel-item.slick-slide .ggt-project-image a {
  position: relative;
}
.ggt-posts-carousel .entry-summary {
  margin-top: 20px;
}
.ggt-posts-carousel-item .post-author-avatar {
  border: 0 solid;
}
.ggt-posts-carousel-item .ggt-entry-text-wrap {
  padding: 30px 30px;
}
.ggt-posts-carousel-item .post-author-avatar {
  margin-right: auto;
  width: 50px;
  height: 50px;
}
.ggt-posts-carousel-item .post-media-controls {
  display: flex;
  margin-top: 30px;
}
.ggt-posts-carousel-item .post-like {
  position: relative;
  right: 0;
  margin: 0;
}
.ggt-posts-carousel-item .post-view p {
  display: none;
}
.ggt-posts-carousel-item .ggt-button {
  display: inline-block;
}

.link-more {
  cursor: pointer;
  font-weight: 400;
  text-decoration: none;
}
.link-more-arrowed {
  display: inline-block;
  height: 2rem;
  line-height: 2rem;
  margin-top: 10px;
}
.link-more-arrowed .arrow-icon {
  position: relative;
  top: -1px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  vertical-align: middle;
}
.link-more-arrowed .arrow-icon--circle {
  -webkit-transition: stroke-dashoffset .3s ease;
  transition: stroke-dashoffset .3s ease;
  stroke-dasharray: 95;
  stroke-dashoffset: 95;
}
.link-more-arrowed:hover .arrow-icon {
  -webkit-transform: translate3d(5px, 0, 0);
          transform: translate3d(5px, 0, 0);
}
.link-more-arrowed:hover .arrow-icon--circle {
  stroke-dashoffset: 0;
}

.ggt-posts-carousel-item .entry-content-author {
  background: blueviolet;
  position: absolute;
  bottom: 30px;
  width: 220px;
  line-height: 1;
  box-shadow: 0 1.8px 2.2px rgba(0, 0, 0, 0.014), 0 6.7px 5.3px rgba(0, 0, 0, 0.018), 0 12.5px 10px rgba(0, 0, 0, 0.02), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.026), 0 100px 80px rgba(0, 0, 0, 0.088);
  border-radius: 12px;
  padding-bottom: 20px;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease-in-out;
  z-index: 1;
  color: #fff;
}
.ggt-posts-carousel-item .ggt-entry-author.post-author-avatar:hover .entry-content-author {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}
.ggt-posts-carousel-item .post-block-author:hover .entry-content-author {
  bottom: 0;
  opacity: 1;
  visibility: visible;
  top: 70px;
  bottom: auto;
  left: -70px;
}
.ggt-posts-carousel-item .post-author-avatar {
  text-align: center;
  line-height: 70px;
}
.ggt-posts-carousel-item .author-popup-avatar {
  width: 80px;
  margin: auto;
  top: -40px;
  position: absolute;
  left: 0;
  right: 0;
  border: 4px solid blueviolet;
  border-radius: 50px;
}
.ggt-posts-carousel-item .author-popup-description {
  padding: 50px 20px 10px 20px;
  opacity: .7;
}
.ggt-posts-carousel-item .author-popup-authors-posts a, 
.ggt-posts-carousel-item .author-popup-website a {
  padding: 10px 10px;
  display: block;
  color: #fff;
}



/* --------------- Reset styles --------- */
.panel-grid .widget {
  overflow: initial;
}
.ggt-container ol, .ggt-container ul, .ggt-container ol li, .ggt-container ul li, .ggt-container ol:hover, .ggt-container ul:hover, .ggt-container ul li:hover, .ggt-container ol li:hover, .ggt-container ol li a, .ggt-container ul li a, .ggt-container ol li a:hover, .ggt-container ul li a:hover, .ggt-container img {
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
  list-style: none;
  background: none;
}
  /*.ggt-container ol:before, .ggt-container ol:after, .ggt-container ul:before, .ggt-container ul:after, .ggt-container ol li:before, .ggt-container ol li:after, .ggt-container ul li:before, .ggt-container ul li:after, .ggt-container ol:hover:before, .ggt-container ol:hover:after, .ggt-container ul:hover:before, .ggt-container ul:hover:after, .ggt-container ul li:hover:before, .ggt-container ul li:hover:after, .ggt-container ol li:hover:before, .ggt-container ol li:hover:after, .ggt-container ol li a:before, .ggt-container ol li a:after, .ggt-container ul li a:before, .ggt-container ul li a:after, .ggt-container ol li a:hover:before, .ggt-container ol li a:hover:after, .ggt-container ul li a:hover:before, .ggt-container ul li a:hover:after, .ggt-container img:before, .ggt-container img:after {*/
    /*display: none; }*/
.ggt-container a {
    text-decoration: initial;
}
/*.ggt-container img {
    max-width: 100%;
    width: auto;
    height: auto;
    min-width: 100%;
}*/
/* ------- General styles ------------ */
.ggt-container {
    clear: both;
}
.ggt-container article.post {
  margin-top: 0;
}
.panel-grid .widget {
  border: 0; }

.ggt-center {
  text-align: center; }

.ggt-lastcol {
  margin-right: 0; }

.ggt-container .ggt-onecol, .ggt-container .ggt-twocol, .ggt-container .ggt-onefifthcol, .ggt-container .ggt-threecol, .ggt-container .ggt-fourcol, .ggt-container .ggt-fivecol, .ggt-container .ggt-sixcol, .ggt-container .ggt-sevencol, .ggt-container .ggt-eightcol, .ggt-container .ggt-ninecol, .ggt-container .ggt-tencol, .ggt-container .ggt-elevencol {
  min-height: 1px;
  /* Prevents columns from collapsing when housing absolute elements or when lazy loading content */ }
@media only screen and (min-width: 801px) {
  .ggt-container .ggt-onecol {
    float: left;
    display: block;
    margin-right: 3.44828%;
    width: 5.17241%; }
    .ggt-container .ggt-onecol:last-child {
      margin-right: 0; }
    .ggt-container .ggt-onecol:nth-child(12n) {
      margin-right: 0; }
    .ggt-container .ggt-onecol:nth-child(12n+1) {
      clear: left; }
  .ggt-container .ggt-twocol {
    float: left;
    display: block;
    margin-right: 3.44828%;
    width: 13.7931%; }
    .ggt-container .ggt-twocol:last-child {
      margin-right: 0; }
    .ggt-container .ggt-twocol:nth-child(6n) {
      margin-right: 0; }
    .ggt-container .ggt-twocol:nth-child(6n+1) {
      clear: left; }
  .ggt-container .ggt-threecol {
    float: left;
    display: block;
    margin-right: 3.44828%;
    width: 22.41379%; }
    .ggt-container .ggt-threecol:last-child {
      margin-right: 0; }
    .ggt-container .ggt-threecol:nth-child(4n) {
      margin-right: 0; }
    .ggt-container .ggt-threecol:nth-child(4n+1) {
      clear: left; }
  .ggt-container .ggt-fourcol {
    float: left;
    display: block;
    margin-right: 3.44828%;
    width: 31.03448%; }
    .ggt-container .ggt-fourcol:last-child {
      margin-right: 0; }
    .ggt-container .ggt-fourcol:nth-child(3n) {
      margin-right: 0; }
    .ggt-container .ggt-fourcol:nth-child(3n+1) {
      clear: left; }
  .ggt-container .ggt-fivecol {
    float: left;
    display: block;
    margin-right: 3.44828%;
    width: 39.65517%; }
    .ggt-container .ggt-fivecol:last-child {
      margin-right: 0; }
  .ggt-container .ggt-sixcol {
    float: left;
    display: block;
    margin-right: 3.44828%;
    width: 48.27586%; }
    .ggt-container .ggt-sixcol:last-child {
      margin-right: 0; }
    .ggt-container .ggt-sixcol:nth-child(2n) {
      margin-right: 0; }
    .ggt-container .ggt-sixcol:nth-child(2n+1) {
      clear: left; }
  .ggt-container .ggt-sevencol {
    float: left;
    display: block;
    margin-right: 3.44828%;
    width: 56.89655%; }
    .ggt-container .ggt-sevencol:last-child {
      margin-right: 0; }
  .ggt-container .ggt-eightcol {
    float: left;
    display: block;
    margin-right: 3.44828%;
    width: 65.51724%; }
    .ggt-container .ggt-eightcol:last-child {
      margin-right: 0; }
  .ggt-container .ggt-ninecol {
    float: left;
    display: block;
    margin-right: 3.44828%;
    width: 74.13793%; }
    .ggt-container .ggt-ninecol:last-child {
      margin-right: 0; }
  .ggt-container .ggt-tencol {
    float: left;
    display: block;
    margin-right: 3.44828%;
    width: 82.75862%; }
    .ggt-container .ggt-tencol:last-child {
      margin-right: 0; }
  .ggt-container .ggt-elevencol {
    float: left;
    display: block;
    margin-right: 3.44828%;
    width: 91.37931%; }
    .ggt-container .ggt-elevencol:last-child {
      margin-right: 0; } }
.ggt-container .ggt-twelvecol, .ggt-container .ggt-fullwidth {
  float: left;
  display: block;
  width: 100%; }

/*--------- Support for 5 column grid ----*/
@media only screen and (min-width: 801px) {
  .ggt-container .ggt-onefifthcol {
    float: left;
    display: block;
    margin-right: 2.73973%;
    width: 17.80822%; }
    .ggt-container .ggt-onefifthcol:last-child {
      margin-right: 0; }
    .ggt-container .ggt-onefifthcol:nth-child(5n) {
      margin-right: 0; }
    .ggt-container .ggt-onefifthcol:nth-child(5n+1) {
      clear: left; } }

/* Tablet and Mobile responsiveness */
@media only screen and (min-width: 480px) and (max-width: 800px) {
  .ggt-container .ggt-onecol, .ggt-container .ggt-twocol, .ggt-container .ggt-onefifthcol, .ggt-container .ggt-threecol, .ggt-container .ggt-fourcol, .ggt-container .ggt-fivecol, .ggt-container .ggt-sixcol, .ggt-container .ggt-sevencol, .ggt-container .ggt-eightcol, .ggt-container .ggt-ninecol, .ggt-container .ggt-tencol, .ggt-container .ggt-elevencol {
    float: left;
    display: block;
    margin-right: 3.44828%;
    width: 48.27586%; }
    .ggt-container .ggt-onecol:last-child, .ggt-container .ggt-twocol:last-child, .ggt-container .ggt-onefifthcol:last-child, .ggt-container .ggt-threecol:last-child, .ggt-container .ggt-fourcol:last-child, .ggt-container .ggt-fivecol:last-child, .ggt-container .ggt-sixcol:last-child, .ggt-container .ggt-sevencol:last-child, .ggt-container .ggt-eightcol:last-child, .ggt-container .ggt-ninecol:last-child, .ggt-container .ggt-tencol:last-child, .ggt-container .ggt-elevencol:last-child {
      margin-right: 0; }
    .ggt-container .ggt-onecol:nth-child(2n), .ggt-container .ggt-twocol:nth-child(2n), .ggt-container .ggt-onefifthcol:nth-child(2n), .ggt-container .ggt-threecol:nth-child(2n), .ggt-container .ggt-fourcol:nth-child(2n), .ggt-container .ggt-fivecol:nth-child(2n), .ggt-container .ggt-sixcol:nth-child(2n), .ggt-container .ggt-sevencol:nth-child(2n), .ggt-container .ggt-eightcol:nth-child(2n), .ggt-container .ggt-ninecol:nth-child(2n), .ggt-container .ggt-tencol:nth-child(2n), .ggt-container .ggt-elevencol:nth-child(2n) {
      margin-right: 0; }
    .ggt-container .ggt-onecol:nth-child(2n+1), .ggt-container .ggt-twocol:nth-child(2n+1), .ggt-container .ggt-onefifthcol:nth-child(2n+1), .ggt-container .ggt-threecol:nth-child(2n+1), .ggt-container .ggt-fourcol:nth-child(2n+1), .ggt-container .ggt-fivecol:nth-child(2n+1), .ggt-container .ggt-sixcol:nth-child(2n+1), .ggt-container .ggt-sevencol:nth-child(2n+1), .ggt-container .ggt-eightcol:nth-child(2n+1), .ggt-container .ggt-ninecol:nth-child(2n+1), .ggt-container .ggt-tencol:nth-child(2n+1), .ggt-container .ggt-elevencol:nth-child(2n+1) {
      clear: left; } }
@media only screen and (max-width: 479px) {
  .ggt-container .ggt-onecol, .ggt-container .ggt-twocol, .ggt-container .ggt-onefifthcol, .ggt-container .ggt-threecol, .ggt-container .ggt-fourcol, .ggt-container .ggt-fivecol, .ggt-container .ggt-sixcol, .ggt-container .ggt-sevencol, .ggt-container .ggt-eightcol, .ggt-container .ggt-ninecol, .ggt-container .ggt-tencol, .ggt-container .ggt-elevencol {
    width: 100%;
    margin-right: 0; } }

/*-------- Remove margins on last column -----*/
.ggt-container .ggt-lastcol {
  margin-right: 0; }

/*--------- No margin columns ----*/
.ggt-container .ggt-zero-margin, #content .ggt-zero-margin {
  margin-right: 0; }

.ggt-container .ggt-onecol.ggt-zero-margin, .ggt-container .ggt-twocol.ggt-zero-margin, .ggt-container .ggt-onefifthcol.ggt-zero-margin, .ggt-container .ggt-threecol.ggt-zero-margin, .ggt-container .ggt-fourcol.ggt-zero-margin, .ggt-container .ggt-fivecol.ggt-zero-margin, .ggt-container .ggt-sixcol.ggt-zero-margin, .ggt-container .ggt-sevencol.ggt-zero-margin, .ggt-container .ggt-eightcol.ggt-zero-margin, .ggt-container .ggt-ninecol.ggt-zero-margin, .ggt-container .ggt-tencol.ggt-zero-margin, .ggt-container .ggt-elevencol.ggt-zero-margin {
  margin-right: 0; }
@media only screen and (min-width: 768px) {
  .ggt-container .ggt-onecol.ggt-zero-margin {
    width: 8.33333%; }
  .ggt-container .ggt-twocol.ggt-zero-margin {
    width: 16.66667%; }
  .ggt-container .ggt-onefifthcol.ggt-zero-margin {
    width: 20%; }
  .ggt-container .ggt-threecol.ggt-zero-margin {
    width: 25%; }
  .ggt-container .ggt-fourcol.ggt-zero-margin {
    width: 33.33333%; }
  .ggt-container .ggt-fivecol.ggt-zero-margin {
    width: 41.66667%; }
  .ggt-container .ggt-sixcol.ggt-zero-margin {
    width: 49.9%; }
  .ggt-container .ggt-sevencol.ggt-zero-margin {
    width: 58.33333%; }
  .ggt-container .ggt-eightcol.ggt-zero-margin {
    width: 66.66667%; }
  .ggt-container .ggt-ninecol.ggt-zero-margin {
    width: 75%; }
  .ggt-container .ggt-tencol.ggt-zero-margin {
    width: 83.33333%; }
  .ggt-container .ggt-elevencol.ggt-zero-margin {
    width: 91.66667%; } }
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .ggt-container .ggt-onecol.ggt-zero-margin, .ggt-container .ggt-twocol.ggt-zero-margin, .ggt-container .ggt-onefifthcol.ggt-zero-margin, .ggt-container .ggt-threecol.ggt-zero-margin, .ggt-container .ggt-fourcol.ggt-zero-margin, .ggt-container .ggt-fivecol.ggt-zero-margin, .ggt-container .ggt-sixcol.ggt-zero-margin, .ggt-container .ggt-sevencol.ggt-zero-margin, .ggt-container .ggt-eightcol.ggt-zero-margin, .ggt-container .ggt-ninecol.ggt-zero-margin, .ggt-container .ggt-tencol.ggt-zero-margin, .ggt-container .ggt-elevencol.ggt-zero-margin {
    width: 50%; } }
@media only screen and (max-width: 479px) {
  .ggt-container .ggt-onecol.ggt-zero-margin, .ggt-container .ggt-twocol.ggt-zero-margin, .ggt-container .ggt-onefifthcol.ggt-zero-margin, .ggt-container .ggt-threecol.ggt-zero-margin, .ggt-container .ggt-fourcol.ggt-zero-margin, .ggt-container .ggt-fivecol.ggt-zero-margin, .ggt-container .ggt-sixcol.ggt-zero-margin, .ggt-container .ggt-sevencol.ggt-zero-margin, .ggt-container .ggt-eightcol.ggt-zero-margin, .ggt-container .ggt-ninecol.ggt-zero-margin, .ggt-container .ggt-tencol.ggt-zero-margin, .ggt-container .ggt-elevencol.ggt-zero-margin {
    width: 100%; } }

/* --------------- Flexslider Styles -------------- */




/*.ggt-flex-direction-nav {
  border: 1px solid #000 !important;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}*/

/*.ggt-container .ggt-flex-direction-nav li {*/
  /*position: initial; */
/*}*/
/*.ggt-container .ggt-flex-direction-nav a, .ggt-container .ggt-flex-direction-nav a:hover {*/
  /*opacity: 1;*/
  /*text-shadow: none;*/
  /*background: none;*/
  /*color: #888;*/
  /*font-family: 'ggtctrl' !important;*/
  /*speak: none;*/
  /*font-style: normal;*/
  /*font-weight: normal;*/
  /*font-variant: normal;*/
  /*text-transform: none;*/
  /*line-height: 1;*/
  /*-webkit-font-smoothing: antialiased;*/
  /*-moz-osx-font-smoothing: grayscale;*/
  /*font-size: 24px;*/
  /*width: 28px;*/
  /*height: 28px;*/
  /*margin: -14px 0 0;*/
  /*bottom: initial;*/
  /*left: initial;*/
  /*right: initial;*/
  /*top: 50%;*/
  /*text-indent: 0;*/
  /*text-align: center;*/
  /*color: #aaa;*/
  /*-webkit-transition: all 0.3s ease-in-out 0s;*/
  /*-moz-transition: all 0.3s ease-in-out 0s;*/
  /*-ms-transition: all 0.3s ease-in-out 0s;*/
  /*transition: all 0.3s ease-in-out 0s;*/
/*}*/
/*.ggt-flex-nav-next a,*/
/*.ggt-flex-nav-prev a{*/
    /*background: #fff none repeat scroll 0 0 !important;*/
    /*-webkit-box-shadow: 0px 2px 9px -7px #000;*/
    /*-moz-box-shadow: 0px 2px 9px -7px #000;*/
    /*box-shadow: 0px 2px 9px -7px #000;*/
/*}*/
/*  .ggt-container .ggt-flex-direction-nav a:before, .ggt-container .ggt-flex-direction-nav a:hover:before, .ggt-container .ggt-flex-direction-nav a:hover:before, .ggt-container .ggt-flex-direction-nav a:hover:hover:before {
    margin: 2px;
    vertical-align: middle;
    display: inline;
    font-family: inherit !important;
    opacity: 1;
  }*/
  @media only screen and (max-width: 960px) {
    .ggt-container .ggt-flex-direction-nav a, .ggt-container .ggt-flex-direction-nav a:hover {
      display: none;
      }
  }

.ggt-container .ggt-flex-control-nav {
  width: 100%;
  position: relative;
  bottom: 0;
  text-align: center;
}
.ggt-container .ggt-flex-control-nav li, .ggt-container .ggt-flex-control-nav li:hover {
    margin: 0 8px 0 0;
    padding: 0;
    border: none;
    box-shadow: none;
}
.ggt-container .ggt-flex-control-nav li a, .ggt-container .ggt-flex-control-nav li a:hover {
    background: #ccc none repeat scroll 0 0;
    border: 2px solid #ccc;
    box-shadow: none;
    display: inline-block;
    height: 6px;
    -webkit-transition: all .5s cubic-bezier(0.37, 0.31, 0.2, 0.85);
    -moz-transition: all .5s cubic-bezier(0.37, 0.31, 0.2, 0.85);
    transition: all .5s cubic-bezier(0.37, 0.31, 0.2, 0.85);
    vertical-align: middle;
    width: 6px;
}
.ggt-dark-bg .ggt-container .ggt-flex-control-nav li a, 
.ggt-dark-bg .ggt-container .ggt-flex-control-nav li a:hover {
    background: #ccc;
    border-color: #ccc;
}
.ggt-container .ggt-flex-control-nav li a.ggt-flex-active, 
.ggt-container .ggt-flex-control-nav li a:hover.ggt-flex-active, .ggt-container .ggt-flex-control-nav li a:hover {
    background: none;
}
.ggt-container .ggt-flex-control-nav li a.ggt-flex-active, 
.ggt-container .ggt-flex-control-nav li a:hover.ggt-flex-active {
    width: 12px;
    height: 12px;
}

/* Sleek Carousel Styles */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat; }

.ggt-container button.slick-prev,
.ggt-container button.slick-next,
.ggt-flex-nav-prev a,
.ggt-flex-nav-next a {
    position: absolute;
    margin: -10px 0 0;
    -webkit-transition: all .1s cubic-bezier(0.37, 0.31, 0.2, 0.85);
    -moz-transition: all .1s cubic-bezier(0.37, 0.31, 0.2, 0.85);
    transition: all .1s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}
.slick-slider button.slick-arrow:hover::after,
.ggt-flex-nav-prev a:hover:after,
.ggt-flex-nav-next a:hover:after{
    height: 100%;
    opacity: 1;
    width: 100%;
    z-index: -1;
}
.ggt-fullwidth-carousel-item:hover button.slick-next,
.ggt-fullwidth-carousel-item:hover button.slick-prev,
.ggt-carousel:hover button.slick-next,
.ggt-carousel:hover button.slick-prev,
.ggt-flex-nav-prev a,
.ggt-flex-nav-next a{
    /*top: 50%;*/
    /*opacity: 1;*/
}
.ggt-container button.slick-prev:before, .ggt-container button.slick-next:before {
    margin: 2px;
    vertical-align: middle;
}
@media only screen and (max-width: 1024px) {
    .ggt-container button.slick-prev, .ggt-container button.slick-next {
        display: none !important;
    }
}


.ggt-container button.slick-prev,
.ggt-flex-nav-prev a {
    font-size: 0;
    left: -30px;
    z-index: 995;
    line-height: 25px;
    position: absolute;
    width: 50px;
    height: 50px;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 3px solid;
    border-radius: 999px;
}
.ggt-container button.slick-next, 
.ggt-flex-nav-next a {
    font-size: 0;
    right: -30px;
    z-index: 995;
    line-height: 25px;
    position: absolute;
    width: 50px;
    height: 50px;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 3px solid;
    border-radius: 999px;
}

.ggt-container button.slick-prev::before, 
.ggt-flex-direction-nav .ggt-flex-prev::before {
  content: "\e933";
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 999;
  opacity: 1;
  left: 0;
  visibility: visible;
  font-family: "parasponsive-font" !important;
  line-height: 50px;
  border-radius: 999px;
  text-align: center;
  margin: 0;
  padding: 0;
  top: 0;
  bottom: 0;
  font-size: 20px;
  transition: all .3s ease-in-out;
}

.ggt-container button.slick-next::before, 
.ggt-flex-direction-nav .ggt-flex-next::before {
  content: "\e934";
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 999;
  opacity: 1;
  left: 0;
  visibility: visible;
  font-family: "parasponsive-font" !important;
  line-height: 50px;
  border-radius: 999px;
.ggt-posts-carousel .slick-slide,
.ggt-posts-carousel .ggt-posts-carousel-item {
    box-sizing: border-box;
}

/* Main skin: use theme main color for border + icon when available */
.ggt-posts-carousel.ggt-nav-skin-main button.slick-prev,
.ggt-posts-carousel.ggt-nav-skin-main button.slick-next {
    border-color: #8224e3;
}
.ggt-posts-carousel.ggt-nav-skin-main button.slick-prev::before,
.ggt-posts-carousel.ggt-nav-skin-main button.slick-next::before {
    color: #8224e3;
}

  text-align: center;
  margin: 0;
  padding: 0;
  top: 0;
  bottom: 0;
  font-size: 20px;
  transition: all .3s ease-in-out;
}
.ggt-container button.slick-next:hover::before, 
.ggt-flex-direction-nav .ggt-flex-next:hover::before,
.ggt-container button.slick-prev:hover:before, 
.ggt-flex-direction-nav .ggt-flex-prev:hover:before  {
  transform: scale(1.1);
}
.ggt-carousel button:hover {

}

/* === Shared Slick arrow visibility toggle (hover vs always) === */
.ggt-posts-carousel.ggt-arrows-hover button.slick-next,
.ggt-posts-carousel.ggt-arrows-hover button.slick-prev {
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}
.ggt-posts-carousel.ggt-arrows-hover:hover button.slick-next,
.ggt-posts-carousel.ggt-arrows-hover:hover button.slick-prev {
    opacity: 1;
    pointer-events: auto;
}
.ggt-posts-carousel.ggt-arrows-always button.slick-next,
.ggt-posts-carousel.ggt-arrows-always button.slick-prev {
    opacity: 1;
    pointer-events: auto;
}

/* === Shared Swiper arrow visibility toggle (hover vs always) === */
.ggt-swiper-wrap.ggt-arrows-hover .ggt-swiper-nav,
.ggt-services-swiper-wrap.ggt-arrows-hover .ggt-swiper-nav {
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}
.ggt-swiper-wrap.ggt-arrows-hover:hover .ggt-swiper-nav,
.ggt-services-swiper-wrap.ggt-arrows-hover:hover .ggt-swiper-nav {
    opacity: 1;
    pointer-events: auto;
}
.ggt-swiper-wrap.ggt-arrows-always .ggt-swiper-nav,
.ggt-services-swiper-wrap.ggt-arrows-always .ggt-swiper-nav {
    opacity: 1;
    pointer-events: auto;
}

/* === Nav skin: main/dark/light for arrows + dots === */
.ggt-posts-carousel.ggt-nav-skin-dark button.slick-prev,
.ggt-posts-carousel.ggt-nav-skin-dark button.slick-next,
.ggt-posts-carousel.ggt-nav-skin-light button.slick-prev,
.ggt-posts-carousel.ggt-nav-skin-light button.slick-next {
    background: transparent !important;
    border-width: 1px !important;
    border-style: solid !important;
    border-radius: 3px !important;
}
.ggt-posts-carousel.ggt-nav-skin-dark button.slick-prev,
.ggt-posts-carousel.ggt-nav-skin-dark button.slick-next {
    border-color: #ffffff !important;
}
.ggt-posts-carousel.ggt-nav-skin-light button.slick-prev,
.ggt-posts-carousel.ggt-nav-skin-light button.slick-next {
    border-color: #000000 !important;
}
.ggt-posts-carousel.ggt-nav-skin-dark button.slick-prev::before,
.ggt-posts-carousel.ggt-nav-skin-dark button.slick-next::before {
    color: #ffffff !important;
}
.ggt-posts-carousel.ggt-nav-skin-light button.slick-prev::before,
.ggt-posts-carousel.ggt-nav-skin-light button.slick-next::before {
    color: #000000 !important;
}

.ggt-posts-carousel.ggt-nav-skin-dark ul.slick-dots li button {
    background: rgba(255,255,255,0.7);
}
.ggt-posts-carousel.ggt-nav-skin-dark ul.slick-dots li.slick-active button,
.ggt-posts-carousel.ggt-nav-skin-dark ul.slick-dots li button:hover {
    background: #ffffff;
}
.ggt-posts-carousel.ggt-nav-skin-light ul.slick-dots li button {
    background: rgba(0,0,0,0.55);
}
.ggt-posts-carousel.ggt-nav-skin-light ul.slick-dots li.slick-active button,
.ggt-posts-carousel.ggt-nav-skin-light ul.slick-dots li button:hover {
    background: #000000;
}

/* === Swiper base styles (required for slides not to stack vertically) === */
.swiper-container {
	position: relative;
	overflow: hidden;
}
.swiper-wrapper {
    display: flex;
    box-sizing: content-box;

}
.swiper-slide {
	flex-shrink: 0;
	box-sizing: border-box;
}

.ggt-services-swiper,
.ggt-pricing-swiper,
.ggt-clients-swiper,
.ggt-testimonials-slider-swiper,
.ggt-team-swiper,
.ggt-fullwidth-carousel-swiper {
  padding: 50px;
}

/* === Services Swiper navigation + pagination === */
.ggt-services-swiper {
    /* keep default Swiper clipping */
    overflow: hidden;
}

/* Outer wrap holds controls outside of Swiper clipping */
.ggt-swiper-wrap {
    position: relative;
    overflow: visible;
}
.ggt-services-swiper-wrap {
    position: relative;
    overflow: visible;
    padding: 0;
}

/* Optional: full-width carousel */
.ggt-swiper-wrap.ggt-swiper-fullwidth,
.ggt-services-swiper-wrap.ggt-swiper-fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Keep default overflow behavior for Services cards (do not clip shadows/effects). */
.ggt-swiper-wrap .ggt-swiper-nav,
.ggt-services-swiper-wrap .ggt-swiper-nav {
    /* Match Slick arrow buttons (.ggt-container button.slick-prev/.slick-next) */
    font-size: 0;
    z-index: 995;
    line-height: 25px;
    position: absolute;
    width: 50px;
    height: 50px;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: transparent;
    border: 2px solid;
    border-radius: 999px;
}
.ggt-swiper-wrap .ggt-swiper-prev { left: -50px; }
.ggt-swiper-wrap .ggt-swiper-next { right: -50px; }
.ggt-services-swiper-wrap .ggt-swiper-prev { left: -50px; }
.ggt-services-swiper-wrap .ggt-swiper-next { right: -50px; }
.ggt-swiper-wrap .ggt-swiper-prev::before,
.ggt-swiper-wrap .ggt-swiper-next::before,
.ggt-services-swiper-wrap .ggt-swiper-prev::before,
.ggt-services-swiper-wrap .ggt-swiper-next::before {
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 999;
    opacity: 1;
    left: -3px;
    visibility: visible;
    font-family: "parasponsive-font" !important;
    line-height: 50px;
    border-radius: 999px;
    text-align: center;
    margin: 0;
    padding: 0;
    top: -3px;
    bottom: 0;
    font-size: 20px;
    transition: all .3s ease-in-out;
}
.ggt-swiper-wrap .ggt-swiper-prev::before { content: "\e933"; }
.ggt-swiper-wrap .ggt-swiper-next::before { content: "\e934"; }
.ggt-services-swiper-wrap .ggt-swiper-prev::before { content: "\e933"; }
.ggt-services-swiper-wrap .ggt-swiper-next::before { content: "\e934"; }

.ggt-swiper-wrap .swiper-pagination,
.ggt-services-swiper-wrap .swiper-pagination {
    position: relative;
    margin-top: 10px;
    text-align: center;
}
.ggt-swiper-wrap .swiper-pagination-bullet,
.ggt-services-swiper-wrap .swiper-pagination-bullet {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50px;
    margin: 0 8px 0 0;
    opacity: 1;
    transition: all .3s ease-in-out;
}
.ggt-swiper-wrap .swiper-pagination-bullet-active,
.ggt-services-swiper-wrap .swiper-pagination-bullet-active {
    width: 40px;
}

/* Swiper nav skins (main/dark/light) */
.ggt-swiper-wrap.ggt-nav-skin-dark .ggt-swiper-nav,
.ggt-services-swiper-wrap.ggt-nav-skin-dark .ggt-swiper-nav { border-color: #ffffff; }
.ggt-swiper-wrap.ggt-nav-skin-dark .ggt-swiper-prev::before,
.ggt-swiper-wrap.ggt-nav-skin-dark .ggt-swiper-next::before,
.ggt-services-swiper-wrap.ggt-nav-skin-dark .ggt-swiper-prev::before,
.ggt-services-swiper-wrap.ggt-nav-skin-dark .ggt-swiper-next::before { color: #ffffff !important; }
.ggt-swiper-wrap.ggt-nav-skin-dark .swiper-pagination-bullet,
.ggt-services-swiper-wrap.ggt-nav-skin-dark .swiper-pagination-bullet { background: rgba(255,255,255,0.7); }
.ggt-swiper-wrap.ggt-nav-skin-dark .swiper-pagination-bullet-active,
.ggt-services-swiper-wrap.ggt-nav-skin-dark .swiper-pagination-bullet-active { background: #ffffff; }

.ggt-swiper-wrap.ggt-nav-skin-light .ggt-swiper-nav,
.ggt-services-swiper-wrap.ggt-nav-skin-light .ggt-swiper-nav { border-color: #000000; }
.ggt-swiper-wrap.ggt-nav-skin-light .ggt-swiper-prev::before,
.ggt-swiper-wrap.ggt-nav-skin-light .ggt-swiper-next::before,
.ggt-services-swiper-wrap.ggt-nav-skin-light .ggt-swiper-prev::before,
.ggt-services-swiper-wrap.ggt-nav-skin-light .ggt-swiper-next::before { color: #000000 !important; }
.ggt-swiper-wrap.ggt-nav-skin-light .swiper-pagination-bullet,
.ggt-services-swiper-wrap.ggt-nav-skin-light .swiper-pagination-bullet { background: rgba(0,0,0,0.55); }
.ggt-swiper-wrap.ggt-nav-skin-light .swiper-pagination-bullet-active,
.ggt-services-swiper-wrap.ggt-nav-skin-light .swiper-pagination-bullet-active { background: #000000; }

.ggt-swiper-wrap.ggt-nav-skin-main .ggt-swiper-nav,
.ggt-services-swiper-wrap.ggt-nav-skin-main .ggt-swiper-nav { border-color: #8224e3; }
.ggt-swiper-wrap.ggt-nav-skin-main .ggt-swiper-prev::before,
.ggt-swiper-wrap.ggt-nav-skin-main .ggt-swiper-next::before,
.ggt-services-swiper-wrap.ggt-nav-skin-main .ggt-swiper-prev::before,
.ggt-services-swiper-wrap.ggt-nav-skin-main .ggt-swiper-next::before { color: #8224e3 !important; }
.ggt-swiper-wrap.ggt-nav-skin-main .swiper-pagination-bullet,
.ggt-services-swiper-wrap.ggt-nav-skin-main .swiper-pagination-bullet { background: rgba(130,36,227,0.55); }
.ggt-swiper-wrap.ggt-nav-skin-main .swiper-pagination-bullet-active,
.ggt-services-swiper-wrap.ggt-nav-skin-main .swiper-pagination-bullet-active { background: #8224e3; }

/* Ensure Full-width Posts Carousel uses nav skin colors (explicit) */
.ggt-fullwidth-carousel.ggt-nav-skin-dark .ggt-swiper-nav { border-color: #ffffff !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-dark .ggt-swiper-nav::before { color: #ffffff !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-dark .swiper-pagination-bullet { background: rgba(255,255,255,.6) !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-dark .swiper-pagination-bullet.swiper-pagination-bullet-active { background: #ffffff !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-dark .ggt-entry-text-wrap,
.ggt-fullwidth-carousel.ggt-nav-skin-dark .ggt-entry-text-wrap * { color: #ffffff; }
.ggt-fullwidth-carousel.ggt-nav-skin-dark .post-date .date-block:first-child, 
.ggt-fullwidth-carousel.ggt-nav-skin-dark .post-date .date-block:last-child {
  color: #221c24;
  text-align: center;
} 
.ggt-fullwidth-carousel.ggt-nav-skin-dark .ggt-entry-text-wrap * #heart-full {	fill: #fff;}
.ggt-fullwidth-carousel.ggt-nav-skin-dark .ggt-entry-text-wrap .entry-summary { color: inherit; opacity: 0.5; }
.ggt-fullwidth-carousel.ggt-nav-skin-dark .ggt-entry-text-wrap .post-date,
.ggt-fullwidth-carousel.ggt-nav-skin-dark .ggt-entry-text-wrap .cat-links,
.ggt-fullwidth-carousel.ggt-nav-skin-dark .ggt-entry-text-wrap .cat-links a { color: rgba(255,255,255,.7); }
.ggt-fullwidth-carousel.ggt-nav-skin-dark .ggt-entry-text-wrap .post-title a,
.ggt-fullwidth-carousel.ggt-nav-skin-dark .ggt-entry-text-wrap a.link-more { color: #ffffff; }
.ggt-fullwidth-carousel.ggt-nav-skin-dark a.link-more-arrowed svg .arrow-icon--circle,
.ggt-fullwidth-carousel.ggt-nav-skin-dark a.link-more-arrowed svg .arrow-icon--arrow { stroke: #ffffff !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-dark a.link-more-arrowed:hover svg .arrow-icon--circle,
.ggt-fullwidth-carousel.ggt-nav-skin-dark a.link-more-arrowed:hover svg .arrow-icon--arrow { stroke: #ffffff !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-light .ggt-swiper-nav { border-color: #000000 !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-light .ggt-swiper-nav::before { color: #000000 !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-light .swiper-pagination-bullet { background: rgba(0,0,0,.55) !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-light .swiper-pagination-bullet.swiper-pagination-bullet-active { background: #000000 !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-light .ggt-entry-text-wrap,
.ggt-fullwidth-carousel.ggt-nav-skin-light .ggt-entry-text-wrap * { color: #000000; }
.ggt-fullwidth-carousel.ggt-nav-skin-light .ggt-entry-text-wrap .entry-summary { color: inherit; opacity: 0.5; }
.ggt-fullwidth-carousel.ggt-nav-skin-light .ggt-entry-text-wrap .post-date,
.ggt-fullwidth-carousel.ggt-nav-skin-light .ggt-entry-text-wrap .cat-links,
.ggt-fullwidth-carousel.ggt-nav-skin-light .ggt-entry-text-wrap .cat-links a { color: rgba(0,0,0,.55); }
.ggt-fullwidth-carousel.ggt-nav-skin-light .ggt-entry-text-wrap .post-title a,
.ggt-fullwidth-carousel.ggt-nav-skin-light .ggt-entry-text-wrap a.link-more { color: #000000; }
.ggt-fullwidth-carousel.ggt-nav-skin-light a.link-more-arrowed svg .arrow-icon--circle,
.ggt-fullwidth-carousel.ggt-nav-skin-light a.link-more-arrowed svg .arrow-icon--arrow { stroke: #000000 !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-light a.link-more-arrowed:hover svg .arrow-icon--circle,
.ggt-fullwidth-carousel.ggt-nav-skin-light a.link-more-arrowed:hover svg .arrow-icon--arrow { stroke: #000000 !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-main .ggt-swiper-nav { border-color: var(--ggt-main-color) !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-main .ggt-swiper-nav::before { color: var(--ggt-main-color) !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-main .swiper-pagination-bullet { background: var(--ggt-main-color) !important; opacity: .5; }
.ggt-fullwidth-carousel.ggt-nav-skin-main .swiper-pagination-bullet.swiper-pagination-bullet-active { background: var(--ggt-main-color) !important; opacity: 1; }
.ggt-fullwidth-carousel.ggt-nav-skin-main .ggt-entry-text-wrap a,
.ggt-fullwidth-carousel.ggt-nav-skin-main .ggt-entry-text-wrap .post-title a:hover,
.ggt-fullwidth-carousel.ggt-nav-skin-main .ggt-entry-text-wrap a.link-more:hover { color: var(--ggt-main-color); }
.ggt-fullwidth-carousel.ggt-nav-skin-main a.link-more-arrowed svg .arrow-icon--circle,
.ggt-fullwidth-carousel.ggt-nav-skin-main a.link-more-arrowed svg .arrow-icon--arrow { stroke: var(--ggt-main-color) !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-main a.link-more-arrowed:hover svg .arrow-icon--circle,
.ggt-fullwidth-carousel.ggt-nav-skin-main a.link-more-arrowed:hover svg .arrow-icon--arrow { stroke: var(--ggt-main-color) !important; }

/* Prevent inner grid column styles from breaking slide width */
.ggt-posts-carousel .slick-slide > .ggt-posts-carousel-item,
.ggt-posts-carousel .ggt-posts-carousel-item > .col {
    width: 100%;
}
.ggt-container button.slick-next, 
.ggt-flex-nav-next a {
  border: 0px solid;
  right: -30px;
  z-index: 995;
  line-height: 25px;
  position: absolute;
  width: 50px;
  font-size: 25px;
  height: 50px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0;
}
.ggt-container ul.slick-dots {
    bottom: 0;
    width: 100%;
    padding: 5px 0 0 0;
    text-align: center;
}
  .ggt-container ul.slick-dots li {
    margin: 0 8px 0 0;
    display: inline-block;
    font-size: 0;
  }
.ggt-container ul.slick-dots li button {
    border: 0 solid;
    box-shadow: none;
    font-size: 0;
    height: 6px;
    padding: 0;
    top: 0;
    -webkit-transition: all .5s cubic-bezier(0.37, 0.31, 0.2, 0.85);
    -moz-transition: all .5s cubic-bezier(0.37, 0.31, 0.2, 0.85);
    transition: all .5s cubic-bezier(0.37, 0.31, 0.2, 0.85);
    width: 6px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}
.author-content h4, .ggt-container ul.slick-dots li.slick-active button {
    height: 6px;
    position: relative;
    width: 40px;
}
.ggt-container ul.slick-dots li button:hover {
    height: 6px;
    width: 30px;
}



/* -------- Widget separator headline ------------ */
.ggt-widget-heading {
  letter-spacing: 1px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
  clear: none;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 52px;
  text-align: center;
}
  @media only screen and (max-width: 767px) {
    .ggt-widget-heading {
      font-size: 32px;
      line-height: 44px; } }

/* -------- Spacer styling ----------- */
.ggt-spacer {
  clear: both; }





/* -------- Separator styling ----------- */
.ggt-separator {
  position: relative;
  width: 100%;
  overflow: visible;
  z-index: 2;
}
.ggt-separator .ggt-separator-shape {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.ggt-separator .ggt-separator-top {
  top: 0;
  transform-origin: top left;
}
.ggt-separator .ggt-separator-bottom {
  bottom: 0;
  transform-origin: bottom left;
}

/* -------- Row Diagonal Divider (for vc_row) -------- */
.ggt-row-separator {
  position: absolute;
  left: -50%;
  right: -50%;
  display: block;
  width: 200%;
  pointer-events: none;
  z-index: 3;
}
.ggt-row-separator.ggt-divider-type-tilt {
  left: 50%;
  right: auto;
  width: 120vw;
  margin-left: -60vw;
}
.vc_row.ggt-row-has-divider {
  position: relative;
  overflow: hidden;
}
.vc_row.ggt-row-has-divider.ggt-row-divider-overflow-visible {
  overflow: visible;
}
.vc_row.ggt-row-has-divider.ggt-row-divider-overflow-hidden {
  overflow: hidden;
}
.vc_row.ggt-row-has-divider > .vc_column_container,
.vc_row.ggt-row-has-divider > .vc_vc_column {
  position: relative;
  z-index: 4;
}
.vc_row.ggt-row-has-divider > .ggt-row-separator {
  z-index: 3;
}
.vc_row.ggt-row-has-divider.ggt-row-divider-content-above > * {
  position: relative;
  z-index: 4;
}
.vc_row.ggt-row-has-divider.ggt-row-divider-content-above > .vc_parallax-inner,
.vc_row.ggt-row-has-divider.ggt-row-divider-content-above > .vc_video-bg-container,
.vc_row.ggt-row-has-divider.ggt-row-divider-content-above > .vc_row-bg,
.vc_row.ggt-row-has-divider.ggt-row-divider-content-above > .vc_column-inner::before,
.vc_row.ggt-row-has-divider.ggt-row-divider-content-above > .vc_column-inner::after {
  z-index: 1 !important;
}
.vc_row.ggt-row-has-divider.ggt-row-divider-content-above > .ggt-row-separator {
  z-index: 3;
}
.vc_row.ggt-row-has-divider .vc_parallax-inner {
  z-index: 0;
}
.vc_row.ggt-row-has-divider.ggt-row-divider-overflow-hidden .vc_parallax-inner {
  clip-path: inset(0);
}
/* Keep service card shadows inside rows that clip overflow for dividers. */
.vc_row.ggt-row-has-divider .ggt-services {
  padding-top: 24px;
  padding-bottom: 40px;
}

/* Row background overlay (vc_row) */
.vc_row.ggt-row-has-bg-overlay {
  position: relative;
}
.vc_row.ggt-row-has-bg-overlay > .ggt-row-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.vc_row.ggt-row-has-bg-overlay > .vc_parallax-inner,
.vc_row.ggt-row-has-bg-overlay > .vc_video-bg-container,
.vc_row.ggt-row-has-bg-overlay > .vc_row-bg {
  z-index: 0 !important;
}
.vc_row.ggt-row-has-bg-overlay > .vc_column_container,
.vc_row.ggt-row-has-bg-overlay > .vc_vc_column {
  position: relative;
  z-index: 2;
}
.ggt-row-separator-top {
  top: 0;
  transform-origin: top left;
}
.ggt-row-separator-bottom {
  bottom: 0;
  transform-origin: bottom left;
}
.ggt-row-separator-top.ggt-divider-type-tilt {
  top: 0;
}
.ggt-row-separator-bottom.ggt-divider-type-tilt {
  bottom: 0;
}
.ggt-row-separator.ggt-divider-type-wave {
  left: 0;
  right: 0;
  width: 100%;
}
.ggt-row-separator .ggt-row-wave-svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* -------- WooCommerce Products -------- */
.ggt-woocommerce-products {
  position: relative;
}
.ggt-woocommerce-products .ggt-woo-products-grid {
  display: grid;
  grid-template-columns: repeat(var(--ggt-woo-columns, 4), minmax(0, 1fr));
  gap: 50px;
}
.ggt-woocommerce-products .ggt-woo-product-card {
  position: relative;
}
.ggt-woocommerce-products .ggt-woo-product-thumb {
  display: block;
  margin-bottom: 0;
}
.ggt-woocommerce-products .ggt-woo-product-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.ggt-woocommerce-products .ggt-woo-product-title {
  margin: 0 0 8px;
  text-align: center;
}
.ggt-woocommerce-products .ggt-woo-product-price {
	margin: 20px 0;
	font-size: 1.3rem;
}
.ggt-woocommerce-products .ggt-woo-product-actions .ggt-button {
  display: inline-block;
}

/* Reuse Full-Width Posts Carousel look & spacing */
.ggt-woocommerce-products .ggt-fullwidth-carousel-item {
  height: 100%;
}
.ggt-woocommerce-products .ggt-entry-text-wrap {
  padding-top: 14px;
}
.ggt-woocommerce-products .ggt-woo-product-actions {
  margin: 20px auto 20px auto !important;
  gap: 20px;
  justify-content: center !important;
}

/* Make product cards look like Full-Width Posts Carousel cards */
.ggt-woocommerce-products .ggt-fullwidth-carousel-item {
  background: #fff;
  box-shadow: 0 5px 50px 0 rgba(0,0,0,0.07);
  border-radius: 12px;
  overflow: hidden;
}
.ggt-woocommerce-products .ggt-project-image-thumb > a,
.ggt-woocommerce-products .ggt-project-image-thumb .ggt-woo-product-thumb {
  position: relative;
  inset: 0;
}
.ggt-woocommerce-products .ggt-entry-text-wrap {
	padding: 30px 30px;
	text-align: center;
}
.ggt-woocommerce-products .ggt-woo-product-actions {
  margin-top: 18px;
}
.ggt-woocommerce-products .ggt-woo-product-actions .ggt-button {
  white-space: nowrap;
}

.ggt-woocommerce-products .ggt-woo-products-swiper {
  overflow: hidden;
  position: relative;
}
.ggt-woocommerce-products .ggt-woo-products-swiper .swiper-wrapper {
  display: flex;
}
.ggt-woocommerce-products .ggt-woo-products-swiper .swiper-slide {
  flex-shrink: 0;
  height: auto;
}
.ggt-woocommerce-products .ggt-woo-products-button-prev,
.ggt-woocommerce-products .ggt-woo-products-button-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 36px;
  text-align: center;
  line-height: 36px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  user-select: none;
}
.ggt-woocommerce-products .ggt-woo-products-button-prev {
  left: 8px;
}
.ggt-woocommerce-products .ggt-woo-products-button-next {
  right: 8px;
}
.ggt-woocommerce-products .ggt-woo-products-pagination {
  text-align: center;
  margin-top: 14px;
}
.ggt-woocommerce-products .ggt-woo-products-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  display: inline-block;
  background: rgba(0, 0, 0, 0.3);
  margin: 0 4px;
}
.ggt-woocommerce-products .ggt-woo-products-pagination .swiper-pagination-bullet-active {
  background: rgba(0, 0, 0, 0.8);
}


@media (max-width: 1024px) {
  .ggt-woocommerce-products .ggt-woo-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .ggt-woocommerce-products .ggt-woo-products-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.responsive-padding {
    padding: 0 70px;
}
@media only screen and (max-width: 767px) {
    .responsive-padding {
        padding: 0 50px;
    }
}
@media only screen and (max-width: 468px) {
    .responsive-padding {
        padding: 0 30px;
    }
}


/***********  A D D O N   D E S I G N  ***********/


/*---- Element: Clients -----*/
.ggt-client img {
  height: auto;
}
.ggt-clients {
  display: inline-block;
}
/* In carousel (Swiper) mode, Clients wrapper must behave like a block container,
   otherwise width calculations can overflow to the right on some layouts. */
.ggt-clients.ggt-swiper-wrap {
  display: block;
  width: 100%;
}
.ggt-client {
  position: relative;
	transition: all .2s ease-in-out;
	text-align: center;
}
.ggt-client .ggt-client-name {
	opacity: 0;
	position: absolute;
	bottom: -40px;
	transition: all .3s ease-in-out;
	left: 0;
	right: 0;
}
.ggt-clients.ggt-clients-hide-names .ggt-client .ggt-client-name {
  display: none !important;
}
.ggt-client:hover .ggt-client-name {
  opacity: .6;
  bottom: -20px;
}
.ggt-clients.ggt-nav-skin-dark .ggt-client .ggt-client-name,
.ggt-clients.ggt-nav-skin-dark .ggt-client .ggt-client-name * {
  color: #ffffff !important;
}
.ggt-clients.ggt-nav-skin-light .ggt-client .ggt-client-name,
.ggt-clients.ggt-nav-skin-light .ggt-client .ggt-client-name * {
  color: #000000 !important;
}
.ggt-client:hover {}
.ggt-client img {
  padding: 10px 10px;
}

/*---- Element: Testimonial -----*/

.ggt-testimonials img {
	width: 100%;
	height: 100%;
	border-radius: 100px;
	box-shadow: 0 15px 37px rgba(0,0,0,.15);
}
.ggt-testimonial-text {
  text-align: center;
  font-size: 1.4rem;
}
.ggt-style1 .ggt-testimonial {
   background: transparent !important;
  cursor: default;
}

.ggt-style1 .ggt-testimonial:hover .ggt-testimonial-text {
  transform: translateY(-5px);
  box-shadow: 0 1.8px 2.2px rgba(0, 0, 0, 0.014), 0 6.7px 5.3px rgba(0, 0, 0, 0.018), 0 12.5px 10px rgba(0, 0, 0, 0.02), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.026), 0 100px 80px rgba(0, 0, 0, 0.088);
}
.ggt-style1 .ggt-testimonial-text {
  padding: 40px;
  border-radius: 12px;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 1.8px 2.2px rgba(0, 0, 0, 0.004), 0 6.7px 5.3px rgba(0, 0, 0, 0.008), 0 12.5px 10px rgba(0, 0, 0, 0.01), 0 22.3px 17.9px rgba(0, 0, 0, 0.012), 0 41.8px 33.4px rgba(0, 0, 0, 0.006), 0 100px 80px rgba(0, 0, 0, 0.028);
  transition: all .3s ease-in-out;
}
.ggt-style1 .ggt-testimonial-user {
  display: flex;
  width: 280px;
  margin: 0 auto 20px auto;
}
.ggt-style1 .ggt-testimonial-text::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 14px 0 14px;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  text-align: center;
  margin: auto;
  z-index: 99;
}
.ggt-style1 .ggt-image-wrapper {
  width: 80px;
  margin: auto;
}
.ggt-style1 .ggt-author-credentials {
  opacity: .5;
}
.ggt-style1 .ggt-text {
  text-align: left;
  padding: 10px 0;
  width: 70%;
}
.ggt-style1 .ggt-rate i {
	color: #ff9900;
	-webkit-text-stroke: 0 !important;
	text-shadow: none !important;
}
.ggt-style1 .ggt-rate span {
  opacity: .5;
  font-size: .9rem;
  padding: 0 10px;
}
.ggt-style1 .ggt-text h5 {
  margin: 0;
}

.ggt-style2 .ggt-testimonial-user {
  display: flex;
  padding: 20px 0 0 0;
}
.ggt-style2 .ggt-testimonial {
  padding: 40px;
  border-radius: 12px;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 1.8px 2.2px rgba(0, 0, 0, 0.004), 0 6.7px 5.3px rgba(0, 0, 0, 0.008), 0 12.5px 10px rgba(0, 0, 0, 0.01), 0 22.3px 17.9px rgba(0, 0, 0, 0.012), 0 41.8px 33.4px rgba(0, 0, 0, 0.006), 0 100px 80px rgba(0, 0, 0, 0.028);
  transition: all .3s ease-in-out;
}
.ggt-style2 .ggt-testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 1.8px 2.2px rgba(0, 0, 0, 0.014), 0 6.7px 5.3px rgba(0, 0, 0, 0.018), 0 12.5px 10px rgba(0, 0, 0, 0.02), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.026), 0 100px 80px rgba(0, 0, 0, 0.088);
}
.ggt-style2 .ggt-image-wrapper {
  width: 90px;
}
.ggt-style2 .ggt-author-credentials {
	opacity: .5;
	font-size: 1rem;
}
.ggt-style2 .ggt-text {
  text-align: left;
  width: 100%;
}
.ggt-style2 .ggt-rate i {
	color: #ff9900;
	-webkit-text-stroke: 0 !important;
	text-shadow: none !important;
}
.ggt-style2 .ggt-rate span {
	font-size: 0.7rem;
	margin-left: 15px;
	background: #ffcc33;
	color: #000 !important;
	width: 35px;
	height: 25px;
	display: inline-block;
	border-radius: 20px;
	position: relative;
	top: -4px;
}
.ggt-rate span::before {
	content: "";
	height: 1px;
	position: absolute;
	top: 10px;
	bottom: 0;
	left: -5px;
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3px 5.2px 3px 0px;
	border-color: transparent #fc3 transparent transparent;
}
.ggt-testimonials-slider.ggt-nav-skin-dark .ggt-rate span {
  color:#000 !important;
  line-height: 2;
}

.ggt-style2 .ggt-text h5 {
	margin: 0;
	font-size: 1.5rem;
}



.ggt-style3 .ggt-testimonials {
  cursor: default;
}
.ggt-style3 .ggt-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  top: 0;
}
.ggt-style3 .ggt-text::before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: .4;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.ggt-style3 .ggt-testimonial {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 1.8px 2.2px rgba(0, 0, 0, 0.004), 0 6.7px 5.3px rgba(0, 0, 0, 0.008), 0 12.5px 10px rgba(0, 0, 0, 0.01), 0 22.3px 17.9px rgba(0, 0, 0, 0.012), 0 41.8px 33.4px rgba(0, 0, 0, 0.006), 0 100px 80px rgba(0, 0, 0, 0.028);
  transition: all .3s ease-in-out;
}
.ggt-style3 .ggt-testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 1.8px 2.2px rgba(0, 0, 0, 0.014), 0 6.7px 5.3px rgba(0, 0, 0, 0.018), 0 12.5px 10px rgba(0, 0, 0, 0.02), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.026), 0 100px 80px rgba(0, 0, 0, 0.088);
}
.ggt-style3 .ggt-testimonial-user {
  position: relative;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}
.ggt-style3 .ggt-testimonial-user .ggt-image-wrapper img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.ggt-style3 .ggt-testimonial-user .ggt-icon-wrapper, 
.ggt-style3 .ggt-testimonial-user .ggt-image-wrapper {
  display: block;
  position: relative;
}
.ggt-style3 .ggt-testimonial-text {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  padding: 40px 30px 30px 30px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.ggt-style3 .ggt-author-name {
  top: 50%;
  position: relative;
  color: #fff;
  margin: 0;
  transform: translateY(-50%);
}
.ggt-style3 .ggt-author-credentials {
  position: relative;
  top: 50%;
  color: #fff;
  opacity: .6;
  transform: translateY(-50%);
}
.ggt-style3 .ggt-rate {
  position: relative;
  top: 50%;
  color: rgba(255,255,255,.5);
  margin-top: 40px;
}
.ggt-style3 .ggt-rate i {
  color: #ff9900;
}
.ggt-style3 .ggt-rate span {
  margin-left: 15px;
}
.ggt-style3 .ggt-image-wrapper::after {
  content: "\e98b";
  font-family: parasponsive-font;
  background: blueviolet;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -30px;
  line-height: 60px;
  z-index: 1;
  font-size: 22px;
  box-shadow: 0 1.8px 2.2px rgba(0, 0, 0, 0.014), 0 6.7px 5.3px rgba(0, 0, 0, 0.018), 0 12.5px 10px rgba(0, 0, 0, 0.02), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.026), 0 100px 80px rgba(0, 0, 0, 0.088);
  transition: all .3s ease-in-out;
}

.ggt-style3 .ggt-testimonial:hover .ggt-image-wrapper::after {
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 26px;
  bottom: -40px;
}

/*---- Element: Tabs -----*/


@keyframes ggt-fade {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/* ---------- General tab styles ---------- */

.ggt-tabs {
  position: relative;
}
.ggt-tabs .ggt-icon {
  font-family: FontAwesome;
    transition: all .2s ease-in-out 0s;
}
.ggt-tabs .ggt-tab-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
}
.ggt-tabs .ggt-tab-nav .ggt-tab {
    text-align: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -moz-box-flex: 0;
    -moz-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}
.ggt-tabs .ggt-tab-nav .ggt-tab a {
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 15px 30px;
    text-decoration: none;
    border: none;
    margin: 0;
    outline: none;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -ms-transition: color 0.3s;
    transition: color 0.3s;
}
    @media only screen and (max-width: 1024px) {
        .ggt-tabs .ggt-tab-nav .ggt-tab a {
            padding: 20px 25px;
        }
    }
.ggt-tabs .ggt-tab-nav .ggt-tab span.ggt-icon-wrapper span {
    font-size: 32px;
    font-weight: 400;
    vertical-align: middle;
    margin-right: 10px;
}
.ggt-tabs .ggt-tab-nav .ggt-tab span.ggt-image-wrapper img {
    max-width: 24px;
    display: inline-block;
    vertical-align: middle;
    height: auto;
    width: auto;
    padding: 0;
    margin: 0 10px 0 0;
    border: none;
}
.ggt-tabs .ggt-tab-nav .ggt-tab span.ggt-tab-title {
  color: inherit;
  transition: all .2s ease-in-out 0s;
}
.ggt-tab-nav .ggt-tab:hover span.ggt-tab-title,
.ggt-tab-nav .ggt-tab:hover .ggt-icon {
  opacity: .7;
}
.ggt-tabs .ggt-tab-panes {
    position: relative;
}
.ggt-tabs .ggt-tab-panes .ggt-tab-pane {
    padding: 20px 0px;
    display: none;
    overflow: hidden;
}
.ggt-tabs .ggt-tab-panes .ggt-tab-pane.ggt-active {
    display: block;
    animation: ggt-fade 0.3s ease-in-out;
}

/* ----- Fallback for IE 8/9 ----- */

.ggt-no-flexbox .ggt-tab-nav {
    display: block;
}
.ggt-no-flexbox .ggt-tab-nav .ggt-tab {
    min-width: 15%;
    display: inline-block;
}

/* ------------- Vertical tab styles ----------------- */
.ggt-tabs.ggt-vertical {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
}
.ggt-tabs.ggt-vertical .ggt-tab-nav {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
}
.ggt-tabs.ggt-vertical .ggt-tab-panes {
    -webkit-box-flex: 4;
    -webkit-flex: 4 1 auto;
    -moz-box-flex: 4;
    -moz-flex: 4 1 auto;
    -ms-flex: 4 1 auto;
    flex: 4 1 auto;
}
.ggt-tabs.ggt-vertical.ggt-mobile-layout {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

/* --------- Tab navigation in mobile ------------- */

.ggt-tab-mobile-menu {
    display: none;
    /* Hide on desktop */
    position: absolute;
    top: 23px;
    right: 20px;
    background: transparent;
    border: none;
    z-index: 10;
}
.ggt-tab-mobile-menu i {
    font-size: 18px;
    color: #777;
    font-weight: bold;
}
.ggt-tabs.ggt-mobile-layout .ggt-tab-mobile-menu {
    display: block; /* Show on mobile only */
}
.ggt-tabs.ggt-mobile-layout .ggt-tab-nav {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    cursor: pointer;
}
.ggt-tabs.ggt-mobile-layout .ggt-tab-nav .ggt-tab {
    text-align: center;
    display: none;
}
.ggt-tabs.ggt-mobile-layout .ggt-tab-nav .ggt-tab.ggt-active {
    display: block;
}
.ggt-tabs.ggt-mobile-layout.ggt-mobile-open .ggt-tab-nav .ggt-tab {
    display: block;
}
.ggt-tabs.ggt-mobile-layout.ggt-mobile-open .ggt-tab-mobile-menu i:before {
    content: '\e911';
}

/* ------------- Style 1 ----------------- */

.ggt-style1 .ggt-tab-panes .ggt-tab-pane {
    padding: 20px 30px;
}
.ggt-tabs.ggt-style1 .ggt-tab-nav .ggt-tab span.ggt-icon-wrapper span {
    font-size: 20px;
}
.ggt-tabs.ggt-style1 .ggt-tab-nav .ggt-tab {
  border-left: 1px solid rgba(0,0,0,.04);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.ggt-tabs.ggt-style1 .ggt-tab-nav .ggt-tab:first-child {
    border-left-color: transparent;
    border-radius: 12px 0 0 0;
}
.ggt-tabs.ggt-style1 .ggt-tab-nav .ggt-tab:last-child {
    border-radius: 0 12px 0 0;
}
.ggt-tabs.ggt-style1 .ggt-tab-nav .ggt-tab.ggt-active {
    border-bottom: none;
    background: #ffffff;
    z-index: 1
}
.ggt-tabs.ggt-style1 .ggt-tab-nav .ggt-tab a {
    color: inherit;
}
.ggt-tabs.ggt-style1 .ggt-tab-nav .ggt-tab a:hover, 
.ggt-tabs.ggt-style1 .ggt-tab-nav .ggt-tab a:focus {
    color: inherit;
}
.ggt-tabs.ggt-style1 .ggt-tab-nav .ggt-tab.ggt-active a {
    color: #333;
}
.ggt-tabs.ggt-style1 .ggt-tab-panes {
  background: #ffffff;
  border-radius: 0px 12px 12px 12px;
  box-shadow: 0 0.8px 2.2px rgba(0, 0, 0, 0.014), 0 2.7px 5.3px rgba(0, 0, 0, 0.018), 0 12.5px 10px rgba(0, 0, 0, 0.02), 0 9.3px 59.9px rgba(0, 0, 0, 0.042), 0 1.8px 30.4px rgba(0, 0, 0, 0.026), 0 40px 80px rgba(0, 0, 0, 0.088);
}
.ggt-tabs.ggt-style1.ggt-mobile-layout:not(.ggt-mobile-open) .ggt-tab.ggt-active {
    background: #eeeeee;
}
.ggt-tabs.ggt-style1.ggt-mobile-layout .ggt-tab {
    border-left: none;
    border-bottom-color: #d9d9d9;
}
.ggt-tabs.ggt-style1.ggt-mobile-layout .ggt-tab:first-child {
    border-radius: 5px 5px 0 0;
}
.ggt-tabs.ggt-style1.ggt-mobile-layout .ggt-tab:last-child {
    border-radius: 0;
}
.ggt-tabs.ggt-style1.ggt-mobile-layout .ggt-tab-panes {
    border-radius: 0;
}

/* -------- Style 2 ----------- */
.ggt-tabs.ggt-style2 .ggt-tab-nav {
    padding: 0 0px;
}
.ggt-tabs.ggt-style2 .ggt-tab-nav .ggt-tab {
    padding: 20px 10px;
    position: relative;
}
.ggt-tabs.ggt-style2 .ggt-tab-nav .ggt-tab a {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    display: inline-block;
    padding: 5px 20px;;
    color: inherit;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}
.ggt-tabs.ggt-style2 .ggt-tab-nav .ggt-tab a:hover, .ggt-tabs.ggt-style2 .ggt-tab-nav .ggt-tab a:focus {
    color: #221c24;
}
.ggt-tabs.ggt-style2 .ggt-tab-nav .ggt-tab.ggt-active::after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 8px solid;
    content: "";
    display: block;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 58px;
    width: 18px;
}
/* (intentionally left blank) */

.ggt-tabs.ggt-style2 .ggt-tab-panes .ggt-tab-pane {
    color: inherit;
}
.ggt-tabs.ggt-style2 .ggt-tab-panes .ggt-tab-pane h1, .ggt-tabs.ggt-style2 .ggt-tab-panes .ggt-tab-pane h2, .ggt-tabs.ggt-style2 .ggt-tab-panes .ggt-tab-pane h3, .ggt-tabs.ggt-style2 .ggt-tab-panes .ggt-tab-pane h4, .ggt-tabs.ggt-style2 .ggt-tab-panes .ggt-tab-pane h5, .ggt-tabs.ggt-style2 .ggt-tab-panes .ggt-tab-pane h6 {
    color: #fff;
}
.ggt-tabs.ggt-style2.ggt-mobile-layout .ggt-tab-mobile-menu {
    top: 27px;
}
.ggt-tabs.ggt-style2.ggt-mobile-layout .ggt-tab-nav {
    padding: 0;
}
.ggt-tabs.ggt-style2.ggt-mobile-layout.ggt-mobile-open .ggt-tab {
    border-bottom: 1px solid #e2e2e2;
}
.ggt-tabs.ggt-style2.ggt-mobile-layout.ggt-mobile-open .ggt-tab:last-child {
    border-bottom: none;
}
.ggt-tabs.ggt-style2.ggt-mobile-layout.ggt-mobile-open .ggt-tab.ggt-active:after {
    display: none;
}
.ggt-dark-bg .ggt-tabs.ggt-style2 .ggt-tab-nav .ggt-tab a {
    color: #333;
}
.ggt-dark-bg .ggt-tabs.ggt-style2 .ggt-tab-nav .ggt-tab a:hover, .ggt-dark-bg .ggt-tabs.ggt-style2 .ggt-tab-nav .ggt-tab a:focus {
    color: #666;
}
.ggt-dark-bg .ggt-tabs.ggt-style2 .ggt-tab-nav .ggt-tab.ggt-active a {
    background: #aaa;
    color: #fff;
}
.ggt-dark-bg .ggt-tabs.ggt-style2 .ggt-tab-nav .ggt-tab.ggt-active:after {
    border-bottom: 8px solid #e7e7e7;
}
.ggt-dark-bg .ggt-tabs.ggt-style2 .ggt-tab-panes {
    background: #e7e7e7;
}
.ggt-dark-bg .ggt-tabs.ggt-style2 .ggt-tab-panes .ggt-tab-pane {
    color: #666;
}
.ggt-dark-bg .ggt-tabs.ggt-style2 .ggt-tab-panes .ggt-tab-pane h1, .ggt-dark-bg .ggt-tabs.ggt-style2 .ggt-tab-panes .ggt-tab-pane h2, .ggt-dark-bg .ggt-tabs.ggt-style2 .ggt-tab-panes .ggt-tab-pane h3, .ggt-dark-bg .ggt-tabs.ggt-style2 .ggt-tab-panes .ggt-tab-pane h4, .ggt-dark-bg .ggt-tabs.ggt-style2 .ggt-tab-panes .ggt-tab-pane h5, .ggt-dark-bg .ggt-tabs.ggt-style2 .ggt-tab-panes .ggt-tab-pane h6 {
    color: #333;
}

/* -------- Style 3 ----------- */

.ggt-style3 .ggt-tab-panes .ggt-tab-pane {
  padding: 20px 10px;
}
/*.ggt-tabs.ggt-style3 .ggt-tab-nav {
    width: 50%;
    margin: auto;
}*/

.ggt-tabs.ggt-style3 .ggt-tab-nav .ggt-tab {
  position: relative;
  box-shadow: 0 1.8px 2.2px rgba(0, 0, 0, 0.004), 0 6.7px 5.3px rgba(0, 0, 0, 0.008), 0 12.5px 10px rgba(0, 0, 0, 0.01), 0 22.3px 17.9px rgba(0, 0, 0, 0.012), 0 41.8px 33.4px rgba(0, 0, 0, 0.006), 0 100px 80px rgba(0, 0, 0, 0.028);
  margin: 0 4px;
  text-align: center;
  border-radius: 12px;
}
.ggt-tabs.ggt-style3 .ggt-tab-nav .ggt-tab a {
  padding: 20px 30px;
  color: inherit;
  -webkit-transition: all .3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -moz-transition: all .3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  transition: all .3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}
.ggt-tabs.ggt-style3 .ggt-tab-nav .ggt-tab a:hover, .ggt-tabs.ggt-style3 .ggt-tab-nav .ggt-tab a:focus {
    color: #ccc;
}
.ggt-tabs.ggt-style3 .ggt-tab-nav .ggt-tab.ggt-active::after {
  content: "";
  display: block;
  left: 5px;
  margin: 0 auto;
  position: absolute;
  right: 5px;
  top: 3px;
  border-top-left-radius: 22px;
  background: rgba(255,255,255,.05);
  height: 35px;
  border-top-right-radius: 22px;
}
.ggt-tabs.ggt-style3 .ggt-tab-nav .ggt-tab span.ggt-icon-wrapper span, .ggt-tabs.ggt-style3 .ggt-tab-nav .ggt-tab span.ggt-image-wrapper img {
    margin: 0 auto;
}

.ggt-tabs.ggt-style3 .ggt-tab-nav .ggt-tab.ggt-active {
  box-shadow: 0 0.8px 2.2px rgba(0, 0, 0, 0.014), 0 2.7px 5.3px rgba(0, 0, 0, 0.018), 0 12.5px 10px rgba(0, 0, 0, 0.02), 0 9.3px 59.9px rgba(0, 0, 0, 0.042), 0 1.8px 30.4px rgba(0, 0, 0, 0.026), 0 40px 80px rgba(0, 0, 0, 0.088);
}
.ggt-tabs.ggt-style3 .ggt-tab-nav .ggt-tab.ggt-active a {
    color: inherit;
}
.ggt-tabs.ggt-style3 .ggt-tab-panes {

}
.ggt-tabs.ggt-style3.ggt-mobile-layout .ggt-tab-nav {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-right: 60px;
}
.ggt-tabs.ggt-style3.ggt-mobile-layout.ggt-mobile-open .ggt-tab {
    border-bottom: 1px solid #4e4f53;
}
.ggt-dark-bg .ggt-tabs.ggt-style3.ggt-mobile-layout.ggt-mobile-open .ggt-tab {
    border-bottom-color: #e5e5e5;
}
.ggt-tabs.ggt-style3.ggt-mobile-layout.ggt-mobile-open .ggt-tab.ggt-active:after {
    display: none;
}
.ggt-dark-bg .ggt-tabs.ggt-style3 .ggt-tab-nav .ggt-tab {
    border-right: 1px solid #ececec;
}
.ggt-dark-bg .ggt-tabs.ggt-style3 .ggt-tab-nav .ggt-tab a {
    color: #969696;
}
.ggt-dark-bg .ggt-tabs.ggt-style3 .ggt-tab-nav .ggt-tab a:hover, .ggt-dark-bg .ggt-tabs.ggt-style3 .ggt-tab-nav .ggt-tab a:focus {
    color: #666;
}
.ggt-dark-bg .ggt-tabs.ggt-style3 .ggt-tab-nav .ggt-tab.ggt-active a {
    color: #333;
}
.ggt-dark-bg .ggt-tabs.ggt-style3 .ggt-tab-nav .ggt-tab.ggt-active:after {
    border-bottom: 8px solid #e7e7e7;
}
.ggt-dark-bg .ggt-tabs.ggt-style3 .ggt-tab-panes .ggt-tab-pane {
    color: #666;
}
.ggt-dark-bg .ggt-tabs.ggt-style3 .ggt-tab-panes .ggt-tab-pane h1, .ggt-dark-bg .ggt-tabs.ggt-style3 .ggt-tab-panes .ggt-tab-pane h2, .ggt-dark-bg .ggt-tabs.ggt-style3 .ggt-tab-panes .ggt-tab-pane h3, .ggt-dark-bg .ggt-tabs.ggt-style3 .ggt-tab-panes .ggt-tab-pane h4, .ggt-dark-bg .ggt-tabs.ggt-style3 .ggt-tab-panes .ggt-tab-pane h5, .ggt-dark-bg .ggt-tabs.ggt-style3 .ggt-tab-panes .ggt-tab-pane h6 {
    color: #333;
}

/* ----------- Style 4 --------------- */

.ggt-tabs.ggt-style4 .ggt-tab-nav {
    border-bottom: 1px solid #eeeeee;
}
.ggt-tabs.ggt-style4 .ggt-tab-nav .ggt-tab {
    position: relative;
    z-index: 1;
    margin-right: 20px;
}
.ggt-tabs.ggt-style4 .ggt-tab-nav .ggt-tab:last-child {
    margin-right: 0;
}
.ggt-tabs.ggt-style4 .ggt-tab-nav .ggt-tab a {
  display: flex;
    color: inherit;
    padding: 30px 20px;
}
.ggt-tabs.ggt-style4 .ggt-tab-nav .ggt-tab:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
    -webkit-transition: all .3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
    -moz-transition: all .3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
    transition: all .3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}
.ggt-tabs.ggt-style4 .ggt-tab-nav .ggt-tab:hover a {
    color: #565656;
}
.ggt-tabs.ggt-style4 .ggt-tab-nav .ggt-tab.ggt-active a {
    color: #333;
}
.ggt-tabs.ggt-style4 .ggt-tab-nav .ggt-tab.ggt-active:before {
    height: 2px;
}
.ggt-tabs.ggt-style4 .ggt-tab-pane {
    padding: 30px 10px;
}
.ggt-tabs.ggt-style4.ggt-mobile-layout .ggt-tab-nav {
    cursor: pointer;
    padding: 0;
    margin: 0;
    border: none;
}
.ggt-tabs.ggt-style4.ggt-mobile-layout .ggt-tab-nav .ggt-tab {
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
}
.ggt-dark-bg .ggt-tabs.ggt-style4.ggt-mobile-layout .ggt-tab-nav .ggt-tab {
    border-left: 1px solid #404040;
    border-right: 1px solid #404040;
    border-bottom-color: #404040;
}
.ggt-dark-bg .ggt-tabs.ggt-style4.ggt-mobile-layout .ggt-tab-nav .ggt-tab:first-child {
    border-top: 1px solid #404040;
}
.ggt-tabs.ggt-style4.ggt-mobile-layout .ggt-tab-nav .ggt-tab a {
    padding: 20px 25px;
}
.ggt-tabs.ggt-style4.ggt-mobile-layout .ggt-tab-nav .ggt-tab:before {
    display: none;
}
.ggt-tabs.ggt-style4.ggt-mobile-layout.ggt-mobile-open .ggt-tab.ggt-active {
    border-left: 2px solid #f94213;
    border-right: 2px solid #f94213;
}
.ggt-dark-bg .ggt-tabs.ggt-style4.ggt-mobile-layout:not(.ggt-mobile-open) .ggt-tab.ggt-active {
    border-top: 1px solid #404040;
}
.ggt-dark-bg .ggt-tabs.ggt-style4 {
    background: transparent;
}
.ggt-dark-bg .ggt-tabs.ggt-style4 .ggt-tab-nav {
    margin: 0;
    border-bottom: 1px solid #2a2a2a;
}
.ggt-dark-bg .ggt-tabs.ggt-style4 .ggt-tab-nav .ggt-tab a {
    color: #707070;
}
.ggt-dark-bg .ggt-tabs.ggt-style4 .ggt-tab-nav .ggt-tab:hover a {
    color: #b0b0b0;
}
.ggt-dark-bg .ggt-tabs.ggt-style4 .ggt-tab-nav .ggt-tab.ggt-active a {
    color: #e5e5e5;
}
.ggt-dark-bg .ggt-tabs.ggt-style4 .ggt-tab-pane {
    padding: 40px 0 0;
    color: #909090; }

.ggt-dark-bg .ggt-tabs.ggt-style4 .ggt-tab-pane h1, .ggt-dark-bg .ggt-tabs.ggt-style4 .ggt-tab-pane h2, .ggt-dark-bg .ggt-tabs.ggt-style4 .ggt-tab-pane h3, .ggt-dark-bg .ggt-tabs.ggt-style4 .ggt-tab-pane h4, .ggt-dark-bg .ggt-tabs.ggt-style4 .ggt-tab-pane h5, .ggt-dark-bg .ggt-tabs.ggt-style4 .ggt-tab-pane h6 {
    color: #e5e5e5;
}

/* ----------- Style 5 --------------- */

.ggt-tabs.ggt-style5 .ggt-tab-panes .ggt-tab-pane {
  overflow: hidden;
  padding: 30px 30px;
}
.ggt-tabs.ggt-style5 .ggt-tab-nav a {
  padding: 15px 30px;
  color: #777;
  position: relative;
  z-index: 1;
  display: flex;
}
.ggt-tabs.ggt-style5 .ggt-tab-nav a:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #e9e9e9;
    content: '';
    -webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
    transition: transform 0.3s, background-color 0.3s;
    -webkit-transform: perspective(900px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(900px) rotate3d(1, 0, 0, 90deg);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-perspective-origin: 50% 100%;
    perspective-origin: 50% 100%;
}
.ggt-tabs.ggt-style5 .ggt-tab-nav a:hover, .ggt-tabs.ggt-style5 .ggt-tab-nav a:focus {
    color: #333;
}
.ggt-tabs.ggt-style5 .ggt-tab-nav .ggt-tab.ggt-active a {
    color: #333;
}
.ggt-tabs.ggt-style5 .ggt-tab-nav .ggt-tab.ggt-active a::after {
  background-color: #f2f2f2;
  -webkit-transform: perspective(900px) rotate3d(1, 0, 0, 0deg);
  transform: perspective(900px) rotate3d(1, 0, 0, 0deg);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding-bottom: 80px;
}
.ggt-tabs.ggt-style5 .ggt-tab-panes {
  background: #f2f2f2;
  border-radius: 12px;
  z-index: 1;
}
.ggt-tabs.ggt-style5.ggt-mobile-layout .ggt-tab-nav .ggt-tab {
    background: #f2f2f2;
    border-bottom: 1px solid #e5e5e5;
}
.ggt-dark-bg .ggt-tabs.ggt-style5 .ggt-tab-nav .ggt-tab a {
    color: inherit;
}
.ggt-dark-bg .ggt-tabs.ggt-style5 .ggt-tab-nav .ggt-tab a:hover, .ggt-dark-bg .ggt-tabs.ggt-style5 .ggt-tab-nav .ggt-tab a:focus {
    color: inherit;
}
.ggt-dark-bg .ggt-tabs.ggt-style5 .ggt-tab-nav .ggt-tab.ggt-active a {
    color: #333;
}

/* ------------- Style 6 and Vertical Style 7 ----------------- */

.ggt-tabs.ggt-style6 .ggt-tab-nav .ggt-tab, .ggt-tabs.ggt-style7 .ggt-tab-nav .ggt-tab {
    text-align: left;
}
.ggt-tabs.ggt-style6 .ggt-tab-nav .ggt-tab a, 
.ggt-tabs.ggt-style7 .ggt-tab-nav .ggt-tab a {
  display: flex;
  padding: 5px 15px;
  color: inherit;
  -webkit-transition: all .3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -moz-transition: all .3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  transition: all .3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  border: 2px solid transparent;
  border-bottom: 2px solid transparent;
  display: inline-block;
  border-radius: 12px;
}
.ggt-tabs.ggt-style6 .ggt-tab-nav .ggt-tab a:hover, .ggt-tabs.ggt-style6 .ggt-tab-nav .ggt-tab a:focus, .ggt-tabs.ggt-style7 .ggt-tab-nav .ggt-tab a:hover, .ggt-tabs.ggt-style7 .ggt-tab-nav .ggt-tab a:focus {
    color: #333333;
}
.ggt-tabs.ggt-style6 .ggt-tab-nav .ggt-tab.ggt-active a, .ggt-tabs.ggt-style7 .ggt-tab-nav .ggt-tab.ggt-active a {
    border-color: #f94213;
    color: #333;
}
.ggt-tabs.ggt-style6 .ggt-tab-pane, .ggt-tabs.ggt-style7 .ggt-tab-pane {
    padding: 40px 0 0;
}
.ggt-tabs.ggt-style6 .ggt-tab-nav {
    margin: 0 auto;
    text-align: left;
}
.ggt-tabs.ggt-style6 .ggt-tab-nav .ggt-tab {
    margin-right: 10px;
}
.ggt-tabs.ggt-style6 .ggt-tab-nav .ggt-tab:last-child {
    margin-right: 0;
}
.ggt-tabs.ggt-style6 .ggt-tab-pane {
    padding: 40px 0 0;
}
.ggt-tabs.ggt-style7 .ggt-tab-nav .ggt-tab {
    padding: 0 25px 0 0;
}
.ggt-tabs.ggt-style7 .ggt-tab-nav .ggt-tab a {
    max-width: none;
    margin: 6px 0;
}
    @media only screen and (max-width: 479px) {
        .ggt-tabs.ggt-style7 .ggt-tab-nav .ggt-tab a {
            text-align: center;
        }
    }
.ggt-tabs.ggt-style7 .ggt-tab-panes {
    -webkit-box-flex: 6;
    -webkit-flex: 6 1 auto;
    -moz-box-flex: 6;
    -moz-flex: 6 1 auto;
    -ms-flex: 6 1 auto;
    flex: 6 1 auto;
}
.ggt-tabs.ggt-style7 .ggt-tab-panes .ggt-tab-pane {
    padding: 0 0 0 20px;
}
.ggt-tabs.ggt-style6.ggt-mobile-layout .ggt-tab-mobile-menu, .ggt-tabs.ggt-style7.ggt-mobile-layout .ggt-tab-mobile-menu {
    top: 22px;
}
.ggt-tabs.ggt-style6.ggt-mobile-layout .ggt-tab-nav .ggt-tab, .ggt-tabs.ggt-style7.ggt-mobile-layout .ggt-tab-nav .ggt-tab {
    padding: 12px 0;
    width: 100%;
    text-align: center;
}
.ggt-tabs.ggt-style6.ggt-mobile-layout .ggt-tab-nav .ggt-tab a, .ggt-tabs.ggt-style7.ggt-mobile-layout .ggt-tab-nav .ggt-tab a {
    margin: 0;
}
.ggt-tabs.ggt-style6.ggt-mobile-layout .ggt-tab-pane, .ggt-tabs.ggt-style7.ggt-mobile-layout .ggt-tab-pane {
    padding: 30px 0 0;
}
.ggt-dark-bg .ggt-tabs.ggt-style6 .ggt-tab-nav .ggt-tab a, .ggt-dark-bg .ggt-tabs.ggt-style7 .ggt-tab-nav .ggt-tab a {
    color: #b0b0b0;
}
.ggt-dark-bg .ggt-tabs.ggt-style6 .ggt-tab-nav .ggt-tab:hover a, .ggt-dark-bg .ggt-tabs.ggt-style7 .ggt-tab-nav .ggt-tab:hover a {
    color: #dddddd;
}
.ggt-dark-bg .ggt-tabs.ggt-style6 .ggt-tab-nav .ggt-tab.ggt-active a, .ggt-dark-bg .ggt-tabs.ggt-style7 .ggt-tab-nav .ggt-tab.ggt-active a {
    color: #eaeaea;
}
.ggt-dark-bg .ggt-tabs.ggt-style6 .ggt-tab-pane, .ggt-dark-bg .ggt-tabs.ggt-style7 .ggt-tab-pane {
    color: #909090;
}
.ggt-dark-bg .ggt-tabs.ggt-style6 .ggt-tab-pane h1, .ggt-dark-bg .ggt-tabs.ggt-style6 .ggt-tab-pane h2, .ggt-dark-bg .ggt-tabs.ggt-style6 .ggt-tab-pane h3, .ggt-dark-bg .ggt-tabs.ggt-style6 .ggt-tab-pane h4, .ggt-dark-bg .ggt-tabs.ggt-style6 .ggt-tab-pane h5, .ggt-dark-bg .ggt-tabs.ggt-style6 .ggt-tab-pane h6, .ggt-dark-bg .ggt-tabs.ggt-style7 .ggt-tab-pane h1, .ggt-dark-bg .ggt-tabs.ggt-style7 .ggt-tab-pane h2, .ggt-dark-bg .ggt-tabs.ggt-style7 .ggt-tab-pane h3, .ggt-dark-bg .ggt-tabs.ggt-style7 .ggt-tab-pane h4, .ggt-dark-bg .ggt-tabs.ggt-style7 .ggt-tab-pane h5, .ggt-dark-bg .ggt-tabs.ggt-style7 .ggt-tab-pane h6 {
    color: #e5e5e5;
}

/* ------------- Vertical Style 8 ----------------- */
.ggt-tabs.ggt-style8 .ggt-tab-nav .ggt-tab {
  position: relative;
    margin: 5px 0;
}
.ggt-tabs.ggt-style8 .ggt-tab-nav .ggt-tab a {
  display: flex;
  padding: 15px 30px;
  background: #ffffff;
  color: inherit;
  -webkit-transition: all .3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -moz-transition: all .3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  transition: all .3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  text-align: left;
  border-radius: 12px;
  box-shadow: 0 1.8px 2.2px rgba(0, 0, 0, 0.004), 0 6.7px 5.3px rgba(0, 0, 0, 0.008), 0 12.5px 10px rgba(0, 0, 0, 0.01), 0 22.3px 17.9px rgba(0, 0, 0, 0.012), 0 41.8px 33.4px rgba(0, 0, 0, 0.006), 0 100px 80px rgba(0, 0, 0, 0.028);
}

.ggt-tabs.ggt-style8 .ggt-tab-nav .ggt-tab a:hover, .ggt-tabs.ggt-style8 .ggt-tab-nav .ggt-tab a:focus {
    color: #333333;
}
.ggt-tabs.ggt-style8 .ggt-tab-nav .ggt-tab.ggt-active a {
  color: #333;
  box-shadow: 0 0.8px 2.2px rgba(0, 0, 0, 0.014), 0 2.7px 5.3px rgba(0, 0, 0, 0.018), 0 12.5px 10px rgba(0, 0, 0, 0.02), 0 9.3px 59.9px rgba(0, 0, 0, 0.042), 0 1.8px 30.4px rgba(0, 0, 0, 0.026), 0 40px 80px rgba(0, 0, 0, 0.088);
}
.ggt-tabs.ggt-style8 .ggt-tab-pane {
    padding: 0 0 0 40px;
}
.ggt-tabs.ggt-style8.ggt-mobile-layout .ggt-tab-mobile-menu {
    top: 18px;
}
.ggt-tabs.ggt-style8.ggt-mobile-layout .ggt-tab-nav .ggt-tab a {
    text-align: left;
}
.ggt-tabs.ggt-style8.ggt-mobile-layout:not(.ggt-mobile-open) .ggt-tab.ggt-active a {
    border-color: transparent !important;
}
.ggt-tabs.ggt-style8.ggt-mobile-layout .ggt-tab-pane {
    padding: 30px 0 0;
}
.ggt-dark-bg .ggt-tabs.ggt-style8 .ggt-tab-pane {
    color: #909090;
}
.ggt-dark-bg .ggt-tabs.ggt-style8 .ggt-tab-pane h1, .ggt-dark-bg .ggt-tabs.ggt-style8 .ggt-tab-pane h2, .ggt-dark-bg .ggt-tabs.ggt-style8 .ggt-tab-pane h3, .ggt-dark-bg .ggt-tabs.ggt-style8 .ggt-tab-pane h4, .ggt-dark-bg .ggt-tabs.ggt-style8 .ggt-tab-pane h5, .ggt-dark-bg .ggt-tabs.ggt-style8 .ggt-tab-pane h6 {
    color: #e5e5e5;
}

/* ------------- Vertical Style 9 ----------------- */
.ggt-tabs.ggt-style9 {
  border-radius: 12px;
  box-shadow: 0 1.8px 2.2px rgba(0, 0, 0, 0.004), 0 6.7px 5.3px rgba(0, 0, 0, 0.008), 0 12.5px 10px rgba(0, 0, 0, 0.01), 0 22.3px 17.9px rgba(0, 0, 0, 0.012), 0 41.8px 33.4px rgba(0, 0, 0, 0.006), 0 100px 80px rgba(0, 0, 0, 0.028);
}
.ggt-tabs.ggt-style9 .ggt-tab-nav {
  border-right: 0px solid rgba(255,255,255,0.1);
}
.ggt-tabs.ggt-style9 .ggt-tab-nav .ggt-tab {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.1);
  cursor: pointer;
}
.ggt-tabs.ggt-style9 .ggt-tab-nav .ggt-tab::after {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: .05  ;
}
.ggt-tabs.ggt-style9 .ggt-tab-nav .ggt-tab.ggt-active:after {
  opacity: 0;
}
.ggt-tabs.ggt-style9 .ggt-tab-nav .ggt-tab:first-child {
  border-top-left-radius: 12px;
}
.ggt-tabs.ggt-style9 .ggt-tab-nav .ggt-tab:last-child {
  border-bottom-left-radius: 12px;
}
.ggt-tabs.ggt-style9 .ggt-tab-nav .ggt-tab.ggt-active {
    margin-right: -1px;
    background: #f2f2f2;
}
.ggt-tabs.ggt-style9 .ggt-tab-nav .ggt-tab a {
  display: flex;
    padding: 20px 30px;
    color: #777;
    text-align: left;
}
.ggt-tabs.ggt-style9 .ggt-tab-nav .ggt-tab a:hover, .ggt-tabs.ggt-style9 .ggt-tab-nav .ggt-tab a:focus {
    color: #333;
}
.ggt-tabs.ggt-style9 .ggt-tab-nav .ggt-tab.ggt-active a {
    color: #333;
}
.ggt-tabs.ggt-style9 .ggt-tab-panes {
    padding: 0 30px;
    -webkit-box-flex: 5;
    -webkit-flex: 5 1 auto;
    -moz-box-flex: 5;
    -moz-flex: 5 1 auto;
    -ms-flex: 5 1 auto;
    flex: 5 1 auto;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}
.ggt-tabs.ggt-style9.ggt-mobile-layout .ggt-tab-nav {
    border-right: none;
}
.ggt-tabs.ggt-style9.ggt-mobile-layout:not(.ggt-mobile-open) .ggt-tab.ggt-active {
    background: #eeeeee;
    border: none;
}

/* -------- Vertical Style 10 ----------- */

.ggt-tabs.ggt-style10 .ggt-tab-nav {
    background: #3c3d41;
    border-radius: 12px 0 0 12px;
}
.ggt-tabs.ggt-style10 .ggt-tab-nav .ggt-tab {
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,.2);
    padding: 0;
}
.ggt-tabs.ggt-style10 .ggt-tab-nav .ggt-tab:last-child {
    border-bottom: none;
}
.ggt-tabs.ggt-style10 .ggt-tab-nav .ggt-tab a {
    padding: 20px;
    color: #8f8e93;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}
.ggt-tabs.ggt-style10 .ggt-tab-nav .ggt-tab a:hover, .ggt-tabs.ggt-style10 .ggt-tab-nav .ggt-tab a:focus {
    color: #ccc;
}
.ggt-tabs.ggt-style10 .ggt-tab-nav .ggt-tab.ggt-active:after {
    content: '';
    display: block;
    position: absolute;
    top: 32px;
    right: 0;
    height: 8px;
    margin: 0 auto;
    border-top: 8px solid transparent;
    border-right: 8px solid #f2f2f2;
    border-bottom: 8px solid transparent;
}
.ggt-tabs.ggt-style10 .ggt-tab-nav .ggt-tab span.ggt-icon-wrapper span, .ggt-tabs.ggt-style10 .ggt-tab-nav .ggt-tab span.ggt-image-wrapper {
    margin: 0 auto;
}
.ggt-tabs.ggt-style10 .ggt-tab-nav .ggt-tab span.ggt-tab-title {
    display: none;
}
.ggt-tabs.ggt-style10 .ggt-tab-nav .ggt-tab.ggt-active a {
    color: #fff;
}
.ggt-tabs.ggt-style10 .ggt-tab-panes {
    padding: 10px 40px;
    background: rgba(0,0,0,.03);
    border-radius: 0 12px 12px 0;
}
.ggt-tabs.ggt-style10.ggt-mobile-layout {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}
.ggt-tabs.ggt-style10.ggt-mobile-layout .ggt-tab-mobile-menu {
    display: none;
}
.ggt-tabs.ggt-style10.ggt-mobile-layout .ggt-tab-nav .ggt-tab {
    display: block;
}
.ggt-dark-bg .ggt-tabs.ggt-style10 .ggt-tab-nav {
    background: #fff;
}
.ggt-dark-bg .ggt-tabs.ggt-style10 .ggt-tab-nav .ggt-tab {
    border-bottom: 1px solid #ececec;
}
.ggt-dark-bg .ggt-tabs.ggt-style10 .ggt-tab-nav .ggt-tab:last-child {
    border-bottom: none;
}
.ggt-dark-bg .ggt-tabs.ggt-style10 .ggt-tab-nav .ggt-tab a {
    color: #969696;
}
.ggt-dark-bg .ggt-tabs.ggt-style10 .ggt-tab-nav .ggt-tab a:hover, .ggt-dark-bg .ggt-tabs.ggt-style10 .ggt-tab-nav .ggt-tab a:focus {
    color: #666;
}
.ggt-dark-bg .ggt-tabs.ggt-style10 .ggt-tab-nav .ggt-tab.ggt-active a {
    color: #333;
}
.ggt-dark-bg .ggt-tabs.ggt-style10 .ggt-tab-nav .ggt-tab.ggt-active:after {
    border-right: 8px solid #e7e7e7;
}
.ggt-dark-bg .ggt-tabs.ggt-style10 .ggt-tab-panes {
    background: #e7e7e7;
}
.ggt-dark-bg .ggt-tabs.ggt-style10 .ggt-tab-panes .ggt-tab-pane {
    color: #666;
}
.ggt-dark-bg .ggt-tabs.ggt-style10 .ggt-tab-panes .ggt-tab-pane h1, .ggt-dark-bg .ggt-tabs.ggt-style10 .ggt-tab-panes .ggt-tab-pane h2, .ggt-dark-bg .ggt-tabs.ggt-style10 .ggt-tab-panes .ggt-tab-pane h3, .ggt-dark-bg .ggt-tabs.ggt-style10 .ggt-tab-panes .ggt-tab-pane h4, .ggt-dark-bg .ggt-tabs.ggt-style10 .ggt-tab-panes .ggt-tab-pane h5, .ggt-dark-bg .ggt-tabs.ggt-style10 .ggt-tab-panes .ggt-tab-pane h6 {
    color: #333;
}

/*---- Element: Testimonils carousel -----*/

.ggt-testimonials-slider .ggt-slides {
  text-align: center;
}
.ggt-testimonials-slider .ggt-testimonial-user {
  margin: auto;
  display: block;
  width: 300px;
  text-align: center !important;
}
.ggt-testimonials-slider .ggt-image-wrapper {
  margin: auto;
}
.ggt-testimonials-slider.ggt-flexslider .ggt-slides img {
  border-radius: 50px;
}
.ggt-testimonials-slider.ggt-flexslider .ggt-slides .ggt-image-wrapper {
  margin-right: 20px;
}




/*---- Element: Progress Bar -----*/

.ggt-stats-bar-content {
  border-radius: 30px;
  padding: 0 10px;
  text-align: right;
  font-size: .8rem;
}

/*---- Element: Banner -----*/

.banner-container{
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
    -webkit-perspective: 1000px;
            perspective: 1000px;
            cursor: pointer;
}
.ggt-banner a {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: all;
}
.banner-container .front,
.banner-container .back{
  background-size: cover;
    background-position: center;
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    text-align: center;
    min-height: 280px;
    height: auto;
    border-radius: 10px;
    color: #fff;
    font-size: 1.5rem;
}
.banner-container .front:after{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    opacity: .6;
    background-color: #000;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 10px;
}
.banner-container:hover .front,
.banner-container:hover .back{
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.banner-container .back{
    font-size: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.banner-container .inner{
    -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
            transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 50%;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
            perspective: inherit;
    z-index: 2;
}
.banner-container .inner a p {
  padding: 0 40px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
}

.banner-container .back{
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.banner-container .front{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}
.banner-container:hover .back{
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.banner-container:hover .front{
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.banner-container .front .inner h4 {
    color: #ffffff;
    margin-bottom: 0px;
    position: relative;
}
.banner-container .front .inner span{
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
}


/*---- Element: Accordion -----*/

.ggt-accordion ul li i:before, 
.ggt-accordion ul li i:after,
.ggt-accordion p {
  transition: all .5s ease-in-out;
}

.ggt-accordion .flipIn,  
.ggt-accordion ul li {
  animation: flipdown 0.5s ease both;
}

.ggt-accordion .no-select, 
.ggt-accordion .ggt-panel-title {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}



@media (max-width: 550px) {
  body {
    box-sizing: border-box;
/*    transform: translate(0, 0);*/
    max-width: 100%;
    min-height: 100%;
    margin: 0;
    left: 0;
  }
}


.ggt-accordion h5 {
  display: block;
  margin: 0;
  cursor: pointer;
}

.ggt-accordion p {
  position: relative;
  overflow: hidden;
  max-height: 800px;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 12px;
  z-index: 2;
}

.ggt-accordion ul {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0;
  border: 2px solid rgba(0,0,0,.05);
  border-radius: 12px;
}
.ggt-accordion ul li {
  position: relative;
  padding: 0;
  margin: 0;
  padding-bottom: 4px;
  padding-top: 18px;
  border-top: 2px solid rgba(0,0,0,.05);
  padding-left: 20px;
}
.ggt-accordion ul li:first-child {
  border-top: 0;
}

.ggt-accordion ul li:last-of-type {
  padding-bottom: 0;
}
.ggt-accordion ul li i {
  position: absolute;
  transform: translate(-30px, 0);
  margin-top: 8px;
  right: 0;
}
.ggt-accordion ul li i:before, 
.ggt-accordion ul li i:after {
  content: "";
  position: absolute;
  background-color: #cccccc;
  width: 2px;
  height: 12px;
  border-radius: 10px
}
.ggt-accordion ul li i:before {
  transform: translate(-5px, 0) rotate(45deg);
}
.ggt-accordion ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
.ggt-accordion ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
.ggt-accordion ul li input[type=checkbox]:checked ~ p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 0);
}
.ggt-accordion ul li input[type=checkbox]:checked ~ i:before {
  transform: translate(5px, 0) rotate(45deg);
}
.ggt-accordion ul li input[type=checkbox]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}

@keyframes flipdown {
  0% {
    opacity: 0;
    transform-origin: top center;
    transform: rotateX(-90deg);
  }
  5% {
    opacity: 1;
  }
  80% {
    transform: rotateX(8deg);
  }
  83% {
    transform: rotateX(6deg);
  }
  92% {
    transform: rotateX(-3deg);
  }
  100% {
    transform-origin: top center;
    transform: rotateX(0deg);
  }
}

/*---- Element: Pricing table -----*/

.ggt-pricing-table img {
  width: 100%;
  height: 100%;
}
.ggt-pricing-title {
  padding: 40px 20px 0px 20px;
  margin: 0;
  text-align: center;
}
.ggt-tagline {
  text-align: center;
  padding: 0px 20px 30px 20px;
  opacity: .5;
}
.ggt-pricing-plan {
	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
	border-radius: 12px;
	transition: all .3s ease-in-out;
	overflow: hidden;
	cursor: default;
  border: 2px solid;
  text-align: center;
}
/* Pricing plan border colors by skin */
.ggt-pricing-plan { border-color: var(--ggt-main-color); }
.dark-skin .ggt-pricing-plan { border-color: #ffffff; }
.light-skin .ggt-pricing-plan { border-color: #000000; }
.ggt-plan-details {
	padding: 20px 0px 10px 0px;
	text-align: center;
}
.ggt-pricing-plan:hover {
  box-shadow: 0 1.8px 2.2px rgba(0, 0, 0, 0.014), 0 6.7px 5.3px rgba(0, 0, 0, 0.018), 0 12.5px 10px rgba(0, 0, 0, 0.02), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.026), 0 100px 80px rgba(0, 0, 0, 0.088);
}
.ggt-pricing-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,.05);
  padding: 15px 5px;
}
.ggt-pricing-item:last-child {
  margin-bottom: 30px;
}
.ggt-pricing-item::before {
  content: "\e931";
  font-family: parasponsive-font;
  border: 1px solid;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  border-radius: 50px;
  font-size: 10px;
  opacity: .5;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.ggt-pricing-item .ggt-title {
  padding: 0 0 0 35px;
}
.ggt-plan-details .vc_description {
  padding: 0px 25px;
  display: block;
  margin-top: 20px;
  text-align: center;
}
.ggt-plan-price {
	text-align: center;
	margin: 20px 0;
	border: 2px solid;
	display: inline-block;
	margin: 0px auto 20px auto;
	width: 160px;
	height: 160px;
	line-height: 150px;
	border-radius: 110px;
	text-align: center;
}
.ggt-pricing-plan .ggt-purchase {
  text-align: center;
  margin: 20px 0 30px 0;
}
.ggt-pricing-plan .ggt-purchase .ggt-button {
  display: inline-block;
  text-align: center;
}
.ggt-plan-price-wrap {
  display: inline-flex;
  position: relative;
  margin: auto;
}
.ggt-plan-price-currency {
	position: relative;
	top: -10px;
	right: 5px;
	opacity: .6;
	font-size: 25px;
}
.ggt-plan-price-amount {
	font-size: 55px;
	text-align: center;
	margin: auto;
	font-weight: 500;
}
.ggt-plan-price-tag {
	position: relative;
	right: 0px;
	top: 15px;
	opacity: .6;
}

/* ---- Full-width Posts Carousel ---- */
/* Skins for arrows/dots at the shortcode wrapper level */
.ggt-fullwidth-carousel.ggt-nav-skin-dark .ggt-swiper-nav { border-color: #ffffff !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-dark .ggt-swiper-nav::before { color: #ffffff !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-dark .swiper-pagination-bullet { background: rgba(255,255,255,.6) !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-dark .swiper-pagination-bullet.swiper-pagination-bullet-active { background: #ffffff !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-light .ggt-swiper-nav { border-color: #000000 !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-light .ggt-swiper-nav::before { color: #000000 !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-light .swiper-pagination-bullet { background: rgba(0,0,0,.55) !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-light .swiper-pagination-bullet.swiper-pagination-bullet-active { background: #000000 !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-main .ggt-swiper-nav { border-color: var(--ggt-main-color) !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-main .ggt-swiper-nav::before { color: var(--ggt-main-color) !important; }
.ggt-fullwidth-carousel.ggt-nav-skin-main .swiper-pagination-bullet { background: var(--ggt-main-color) !important; opacity: .5; }
.ggt-fullwidth-carousel.ggt-nav-skin-main .swiper-pagination-bullet.swiper-pagination-bullet-active { background: var(--ggt-main-color) !important; opacity: 1; }

/* Card and image should not overlap the title */
.ggt-fullwidth-carousel .ggt-fullwidth-carousel-item {
  /* background: var(--ggt-fullwidth-carousel-card-bg, #fff); */
  border-radius: 12px;
  overflow: hidden;
}
.ggt-fullwidth-carousel .published.post-date {
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  border-radius: 100px;
  background: #fff;
  display: block;
  position: absolute;
  top: -37px;
  left: 0;
  right: 0;
  margin: auto;
}



.ggt-fullwidth-carousel .ggt-project-image-thumb {
	position: relative;
}
.ggt-fullwidth-carousel .post-title {
	margin-bottom: 20px;
	margin-top: 30px;
}
.ggt-fullwidth-carousel .ggt-entry-text-wrap {
  padding: 22px 22px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ggt-fullwidth-carousel .entry-summary {
	margin-bottom: 20px;
	margin-top: 20px;
}

.ggt-fullwidth-carousel .post-view,
.like-icon,
.like-count {
	opacity: .5;
}


/*---- Element: InfoBox -----*/

.ggt-infobox .ggt-button {
  display: inline-block;
}

.ggt-infobox.ggt-style1 .ggt-text {
  padding: 10px 0px;
  width: 90%;
}
.ggt-infobox .parallax-card-wrap {
  width: 100%;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-perspective-origin: center;
    perspective-origin: center;
    display: inline-block;
}

.ggt-infobox .parallax-card__content {
  left: 0;
  position: relative;
  text-align: center;
  transform: translate3d(0px, 0%, 60px);
  width: 100%;
}
.ggt-infobox .parallax-card__content .ggt-text {
  text-align: center;
  margin: auto;
}
.ggt-infobox .ggt-title {
  color: #ffffff;
}
.ggt-infobox .parallax-card {
  background: #221c24;
  margin: 0;
  color: #ffffff;
  padding: 3rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  position: relative;
  transition: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: rotateX(0deg) rotateY(0deg);
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow .3s ease-in-out;
  min-height: 250px;
  background-size: contain;
  cursor: default;
}
.ggt-infobox .parallax-card .ggt-text {
  margin-bottom: 20px;
}
.parallax-card:hover {
  box-shadow: 0 1.8px 2.2px rgba(0, 0, 0, 0.014), 0 6.7px 5.3px rgba(0, 0, 0, 0.018), 0 12.5px 10px rgba(0, 0, 0, 0.02), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.026), 0 100px 80px rgba(0, 0, 0, 0.088);
}
.ggt-infobox .ggt-button {
  color: #ffffff;
}
.parallax-card-wrap .overlay {
  background: #221c24;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.7;
  border-radius: 12px;
}


/*---- Element: Counters -----*/

.ggt-piechart {
  position: relative;
}
.ggt-percentage {
  position: relative;
  text-align: center;
}
.ggt-percentage span {
  position: absolute;
  left: 0;
  right: 0;
  top: 30%;
  margin: auto;
  text-align: center;
  font-size: 40px;
}
.ggt-percentage canvas {
  margin: auto;
  text-align: center;
}
.ggt-piechart:not(.ggt-type-gauge) .ggt-label {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  top: 50%;
}

/*---- Element: Call to action -----*/

.ggt-calltoaction {
  padding: 20px 20px;
}
.ggt-calltoaction-btn {
  padding: 0 0px;
  margin: 20px 20px;
  display: flex;
}
.ggt-calltoaction-title {
  margin-bottom: 30px;
  margin-top: 10px;
}
.ggt-calltoaction-text {
  margin-bottom: 10px;
  display: block;
}
.ggt-calltoaction-subtitle {
  opacity: .5;
}
.text-align-center .ggt-calltoaction, 
.text-align-center .ggt-calltoaction-btn,
.text-align-center .ggt-calltoaction-btn .ggt-button {
  margin: auto;
  text-align: center;
}
.text-align-right .ggt-calltoaction,
.text-align-right .ggt-calltoaction-btn,
.text-align-right .ggt-calltoaction-btn .ggt-button {
  text-align: right;
  margin: 0 0 0 auto;
}


/*---- Element: Heading -----*/


.vc_col-sm-6 .ggt-heading .ggt-title {
  width: 100%;
}
.ggt-heading .ggt-subtitle {
  width: 50%;
}
.ggt-heading .ggt-text {
  width: 80%;
}
.text-align-center .ggt-subtitle, 
.text-align-center .ggt-title,
.text-align-center .ggt-text {
  margin: auto;
  text-align: center;
}
.text-align-right .ggt-subtitle,
.text-align-right .ggt-title,
.text-align-right .ggt-text {
  text-align: right;
  margin: 0 0 0 auto;
}

/*---- Element: Team Member -----*/

.ggt-team-members img {
  max-width: 100%;
  height: 100%;
}
.ggt-team-swiper .swiper-slide .col {
  padding: 0;
}
.teammember-container,
.col {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
    -webkit-perspective: 1000px;
            perspective: 1000px;
            cursor: pointer;
}
.teammember-container {
  margin: 0 0 0 0;
}
.ggt-team-member {
  position: relative;
  text-align: center;
  padding: 20px 20px;
  box-shadow: 0 0 0 0 rgba(0,0,0,0);  
  border-radius: 12px;
  transition: all .2s ease-in-out;
  cursor: default;
}
.teammember-container:hover .front,
.teammember-container:hover .back {
  box-shadow: 0 1.8px 2.2px rgba(0, 0, 0, 0.014), 0 6.7px 5.3px rgba(0, 0, 0, 0.018), 0 12.5px 10px rgba(0, 0, 0, 0.02), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.026), 0 10px 50px rgba(0, 0, 0, 0.088);
}
.ggt-social-list-wrap {
  position: relative;
}
.ggt-social-list-icon {
  display: inline-flex;
  padding: 0 0 50px 0;
}
.ggt-social-list-icon::after {
  content: "...";
  font-size: 30px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  opacity: .2;
  letter-spacing: 20px;
  text-align: center;
  display: inline-block;
  padding-left: 20px;
}
.ggt-team-members a {
  /* padding: 5px 10px; */
  display: block;
  font-size: 14px;
  color: #999;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  margin: 0 3px;
}
.teammember-container .front img {
  border-radius: 100px;
  margin: auto;
  min-width: 150px;
}
.teammember-container .front ,
.teammember-container .back {
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
  padding: 20px 20px;
  display: block;
  transition: all 1s ease-in-out;

}
.teammember-container .front,
.teammember-container .back{
  background-size: cover;
    background-position: center;
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    text-align: center;
    min-height: 350px;
    height: auto;
    border-radius: 10px;
    font-size: 1.5rem;
}
.teammember-container .front:after{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    opacity: .6;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 10px;
}
/* .teammember-container .front:hover::after {
	background: yellow;
} */
.teammember-container:hover .front,
.teammember-container:hover .back{
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.teammember-container .back{
    font-size: 1.2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.teammember-container .inner {
  transform: translateZ(60px) scale(0.94);
  position: absolute;
  left: 0;
  width: 100%;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
}
.teammember-container .inner a p {
  padding: 0 20px;
}

.teammember-container .back{
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.teammember-container .front{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}
.teammember-container:hover .back{
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.teammember-container:hover .front{
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.teammember-container .front .inner h5 {
	margin-top: 40px;
	margin-bottom: 0px;
	position: relative;
	font-size: 1.5rem;
}
.teammember-container .front .inner span {
  font-size: 1rem;
  opacity: .5;
  line-height: 1.3;
  margin-top: 10px;
  display: block;

}
.teammember-container .back p {
  font-size: 1rem;
  line-height: 1.5rem;
}


/*---- Element: Button -----*/


.ggt-button {
  position: relative;
  display: block;
  overflow: hidden;
  min-width: 100px;
  border: 2px solid #8224e3;
  border-radius: 50px;
  padding: 15px 25px;
  text-align: center;
  transition: all .3s ease-in-out;
}
.ggt-button {
  color: #8224e3;
}
.ggt-button span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #8224e3;
  -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transition: width 0.6s ease-in-out, height 0.6s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
}
.ggt-button .btn-text-1 {
  margin: 0;
  transition: all .3s ease-in-out;
}
.ggt-button .btn-text-2 {
  position: absolute;
  color: #ffffff;
  z-index: 999;
  left: 0;
  right: 0;
  top: 16px;
  text-align: center;
  transition: all .3s ease-in-out;
}
.ggt-button .btn-text-2, 
.ggt-button:hover .btn-text-1 {
  opacity: 0;
}
.ggt-button:hover .btn-text-2 {
  opacity: 1;
}
.ggt-button:hover span {
  width: 225%;
  height: 562.5px;
}
.ggt-button:active {
  background-color: #000000;
}


/*---- Element: Services -----*/


.ggt-service {
  position: relative;
  text-align: center;
  padding: 30px 20px 20px 20px;
  box-shadow: 0 0 0 0 rgba(0,0,0,0);  
  border-radius: 12px;
  transition: all .2s ease-in-out;
  cursor: default;
}
.ggt-icon-wrapper {
  position: relative;
  display: inline-flex;
}
.ggt-services.ggt-padding.ggt-style2.ggt-container {
  display: block;
}
.service-hover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  margin: auto;
  border-radius: 12px;
  transition: all .2s ease-in-out;
  z-index: -1;
}
.ggt-service:hover .service-hover, 
.service-highlight .service-hover {
  opacity: 1;
}
.ggt-service:hover,
.service-highlight .ggt-service {
  box-shadow: 0 1.8px 2.2px rgba(0, 0, 0, 0.014), 0 6.7px 5.3px rgba(0, 0, 0, 0.018), 0 12.5px 10px rgba(0, 0, 0, 0.02), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.026), 0 10px 50px rgba(0, 0, 0, 0.088);
}
.ggt-style1 .ggt-service:hover, 
.ggt-style2 .ggt-service:hover {
  transform: translateY(-3px);
}
.ggt-service .ggt-icon {
  font-size: 60px;
  margin: 30px 0 0px 0;
  transform: scale(.9);
  transition: all .3s ease-in-out;
}
.ggt-style3 .ggt-service .ggt-icon {
  margin: 30px 0;
  font-size: 40px;
}
.ggt-service:hover .ggt-icon, 
.service-highlight .ggt-service .ggt-icon {
  transform: scale(1);
}
.ggt-service-text .ggt-title {
	padding: 20px 0;
	font-size: 1.5rem;
}
.ggt-onefifthcol .ggt-service-text .ggt-service-details {
  padding: 0 0 10px 0px;
}
.ggt-service-text .ggt-service-details {
  padding: 0px 20px 20px 20px;
}
.ggt-service img {
	min-width: 80px;
	width: 80px;
	height: 80px;
	margin: auto;
	transform: scale(.9);
	transition: all .3s ease-in-out;
}
.ggt-service:hover .ggt-image-wrapper img,
.service-highlight .ggt-service .ggt-image-wrapper img {
  transform: scale(1);
}
/* .ggt-style1 .ggt-service-wrapper {
	padding-bottom: 50px;
	padding-top: 50px;
} */
.ggt-style2 .ggt-service-wrapper {
  display: block;
  float: none;
  width: 100%;
}
.ggt-style2 .ggt-service-wrapper .ggt-service {
  text-align: left;
  padding: 20px;
  margin: 0 0 20px 0;
  display: flex;
}
.ggt-style2 .ggt-service-wrapper .ggt-icon-wrapper, 
.ggt-style2 .ggt-service-wrapper .ggt-image-wrapper {
  min-width: 70px;
  text-align: center;
  margin: 0 10px 0 0px;
}
.ggt-style2 .ggt-service-wrapper .ggt-icon {
  margin: 0 auto;
  padding: 10px;
  font-size: 40px;
}
.ggt-style2 .ggt-service-wrapper .ggt-title {
  padding: 0;
}
.ggt-style2 .ggt-service-wrapper .ggt-service .ggt-service-details {
  padding: 0;
}

.ggt-style3 .ggt-icon-wrapper,
.ggt-style3 .ggt-image-wrapper{
  display: block;
  position: relative;
}
.ggt-style3 .ggt-service {
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
}
.ggt-style3 .ggt-threecol .ggt-service {
  padding: 0;
}
.ggt-style3 .ggt-service-text .ggt-title {
  padding: 20px 20px 0px 20px;
}
.ggt-style3 .icon-bg {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 100px;
  transform: scale(1.2);
  transition: all .3s ease-in-out;
  z-index: -1;
}
.ggt-style3 .ggt-service img {
  transform: scale(1);
}
.ggt-style3 .ggt-service:hover .ggt-image-wrapper .icon-bg {
  transform: scale(1.4);
}
.ggt-style3 .ggt-icon-wrapper .icon-bg {
  transform: scale(1);
}
.ggt-style3 .ggt-service:hover .ggt-icon-wrapper .icon-bg {
  transform: scale(1.2);
}
.ggt-style3 .service:hover .icon-bg {
  transform:  scale(1)
}
.ggt-style3 .ggt-service:hover .ggt-icon, .ggt-style3 .service-highlight .ggt-service .ggt-icon {
  transform: scale(.9);
}
.ggt-style3 .service-hover {
  display: none;
}