@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

:root {
	--primary: rgba(24, 0, 108, 1);
	--darker: #242424;
	--secondary: #ff6600;
	--bright: rgba(24, 0, 108, 1);
	--main-text: #000;
	--highlight: #ffba28;
	--high_grad: rgba(24, 0, 108, 1);
	7FB;
	--medium_grad: linear-gradient(45deg, #394d79, #091555);
	--ambient_grad: linear-gradient(90deg, #1d1d1d, #202d4a);
	--white_bg: #fff;
	--text_color: #000;
	--icon_highlight: #4a649c;
}

.mob_only {
	display: none;
}

body {
	color: var(--main-text);
	padding: 0;
	margin: 0;
	background: var(--white_bg);
	font-family: 'Roboto Condensed', sans-serif;
}

body a {
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
	text-decoration: none;
}

body #buttonCode {
	font-size: 21px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: min-content;
	height: min-content;
	text-align: center;
	background: #fff;
	text-shadow: 0 0 5px #fff;
	border-radius: 100%;
	padding: 15px 15px;
	color: #93aaf3 !important;
	font-family: 'Roboto Condensed', sans-serif;
	z-index: 999;
	animation: lightFlick 2s infinite;
	box-shadow: 0 0 0 #93aaf3;
	filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
}

body #buttonCode svg {
	fill: #93aaf3;
	max-width: 100%;
	height: auto;
	min-width: 100px;
}

@keyframes lightFlick {
	100% {
		box-shadow: 0 0 0 45px rgb(232 76 61 / 0%);
	}
}

body a:hover {
	text-decoration: none;
}

body a:focus,
a:hover {
	text-decoration: none;
}

input[type="button"],
input[type="submit"] {
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}

h1,
h2,
h3,
h4 {
	font-family: 'Roboto Condensed', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	text-align: center;
	letter-spacing: normal;
}

.bright_line {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: var(--high_grad);
	z-index: 20;
}

p {
	margin: 0;
}

ul {
	margin: 0;
	padding: 0;
}

label {
	margin: 0;
	font-weight: normal;
	margin-top: 10px;
}

form a {
	color: var(--bright);
}

a:focus,
a:hover {
	text-decoration: none;
	outline: none
}

img {
	width: 100%;
}

/*-- //Reset Code --*/

/*-- Banner --*/
/*-- Navbar --*/
.navbar {
	margin-bottom: 0;
	position: relative;
	z-index: 99999;
	min-height: 87px;
	background: linear-gradient(2.7deg, #DC6DFF 8.4%, #8461FF 93.7%);
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.31);
	background-repeat: repeat-x;
	border: none;
	border-radius: 0;
	width: 100%;
	padding: 10px 0;
}

.squire {
	background: var(--secondary);
	white-space: nowrap;
}

.superheader {
	filter: hue-rotate(45deg);
	-webkit-transition: all .3s cubic-bezier(.23, 1, .32, 1) 0s;
	transition: all .3s cubic-bezier(.23, 1, .32, 1) 0s;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	opacity: 0.4;
	left: 0;
	top: 0;
	background-image: url(../images/header-primary-lines.png), url(../images/header-background.png);
	background-size: 665px 100%;

	animation: aether-background 180s linear 0s infinite;
	position: absolute;
	z-index: -1;
	transition: opacity 0.3s;
}

.navbar:hover .superheader {
	opacity: 1;
	animation-duration: 40s;
}

/*@-webkit-keyframes aether-background {*/
/*	0% {*/
/*		background-position: 248px 50%,0 50%,0 50%*/
/*	}*/

/*	to {*/
/*		background-position: 500% 50%,-1330px 50%,-665px 50%*/
/*	}*/
/*}*/

@keyframes aether-background {
	0% {
		background-position: 0 50%, 0 50%, 0 50%
	}

	to {
		background-position: -1300px 50%, -665px 50%, 0% 50%
	}
}

.main .navbar {
	/*background: rgba(24, 57, 83, 0.5);*/
}

.navbar-header h1 {
	color: #fff;
	font-size: 40px;
}

.navbar-header a {
	display: block;
	width: 100px;
	margin-left: 15px;
	margin-top: 9px;
}

@media screen and (max-width: 768px) {
	.navbar-header a {
		margin-top: 0px;
	}
}

.navbar-header img {
	width: 100px;
}

.navbar-nav>li {
	padding: 5px 5px;
	font-size: 16px;
	color: var(--bright);
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
	color: rgba(24, 0, 108, 1);
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
	color: rgba(24, 0, 108, 1);
	background-color: transparent;
}

/*-- Link-Hover-Effect --*/
.hover-effect a {
	padding: 10px;
	color: var(--secondary);
	font-weight: 700;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	transition: color 0.3s;
	font-family: 'Roboto Condensed', sans-serif;
}

.hover-effect a::before,
.hover-effect a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: rgba(24, 0, 108, 1);
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: opacity 0.3s, -moz-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(-10px);
}

.hover-effect a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(-10px);
}

.hover-effect a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	transform: translateY(10px);
}

.hover-effect a:hover,
.hover-effect a:focus {
	color: rgba(24, 0, 108, 1);
}

.hover-effect a:hover::before,
.hover-effect a:focus::before,
.hover-effect a:hover::after,
.hover-effect a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}

/*-- //Link-Hover-Effect --*/
/*-- //Navbar --*/



/*-- Banner-Slider --*/
.slider {
	max-height: 650px;
	overflow: hidden;
	position: relative;
	display: none;
}

.rslides {
	position: relative;
	list-style: none;
	overflow: hidden;
	width: 100%;
	padding: 0;
	margin: 0;
}

.rslides li {
	-webkit-backface-visibility: hidden;
	position: absolute;
	display: none;
	width: 100%;
	left: 0;
	top: 0;
}

.rslides li:first-child {
	position: relative;
	display: block;
	float: left;
}

.rslides img {
	display: block;
	height: auto;
	float: left;
	width: 100%;
	border: 0;
}

.callbacks_nav {
	position: absolute;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	top: 50%;
	left: 0;
	opacity: 0.7;
	z-index: 3;
	text-indent: -9999px;
	text-decoration: none;
	height: 61px;
	width: 38px;
	background: url("../images/themes.gif") no-repeat left top;
	margin-top: -45px;
}

.callbacks_nav.next {
	left: auto;
	background-position: right top;
	right: 0;
}

ul.callbacks_tabs.callbacks1_tabs {
	display: none;
}

.callbacks_nav {
	left: 20px;
}

.callbacks_nav.next {
	right: 20px;
}


/*-- //Banner --*/

/*--Trend--*/
.trend-ltpwrlayouts,
.new-ltpwr-agile,
.services-agileits-ltpwrlayouts,
.about-agileinfo,
.team-ltpwrlayouts,
.gallery-ltpwrlayouts,
.contact-agileinfo,
.events-ltpwrlayouts,
.blog,
.right_card {
	margin-top: 50px;
}

.trend-ltpwrlayouts h2,
.new-ltpwr-agile h3,
.services-agileits-ltpwrlayouts h3,
.services-bottom-ltpwr-agileits h3,
.about-agileinfo h2,
.team-ltpwrlayouts h3,
.gallery-ltpwrlayouts h2,
.contact-agileinfo h2,
.events-ltpwrlayouts h2 {
	font-size: 24px;
	color: rgba(24, 0, 108, 1);
	margin-bottom: 40px;
	text-align: center;
	padding: 0 15px;
	font-weight: bold;
}

.main .trend-ltpwrlayouts h2,
.main .new-ltpwr-agile h3,
.main .services-agileits-ltpwrlayouts h3,
.main .services-bottom-ltpwr-agileits h3,
.main .about-agileinfo h2,
.main .team-ltpwrlayouts h3,
.main .gallery-ltpwrlayouts h2,
.main .contact-agileinfo h2,
.main .events-ltpwrlayouts h2 {
	text-align: left;
}

.gallery-grids {
	text-align: center;
}

.trend-grid {
	padding: 0 15px;
}

.trend-ltpwrlayouts h4,
.services-agileits-ltpwrlayouts h4 {
	color: var(--main-text);
}

/*--flexisel--*/
.flex-slider {
	background: #222227;
	padding: 70px 0 165px 0;
}

#flexiselDemo1 {
	display: none;
}

.nbs-flexisel-container {
	position: relative;
	max-width: 100%;
}

.nbs-flexisel-ul {
	position: relative;
	width: 9999px;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	text-align: center;
}

.nbs-flexisel-inner {
	overflow: hidden;
	margin: 0px auto;
}

.nbs-flexisel-item {
	float: left;
	margin: 0;
	padding: 0px;
	position: relative;
	line-height: 0px;
}

.nbs-flexisel-item>img {
	cursor: pointer;
	position: relative;
}

/*---- Nav ---*/
.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right {
	width: 60px;
	height: 115px;
	position: absolute;
	cursor: pointer;
	z-index: 100;
}

.nbs-flexisel-nav-left {
	left: 0%;
	top: 35% !important;
}

.nbs-flexisel-nav-right {
	right: 0%;
	top: 35% !important;
}

/*--//flexisel--*/
/*--//trend--*/

/*--new games--*/
.button {
	font-weight: 600;
	background: #FF9E0D;
	color: rgba(24, 0, 108, 1);
	margin: 20px auto 30px;
	padding: 8px;
	border-radius: 20px;
	display: block;
	min-width: 100px;
	max-width: 220px;
	text-align: center;
	box-shadow: 0 5px 5px #00000033;
	min-width: 100px;
}

.button.underline {
	border: none;
}

.button.underline:hover {
	color: #fff;
}

.btn-primary {
	border: none;
	max-width: 280px;
	width: 100%;
}

form .btn-primary {
	margin-top: 20px;
	max-width: 315px;
}

form label {
	color: #000;
	font-size: 12px;
	max-width: 480px;
	display: block;
	position: relative;
}

form label input {
	position: absolute;
	top: 0;
	left: -20px;
	margin: 0 !important;
}

form p {
	color: #fff;
	text-align: center;
	margin-bottom: 30px;
}

form .row {
	margin-left: auto;
	margin-right: auto;
}

.form-control {
	height: 40px;
	border-radius: 20px;
	border: 1px solid var(--bright);
}

.button:hover {
	background: #FF9E0D;
	color: #fff;
}

h3.game_title {
	color: var(--bright);
	margin: 0px auto 15px;
	padding: 0px 0.5em;
	text-transform: capitalize;
}

.gallery-grid {
	display: flex;
	position: relative;
	overflow: hidden;
}

.view.gallery-grid .mask {
	width: 100%;
}

.col-md-3 .view-eighth {
	height: 160px;
}

.new-grid-agile {
	margin-top: 30px;
}

.view {
	overflow: hidden;
	position: relative;
	margin-top: 2em;
}

.view .mask,
.view .content {
	width: calc(100% - 30px);
	position: absolute;
	overflow: hidden;
}

.gallery-grid:hover .mask {
	width: 100%;
}

.view img {
	display: block;
	position: relative;
}

.view h4 {
	text-transform: capitalize;
	height: 40px;
	overflow: hidden;
	color: #fff;
	text-align: center;
	position: relative;
	font-size: 1.5em;
	padding-top: 10px;
	padding-bottom: 10px;
}

.view p {
	font-size: 1em;
	position: relative;
	color: #fff !important;
	padding: 0.5em 0;
	text-align: center;
	margin: 0;
}

.view-eighth .mask {
	display: flex;
	background-color: #ff9e0dde;
	top: 0;
	bottom: 0;
	border-radius: 20px;
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	-webkit-transition: all 0.3s ease-out 0.5s;
	-moz-transition: all 0.3s ease-out 0.5s;
	transition: all 0.3s ease-out 0.5s;
}

.flex_holder {
	margin: auto;
}

.flex_holder p {
	padding: 0 30px;
}

.flex_holder .button {
	background: #18006C;
	color: #ffffff;
}

.view-eighth h2 {

	-webkit-transition: all 0.2s ease-in-out 0.1s;
	-moz-transition: all 0.2s ease-in-out 0.1s;
	transition: all 0.2s ease-in-out 0.1s;
}

.view-eighth p {
	color: #333;
	-webkit-transition: all 0.2s ease-in-out 0.2s;
	-moz-transition: all 0.2s ease-in-out 0.2s;
	-o-transition: all 0.2s ease-in-out 0.2s;
	-ms-transition: all 0.2s ease-in-out 0.2s;
	transition: all 0.2s ease-in-out 0.2s;
}

.view-eighth:hover .mask {
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
	display: flex;
	top: 0px;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-animation: bounceY 0.9s linear;
	-moz-animation: bounceY 0.9s linear;
	-ms-animation: bounceY 0.9s linear;
	animation: bounceY 0.9s linear;
	height: 100%;
	transition: 0.9s;
}

.view-eighth a {
	transform: translate(-100vh, 0);
}

.view-eighth:hover a {
	transition: 1s;
	transform: translate(0, 0);
}

.view-eighth:hover h2 {
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-o-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-transition-delay: 0.4s;
	-moz-transition-delay: 0.4s;
	-o-transition-delay: 0.4s;
	-ms-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.view-eighth:hover p {
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-o-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	-ms-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

@keyframes bounceY {
	100% {
		transform: translateY(0px);
	}
}

/*--//new games--*/


/*--services--*/
.services-agileits-ltpwrlayouts {
	background: #fff;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.service-grid-agileits {
	margin: 0 10px;
	width: auto;
	text-align: center;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}

.service-grid-agileits .glyphicon {
	font-size: 30px;
	background: var(--secondary);
	padding: 20px;
	border-radius: 50%;
	color: #fff;
	margin-bottom: 15px;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}

.service-grid-agileits p {
	min-height: 85px;
	padding: 0 20px;
	font-size: 14px;
	line-height: 27px;
	color: var(--main-text);
}

.service-grid-agileits a {
	font-size: 15px;
	padding: 7px 15px;
	display: inline-block;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}

.service-grid-agileits:hover .glyphicon {
	background: var(--icon_highlight);
	box-shadow: 0 0 10px var(--icon_highlight);
}

/*--//services--*/

/*-- services bottom --*/
.services-bottom-ltpwr-agileits {
	background: linear-gradient(89.01deg, #DC6DFF 0.72%, #8461FF 97.7%);
	position: relative;
	min-height: 400px;
	padding: 100px 0px;
}

.wthree_info {
	width: 100%;
	text-align: center;
}

.services-bottom-ltpwr-agileits h3 {
	color: #fff;
	margin-bottom: 10px;
}

.wthree_info p {
	text-transform: capitalize;
	color: #fff;
	letter-spacing: 2px;
	font-style: italic;
	font-size: 16px;
	text-align: center;
}

a.learn {
	color: rgba(24, 0, 108, 1);
	font-size: 14px;
	padding: 15px;
	display: inline-block;
	height: 28px;
	background: #FF9E0D;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 14px;
	font-weight: bold;
}

a.learn:hover {
	color: #fff;
	border: 2px solid var(--highlight);
	background: var(--highlight);
}

/*-- //services bottom --*/

/*-- //footer --*/
.footer {
	padding: 35px 0px;
	color: var(--white_bg);
	background: linear-gradient(90deg, #B4A2F2 2.17%, #DC6DFF 98.72%);
	margin-top: 50px;
}

.footer .links {
	margin-top: 25px;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-content: space-between;
	margin-bottom: 25px;
	border-top: 4px solid;
	padding-top: 30px;
}

.footer .links a {
	color: #fff;
	font-size: 14px;
	font-family: 'Roboto Condensed', sans-serif;
	padding-left: 7px;
	padding-right: 7px;
	text-decoration: none;
}

.footer .links a:hover {
	text-decoration: underline;
	color: var(--bright);
}

.footer h4 {
	text-align: left;
	color: var(--white_bg);
	font-size: 20px;
	padding: 0 20px 20px 0;
}

.footer img {
	border-radius: 14px;
}

.footer-left-ltpwr ul li {
	display: inline-block;
	margin-bottom: 35px;
}

.footer-left-ltpwr .glyphicon {
	font-size: 16px;
}

.footer .footer-left-ltpwr ul {
	display: flex;
}

.footer-left-ltpwr ul li h6 {
	font-size: 14px;
	color: #fff;
	margin-left: 10px;
	text-align: left;
}

.footer-left-ltpwr ul li a {
	font-size: 14px;
	color: #fff;
}

.footer-middle-wthree {
	margin-top: 25px;
}

.footer-right-ltpwr h4 {
	color: #fff;
}

.footer-right-ltpwr img {
	width: 70%;
	padding-bottom: 20px;
}

.footer-right-ltpwr p {
	font-size: 14px;
	color: #fff;
	line-height: 30px;
}

p.agileinfo {
	margin-top: 30px;
}

.copyright p {
	text-align: center;
	font-size: 14px;
	color: #fff;
	padding: 30px 0px 0 0px;
}

.copyright p a {
	color: #000;
}

.copyright p a:hover {
	text-decoration: underline;
}

/*-- //footer --*/

/*-- sub-banner --*/
.sub-banner {
	min-height: 87px;
	background-size: cover;
}

/*-- //sub-banner--*/
/*-- about--*/

.about-grids-ltpwr-agileits {
	margin: 3em 0 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.about-grid-left-agileits-ltpwrlayouts ul li {
	display: block;
	margin-bottom: 2em;
	font-size: 14px;
	text-transform: capitalize;
	color: var(--main-text);
	position: relative;
	line-height: 1.3;
}

.about-grid-left-agileits-ltpwrlayouts ul li a {
	text-decoration: none;
	color: #000;
}

.about-grid-left-agileits-ltpwrlayouts ul li i {
	top: 3px;
}

.card_row {
	display: flex;
}

.framed {
	color: var(--main-text);
	border: 1px solid var(--primary);
	padding: 20px;
	border-radius: 20px;
	margin-bottom: 10px;
}

.form_descr {
	position: relative;
	color: #fff;
	text-align: center;
	max-width: 80%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
}

form input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.login_page form .btn {
	height: 40px;
	width: 100%;
	max-width: 315px;
}

.login_page .contact-right-ltpwr {
	width: 100%;
}

.profile_page .framed {
	border: 1px solid var(--primary);
	padding: 20px;
	border-radius: 20px;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	float: none;
}

.profile_page .button {
	min-width: 180px;
}

.profile_page .agileits_reply {
	margin-bottom: 50px;
}

.profile_page .agileits_reply h3 {
	text-align: center;
}

#home-option2-form .btn {
	margin-top: 0;
}

.button.btn-secondary {
	background: #FF9E0D;
	color: rgba(24, 0, 108, 1);
	border-radius: 20px;
	border: none;
}

.button.btn-secondary:hover {
	color: #fff;
}

.contact-agileinfo {
	min-height: 50vh;
}

.thx .contact-agileinfo {
	display: flex;
}

.thx .contact-agileinfo .framed {
	margin: auto;
}

.thx .contact-agileinfo .framed h3 {
	margin-bottom: 20px;
}

.contact-agileinfo p {
	color: #000;
}

.about-grid-right-ltpwr-agile img {
	padding: .5em;
	border: 1px dotted #999;
}

.link {
	outline: none;
	text-decoration: none;
	position: relative;
	line-height: 1;
	display: inline-block;
}

/* Kumya */
.link--kumya {
	overflow: hidden;
	padding: 0;
	line-height: 1;
	z-index: 9999;
	padding: 10px;
	display: inline-flex;

}

.link--kumya:hover {
	color: #000;
}

.link--kumya::after {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	right: 0;
	z-index: -1;
	background: var(--primary);
	-webkit-transform: translate3d(101%, 0, 0);
	transform: translate3d(101%, 0, 0);
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	-webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
	transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.link--kumya:hover::after,
.welcome-grid:hover .link--kumya::after {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.link--kumya span {
	display: block;
	position: relative;
}

.link--kumya span::before {
	content: attr(data-letters);
	position: absolute;
	color: #fff;
	left: 0;
	overflow: hidden;
	white-space: nowrap;
	width: 0%;
	-webkit-transition: width 0.5s;
	transition: width 0.5s;
	-webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
	transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.link--kumya:hover span::before,
.welcome-grid:hover .link--kumya span::before {
	width: 100%;
}

.grid-ltpwrls {
	position: relative;
	margin: 0 auto;
	max-width: 1000px;
	list-style: none;
	text-align: center;
}

/* Common style */
.grid-ltpwrls figure {
	position: relative;
	float: none;
	overflow: hidden;
	margin: 0;
	width: 100%;
	background: transparent;
	text-align: center;
}

.grid-ltpwrls figure img {
	/*-- agileits --*/
	position: relative;
	display: block;
	width: 100%;
	opacity: 0.8;
}

.grid-ltpwrls figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}


.grid-ltpwrls figure figcaption,
.grid-ltpwrls figure figcaption>a {
	position: absolute;
	top: 0;
	left: 9px;
	width: 96.8%;
	height: 100%;
}

/***** Zoe *****/
/*---------------*/

figure.effect-zoe figcaption {
	top: auto;
	bottom: 0;

	height: 3.3em;
	background: var(--highlight);
	color: #212121;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}

figure.effect-zoe h3 {
	float: left;
}

figure.effect-zoe p.icon-links a {
	float: right;
	color: #FFFFFF;
	font-size: 1em;
}

figure.effect-zoe:hover p.icon-links a:hover,
figure.effect-zoe:hover p.icon-links a:focus {
	color: #252d31;
}

figure.effect-zoe p.description {
	position: absolute;
	display: flex;
	bottom: 0;
	padding: 2em;
	color: #fff;
	text-transform: none;
	font-size: .8em;
	line-height: 1.8em;
	background: #ff9e0dde;
	opacity: 0;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
	-webkit-backface-visibility: hidden;
	width: 100%;
	height: 100%;
	border-radius: 20px;
}

figure.effect-zoe p.description>.button {
	margin: auto;
}

.description .button {
	background: #18006C;
	color: #ffffff;
}

.services-agileits-ltpwrlayouts.main_video_bg h4,
.services-agileits-ltpwrlayouts.main_video_bg p {
	color: #000;
	font-size: 16px;
	padding: 5px 0;
}

/*videoBG*/
.video-responsive {
	padding-bottom: 56.25%;
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;

}

.canvas,
.video {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;

	background: #000;
	z-index: 5;
}

#over_video {
	position: absolute;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	z-index: 10;
	font-size: 12vw;
	color: #FFF;
	font-family: 'Roboto Condensed', sans-serif;
	margin-top: 20%;
	text-shadow: 4px 4px 4px #5C433B;
}

/*videoBG*/

figure.effect-zoe h3,
figure.effect-zoe p.icon-links a {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0, 200%, 0);
	transform: translate3d(0, 200%, 0);
	transition: .5s ease-in;
}

figure.effect-zoe p.icon-links a span::before {
	display: inline-block;
	padding: 8px 10px;
}

figure.effect-zoe h3 {
	display: inline-block;
	font-size: 1.3em;
	color: #fff;
}

figure.effect-zoe h3 span {
	color: var(--primary);
	margin: 0 7px;
}

figure.effect-zoe:hover p.description {
	opacity: 1;
}

figure.effect-zoe:hover figcaption,
figure.effect-zoe:hover h3,
figure.effect-zoe:hover p.icon-links a {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	bottom: 9px;
}

figure.effect-zoe:hover h3 {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

figure.effect-zoe:hover p.icon-links a:nth-child(3) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

figure.effect-zoe:hover p.icon-links a:nth-child(2) {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

figure.effect-zoe:hover p.icon-links a:first-child {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

/*-- //about --*/


/*-- Collections --*/
.collection-agileits {
	padding: 50px 0px;
}

.collection-left,
.collection-right {
	padding: 0;
}

.collection-grid {
	padding: 0;
	height: 348.5px;
}

.collection-text {
	background: linear-gradient(90deg, #B4A2F2 2.17%, #DC6DFF 98.72%);
	text-align: center;
	padding-top: 75px;
}

.collection-text img {
	width: 50px;
}

.collection-text h3 {
	color: #FFF;
	margin: 30px 0 20px;
}

.collection-text p {
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	line-height: 30px;
	padding: 0 35px;
}

.collection-left {
	background: url(../images/c1.jpg) no-repeat 0px 0px;
	background-size: cover;
	min-height: 700px;
}

.collection-grid.collection-image.collection-grid-2 {
	background: url(../images/c4.jpg) no-repeat 0px 0px;
	background-size: cover;
}

.collection-grid.collection-image.collection-grid-4 {
	background: url(../images/c3.jpg) no-repeat 0px 0px;
	background-size: cover;
}

.collection-grid.collection-image.collection-grid-6 {
	background: url(../images/c2.jpg) no-repeat 0px 0px;
	background-size: cover;
}

/*-- //Collections --*/


/*-- team --*/
.team-ltpwrlayouts {
	background: #e8e8e8;
}

.ltpwrl_team_grid h4 {
	font-size: 1.6em;
	color: var(--highlight);
	margin: 1em 0 .5em;
}

.ltpwrl_team_grid p {
	color: #999;
	text-align: center;
}

.view {

	overflow: hidden;
	position: relative;
}

.view-second .mask,
.view-second .content {
	display: none;
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
}

.view img {
	display: block;
	position: relative;
}

.view-second img {
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.view-second .mask {
	background-color: rgba(19, 19, 19, 0.35);
	width: 520px !important;
	padding: 60px !important;
	height: 520px !important;
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	-webkit-transform: translate(265px, 145px) rotate(45deg);
	-moz-transform: translate(265px, 145px) rotate(45deg);
	-o-transform: translate(265px, 145px) rotate(45deg);
	-ms-transform: translate(265px, 145px) rotate(45deg);
	transform: translate(265px, 145px) rotate(45deg);
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.view-second .ltpwrl_social_icons1 {
	border-bottom: 1px solid #fff;
	padding-bottom: 1em;
	background: transparent;
	margin: 20px 40px 0px 40px;
	-webkit-transform: translate(200px, -200px);
	-moz-transform: translate(200px, -200px);
	-o-transform: translate(200px, -200px);
	-ms-transform: translate(200px, -200px);
	transform: translate(200px, -200px);
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.view-second:hover .mask,
.ltpwrl_team_grid:hover .view-second .mask {
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
	-webkit-transform: translate(-125px, -45px) rotate(45deg);
	-moz-transform: translate(-125px, -45px) rotate(45deg);
	-o-transform: translate(-125px, -45px) rotate(45deg);
	-ms-transform: translate(-125px, -45px) rotate(45deg);
	transform: translate(-125px, -45px) rotate(45deg);
}

.view-second:hover .ltpwrl_social_icons1,
.ltpwrl_team_grid:hover .view-second .ltpwrl_social_icons1 {
	-webkit-transform: translate(0px, 0px);
	-moz-transform: translate(0px, 0px);
	-o-transform: translate(0px, 0px);
	-ms-transform: translate(0px, 0px);
	transform: translate(0px, 0px);
	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	-ms-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.view-second:hover p,
.ltpwrl_team_grid:hover .view-second p {
	-webkit-transform: translate(0px, 0px);
	-moz-transform: translate(0px, 0px);
	-o-transform: translate(0px, 0px);
	-ms-transform: translate(0px, 0px);
	transform: translate(0px, 0px);
	-webkit-transition-delay: 0.4s;
	-moz-transition-delay: 0.4s;
	-o-transition-delay: 0.4s;
	-ms-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.view-second p {
	-webkit-transform: translate(-200px, 200px);
	-moz-transform: translate(-200px, 200px);
	-o-transform: translate(-200px, 200px);
	-ms-transform: translate(-200px, 200px);
	transform: translate(-200px, 200px);
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	color: #fff;
	margin: 1em 0 0;
	line-height: 2em;
	text-align: left;
}

.navbar-collapse {
	box-shadow: none;

}

.ltpwrl_social_icons {
	float: left;
	margin: 1.5em 0 0;
}

.ltpwrl_social_icons1 {
	float: none !important;
	margin: 0 !important;
}

.ltpwrl_social_icons ul li {
	display: inline-block;
}

.ltpwrl_social_icons ul li a {
	width: 35px;
	height: 35px;
	background: url('../images/img-sprite.png') no-repeat -7px -7px #fff;
	display: inline-block;
	border: none;
}

.ltpwrl_social_icons ul li a.google {
	background: url('../images/img-sprite.png') no-repeat -55px -7px #fff;
}

.ltpwrl_social_icons ul li a.twitter {
	background: url('../images/img-sprite.png') no-repeat -108px -7px #fff;
}

.ltpwrl_social_icons ul li a.facebook {
	background: url('../images/img-sprite.png') no-repeat -159px -7px #fff;
}

.ltpwrl_social_icons ul li a:hover {
	background: url('../images/img-sprite.png') no-repeat -7px -50px;
}

.ltpwrl_social_icons ul li a.google:hover {
	background: url('../images/img-sprite.png') no-repeat -55px -50px;
}

.ltpwrl_social_icons ul li a.twitter:hover {
	background: url('../images/img-sprite.png') no-repeat -108px -50px;
}

.ltpwrl_social_icons ul li a.facebook:hover {
	background: url('../images/img-sprite.png') no-repeat -159px -50px;
}

/*-- //team --*/

/*-- gallery --*/
.gallery-ltpwrlayouts {
	background-color: var(--ambient_grad);
}

.gallery-grids {
	margin: 3em 0 0;
}

.games .gallery-grids {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

.games .gallery-grid {
	float: left;
	width: calc(25% - 1em);
	margin: 0.5em;
	border-radius: 20px;
}

.tips .gallery-grid {
	float: left;
	width: calc(50% - 1em);
	margin: 0.5em;
	border-radius: 20px;
}

.img_holder {
	top: 0;
	left: 0;
	position: absolute;
	height: 362px;
	width: 100%;
	overflow: hidden;
	text-align: center;
}

.img_holder img {
	min-height: 100%;
}

.gallery-grid a {
	display: block;
	overflow: hidden;
	pointer-events: auto;
	transition: 1s;
}

.gallery-grid.clickable a {
	pointer-events: auto;
}

.gallery-grid img {
	box-shadow: 0 0 20px -10px #000;
}

img.zoom-img {

	transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transition-timing-function: ease-out;
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	-webkit-transition-duration: .5s;
	-moz-transition-duration: .5s;
	-ms-transition-duration: .5s;
	-o-transition-duration: .5s;
}

img.zoom-img:hover {
	transform: scale(.9);
	-webkit-transform: scale(.9);
	-moz-transform: scale(.9);
	-ms-transform: scale(.9);
	-o-transform: scale(.9);
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-duration: 750ms;
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-duration: 750ms;
	-ms-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	-ms-transition-duration: 750ms;
	-o-transition-duration: 750ms;
	overflow: hidden;
}

.span1 {
	margin: 18px 0;
	padding: 15px 0;
	border-top: 1px solid #ffffff40;
	border-bottom: 1px solid #ffffff40;
}

.span2 {
	border-bottom: 1px solid #ffffff40;
	padding-bottom: 15px;
}

.span3 {
	border-bottom: 1px solid #ffffff40;
	padding: 15px 0px;
}

p.left {
	float: left;
	font-size: 14px;
	color: #000;
	letter-spacing: 3px;
	margin-right: 5%;
	width: 35%;
	font-weight: 600;
}

p.right {
	font-size: 14px;
	float: left;
	color: #949494;
	letter-spacing: 2px;
}

.pop-up-content-agileits-ltpwrlayouts h4 {
	font-size: 27px;
	color: #fff;
	text-align: left;
	margin-bottom: 25px;
}

.pop-up-content-agileits-ltpwrlayouts p {
	color: #eee;
	font-size: 14px;
	line-height: 27px;
}

p.agileits {
	margin: 20px 0;
}

/*-- //gallery --*/

/*--events--*/
.events-left-agile-agileits-ltpwrlayouts {
	background: url(../images/e1.jpg) no-repeat 0px 0px;
	background-size: cover;
	min-height: 400px;
	padding: 0;
}

.events-right-agile {
	padding: 0;
}

.events-text-ltpwr-agile {
	padding: 20px 0px 0px 30px;
}

.events-text-ltpwr-agile h4 {
	background: var(--secondary);
	padding: 10px 0px;
	color: var(--main-text);
	width: 24%;
	font-size: 17px;
}

.events-text-ltpwr-agile p {
	font-size: 30px;
	color: var(--secondary);
	padding: 54px 0px 6px 0px;
	font-weight: 600;
}

.events-text1 p {
	font-size: 30px;
	color: var(--secondary);
	padding: 250px 0px 6px 0px;
	font-weight: 600;
}

.events-text-ltpwr-agile ul li {
	display: inline;
	color: #fff;
}

.events-text-ltpwr-agile ul li:nth-child(2) {
	margin-left: 20px;
}

.events-right-top {
	background: url(../images/e2.jpg) no-repeat 0px 0px;
	background-size: cover;
	min-height: 200px;
}

.events-right-bottom {
	background: url(../images/e3.jpg) no-repeat 0px 0px;
	background-size: cover;
	min-height: 200px;
}

.events-section2-agileinfo {
	background: #f4f4f4;
	padding: 50px 0px;
}

.blog-text-ltpwrls h4 {
	color: var(--primary);
	padding: 10px 0;
	font-size: 35px;
	text-align: left;
	font-weight: 400;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}

.blog-text-ltpwrls h4:hover {
	color: #6E87FB;
}

.item_info {
	border: 1px solid #ddd;
	padding: 0.5em 2em;
	margin: 2.2em 0;
}

.item_info ul li i {
	color: #8a8a8a;
	margin-right: 15px;
}

.item_info ul li {
	display: inline-block;
	font-size: 1.1em;
	margin-right: 27px;
	vertical-align: middle;
	color: #777;
	list-style: none;
}

.item_info ul li a {
	color: #777;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}

.item_info ul li a:hover {
	color: var(--highlight)
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
	border: none;
}

.agileits_reply .secure-hint {
	margin-top: -20px;
	display: block;
	text-align: center;
	margin-bottom: 30px;
	color: var(--bright);
}

form .form-hint {
	color: var(--bright);
	text-align: center;
	display: block;
}

form .form-hint2 {
	font-size: 12px;
	color: var(--secondary);
	text-align: center;
	display: block;
}

form .form-hint b {
	color: var(--secondary);
}

.membership_title img {
	width: 30px;
	display: inline-block;

}

.navbar-default .navbar-nav>li>a {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;
	color: var(--white_bg);
	filter: drop-shadow(0px 4px 4px rgba(21, 5, 43, 0.25));
}

.navbar:hover #navbar>ul>li>a {
	/*color: #fff;
	text-shadow: 0 0 10px #000;*/
}

#sub_menu>li>a {
	color: var(--bright);
	font-weight: 600;
}

#sub_menu a:hover {
	color: rgba(224, 129, 226, 1);
	text-shadow: 0 0 10px rgba(224, 129, 226, 1);
}

#sub_menu {
	padding-left: 10px;
	padding-right: 10px;
	display: none;
	height: max-content;
	position: absolute;
	width: max-content;
	list-style: none;
	margin-top: 0px;
	border-left: 2px solid rgba(224, 129, 226, 1);
	background-color: #fff;
}

.main #sub_menu {
	margin-top: 0px;
}

#profile svg {
	width: 30px;
	height: 30px;
	top: 12px;
	fill: var(--bright);
	position: absolute;
	transition: 0.5s;
}

#profile svg:hover {
	fill: #fff;
	-webkit-filter: drop-shadow(0px 0px 3px var(--bright));
	filter: drop-shadow(0px 0px 3px var(--bright));

}


.blog-text-ltpwrls p {
	color: #999;
	font-size: 14px;
	text-align: left;
	line-height: 30px;
}

a.blog-read {
	color: #001fcc;
	border: 2px solid #001fcc;
	font-size: 15px;
	margin-top: 30px;
	padding: 7px 15px;
	display: inline-block;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}

a.blog-read:hover {
	color: #fff;
	background: var(--highlight);
	border: 2px solid var(--highlight);
}

.blog2-ltpwrls {
	margin: 30px 0px;
}

/*--//events --*/

/*-- Contact --*/
.contact-left-agile h4 {
	font-size: 21px;
	text-align: left;
	margin-bottom: 13px;
	color: rgba(24, 0, 108, 1);
	font-weight: 700;
}

.contact-left-agile ul li {
	text-align: left;
	display: block;
	font-size: 14px;
	line-height: 25px;
	color: var(--main-text);
}

.contact-left-agile .phone-agileits-ltpwrlayouts {
	margin: 25px 0;
}

.contact-left-agile p {
	font-size: 14px;
	line-height: 25px;
	color: var(--main-text);
}

.contact-left-agile p a {
	color: var(--main-text);
	font-size: 14px;
}

.contact-right-ltpwr input.text,
.contact-right-ltpwr textarea {
	width: 48.6%;
	float: left;
	margin: 0 10px 25px 0;
	padding: 15px 10px;
	background-color: transparent;
	border: 1px solid rgba(24, 0, 108, 1);
	outline: transparent;
	border-radius: 20px;
}

.contact-right-ltpwr textarea {
	width: 100%;
	height: 125px;
}

.contact-right-ltpwr input.more_btn {
	float: right;
	padding: 7px 15px;
	outline: transparent;
	border: none;
	border-radius: 20px;
	background: #FF9E0D;
	color: rgba(24, 0, 108, 1);
	box-shadow: 0 5px 5px #00000033;
}

.contact-right-ltpwr input.more_btn:hover {
	color: #FFf;
}

::-webkit-input-placeholder {
	color: var(--bright) !important;
}

/*-- Map --*/

.map iframe {
	width: 100%;
	height: 400px;
}

.map-hover {
	position: relative;
}

.map-hover-1 {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	background-color: rgba(0, 0, 0, 0.46);
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}

.map-hover-1:hover {
	background-color: transparent;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}

/*-- //Map --*/

/*-- //Contact-Page-Styling --*/

/*-- single --*/
.agileits_breadcrumbs {
	padding: 1em 0;
	background: var(--secondary);
}

.agileits_breadcrumbs_left {
	width: 70%;
	float: left;
}

.agileits_breadcrumbs_left ul {
	margin-top: 5px;
}

.agileits_breadcrumbs_right {
	width: 30%;
	float: left;
}

.agileits_breadcrumbs_left ul li {
	display: inline-block;
	color: #212121;
	text-transform: uppercase;
}

.agileits_breadcrumbs_right h3 {
	font-size: 2em;
	color: #212121;
	font-weight: 700;
}

.blog {
	color: var(--main-text);
}

.wthree_blog_left_grid h4 {
	font-size: 1.5em;
	color: rgba(24, 0, 108, 1);
	margin: 1em 0 0;
	font-weight: 700;
	text-align: left;
}

.wthree_blog_left_grid ul li i {
	padding: 0 1em;
}

.wthree_blog_left_grid h3 {
	font-size: 1.5em;
	color: #212121;
	line-height: 1.5em;
	text-transform: capitalize;
	text-align: left;
	font-weight: 700;
	margin-top: 10px;
}

.unregistered .wthree_blog_left_grid h3 {
	text-transform: inherit;
	text-align: center;
}

.wthree_blog_left_grid ul {
	padding: 0em 0 1em 0;
	text-align: left;
}

.wthree_blog_left_grid ul li {
	display: inline-block;
	color: #8a8a8a;
	line-height: 30px;
}

.wthree_blog_left_grid ul li a {
	display: inline-block;
	color: #212121;
}

.wthree_blog_left_grid ul li span {
	color: #8a8a8a;
	padding-right: 1em;
}

.wthree_blog_left_grid p {
	text-align: left;
	line-height: 27px;
	color: #999;
	font-size: 14px;
}

.wthree_blog_left_grid p i {
	display: block;
	margin: 1em 0;
	color: #999;
	text-align: left;
}

.agileits_share ul {
	text-align: left;
}

.agileits_share ul li {
	display: inline-block;
}

.agileits_share ul li a {
	width: 35px;
	height: 35px;
	background: url('../images/img-sprite.png') no-repeat -7px -4px;
	display: inline-block;
	border: none;
}

.agileits_share ul li a.google {
	background: url('../images/img-sprite.png') no-repeat -55px -4px;
}

.agileits_share ul li a.twitter {
	background: url('../images/img-sprite.png') no-repeat -108px -4px;
}

.agileits_share ul li a.facebook {
	background: url('../images/img-sprite.png') no-repeat -159px -4px;
}

.agileits_share ul li a:hover {
	background: url('../images/img-sprite.png') no-repeat -7px -47px;
}

.agileits_share ul li a.google:hover {
	background: url('../images/img-sprite.png') no-repeat -55px -47px;
}

.agileits_share ul li a.twitter:hover {
	background: url('../images/img-sprite.png') no-repeat -108px -47px;
}

.agileits_share ul li a.facebook:hover {
	background: url('../images/img-sprite.png') no-repeat -159px -47px;
}

.agileits_reply {
	text-align: left;
}

.agileits_reply h3 {
	font-size: 1.5em;
	color: #fff;
	line-height: 1.5em;
	text-transform: capitalize;
	text-align: left;
	margin-top: 30px;
}

.agileits_reply input[type="text"],
.agileits_reply input[type="email"],
select {
	width: 100%;
	padding: 10px;
	border: 1px solid var(--primary);
	margin-bottom: 10px;
	background: transparent;
	outline: none;
	border-radius: 20px;
}

.agileits_reply input[name="expMonth"],
.agileits_reply input[name="expYear"],
.agileits_reply input[name="cvv2"] {
	width: calc(100% / 3 - 3px);
	display: inline-block;
	white-space: nowrap;
}

select {
	color: var(--bright);
}

select:focus {
	background: var(--primary);
	color: var(--bright);
}

.agileits_reply .membership_title {
	margin-top: 18px;
	text-align: center;
}

.card-icons {
	text-align: center;
}

.card-icons img {
	height: 40px;
	width: auto;
}

.framed h5 {
	margin-bottom: 10px;
}

.agileits_reply textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid var(--primary);
	margin-bottom: 15px;
	height: 150px;
	resize: none;
	background: transparent;
	outline: none;
	border-radius: 20px;
}

.agileits_reply input[type="submit"] {
	padding: 10px 35px;
	outline: none;
	min-width: 200px;
	background: #FF9E0D;
	color: rgba(24, 0, 108, 1);
	border: none;
}

.agileits_reply input[type="submit"]:hover {
	color: #fff;
}

.ltpwrls_search input[type="text"] {
	outline: none;
	padding: 10px;
	background: #f5f5f5;
	border: 1px solid #E1E1E1;
	color: #212121;
	font-size: 14px;
	width: 80%;
}

.ltpwrls_search input[type="submit"] {
	outline: none;
	padding: 10px;
	background: url(../images/img-sp.png) no-repeat 26px -392px rgb(2, 24, 136);
	border: none;
	width: 19%;
}

.ltpwrls_search input[type="submit"]:hover {
	background: url(../images/img-sp.png) no-repeat 26px -392px #999;
}

.ltpwrl_categories ul li,
.ltpwrl_archives ul li {
	margin-bottom: 1.5em;
	background: url(../images/img-sp.png) no-repeat 0px -183px;
	padding-left: 2.5em;
	list-style-type: none;
	text-transform: capitalize;
	font-family: 'Roboto Condensed', sans-serif;
	text-align: left;
	color: #999;
	font-size: 14px;
}

.ltpwrl_categories ul li a {
	color: #999;
	text-decoration: none;
	line-height: 1.8em;
	font-size: 14px;
}

.ltpwrl_categories ul li a:hover {
	color: var(--highlight);
}

.ltpwragile_flickr_post_left {
	width: 48%;
	float: left;
	margin: 1%;
}

.ltpwragile_flickr_post_left.payment {
	width: 98%
}

.payment {
	position: relative;
}

.payment_large {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
}

.payment_large img {
	max-height: 40px;
	width: auto;
	margin: 20px;
}

.extraCard {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: linear-gradient(45deg, #e25a31, #d8ad12);
	padding: 50px 30px;
	margin-top: 65px;
}

.benefit {
	text-align: left;
}

.joystick {
	width: 200px;
	position: absolute;
	right: -50px;
	bottom: -50px;
	opacity: 0.1;
}

.new_games {
	position: relative;
}

.ltpwrl_categories h3,
.ltpwrl_archives h3,
.ltpwragile_flickr_posts h3,
.agileits_reply h3,
.wthree_blog_left_grid h3,
.newsletter h4 {
	font-size: 1.5em !important;
	color: var(--main-text);
	font-weight: 700;
	margin-bottom: 1em;
	text-align: left;
}

.ltpwrl_categories,
.ltpwrl_archives {
	margin: 3em 0;
}

.agileits_share ul {
	text-align: left;
}

.agileits_share ul li {
	display: inline-block;
}

.agileits_share ul li a {
	width: 35px;
	height: 35px;
	background: url('../images/img-sprite.png') no-repeat -7px -4px;
	display: inline-block;
	border: none;
}

.agileits_share ul li a.google {
	background: url('../images/img-sprite.png') no-repeat -55px -4px;
}

.agileits_share ul li a.twitter {
	background: url('../images/img-sprite.png') no-repeat -108px -4px;
}

.agileits_share ul li a.facebook {
	background: url('../images/img-sprite.png') no-repeat -159px -4px;
}

.agileits_share ul li a:hover {
	background: url('../images/img-sprite.png') no-repeat -7px -47px;
}

.agileits_share ul li a.google:hover {
	background: url('../images/img-sprite.png') no-repeat -55px -47px;
}

.agileits_share ul li a.twitter:hover {
	background: url('../images/img-sprite.png') no-repeat -108px -47px;
}

.agileits_share ul li a.facebook:hover {
	background: url('../images/img-sprite.png') no-repeat -159px -47px;
}

.sorter {
	display: block;
	flex-flow: wrap;
	list-style: none;
	text-align: center;
}

.sorter li {
	margin: 5px 5px;
	display: inline-flex;
	box-sizing: border-box;
	white-space: nowrap;
	padding: 0 5px;
	background: transparent;
	color: #DC6DFF;
	border-radius: 7px;
	border: 3px solid #DC6DFF;
	font-weight: bold;
	font-size: 16px;
	align-items: center;
	justify-content: flex-start;
}

.sorter li img {
	width: 40px;
	padding: 5px 5px 5px 0;
}

.sorter li.active {
	border: 3px solid #8461FF;
	color: #8461FF;
}

li>a {
	color: inherit;
}

.terms {
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.terms {
	color: var(--main-text);
}

.terms h4 {
	margin-top: 15px;
	margin-bottom: 5px;
	text-align: left;
	text-shadow: none;
	font-family: 'Roboto Condensed', sans-serif;
	color: var(--bright);
	font-weight: bold;
}

.terms a {
	color: var(--bright);
	text-decoration: underline;
}

.terms table {
	margin-top: 30px;
	margin-bottom: 30px;
	display: block;
}

.terms td {
	padding: 5px;
	border: 1px solid var(--bright);
}

h2.terms_title {
	font-weight: bold;
	text-transform: uppercase;
}

.terms ul {
	list-style-type: disc;
	padding-left: 15px;
}

/*--game page--*/
.game .wthree_blog_left ul {
	margin-top: 15px;
}

.game .wthree_blog_left ul a {
	color: rgba(24, 0, 108, 1);
	margin: 0 10px 0 0;

}

.game_list {
	text-align: center;
}

.pagination>li>a,
.pagination>li>span {
	position: relative;
	float: left;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 1.42857143;
	color: var(--bright);
	text-decoration: none;
	background-color: unset;
	border: 1px solid var(--primary);
}

.pagination>li>a:hover,
.pagination>li>span:hover {
	background: #DC6DFF;
	color: #fff;
	text-shadow: 0 0 10px #fff;
}

.pagination>li>a.active {
	background: rgba(24, 0, 108, 1);
	color: #fff;
	text-shadow: 0 0 10px #fff;
}

.game_name {
	position: relative;
	width: max-content;
}

.game_name:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 60%;
	height: 1px;
	background: var(--primary);
}

/*accordeon*/
.accordion ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.accordion li {
	margin: 0;
	padding: 0;
}

.accordion [type=radio],
.accordion [type=checkbox] {
	display: none;
}

.accordion h4,
.mainSubheader {
	font-weight: 600;
	font-size: 18px;

}

.mainSubheader {
	margin-bottom: 45px;
}

#faq {
	min-height: 444px;
}

.min_height {
	min-height: 444px
}

#faq h2 {
	margin-bottom: 0;
}

#faq h4 {
	margin-bottom: 30px;
	color: var(--bright);
}

.accordion label {
	margin-left: 40px;
	position: relative;
	border-radius: 10px;
	display: block;
	font-size: 18px;
	font-weight: 700;
	line-height: 16px;
	color: var(--bright);
	cursor: pointer;
	-webkit-user-select: none;
	/* webkit (safari, chrome) browsers */
	-moz-user-select: none;
	/* mozilla browsers */
	-khtml-user-select: none;
	/* webkit (konqueror) browsers */
	-ms-user-select: none;
}

.accordion label:hover {
	color: var(--secondary);
}

.accordion [type=radio]~label::before,
.accordion [type=checkbox]~label::before {
	position: absolute;
	content: "-";
	color: var(--secondary);
	font-size: 28px;
	font-weight: 300;
	margin-right: 12px;
	vertical-align: text-top;
	left: -40px;
	top: 5px;
}

.accordion ul li label:hover,
.accordion [type=radio]:checked~label,
.accordion [type=checkbox]:checked~label {
	color: var(--secondary);
}

.accordion [type=radio]:checked~label::before,
.accordion [type=checkbox]:checked~label::before {
	content: '+';
	top: 9px;
}

.accordion .content {
	overflow: hidden;

	-webkit-transition: all .5s ease-out;
	-moz-transition: all .5s ease-out;
}

.accordion p {
	font-size: 18px;

	padding: 0px 0 20px;
	line-height: 25px
}

.toform {
	margin-bottom: 25px;
	display: block;
}

.vertical ul li {
	overflow: hidden;
	margin: 0 0 1px;
}

.vertical ul li label {
	padding: 10px 0px;
}

.vertical [type=radio]:checked~label,
.vertical [type=checkbox]:checked~label {
	border-bottom: 0;
}

.vertical ul li .content {
	height: 0px;
	border-top: 0;
	transition: all .5s ease-out;
}

.vertical [type=checkbox]:checked~label~.content {
	height: auto;
}

@media all and (max-width: 980px) {
	main .faqBox h2 {
		font-size: 22px;
	}

	main .contactForm {
		background: none;
	}

	.accordion label {
		position: relative;
	}

	.accordion label::before {
		position: absolute;
		left: 0%;
		top: 40%;
	}

	main .contactBox,
	main .faqBox {
		margin-right: auto;
		margin-left: auto;
		float: none;
	}

	main .contactBox h2,
	main .faqBox h2 {
		margin-bottom: 30px;
	}

	main .container {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

/*GAME*/
#game_container {
	min-width: 480px;
	width: fit-content;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

#fs {
	position: absolute;
	font-size: 22px;
	top: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	color: #fff;
	background: #0d436978;
	padding: 3px 3px;
	line-height: 1;
	border-radius: 4px;
	display: inline-block;
	min-width: 15px;
	text-align: center;
}

#fs.passive {
	background: var(--high_grad);
}

#backBtn {
	position: absolute;
	font-size: 22px;
	top: 10px;
	left: 10px;
	width: 30px;
	height: 30px;
	color: #fff;
	background: #0d436978;
	padding: 3px 3px;
	line-height: 1;
	border-radius: 4px;
	display: inline-block;
	min-width: 15px;
	text-align: center;
}

#message_proc,
#message_success,
.cc_overlay {
	display: none;
}

.cc_overlay {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	top: 30%;
	width: 70%;
	padding: 50px;
	background: var(--primary);
	z-index: 50;
	text-align: center;

	border: 1px solid var(--highlight);
	border-radius: 30px;
	box-shadow: 0 10px 10px #00000054;
}

.cc_overlay span {
	display: block;
	font-size: 18px;
}

#message_proc span {
	display: block;
	color: var(--bright);
	margin-top: 15px;
}

#message_error {
	color: #ff0000;
}

.error-holder {
	height: 50px;
	text-align: center;
	padding: 20px;
}

#cc_form_error {
	color: #ff0000;
	font-size: 18px;
}

#message_success>span {
	display: block;
	margin-top: 15px;
	font-size: 18px;
	color: var(--bright);
}




.close_x {
	position: absolute;
	top: 5px;
	right: 5px;
	transform: rotate(45deg);
	height: 20px;
	width: 20px;
	font-size: 30px;
	color: #425bea;
	cursor: pointer;
}

.cardForm>span {
	position: relative;
}

.cardForm .glyphicon {
	position: absolute;
	right: 7px;
	color: var(--primary);
	cursor: pointer;
	font-size: 21px;
	top: -2px;
	transition: 0.3s color;
}

.cardForm .glyphicon:hover {
	color: var(--secondary);
}

.cardForm .glyphicon:hover .cardTip {
	display: block;
	opacity: 1;
}

.cardTip {
	display: none;

	background: #e0e0e0;
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	bottom: 30px;
	width: 200px;
	z-index: 333;
	overflow: unset;
	padding: 15px;
	border-radius: 10px;
}

.cardTip::before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	bottom: -8px;
	border-top: 10px solid #e0e0e0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
}

.cardTip.tipRight {
	transform: unset;
	left: -170px;
}

.cardTip.tipRight::before {
	left: 180px;
}

.cardTip.tipLeft {
	transform: unset;
	left: -86px;
}

.cardTip.tipLeft::before {
	left: 93px;
}

.loading_gif {
	display: block;
	mix-blend-mode: screen;
	width: 200px;
	margin-left: auto;
	margin-right: auto;
	filter: contrast(1.3);
}

.cc_flow.thx .contact-agileinfo .framed h3 {
	margin-bottom: 0;
}

.main .navbar:hover {
	/*background: rgba(24, 57, 83, 0.5);*/
}

.cancel .container>p {
	margin: 15px auto;
	max-width: 720px;
}

.cancel form .btn-primary {
	margin-top: 25px;
}

.cancel .login_page form .btn {
	margin-top: 25px;
}

.nav>li>a {
	padding: 15px 0;
}

/*-- //single --*/

/*-- responsive--*/
@media screen and (max-width: 1440px) {
	.pop-up-content-agileits-ltpwrlayouts h4 {
		margin-bottom: 15px;
	}

	p.agileits {
		margin: 5px 0;
	}

	p.right {
		letter-spacing: 0px;
	}

	.collection-grid {
		padding: 0;
		height: 313px;
	}

	.collection-text img {
		width: 50px;
		margin-top: 45px;
	}

	.collection-left {
		min-height: 626px;
	}
}

@media screen and (max-width: 1366px) {
	[class*="small-dialog"] {
		padding: 40px 20px;
	}

	.collection-grid {
		padding: 0;
		height: 297px;
	}

	.collection-text h3 {
		margin: 25px 0 20px;
	}

	.collection-text p {
		padding: 0 25px;
	}

	.collection-left {
		min-height: 594.4px;
	}
}

@media screen and (max-width: 1280px) {
	[class*="small-dialog"] {
		max-width: 55%
	}

	.collection-grid {
		padding: 0;
		height: 278px;
	}

	.collection-text img {
		margin-top: 40px;
	}

	.collection-text p {
		padding: 0px 20px;
	}

	.collection-left {
		min-height: 556.4px;
	}

}

@media screen and (max-width: 1200px) {

	.contact-right-ltpwr input.text,
	.contact-right-ltpwr textarea {
		width: 100%;
	}
}

@media screen and (max-width: 1080px) {
	.flex-control-nav {
		top: 54px;
		right: 0;
	}

	[class*="small-dialog"] {
		max-width: 70%
	}

	.about-grid-left-agileits-ltpwrlayouts ul li {
		margin-bottom: 1.6em;
	}

	.collection-grid {
		padding: 0;
		height: 234px;
	}

	.collection-text img {
		margin-top: 40px;
	}

	.collection-text h3 {
		font-size: 20px;
		margin: 12px;
	}

	.collection-text p {
		font-size: 13px;
		line-height: 20px;
	}

	.view-second .mask {
		width: 520px !important;
	}

	.view-second .content {
		padding: 2em 1em !important;
		width: 100% !important;
	}

	.collection-left {
		min-height: 468.4px;
	}

	.events-text-ltpwr-agile h4 {
		width: 32%;
	}

	.blog-text-ltpwrls h4 {
		color: #333;
	}

	.events-text-ltpwr-agile p {
		font-size: 25px;
	}

	.item_info {
		margin: 1.2em 0;
	}

	.item_info ul li {
		margin-right: 23px;
	}

	a.blog-read {
		margin-top: 12px;
	}

	.ltpwrls_search input[type="submit"] {
		background: url(../images/img-sp.png) no-repeat 18px -392px rgb(2, 24, 136);
	}

	.ltpwrls_search input[type="submit"]:hover {
		background: url(../images/img-sp.png) no-repeat 18px -392px #999;
	}
}

@media screen and (max-width: 1024px) {
	.events-text-ltpwr-agile p {
		font-size: 23px;
	}
}

@media screen and (max-width: 991px) {
	.navbar-header h1 {
		margin-top: 7px;
		font-size: 35px;
	}

	.payment_large {
		display: block;
		text-align: center;
	}

	.img_holder {
		height: 222px;
	}

	.navbar-nav>li {
		padding: 5px 10px;
	}

	.trend-ltpwrlayouts h4,
	.services-agileits-ltpwrlayouts h4 {
		font-size: 24px;
	}

	.service-grid-agileits {
		float: left;
	}

	.service-grid-agileits .glyphicon {
		font-size: 25px;
		padding: 15px;
	}

	.games .new-grid-ltpwrl,
	.games .new-grid-agile {
		width: 25%;
		float: left;
	}

	.tips .new-grid-ltpwrl,
	.tips .new-grid-agile {
		width: 47%;
		float: left;
	}

	.new-grid-ltpwrl.col-md-6 {
		width: 50%;
		float: left;
	}

	.view h4 {
		font-size: 1.4em;
	}

	.view .button {
		margin: 10px auto 5px;
	}

	.view p {
		font-size: 12px;
	}

	.footer-left-ltpwr,
	.footer-middle-ltpwr,
	.footer-right-ltpwr {
		width: 50%;
		float: left;
	}

	.footer-middle-ltpwr {
		padding: 0;
	}

	.img-ltpwr-agile {
		width: 25%;
		float: left;
		padding: 0px 3px;
	}

	.footer-middle-wthree {
		margin-top: 7px;
	}

	.footer-left-ltpwr ul li {
		margin-bottom: 22px;
	}

	.footer-right-ltpwr p {
		font-size: 13px;
		line-height: 25px;
	}

	p.agileinfo {
		margin-top: 12px;
	}

	.ltpwrls-left,
	.ltpwrls-right {
		width: 50%;
		float: left;
	}

	[class*="small-dialog"] {
		max-width: 72%;
	}

	.about-grid-left-agileits-ltpwrlayouts,
	.about-grid-right-ltpwr-agile {
		width: 50%;
		float: left;
	}

	figure.effect-zoe p.description {
		padding: 1em;
	}

	.about-grid-left-agileits-ltpwrlayouts ul li {
		margin-bottom: 0.6em;
	}

	.about-grid-left-agileits-ltpwrlayouts ul li i {
		padding: .4em 0.7em;
		margin-right: 1em;
	}

	figure.effect-zoe h3 {
		font-size: 1.1em;
	}

	.collection-text img {
		width: 45px;
	}

	.ltpwrl_team_grid {
		width: 25%;
		float: left;
		padding: 0 10px;
	}

	.ltpwrl_social_icons ul li a,
	.ltpwrl_social_icons ul li a.google,
	.ltpwrl_social_icons ul li a.twitter,
	.ltpwrl_social_icons ul li a.facebook {
		background-size: 400px;
		width: 27px;
		height: 27px;
	}

	.ltpwrl_social_icons ul li a {
		background: url('../images/img-sprite.png') no-repeat -6px -6px #fff;
		background-size: 400px;
	}

	.ltpwrl_social_icons ul li a.google {
		background: url('../images/img-sprite.png') no-repeat -45px -6px #fff;
		background-size: 400px;
	}

	.ltpwrl_social_icons ul li a.twitter {
		background: url('../images/img-sprite.png') no-repeat -86px -6px #fff;
		background-size: 400px;
	}

	.ltpwrl_social_icons ul li a.facebook {
		background: url('../images/img-sprite.png') no-repeat -125px -6px #fff;
		background-size: 400px;
	}

	.ltpwrl_social_icons ul li a:hover {
		background: url('../images/img-sprite.png') no-repeat -6px -41px;
		background-size: 400px;
	}

	.ltpwrl_social_icons ul li a.google:hover {
		background: url('../images/img-sprite.png') no-repeat -45px -41px;
		background-size: 400px;
	}

	.ltpwrl_social_icons ul li a.twitter:hover {
		background: url('../images/img-sprite.png') no-repeat -86px -41px;
		background-size: 400px;
	}

	.ltpwrl_social_icons ul li a.facebook:hover {
		background: url('../images/img-sprite.png') no-repeat -125px -41px;
		background-size: 400px;
	}

	.view-second .ltpwrl_social_icons1 {
		padding-bottom: 0.5em;
	}

	.view-second p {
		font-size: 13px;
		margin: 0.6em 0 0;
		line-height: 1.5em;
		padding-top: 0;
	}

	.footer-right-ltpwr img {
		width: 70%;
	}

	.events-left-agile-agileits-ltpwrlayouts {
		width: 55%;
		float: left;
	}

	.events-right-agile {
		width: 45%;
		float: left;
	}

	.events-text-ltpwr-agile p {
		font-size: 23px;
	}

	.blog-image-ltpwrl {
		width: 33.3%;
		float: left;
	}

	.blog-text-ltpwrls {
		width: 66.6%;
		float: left;
		padding-left: 0;
	}

	.item_info {
		padding: 0.5em;
	}

	.item_info ul li {
		font-size: 1em;
		margin-right: 16px;
	}

	.item_info ul li i {
		margin-right: 5px;
	}

	.blog-text-ltpwrls h4 {
		font-size: 30px;
	}

	.item_info {
		margin: 1em 0;
	}

	.blog-text-ltpwrls p {
		font-size: 13px;
		line-height: 26px;
	}

	.blog2-ltpwrls {
		margin: 50px 0px;
	}

	.contact-left-agile {
		width: 33.3%;
		float: left;
	}

	.contact-right-ltpwr {
		width: 66.6%;
		float: left;
	}

	.contact-right-ltpwr input.text {
		width: 47.7%;
	}

	.map iframe {
		width: 100%;
		height: 350px;
	}

	.wthree_blog_left {
		width: 55%;
		float: left;
	}

	.wthree_blog_right {
		width: 45%;
		float: left;
	}

	.ltpwrls_search input[type="submit"] {
		background: url(../images/img-sp.png) no-repeat 12px -392px rgb(2, 24, 136);
		width: 18%;
	}

	.ltpwrls_search input[type="submit"]:hover {
		background: url(../images/img-sp.png) no-repeat 12px -392px #999;
		width: 18%;
	}

	.wthree_blog_left_grid ul li i {
		padding: 0 0.5em;
	}
}

@media screen and (max-width: 900px) {
	[class*="small-dialog"] {
		max-width: 80%;
	}

	.events-text-ltpwr-agile {
		padding: 20px 0px 0px 20px;
	}

	.events-text-ltpwr-agile p {
		font-size: 21px;
	}

	.video-responsive {
		display: none;
	}
}

@media screen and (max-width: 800px) {
	[class*="small-dialog"] {
		max-width: 90%;
	}

	.collection-text img {
		width: 35px;
		margin-top: 20px;
	}

	.collection-text h3 {
		margin: 8px 0 8px;
		font-size: 24px;
	}

	.collection-text p {
		font-size: 13px;
		line-height: 23px;
		padding: 0 16px;
	}

	.events-text-ltpwr-agile h4 {
		width: 40%;
	}

	.events-text-ltpwr-agile p {
		font-size: 19px;
	}
}

@media screen and (min-width: 768px) {
	.navbar-right {
		float: right !important;
		margin-right: -15px;
		width: calc(100% - 160px);
		display: flex;
		justify-content: space-around;
		align-items: center;
	}
}

@media screen and (max-width: 768px) {

	.collection-text p {
		padding: 0 10px;
	}

	#profile svg {
		position: relative;
		top: 0;
	}

	.navbar-default .navbar-toggle {
		background: transparent;
		border: 2px solid transparent;
	}

	.navbar-default .navbar-toggle .icon-bar {
		background-color: var(--white_bg);
	}
}

@media screen and (max-width: 736px) {
	.desk_only {
		display: none;
	}

	.mob_only {
		display: block;
	}

	#sub_menu {
		position: relative;
		margin-top: 0;
		margin-left: 27px;
		border-left: 2px solid rgba(224, 129, 226, 1);
		margin-bottom: 20px;
	}

	.navbar-header h1 {
		text-align: left;
		padding-left: 15px;
	}

	.navbar-toggle {
		border-radius: 0px;
	}

	.navbar-default .navbar-toggle:hover,
	.navbar-default .navbar-toggle:focus {
		background-color: transparent;
	}

	.navbar-nav {
		margin: 6px 0 0;
		background: transparent;
	}

	.navbar-nav>li {
		padding: 5px 5px 5px 20px;
		border-bottom: 1px solid var(--white_bg);
	}

	#profile {
		font-weight: 700;
	}

	.navbar-collapse.in {
		overflow-y: inherit;
	}

	.trend-ltpwrlayouts h4,
	.services-agileits-ltpwrlayouts h4 {
		font-size: 22px;
	}

	.view .content {
		padding: 45px 0;
	}

	.view .mask {
		padding: 0;
	}

	.services-bottom-ltpwr-agileits {
		min-height: 325px;
		padding: 85px 0px;
	}

	.collection-left {
		width: 50%;
		margin: 0 auto;
	}

	.collection-right {
		width: 100%;
	}

	.collection-grid-1,
	.collection-grid-2,
	.collection-grid-3,
	.collection-grid-4,
	.collection-grid-5,
	.collection-grid-6 {
		width: 33.3%;
		float: left;
	}

	.collection-text img {
		margin-top: 33px;
	}

	.collection-text p {
		line-height: 26px;
	}

	.item_info ul li {
		margin-right: 14px;
	}

	.contact-right-ltpwr input.text {
		width: 47.6%;
	}

	.ltpwrls_search input[type="submit"] {
		background: url(../images/img-sp.png) no-repeat 10px -392px rgb(2, 24, 136);
	}

	.ltpwrls_search input[type="submit"]:hover {
		background: url(../images/img-sp.png) no-repeat 10px -392px #999;
	}

	.ltpwrl_categories h3,
	.ltpwrl_archives h3,
	.ltpwragile_flickr_posts h3,
	.agileits_reply h3,
	.wthree_blog_left_grid h3,
	.newsletter h4 {
		font-size: 1.4em !important;
	}

	.wthree_blog_left_grid ul li span {
		color: #8a8a8a;
		padding-right: 0.7em;
	}
}

@media screen and (max-width:667px) {
	.callbacks_nav {
		height: 61px;
		width: 32px;
		background-size: 58px;
	}

	.trend-ltpwrlayouts h4,
	.services-agileits-ltpwrlayouts h4 {
		font-size: 19px;
	}

	.service-grid-agileits {
		width: calc(50% - 20px);
		float: left;
		margin-bottom: 30px;
	}

	.service-grid-agileits-bottom {
		margin-top: 50px;
	}

	.new-grid-ltpwrl,
	.new-grid-agile {
		padding: 0px 10px;
	}

	.footer-left-ltpwr ul li h6 {
		font-size: 15px;
		margin-left: 5px;
	}

	.ltpwrls-right {
		padding-left: 0;
	}

	[class*="small-dialog"] {
		padding: 25px 5px;
	}

	.span1 {
		margin: 15px 0;
		padding: 10px 0;
	}

	.span2,
	.span3 {
		padding-bottom: 10px;
	}

	p.left {
		letter-spacing: 2px;
	}

	.pop-up-content-agileits-ltpwrlayouts p {
		font-size: 13px;
		line-height: 25px;
	}

	.about-grid-left-agileits-ltpwrlayouts ul li i {
		margin-right: 0.2em;
	}

	.about-grid-left-agileits-ltpwrlayouts ul li {
		font-size: 13.5px;
	}

	.ltpwrl_team_grid {
		width: 50%;
		float: left;
		padding: 0 15px;
	}

	.ltpwrl_social_icons ul li a {
		width: 35px;
		height: 35px;
		background: url('../images/img-sprite.png') no-repeat -7px -7px #fff;
		display: inline-block;
		border: none;
	}

	.ltpwrl_social_icons ul li a.google {
		background: url('../images/img-sprite.png') no-repeat -55px -7px #fff;
		width: 35px;
		height: 35px;
	}

	.ltpwrl_social_icons ul li a.twitter {
		background: url('../images/img-sprite.png') no-repeat -108px -7px #fff;
		width: 35px;
		height: 35px;
	}

	.ltpwrl_social_icons ul li a.facebook {
		background: url('../images/img-sprite.png') no-repeat -159px -7px #fff;
		width: 35px;
		height: 35px;
	}

	.ltpwrl_social_icons ul li a:hover {
		background: url('../images/img-sprite.png') no-repeat -7px -50px;
	}

	.ltpwrl_social_icons ul li a.google:hover {
		background: url('../images/img-sprite.png') no-repeat -55px -50px;
	}

	.ltpwrl_social_icons ul li a.twitter:hover {
		background: url('../images/img-sprite.png') no-repeat -108px -50px;
	}

	.ltpwrl_social_icons ul li a.facebook:hover {
		background: url('../images/img-sprite.png') no-repeat -159px -50px;
	}

	.view-second .ltpwrl_social_icons1 {
		padding-bottom: 1.5em;
	}

	.view-second p {
		font-size: 15px;
		margin: 1.6em 0 0;
		line-height: 2em;
		padding-top: 0;
	}

	.footer h4 {
		font-size: 25px;
	}

	figure.effect-zoe h3 {
		font-size: 1em;
	}

	figure.effect-zoe p.icon-links a {
		font-size: 0.9em;
	}

	.grid-ltpwrls figure figcaption,
	.grid-ltpwrls figure figcaption>a {
		left: 8px;
	}

	figure.effect-zoe:hover figcaption,
	figure.effect-zoe:hover h3,
	figure.effect-zoe:hover p.icon-links a {
		bottom: 8px;
	}

	figure.effect-zoe figcaption {
		padding: 0.5em;
		height: 2.5em;
	}

	figure.effect-zoe p.description {
		padding: 0.5em;
		bottom: 5em;
	}

	.item_info ul li {
		font-size: 12px;
		margin-right: 16px;
	}

	.contact-right-ltpwr input.text,
	.contact-right-ltpwr textarea {
		margin: 0 8px 25px 0;
	}

	.map iframe {
		width: 100%;
		height: 300px;
	}

	.ltpwrls_search input[type="submit"] {
		background: url(../images/img-sp.png) no-repeat 7px -392px rgb(2, 24, 136);
	}

	.ltpwrls_search input[type="submit"]:hover {
		background: url(../images/img-sp.png) no-repeat 7px -392px #999;
	}

	.wthree_blog_left_grid ul li span {
		color: #8a8a8a;
		padding-right: 0.3em;
	}

	.wthree_blog_left_grid ul li i {
		padding: 0 0.3em;
	}

}

@media screen and (max-width:640px) {
	.footer-left-ltpwr ul li h6 {
		font-size: 14px;
		margin-left: 5px;
	}

	.footer-left-ltpwr .glyphicon {
		font-size: 15px;
	}

	.pop-up-content-agileits-ltpwrlayouts h4 {
		margin-bottom: 8px;
	}

	.about-grid-left-agileits-ltpwrlayouts {
		padding-right: 0;
	}

	.about-grid-right-ltpwr-agile {
		padding-left: 0;
	}

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

	.events-text-ltpwr-agile p {
		font-size: 16px;
	}

	.item_info ul li {
		font-size: 12px;
		margin-right: 12px;
	}

	.agileits_reply input[type="text"],
	.agileits_reply input[type="email"] {
		margin-bottom: 10px;
	}
}

@media screen and (max-width:600px) {
	.new-grid-ltpwrl,
	.new-grid-agile {
		padding: 0px 5px;
	}

	.view {
		margin-top: 1em;
	}

	.footer_container {
		flex-direction: column;
	}

	.footer-left-ltpwr,
	.footer-middle-ltpwr,
	.footer-right-ltpwr {
		width: 100%;
		float: left;
	}

	.footer-right-ltpwr {
		align-items: flex-start !important;
	}

	.footer-middle-ltpwr {
		margin: 30px 0;
	}

	.footer h4 {
		margin-bottom: 20px;
	}

	.footer-right-ltpwr h4 {
		margin-bottom: 10px;
	}

	.mfp-close {
		left: -30px;
	}

	.about-grid-left-agileits-ltpwrlayouts ul li {
		font-size: 12.6px;
	}

	.footer-right-ltpwr img {
		width: 70%;
	}

	.events-text-ltpwr-agile h4 {
		width: 57%;
	}

	.item_info ul li {
		font-size: 12px;
		margin-right: 5px;
	}

	.ltpwrls_search input[type="submit"] {
		background: url(../images/img-sp.png) no-repeat 4px -388px rgb(2, 24, 136);
		background-size: 495px;
	}

	.ltpwrls_search input[type="submit"]:hover {
		background: url(../images/img-sp.png) no-repeat 4px -388px #999;
		background-size: 495px;
	}
}

@media screen and (max-width:568px) {
	.cc_overlay {
		width: 90vw;
	}

	.view.gallery-grid .mask {
		width: inherit;
	}

	.gallery-grid .mask:hover {
		width: inherit;
	}

	.trend-ltpwrlayouts,
	.new-ltpwr-agile,
	.services-agileits-ltpwrlayouts,
	.about-agileinfo,
	.team-ltpwrlayouts,
	.gallery-ltpwrlayouts,
	.contact-agileinfo,
	.events-ltpwrlayouts,
	.blog {
		/*padding: 30px 0px;*/
	}

	.new-grid-ltpwrl,
	.new-grid-agile {
		padding: 0px 7px;
		width: 100%;
		float: left;
	}

	.games .new-grid-ltpwrl,
	.games .new-grid-agile {
		width: 100%;
	}

	.view h4 {
		font-size: 2.2em;
	}

	.view p {
		font-size: 14px;
	}

	[class*="small-dialog"] {
		max-width: 98%;
	}

	.mfp-close {
		left: -8px;
		top: -40px;
	}

	.trend-ltpwrlayouts h2,
	.new-ltpwr-agile h3,
	.services-agileits-ltpwrlayouts h3,
	.services-bottom-ltpwr-agileits h3,
	.about-agileinfo h2,
	.team-ltpwrlayouts h3,
	.gallery-ltpwrlayouts h2,
	.contact-agileinfo h2,
	.events-ltpwrlayouts h2 {
		margin-bottom: 30px;
	}

	.gallery-grids {
		margin: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.about-grid-left-agileits-ltpwrlayouts,
	.about-grid-right-ltpwr-agile {
		width: 100%;
		float: left;
		padding: 0 15px 15px 15px;
	}

	.about-grid-left-agileits-ltpwrlayouts ul li {
		display: block;
		margin-left: 25%;
	}

	.item_info ul li {
		font-size: 11px;
		margin-right: 6px;
	}

	.map iframe {
		width: 100%;
		height: 270px;
	}

	.contact-right-ltpwr input.text,
	.contact-right-ltpwr textarea {
		margin: 0 7px 25px 0;
	}

	.agileits_reply input[type="text"],
	.agileits_reply input[type="email"] {
		padding: 9px;
	}
}

@media screen and (max-width:480px) {
	.desk_only {
		display: none;
	}

	#game_container {
		min-width: 100vw;
	}

	body #buttonCode {
		width: 80px;
		height: 80px;
		font-size: 15px;
		left: 20px;
		padding: 7px 10px;
		filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
	}

	body #buttonCode svg {
		min-width: 60px;
	}

	.cc_flow .blog {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.cc_flow .blog .wthree_blog_left {
		order: 2;
	}

	.cc_flow .blog .wthree_blog_right {
		order: 1;
	}

	.signUp .container {
		display: flex;
		flex-direction: column;
	}

	.extraCard {
		margin-top: 0;
	}

	.signUp .container>.wthree_blog_left {
		order: 2;
	}

	.img_holder {
		height: 360px;
	}

	.superheader {
		height: 76px;
	}

	.new-grid-ltpwrl.col-md-6 {
		width: 100%;
		float: left;
	}

	.callbacks_nav {
		top: 60%;
	}

	.navbar-header h1 {
		font-size: 27px;
	}


	.services-bottom-ltpwr-agileits h3 {
		font-size: 30px;
	}

	.wthree_info p {
		font-size: 14px;
		letter-spacing: 1px;
	}

	[class*="small-dialog"] {
		max-width: 75%;
		margin-top: 100px;
	}

	.ltpwrls-left,
	.ltpwrls-right {
		width: 100%;
		float: left;
	}

	.ltpwrls-right {
		padding-left: 15px;
		margin-top: 20px;
	}

	.sub-banner {
		min-height: 72px;
	}

	.collection-left {
		width: 75%;
		margin: 0 auto;
	}

	.collection-text img {
		margin-top: 17px;
	}

	.collection-text p {
		line-height: 24px;
		padding: 0 6px;
	}

	.view-second p {
		margin: 0.7em 0 0;
	}

	.about-grid-left-agileits-ltpwrlayouts ul li {
		margin-left: 21%;
	}

	.events-left-agile-agileits-ltpwrlayouts {
		width: 100%;
		float: left;
		min-height: 310px;
	}

	.events-text1 p {
		padding: 180px 0px 6px 0px;
	}

	.events-right-top,
	.events-right-bottom {
		min-height: 175px;
	}

	.events-right-agile {
		width: 100%;
		float: left;
	}

	.events-text-ltpwr-agile h4 {
		width: 36%;
	}

	.blog-image-ltpwrl {
		width: 100%;
		float: left;
	}

	.blog-text-ltpwrls {
		width: 100%;
		float: left;
		padding-left: 15px;
	}

	.blog-text-ltpwrls h4 {
		font-size: 25px;
	}

	.map iframe {
		width: 100%;
		height: 250px;
	}

	.contact-right-ltpwr input.text {
		width: 99.6%;
	}

	.contact-left-agile h4 {
		font-size: 19px;
	}

	.wthree_blog_left {
		width: 100%;
		float: left;
		margin-bottom: 50px;
	}

	.wthree_blog_right {
		width: 100%;
		float: left;
	}

	.sorter li {
		margin: 5px 5px;
		white-space: nowrap;
	}

	.view .mask,
	.view .content {
		width: calc(100% - 1em);
	}
}

@media screen and (max-width:414px) {
	.rslides img {
		height: 225px;
	}

	.trend-ltpwrlayouts h2,
	.new-ltpwr-agile h3,
	.services-agileits-ltpwrlayouts h3,
	.services-bottom-ltpwr-agileits h3,
	.about-agileinfo h2,
	.team-ltpwrlayouts h3,
	.gallery-ltpwrlayouts h2,
	.contact-agileinfo h2,
	.events-ltpwrlayouts h2 {
		font-size: 28px;
	}

	.view h4 {
		font-size: 2em;
	}

	.services-bottom-ltpwr-agileits {
		min-height: 265px;
		padding: 50px 0px;
	}

	.about-grid-left-agileits-ltpwrlayouts ul li {
		margin-left: 14%;
	}

	.collection-grid-1,
	.collection-grid-2,
	.collection-grid-3,
	.collection-grid-4,
	.collection-grid-5,
	.collection-grid-6 {
		width: 50%;
		float: left;
	}

	.ltpwrl_social_icons ul li a,
	.ltpwrl_social_icons ul li a.google,
	.ltpwrl_social_icons ul li a.twitter,
	.ltpwrl_social_icons ul li a.facebook {
		background-size: 400px;
		width: 27px;
		height: 27px;
	}

	.ltpwrl_social_icons ul li a {
		background: url('../images/img-sprite.png') no-repeat -6px -6px #fff;
		background-size: 400px;
	}

	.ltpwrl_social_icons ul li a.google {
		background: url('../images/img-sprite.png') no-repeat -45px -6px #fff;
		background-size: 400px;
	}

	.ltpwrl_social_icons ul li a.twitter {
		background: url('../images/img-sprite.png') no-repeat -86px -6px #fff;
		background-size: 400px;
	}

	.ltpwrl_social_icons ul li a.facebook {
		background: url('../images/img-sprite.png') no-repeat -125px -6px #fff;
		background-size: 400px;
	}

	.ltpwrl_social_icons ul li a:hover {
		background: url('../images/img-sprite.png') no-repeat -6px -41px;
		background-size: 400px;
	}

	.ltpwrl_social_icons ul li a.google:hover {
		background: url('../images/img-sprite.png') no-repeat -45px -41px;
		background-size: 400px;
	}

	.ltpwrl_social_icons ul li a.twitter:hover {
		background: url('../images/img-sprite.png') no-repeat -86px -41px;
		background-size: 400px;
	}

	.ltpwrl_social_icons ul li a.facebook:hover {
		background: url('../images/img-sprite.png') no-repeat -125px -41px;
		background-size: 400px;
	}

	.view-second .ltpwrl_social_icons1 {
		padding-bottom: 0.1em;
	}

	.view-second p {
		margin: 0.3em 0 0;
		line-height: 19px;
		font-size: 13px;
	}

	.view-second .content {
		padding: 1em 1em !important;
	}

	.footer-right-ltpwr img {
		width: 70%;
	}

	.contact-left-agile {
		width: 100%;
		float: left;
		margin-bottom: 30px;
	}

	.contact-right-ltpwr {
		width: 100%;
		float: left;
	}

	.contact-left-agile h4 {
		font-size: 17px;
	}
}

@media screen and (max-width: 497px) {
	.tips .gallery-grid {
		float: left;
		width: calc(100% - 1em);
	}

	.games .gallery-grid {
		float: left;
		width: calc(100% - 1em);
	}
}

@media screen and (max-width:384px) {

	.view h4 {
		font-size: 1.7em;
	}

	.services-bottom-ltpwr-agileits h3 {
		font-size: 26px;
	}

	.about-grid-left-agileits-ltpwrlayouts ul li {
		margin-left: 9%;
	}

	.collection-left {
		width: 100%;
		margin: 0 auto;
	}

	.ltpwrl_team_grid {
		width: 80%;
		float: none;
		margin: 0 auto;
		padding: 0 15px;
	}

	.ltpwrl_social_icons ul li a {
		width: 35px;
		height: 35px;
		background: url('../images/img-sprite.png') no-repeat -7px -7px #fff;
		display: inline-block;
		border: none;
	}

	.ltpwrl_social_icons ul li a.google {
		background: url('../images/img-sprite.png') no-repeat -55px -7px #fff;
		width: 35px;
		height: 35px;
	}

	.ltpwrl_social_icons ul li a.twitter {
		background: url('../images/img-sprite.png') no-repeat -108px -7px #fff;
		width: 35px;
		height: 35px;
	}

	.ltpwrl_social_icons ul li a.facebook {
		background: url('../images/img-sprite.png') no-repeat -159px -7px #fff;
		width: 35px;
		height: 35px;
	}

	.ltpwrl_social_icons ul li a:hover {
		background: url('../images/img-sprite.png') no-repeat -7px -50px;
	}

	.ltpwrl_social_icons ul li a.google:hover {
		background: url('../images/img-sprite.png') no-repeat -55px -50px;
	}

	.ltpwrl_social_icons ul li a.twitter:hover {
		background: url('../images/img-sprite.png') no-repeat -108px -50px;
	}

	.ltpwrl_social_icons ul li a.facebook:hover {
		background: url('../images/img-sprite.png') no-repeat -159px -50px;
	}

	.view-second .ltpwrl_social_icons1 {
		padding-bottom: 1.1em;
	}

	.view-second p {
		margin: 1.3em 0 0;
		line-height: 27px;
		font-size: 14px;
	}

	[class*="small-dialog"] {
		max-width: 85%;
	}
}

@media screen and (max-width:375px) {}

@media screen and (max-width:320px) {
	.rslides img {
		height: 200px;
	}

	.callbacks_nav {
		height: 45px;
		width: 25px;
		background-size: 46px;
		top: 67%;
	}

	.service-grid-agileits {
		width: 100%;
		float: left;
	}

	.new-grid-ltpwrl,
	.new-grid-agile {
		padding: 0px 15px;
		width: 100%;
		float: left;
	}

	.services-bottom-ltpwr-agileits h3 {
		font-size: 23px;
	}

	.wthree_info p {
		font-size: 14px;
		letter-spacing: 1px;
		width: 90%;
		margin: 0 auto;
		line-height: 27px;
	}

	a.learn {
		margin-top: 30px;
	}

	.service-grid-agileits-top {
		margin-bottom: 50px;
	}

	.navbar-toggle {
		padding: 8px 8px;
	}

	.trend-ltpwrlayouts h4,
	.services-agileits-ltpwrlayouts h4 {
		font-size: 16px;
	}

	[class*="small-dialog"] {
		max-width: 96%;
	}

	.about-grid-left-agileits-ltpwrlayouts,
	.about-grid-right-ltpwr-agile {
		padding: 0px;
	}

	.about-grid-left-agileits-ltpwrlayouts ul li {
		margin-left: 0;
	}

	.collection-grid-1,
	.collection-grid-2,
	.collection-grid-3,
	.collection-grid-4,
	.collection-grid-5,
	.collection-grid-6 {
		width: 100%;
		float: left;
	}

	.collection-text img {
		margin-top: 35px;
	}

	.collection-text p {
		line-height: 24px;
		padding: 0 21px;
	}

	.view-second p {
		margin: 0.3em 0 0;
		line-height: 25px;
		font-size: 13px;
	}

	.footer-right-ltpwr img {
		width: 70%;
	}

	.events-text-ltpwr-agile h4 {
		width: 48%;
	}

	.events-left-agile-agileits-ltpwrlayouts {
		min-height: 290px;
	}

	.events-text1 p {
		padding: 145px 0px 6px 0px;
	}

	.ltpwrl_categories h3,
	.ltpwrl_archives h3,
	.ltpwragile_flickr_posts h3,
	.agileits_reply h3,
	.wthree_blog_left_grid h3,
	.newsletter h4 {
		font-size: 1.2em !important;
	}
}

.trend-grid img {
	border-radius: 10px;
}

.trend-ltpwrlayouts h4,
.right_card h4 {
	text-align: left;
	margin-top: 20px;
	margin-bottom: 0;
	line-height: 1.2;
	font-size: 16px;
}

.web_section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
}

.web_section.second_variant {
	justify-content: center;
}

.web_section.second_variant a {
	color: #18006C;
	font-weight: bold;
}

.web_section.second_variant a:before,
.web_section.second_variant a:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	height: 2px;
	background-color: #18006C;
	position: relative;
}

.web_section.second_variant a:before {
	margin-left: -100%;
	left: -14px;
}

.web_section.second_variant a:after {
	margin-right: -100%;
	right: -14px;
}

.web_section a {
	font-size: 14px;
	font-weight: normal;
	padding: 10px;
	border-radius: 20px;
}

.first_block {
	display: inline-flex;
	align-items: center;
	background-color: #fff;
	box-shadow: 0 0 20px 1px white;
	color: #DC6DFF;
	border-radius: 10px;
	border: 3px solid #DC6DFF;
}

.first_block.yellow_block {
	color: #FFCA00;
	border: 3px solid #FFCA00;
}

.first_block img {
	width: 40px;
	padding: 5px;
}

h2.title_section {
	color: #DC6DFF !important;
}

.first_block.yellow_block h2.title_section {
	color: #FFCA00 !important;
}

.title_section {
	margin-bottom: 0 !important;
	padding: 0 5px 0 5px !important;
	font-size: 16px !important;
}

.page_links {
	display: inline-flex;
	align-items: center;
	border-radius: 40px;
	width: fit-content;
	padding: 10px 30px;
	margin-right: 20px;
}

.desk_only {
	height: 50px;
	width: 50px;
}

.popular-block {
	background: rgba(110, 135, 251, 1);
	border-radius: 32px;
	padding: 15px 15px 30px 15px;
	margin-top: 80px;
}

.popular-block .trend-grid {
	background: rgba(255, 255, 255, 1);
	padding: 10px;
	border-radius: 14px;
	margin: 0 15px;
}

.right_card {
	border: 1px solid rgba(204, 204, 204, 1);
	background: linear-gradient(180deg, rgba(196, 196, 196, 0.17) 0%, rgba(196, 196, 196, 0) 100%);
	padding: 40px 10px 40px 10px;
	border-radius: 50px;
}

.navbar-toggle .icon-bar {
	width: 45px;
}

.navbar-toggle .icon-bar+.icon-bar {
	margin-top: 10px;
}

.videobg_block {
	width: 100%;
	display: inline-flex;
	justify-content: space-between;
	flex-wrap: nowrap;
}

.footer_container {
	display: flex;
	align-items: center;
}

.section_image {
	width: 70px;
	margin-bottom: 10px;
}

.img-responsive {
	border-radius: 20px;
}

.view-eighth img {
	border-radius: 20px;
}

.blog-image-ltpwrl img {
	border-radius: 20px;
}

.last_block {
	color: rgba(134, 154, 247, 1);
	padding-left: 0;
	padding-right: 20px;
}

.main_container {
	background-image: url(../images/static_bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding-bottom: 50px;
}

.trend-ltpwrlayouts {
	background: radial-gradient(50% 50% at 50% 50%, #D774FE 0%, rgba(215, 116, 254, 0) 100%);
}

.trend-ltpwrlayouts.for_main_container {
	background: linear-gradient(89.01deg, #DC6DFF 0.72%, #8461FF 97.7%);
	border-radius: 10px;
	color: var(--white_bg);
	padding: 30px;
	min-height: 343px;
}

.trend-ltpwrlayouts.with_bg {
	background: url(../images/bg-pic.png), linear-gradient(89.01deg, #DC6DFF 0.72%, #8461FF 97.7%);
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 10px;
	background-blend-mode: lighten;
}

.footer-right-ltpwr {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-direction: column;
}

.wthree_info_grid {
	text-align: left;
}

.wthree_info_grid h3 {
	text-align: left;
	font-weight: bold;
	margin-bottom: 30px;
}

.wthree_info_grid p {
	color: rgba(24, 0, 108, 1);
	line-height: 1.4;
	font-size: 18px;
}

.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right {
	position: absolute;
	cursor: pointer;
	z-index: 100;
	opacity: 1;
}

.nbs-flexisel-nav-left {
	left: 10px;
	background: url(../images/nav_to_left.png) no-repeat;
}

.nbs-flexisel-nav-right {
	right: 10px;
	background: url(../images/nav_to_right.png) no-repeat;
}

.trend-ltpwrlayouts.without_controls .nbs-flexisel-nav-left,
.trend-ltpwrlayouts.without_controls .nbs-flexisel-nav-right {
	display: none;
}

.block_with_logo {
	display: flex;
	align-items: center;
	padding-top: 40px;
	justify-content: space-between;
}

.white_logo {
	width: 120px;
}

.left_side {
	padding: 0;
}

.right_side {
	padding-right: 0;
}

.right_side .trend-grid {
	padding-right: 0;
}

@media screen and (max-width: 830px) {
	.page_links {
		margin-right: 0px;
	}
}

@media screen and (max-width: 667px) {
	.videobg_block {
		flex-wrap: wrap;
	}
}

.img-ltpwr-agile a {
	display: flex;
	height: 105px;
	align-items: center;
}

@media screen and (max-width: 992px) {
	.img-ltpwr-agile a {
		height: 80px;
	}

	.footer img {
		border-radius: 5px;
	}
}

@media screen and (max-width: 600px) {
	.img-ltpwr-agile a {
		height: 150px;
	}
}

@media screen and (max-width: 475px) {
	.img-ltpwr-agile a {
		height: 120px;
	}
}

@media screen and (max-width: 375px) {
	.img-ltpwr-agile a {
		height: 100px;
	}
}

.tips .new-grid-ltpwrl img,
.games .new_games_img {
	height: 315px;
}

.games .img-responsive .zoom-img img {
	height: 160px;
}

@media screen and (max-width:1200px) {
	.new-grid-ltpwrl img,
	.tips .new-grid-ltpwrl img,
	.games .new_games_img {
		height: 220px;
	}

	.all_games .new-grid-ltpwrl img {
		height: 150px;
	}
}

@media screen and (max-width:1000px) {
	.all_games .new-grid-ltpwrl img {
		height: 120px;
	}
}

@media screen and (max-width:992px) {
	.new-grid-ltpwrl img,
	.tips .new-grid-ltpwrl img,
	.games .new_games_img {
		height: 250px;
	}
}

@media screen and (max-width:991px) {
	.new-grid-ltpwrl img,
	.tips .new-grid-ltpwrl img,
	.games .new_games_img {
		height: 210px;
	}
}

@media screen and (max-width:990px) {
	.new-grid-ltpwrl img,
	.tips .new-grid-ltpwrl img,
	.games .new_games_img {
		height: 200px;
	}
}

@media screen and (max-width:768px) {
	.new-grid-ltpwrl img,
	.tips .new-grid-ltpwrl img,
	.games .new_games_img {
		height: 215px;
	}
}

@media screen and (max-width:755px) {
	.new-grid-ltpwrl img,
	.tips .new-grid-ltpwrl img,
	.games .new_games_img {
		height: 180px;
	}
}

@media screen and (max-width:755px) {
	.new-grid-ltpwrl img,
	.tips .new-grid-ltpwrl img,
	.games .new_games_img {
		height: 180px;
	}
}

@media screen and (max-width:729px) {
	.new-grid-ltpwrl,
	.new-grid-agile {
		width: 100%;
	}
}

@media screen and (max-width:700px) {
	.new-grid-ltpwrl img,
	.tips .new-grid-ltpwrl img,
	.games .new_games_img {
		height: 178px;
	}
}

@media screen and (max-width:668px) {
	.all_games .new-grid-ltpwrl img {
		height: 100px;
	}
}

@media screen and (max-width:569px) {
	.all_games .new-grid-ltpwrl img {
		height: auto;
	}
}

@media screen and (max-width:600px) {
	.new-grid-ltpwrl img,
	.tips .new-grid-ltpwrl img,
	.games .new_games_img {
		height: 160px;
	}
}

@media screen and (max-width:568px) {
	.games .new_games_img {
		height: auto;
	}
}

@media screen and (max-width:550px) {
	.new-grid-ltpwrl img,
	.tips .new-grid-ltpwrl img {
		height: 135px;
	}
}

@media screen and (max-width:496px) {
	.new-grid-ltpwrl img,
	.tips .new-grid-ltpwrl img {
		height: auto;
	}
}

@media screen and (max-width:1199px) {
	.mobile_none {
		display: none;
	}

	.trend-ltpwrlayouts.for_main_container {
		min-height: 190px;
	}

	.white_logo {
		width: 30%;
	}

	.trend-ltpwrlayouts.for_main_container {
		margin-left: 0;
	}

	.nbs-flexisel-nav-left,
	.nbs-flexisel-nav-right {
		top: 20% !important;
	}
}

.img-game {
	width: 60%;
}
