/*
Template: QGS
Author: AS Solutions SLLC.
Version: 1.3
*/

/*================================================
[  Table of contents  ]
================================================
==> Fonts
==> Moz Selection
==> General
==> Loading
==> Back to Top
==> WordPress Core
==> Button Core
==> Blog Sidebar
==> OWL Carousel
==> Pagination
==> Error
==> Blog
==> Header
==> Breadcrumb
==> Footer
==> Section Title
==> Marquee
==> Image Marquee
==> Tabs
==> Video Popup
==> Client
==> Fancy Box
==> pricing plan
==> Process step
==> Image Box
==> Game video Box
==> Hover Image Effect
==> FAQ
==> Custom Tab
==> Image Portfolio
==> Icon Box
==> List Check
==> Testimonial
==> Background Images
==> Contact Box
==> Custom CSS
======================================
[ End table content ]
======================================*/

/*================================================
Fonts
================================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@300&display=swap');



/*================================================
Moz Selection
================================================*/

:root {
	--primary-color: #029df6;
	--dark-color: #0c0d11;
	--secondary-color: #c9c6c6;
	--grey-color: #14141D;
	--white-color: #ffffff;
	--body-fonts: 'Fira Sans', sans-serif;
	--title-fonts: 'Fira Sans', sans-serif;
}

::-moz-selection {
	text-shadow: none;
	background: var(--primary-color);
	color: #fff;
}

::-moz-selection {
	text-shadow: none;
	background: var(--primary-color);
	color: #fff;
}

::selection {
	text-shadow: none;
	background: var(--primary-color);
	color: #fff;
}

/*================================================
General
================================================*/

body {
	background: var(--dark-color);
	font-family: var(--body-fonts);
	font-size: 1rem;
	font-style: normal;
	font-weight: normal;
	line-height: 2;
	color: var(--secondary-color);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--title-fonts);
	color: var(--white-color);
	font-style: normal;
	text-transform: uppercase;
	font-weight: 700;
	margin: 0;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
	letter-spacing: 1px;

}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}

h1 {
	font-size: 40px;
	font-style: normal;
	line-height: 48px;
}

h2 {
	font-size: 36px;
	font-style: normal;
	line-height: 44px;
}

h3 {
	font-size: 32px;
	font-style: normal;
}

h4 {
	font-size: 28px;
	font-style: normal;
	line-height: 36px;
}

h5 {
	font-size: 24px;
	font-style: normal;
	line-height: 32px;
}

h6 {
	font-size: 20px;
	font-style: normal;
	line-height: 28px;
}

/*===== HTML Tags =====*/
a,
.button {
	color: var(--primary-color);
	outline: none !important;
	transition: all 0.5s ease-in-out;
	text-decoration: none;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

a:focus,
a:hover {
	color: var(--primary-color);
	outline: none;
	text-decoration: none;
}

p {
	margin-bottom: 30px;
}

img {
	max-width: 100%;
	height: auto;
}

pre {
	background: var(--dark-color);
	padding: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

hr {
	margin: 0;
	padding: 0px;
	border-bottom: 1px solid #e0e0e0;
	border-top: 0px;
}

b,
strong {
	font-weight: 700;
}

/*===== Lists (Nested) =====*/
ol,
ul {
	padding-left: 25px;
	margin-bottom: 1em;
}

ol li {
	list-style: decimal;
}

ol ol {
	padding-left: 25px;
}

ul li {
	list-style: inherit;
}

/*===== Definition Lists =====*/
dl dd {
	margin-bottom: 15px;
}

dl dd:last-child {
	margin-bottom: 0px;
}

/*===== Table =====*/
table {
	border: 1px solid rgba(255, 255, 255, 0.1);
	width: 100%;
	margin-bottom: 30px;
}

table td,
table th {
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 8px;
	text-align: center;
}

.table {
    --bs-table-color: var(--bs-body-color);
    --bs-table-bg: #14141d;
    --bs-table-border-color: #232839;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: var(--bs-body-color);
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: var(--bs-body-color);
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: var(--bs-body-color);
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: #ffffff;
    vertical-align: top;
	border: 5px solid #232839;
}

/*===== Input Textarea =====*/
input,
input.form-control {
	background: var(--grey-color);
	border-radius: 5px;
	border: 3px solid #232939;
	color: var(--secondary-color);
	width: 100%;
	font-size: 16px;
	padding: 0 15px;
	height: 40px;
	line-height: 54px;
	outline: none;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	margin-bottom: 1rem;
}

input:focus,
input:hover,
textarea:focus,
textarea:hover,
.form-control:focus {
	border-color: var(--primary-color);
	background-color: var(--grey-color);
	outline: none;
	box-shadow: none;
	color: var(--secondary-color);
}

input[type="radio"],
input[type="checkbox"] {
	width: auto;
	height: auto;
	float: none;
	margin-right: 5px;
}

textarea {
	background: var(--grey-color);
	margin-bottom: 30px;
	border: 1px solid var(--grey-color);
	color: var(--secondary-color);
	border: 1px solid rgba(255, 255, 255, 0.1);
	width: 100%;
	float: left;
	padding: 10px 15px;
	outline: none;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	margin-bottom: 30px;
}

input::-webkit-input-placeholder,
input.form-control::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: var(--secondary-color);
}

/*===== Select =====*/
select,
select.form-control {
	border: 3px solid #232839!important;
    background-color: #14141d!important;
    color: #049df6!important;
	width: 100%;
	float: left;
	padding: 0 30px 0 15px;
	border-radius: 5px!important;
	line-height: 48px;
	outline: none;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg fill=\'%23999999\' height=\'24\' viewBox=\'0 0 24 24\' width=\'24\' xmlns=\'http://www.w3.org/2000/svg\'><path d=\'M7 10l5 5 5-5z\'/><path d=\'M0 0h24v24H0z\' fill=\'none\'/></svg>');
	background-repeat: no-repeat;
	background-position: right 16px bottom 50%;
	background-size: 20px 20px;
}

/*===== Container =====*/
.container {
	max-width: 1400px;
	position: relative;
}

section {
	padding: 90px 0;
	position: relative;
}

section.pricing-plan {
	padding-top: 1rem;
	padding-bottom: 5rem;
	position: relative;
}

.feature-none {
	color: #e22727!important;
}

.p6r {
	padding: 7rem;
}

.{
	padding-bottom: 3rem;
}

.pq-bg-dark {
	background-color: var(--dark-color);
}

.pq-bg-grey {
	background-color: var(--grey-color) !important;
}

.pq-bg-primary {
	background-color: var(--primary-color);
}

/*================================================
Loading
================================================*/
#pq-loading {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	display: flex;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background: var(--grey-color);
}

#pq-loading img {
	height: 60px;
}

/*================================================
Back to Top
================================================*/
#back-to-top .top {
	position: fixed;
	bottom: 25px;
	right: 100px;
	margin: 0px;
	color: var(--white-color);
	background: var(--primary-color);
	z-index: 999;
	font-size: 28px;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	border-radius: 5px;
}

#back-to-top .top:hover {
	background: var(--white-color);
}


#back-to-top .top i {
	color: var(--white-color);
}

#back-to-top:hover .top i {
	color: var(--dark-color);
	position: relative;
	z-index: 9;
}

/*================================================
Wordpress Core
================================================*/

/*+++++ Text meant only for screen readers +++++*/
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	white-space: nowrap;
	height: 0px;
	width: 1px;
	overflow: hidden;
}

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

/*================================================
Button Core
================================================*/

[type="button"],
[type="reset"],
[type="submit"] {
	font-family: var(--title-fonts);
	overflow: inherit;
	position: relative;
	width: auto;
	background: var(--primary-color);
	color: var(--white-color);
	text-transform: uppercase;
	font-size: 16px;
	padding: 12px 45px;
	font-weight: 700;
	line-height: 2;
	vertical-align: middle;
	border: none;
	display: inline-block;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	width: auto;
	height: auto;
	letter-spacing: 1px;

}

[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
	color: var(--dark-color);
	background: var(--white-color);
}

.vps-btn {
	font-family: var(--title-fonts);
	font-weight: 700;
	text-transform: uppercase;
	line-height: 2;
    font-size: 15px;
	position: relative;
	width: auto;
	background: var(--primary-color);
	color: var(--white-color);
	vertical-align: middle;
	display: inline-block;
	overflow: hidden;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	text-decoration: none;
	fill: var(--white-color);
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	letter-spacing: 1px;
}

.vps-btn i {
	font-size: 19px;
}

.vps-btn:hover,
.vps-btn:focus {
	color: #efefef;
    box-shadow: 0 0.0625rem 0.5625rem rgb(2 157 246);
    text-decoration: none;
}

.pq-button {
	font-family: var(--title-fonts);
	font-weight: 700;
	text-transform: uppercase;
	line-height: 2;
    padding: 10px 16px;
    font-size: 15px;
	position: relative;
	width: auto;
	background: var(--primary-color);
	color: var(--white-color);
	vertical-align: middle;
	display: inline-block;
	overflow: hidden;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	text-decoration: none;
	fill: var(--white-color);
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	letter-spacing: 1px;
}

.pq-button i {
	font-size: 19px;
}

.pq-button:hover,
.pq-button:focus {
	color: #efefef;
    box-shadow: 0 0.0625rem 0.5625rem rgb(2 157 246);
    text-decoration: none;
}

.rev-btn i {
	margin-left: 8px !important;
}

/*===== Button link =====*/

.pq-button.pq-button-link {
	background: transparent;
	color: var(--primary-color);
	padding: 0;
}

.pq-button.pq-button-link .pq-button-text:after,
.pq-button.pq-button-link .pq-button-text:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 2px;
	height: 1px;
	width: 100%;
	background: var(--primary-color);
	transition: all 0.5s ease;
}

.pq-button-trial {
    font-family: var(--title-fonts);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 2;
    padding: 10px 16px;
    font-size: 13px;
    position: relative;
    width: auto;
    background: var(--primary-color);
    color: var(--white-color);
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-decoration: none;
    fill: var(--white-color);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    letter-spacing: 1px;
}

.pq-button-trial:hover,
.pq-button-trial:focus {
	color: #efefef;
    box-shadow: 0 0.0625rem 0.5625rem rgb(2 157 246);
    text-decoration: none;
	animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
	transform: translate3d(0, 0, 0);
	perspective: 1000px;	
}

@keyframes shake {
	10%, 90% {
	  transform: translate3d(-1px, 0, 0);
	}
	20%, 80% {
	  transform: translate3d(2px, 0, 0);
	}
	30%, 50%, 70% {
	  transform: translate3d(-4px, 0, 0);
	}
	40%, 60% {
	  transform: translate3d(4px, 0, 0);
	}
  }

.pq-button.pq-button-link .pq-button-text:before {
	-webkit-transform-origin: 100% 50%;
	-moz-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
}

.pq-button.pq-button-link .pq-button-text:after {
	-webkit-transform-origin: 0 50%;
	-moz-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	transform: scaleX(0);
}

.pq-button.pq-button-link:hover .pq-button-text:before {
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: -webkit-transform .5s cubic-bezier(.86, 0, .07, 1);
	-moz-transition: -moz-transform .5s cubic-bezier(.86, 0, .07, 1);
	transition: transform .5s cubic-bezier(.86, 0, .07, 1);

}

.pq-button.pq-button-link:hover .pq-button-text:after {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transition: -webkit-transform .5s cubic-bezier(.86, 0, .07, 1) .25s;
	-moz-transition: -moz-transform .5s cubic-bezier(.86, 0, .07, 1) .25s;
	transition: transform .5s cubic-bezier(.86, 0, .07, 1) .25s;
}

/*===== Button outline =====*/
.pq-button.pq-button-outline {
	background: transparent;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
}

.pq-button.pq-button-outline:hover {
	background: transparent;
	border: 1px solid var(--white-color);
	color: var(--white-color);
}

.pq-button.pq-button-outline i {
	fill: var(--primary-color);
}

.pq-button.pq-button-outline:hover i {
	fill: var(--dark-color);
}

/*================================================
Blog Sidebar
================================================*/
.widget {
	margin-bottom: 45px;
	display: inline-block;
	width: 100%;
	position: relative;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: var(--grey-color);
}

.widget:last-child {
	margin-bottom: 0;
}

/*===== Widget Title =====*/
.widget .widget-title,
.widget.widget_block h2 {
	margin-bottom: 20px;
	font-size: 22px;
	position: relative;
	line-height: 30px;
}

/*===== SideBar - Search =====*/
.widget.widget_search {
	background: var(--dark-color);
}

.widget.widget_search .widget-title {
	display: none;
}

.widget.widget_search .wp-block-search {
	position: relative;
}

.widget.widget_search .wp-block-search label {
	display: none;
}

.wp-block-search .wp-block-search__button {
	background: transparent;
	border: none;
	padding: 0;
	position: absolute;
	text-align: center;
	color: var(--white-color) !important;
	font-size: 0px;
	line-height: 54px;
	height: 54px;
	width: 54px;
	top: 0;
	right: 0;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.wp-block-search .wp-block-search__button:before {
	content: "\e610";
	font-family: 'themify';
	font-weight: 400;
	font-size: 20px;
}

.wp-block-search .wp-block-search__button:hover {
	color: var(--primary-color) !important;
	background: transparent;
	outline: none;
}

.search-form {
	position: relative;
}

.search-form label {
	width: 100%;
	margin-bottom: 0;
}

.widget.widget_search .search-form .search-field,
.widget.widget_search .wp-block-search__input {
	background: var(--grey-color);
	border-color: rgba(255, 255, 255, 0.1);
}

.widget.widget_search .wp-block-search__input:hover,
.widget.widget_search .wp-block-search__input:focus {
	border-color: var(--primary-color);
}

.search-submit {
	background: transparent;
	border: none;
	padding: 0;
	font-size: 20px;
	position: absolute;
	text-align: center;
	color: var(--white-color) !important;
	line-height: 54px;
	height: 54px;
	width: 54px;
	top: 0;
	right: 0;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.search-submit:before {
	content: "\e610";
	font-family: 'themify';
	font-weight: 400;
}

.search-submit:hover {
	color: var(--primary-color) !important;
	background: transparent;
	outline: none;
	border: none;
}

/*===== widget-menu =====*/
.widget ul {
	padding: 0;
	margin: 0;
}

.widget ul li {
	list-style: none;
	margin: 0 0 10px 0;
}

.widget ul ul.children {
	padding-left: 25px;
}

.widget ul li a {
	padding: 0 0 0 15px;
	color: var(--secondary-color);
	position: relative;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

.widget ul li a:hover {
	color: var(--primary-color);
	text-decoration: none;
}

.widget ul.wp-block-latest-posts__list li>a:before,
.widget ul.wp-block-archives-list li>a:before,
.widget ul.wp-block-categories-list li>a:before,
.widget.widget_archive ul li>a:before,
.widget.widget_categories ul li>a:before,
.widget.widget_pages ul li>a:before,
.widget.widget_meta ul li>a:before,
.widget.widget_recent_entries ul li>a:before,
.widget.widget_nav_menu ul li>a:before,
.widget .wp-block-page-list li>a:before,
.widget .wc-block-product-categories-list li>a:before,
.widget .product-categories li.cat-item>a:before {
	position: absolute;
	content: '\f054';
	left: 0;
	font-size: 10px;
	top: 5px;
	color: inherit;
	font-family: "Font Awesome 6 Free";
	line-height: normal;
	font-weight: 900;
	color: var(--primary-color);
}

/*===== SideBar - Recent Comments =====*/
.widget.widget_recent_comments #recentcomments li.recentcomments span a,
.widget.widget_recent_comments #recentcomments--1 li.recentcomments span a {
	color: var(--secondary-color);
	font-weight: 400;
}

.widget.widget_recent_comments #recentcomments li.recentcomments a:before {
	display: none;
}

.widget.widget_recent_comments #recentcomments li.recentcomments a {
	color: var(--primary-color);
	padding-left: 0;
}

.widget.widget_recent_comments #recentcomments li.recentcomments a:hover {
	color: var(--primary-color);
	text-decoration: underline !important;
	padding-left: 0;
}

/*=====  SideBar Calendar  =====*/
.widget_calendar table caption {
	padding: 0 0 10px;
	color: var(--white-color);
}

.widget_calendar table#wp-calendar {
	width: 100%;
	text-align: center;
	margin-bottom: 0;
	margin-top: 0;
	background: var(--dark-color);
}

.widget_calendar .calendar_wrap td#today {
	background: var(--primary-color);
	color: var(--white-color);
}

.wp-calendar-table td#today {
	background: var(--primary-color);
	color: var(--white-color);
}

.widget_calendar .calendar_wrap td#today a {
	color: var(--white-color);
}

.widget_calendar .calendar_wrap table th {
	background: var(--dark-color);
	color: var(--white-color);
	font-weight: 400;
}

.widget_calendar .calendar_wrap table th,
.widget_calendar .calendar_wrap table td {
	padding: 8px;
	text-align: center;
}

.wp-block-calendar table th,
.wp-block-calendar tbody td,
.widget_calendar .calendar_wrap table th,
.widget_calendar .calendar_wrap table tbody td {
	padding: 8px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.wp-block-calendar a {
	text-decoration: none;
}

/*===== widget_categories  =====*/
.widget_categories ul>li:last-child {
	margin-bottom: 0;
}

/*=====  SideBar Categories List  =====*/
.widget_categories ul li,
.widget_archive ul li {
	font-weight: 400;
	color: var(--primary-color);
}

.widget_categories ul li a,
.widget_archive ul li a {
	font-weight: 400;
	color: var(--secondary-color);
}

/*=====  Meta - widget RSS =====*/
.widget.widget_rss ul li {
	margin-bottom: 30px;
}

.widget.widget_rss ul li:last-child {
	margin-bottom: 0;
}

.widget.widget_rss ul li a {
	padding-left: 0;
	font-size: 16px;
	color: var(--secondary-color);
	font-weight: 700;
	font-family: var(--title-fonts);
}

.widget.widget_rss ul li a:hover {
	color: var(--primary-color);
}

.widget.widget_rss ul li a:before {
	display: none;
}

.widget.widget_rss ul li cite {
	font-weight: 700;
	margin-top: 5px;
	display: inline-block;
	width: 100%;
	font-family: var(--title-fonts);
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--white-color);
}

.widget.widget_rss ul li .rss-date {
	font-size: 14px;
	color: var(--primary-color);
	line-height: 1;
	float: left;
	display: inline-block;
	width: 100%;
	margin: 5px 0;
}

/*===== widget Nav Menu =====*/
.widget.widget_nav_menu ul li,
.widget ul.menu li {
	margin-bottom: 0;
	margin-bottom: 10px;
}

.widget.widget_nav_menu ul li .sub-menu,
.widget ul.menu li .sub-menu {
	display: block !important;
	padding-left: 20px;
}

/*=====  SideBar - widget Recent Entries =====*/
.widget_recent_entries ul li .post-date {
	font-weight: 700;
	color: var(--dark-color);
}

/*===== SideBar - Tags =====*/
.widget-tag-cloud {
	margin-bottom: 0;
}

.widget-tag-cloud .tag-cloud-link {
	font-size: 14px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.1);
	margin: 0 10px 10px 0;
	display: inline-block;
	color: var(--secondary-color);
	padding: 6px 12px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
}

.widget-tag-cloud .tag-cloud-link:hover {
	border-color: var(--primary-color);
	background: var(--primary-color);
	color: var(--white-color);
}

/*===== blog sliderbar recent post =====*/
.pq-footer-recent-post {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 15px;
}

.pq-footer-recent-post:last-child {
	margin-bottom: 0;
	border: none;
	padding: 0;
}

.pq-footer-recent-post .pq-footer-recent-post-media {
	margin-right: 15px;
}

.pq-footer-recent-post .pq-footer-recent-post-media img {
	width: 80px;
	height: 80px;
}

.pq-footer-recent-post .pq-footer-recent-post-info {
	flex: 1;
	align-self: center;
}

.pq-footer-recent-post .pq-footer-recent-post-info .pq-post-date {
	color: var(--secondary-color);
	width: 100%;
	display: inline-block;
	text-transform: capitalize;
	font-size: 12px;
	line-height: 20px;
}

.pq-footer-recent-post .pq-footer-recent-post-info .pq-post-date:hover {
	color: var(--primary-color);
}

.pq-footer-recent-post .pq-footer-recent-post-info .pq-post-date i {
	margin-right: 5px;
}

.pq-footer-recent-post .pq-footer-recent-post-info h6 {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 0;
}

.pq-footer-recent-post .pq-footer-recent-post-info h6 a:hover {
	color: var(--primary-color);
}

/*===== Comments Box =====*/
.comment-respond {
	margin-top: 0;
	display: inline-block;
	width: 100%;
}

.pq-comment-area .comments-title,
.comment-respond .comment-reply-title {
	padding-top: 30px;
	position: relative;
	margin: 0;
	padding-bottom: 0;
	font-size: 22px;
	line-height: 40px;
}

.comment-respond .comment-reply-title a {
	font-weight: 400;
	color: var(--primary-color);
	font-size: 14px;
	margin-left: 30px;
}

.comment-respond .comment-reply-title a:hover {
	color: var(--primary-color);
	text-decoration: none;
}

.commentlist {
	margin: 0;
	padding: 0;
	list-style: none;
}

.commentlist .comment {
	margin-top: 15px;
	margin-bottom: 0;
	vertical-align: top;
	padding: 0;
	list-style: none;
}

.commentlist .pq-comment-info {
	padding: 30px;
	border: 1px solid var(--grey-color);
	position: relative;
	background: var(--grey-color);

}

.commentlist ol.children {
	padding-left: 60px;
}

.commentlist .pq-comment-wrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: start;
	align-items: flex-start;
}

.commentlist .pq-comment-avatar {
	padding-right: 15px;
}

.commentlist .pq-comment-avatar img {
	width: 70px;
}

.commentlist .pq-comment-box {
	position: relative;
	display: inline-block;
	width: 100%;
}

.commentlist .pq-comment-box .title {
	font-size: 20px;
	line-height: 28px;
}

.commentlist .pq-comment-box .title:hover {
	text-decoration: none;
	color: var(--primary-color);
}

.commentlist .comment-content p {
	margin: 0;
}

.commentlist .pq-comment-info .reply a {
	position: absolute;
	right: 30px;
	top: 30px;
	margin: 0;
	font-size: 14px;
	line-height: 22px;

}

.commentlist .pq-comment-info .reply a:hover {
	color: var(--primary-color);
	text-decoration: none;
}


/*================================================
Pagination
================================================*/
.pq-pagination {
	margin-top: 15px;
}

.pq-pagination .page-numbers {
	display: -ms-flexbox;
	display: flex;
	padding-left: 0;
	list-style: none;
	padding: 0;
	margin: 0;
}

.pq-pagination .page-numbers li:first-child .page-numbers {
	margin-left: 0;
}

.pq-pagination .page-numbers li .page-numbers {
	position: relative;
	display: block;
	padding: 0px 15px;
	height: 45px;
	width: 45px;
	text-align: center;
	line-height: 45px;
	margin: 0 5px;
	color: var(--secondary-color);
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.pq-pagination .page-numbers li .page-numbers:hover {
	color: var(--white-color);
	text-decoration: none;
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	z-index: 2;
}

.pq-pagination .page-numbers li .page-numbers:focus {
	box-shadow: none;
	outline: 0;
	z-index: 2;
}

.pq-pagination .page-numbers li .page-numbers:not(:disabled):not(.disabled) {
	cursor: pointer;
}

.pq-pagination .page-numbers li .page-numbers.current {
	color: var(--white-color);
	background: var(--primary-color);
	border-color: var(--primary-color);
	z-index: 1;
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-ms-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	transition: all 0.5s ease-out 0s;
}

.pq-pagination .page-numbers li .next.page-numbers,
.pq-pagination .page-numbers li .prev.page-numbers {
	width: auto;
}

/*================================================
Error
================================================*/

.pq-error-block {
	text-align: center;
}

.pq-error-image {
	margin-bottom: 45px;
}

.pq-error-image img {
	width: 50%;
}

.pq-error-image img {
	animation-duration: 5s;
	animation-iteration-count: infinite;
	animation-name: TopBottom;
	animation-timing-function: ease-in-out
}

@keyframes TopBottom {
	0% {
		transform: translate(0px, 0px)
	}

	65% {
		transform: translate(0, 30px)
	}

	100% {
		transform: translate(0px, 0px)
	}
}


/*================================================
Blog
================================================*/

.pq-blog-post {
	margin-bottom: 30px;
	background: transparent;
	display: inline-block;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.pq-blog-post .pq-post-media {
	overflow: hidden;
	margin-bottom: 0;
	position: relative;
}

.pq-blog-post .pq-post-media img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	width: 100%;
}

.pq-blog-post:hover .pq-post-media img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.pq-blog-post .pq-blog-contain {
	padding: 30px;
	display: inline-block;
	position: relative;
	width: 100%;
	background: var(--grey-color);
}

.pq-blog .owl-carousel .pq-blog-post .pq-blog-contain .pq-blog-title {
	font-size: 22px;
	line-height: 30px;
	color: var(--white-color);
}

.pq-blog-post .pq-blog-contain .pq-blog-title {
	font-size: 28px;
	line-height: 36px;
	margin: 0 0 10px;
	color: var(--white-color);
}

.pq-blog-post .pq-blog-contain p:last-child {
	margin-bottom: 0;
}

.pq-blog-post .pq-post-meta ul {
	margin: 0 0 15px;
	padding: 0;
	width: 100%;
	display: -ms-flexbox !important;
	display: flex !important;
}

.pq-blog-post .pq-post-meta ul li {
	list-style: none;
	float: left;
	display: inline-block;
	margin-right: 15px;
	align-self: center !important;
	font-family: var(--title-fonts);
	font-size: 14px;
	line-height: 22px;
	text-transform: uppercase;
	color: var(--secondary-color);
	letter-spacing: 1px;
	font-weight: 700;
}

.pq-blog-post .pq-post-meta ul li a {
	color: var(--secondary-color);
}

.pq-blog-post .pq-post-meta ul li a:hover {
	color: var(--primary-color);
}

.pq-blog-post .pq-post-meta ul li i {
	display: none;
}

.pq-blog-post .pq-post-meta ul li+li {
	position: relative;
	padding-left: 15px;
}

.pq-blog-post .pq-post-meta ul li+li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 15px;
	background: rgba(255, 255, 255, 0.2);
}

.pq-blog-post .pq-post-meta ul li:last-child {
	margin-right: 0;
}

.pq-blog-col-2 .pq-blog-post .pq-blog-contain .pq-blog-title {
	font-size: 28px;
	line-height: 36px;
}

.pq-blog-col-3 .pq-blog-post .pq-blog-contain .pq-blog-title {
	font-size: 22px;
	line-height: 30px;
}

.pq-blog.pq-blog-col-1 .pq-blog-post .pq-post-category,
.pq-blog.pq-blog-col-2 .pq-blog-post .pq-post-category,
.pq-blog.pq-blog-col-3 .pq-blog-post .pq-post-category,
.owl-carousel .pq-blog-post .pq-post-category {
	margin-top: -45px;
	margin-bottom: 15px;
}

.pq-blog.pq-blog-col-1 .pq-blog-post .pq-post-category a,
.pq-blog.pq-blog-col-2 .pq-blog-post .pq-post-category a,
.pq-blog.pq-blog-col-3 .pq-blog-post .pq-post-category a,
.owl-carousel .pq-blog-post .pq-post-category a {
	display: inline-block;
	background: var(--primary-color);
	color: var(--white-color);
	padding: 5px 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: var(--title-fonts);
	font-size: 14px;
	line-height: 22px;
	font-weight: 700;
}

.pq-post-contain ul {
	margin: 0 0 5px;
	padding: 0;
	width: 100%;
	display: -ms-flexbox !important;
	display: flex !important;
}

.pq-blog-post .pq-post-contain ul li {
	list-style: none;
	float: left;
	display: inline-block;
	margin-right: 15px;
	align-self: center !important;
	font-family: var(--title-fonts);
	font-size: 14px;
	line-height: 22px;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	font-weight: 700;

}

.pq-blog-post .pq-post-contain ul li+li {
	padding-left: 15px;
	position: relative;
}

.pq-blog-post .pq-post-contain ul li+li:before {
	content: "";
	position: absolute;
	left: -2px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 15px;
	background: var(--primary-color);
	border-radius: 100%;
}

.pq-blog-post .pq-post-contain ul li:last-child {
	margin-right: 0;
}

.pq-blog-post .pq-post-contain ul li a {
	color: var(--primary-color);
}

.pq-blog-post .pq-post-contain ul li a:hover {
	color: var(--white-color);
}

.single-post .pq-blog-post .pq-post-meta ul li i {
	display: none;
}

.pq-blog-post.pq-list {
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	background: transparent;
	padding-top: 30px;
}

.pq-blog-post.pq-list:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 30px;
	margin-bottom: 0;
}

.pq-blog-post.pq-list .pq-post-media {
	width: 250px;
	margin-right: 60px;
}

.pq-blog-post.pq-list .pq-blog-area {
	display: flex;
	align-items: center;
}

.pq-blog-post.pq-list .pq-blog-area .pq-post-meta {
	margin-right: 60px;
}

.pq-blog-post.pq-list .pq-blog-area .pq-post-meta .pq-post-date a {
	color: var(--secondary-color);
}

.pq-blog-post.pq-list .pq-blog-area .pq-post-meta .pq-post-date .pq-post-blk {
	display: block;
	color: var(--white-color);
	font-size: 64px;
	line-height: 72px;
	font-weight: 700;
	font-family: var(--title-fonts);
}

.pq-blog-post.pq-list .pq-blog-area .pq-blog-contain {
	width: 60%;
	padding: 0;
	background: transparent;
}

.pq-blog-post.pq-list .pq-blog-contain .pq-post-category a i {
	display: none;
}

.pq-blog-post.pq-list .pq-blog-area .pq-btn-container {
	margin-left: auto;
}

blockquote {
	background: var(--dark-color);
	padding: 30px;
	border-left: 5px solid var(--primary-color);
	margin-bottom: 30px;
	position: relative;
}

.pq-blog-post .pq-blog-contain blockquote:before {
	content: "\f10e";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	right: 22px;
	bottom: 10px;
	font-size: 90px;
	opacity: 0.1;
	line-height: 98px;
	color: var(--primary-color);
}

blockquote cite {
	font-family: var(--title-fonts);
	color: var(--primary-color);
	text-transform: uppercase;
	font-weight: 700;
	font-style: italic;
}

blockquote strong {
	font-family: var(--title-fonts);
	color: var(--primary-color);
	font-style: italic;
	font-weight: 700;
}

.pq-blog-post .pq-blog-contain blockquote p {
	margin-bottom: 0;
}

.pq-blog-post .pq-blog-contain p:last-child {
	margin-bottom: 0;
}

/*================================================
Header
================================================*/
.animated {
	-webkit-animation-duration: 1.25s;
	animation-duration: 1.25s;
}

.fadeInDown {
	animation-name: fadeInDown
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0)
	}

	to {
		opacity: 1;
		transform: none
	}
}

header#pq-header {
	position: relative;
	display: inline-block;
	width: 100%;
	clear: both;
	background: #0d0d119e;
	z-index: 99;
}

header#pq-header.pq-header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

/*===== Header Top Bar =====*/
header#pq-header .pq-top-header {
	background: var(--primary-color);
	padding: 0;
	font-size: 14px;
}

header#pq-header .pq-top-header .pq-header-contact.text-right ul {
	float: right;
}

header#pq-header .pq-top-header .pq-header-contact ul {
	margin: 0;
	padding: 0;
}

header#pq-header .pq-top-header .pq-header-contact ul li {
	list-style: none;
	display: inline-block;
	color: var(--white-color);
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	padding: 10px 20px;
	float: left;
}

header#pq-header .pq-top-header .pq-header-contact ul li:last-child {
	margin-right: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

header#pq-header .pq-top-header .pq-header-contact ul li i {
	margin-right: 10px;
}

header#pq-header .pq-top-header .pq-header-contact ul li a {
	color: var(--white-color);
}

header#pq-header .pq-top-header .pq-header-contact ul li a:hover {
	color: var(--white-color);
	background: transparent;
}

header#pq-header .pq-top-header .text-right .pq-header-social ul,
header#pq-header .pq-top-header .pq-header-social.text-right ul {
	float: right;
}

header#pq-header .pq-top-header .pq-header-social ul {
	margin: 0;
	padding: 0;
}

header#pq-header .pq-top-header .pq-header-social ul li {
	list-style: none;
	display: inline-block;
	float: left;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

header#pq-header .pq-top-header .pq-header-social ul li a {
	color: var(--white-color);
	padding: 10px 20px;
	display: inline-block;
}

header#pq-header .pq-top-header ul li a:hover {
	color: var(--white-color);
}

header#pq-header .pq-top-header .pq-header-social ul li:last-child {
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

header#pq-header .pq-top-header.top-style-1 .row {
	align-items: center;
}

header#pq-header .pq-top-header.top-style-1 {
	padding: 2px 45px;
}

header#pq-header .pq-top-header.top-style-1 .pq-header-social ul li {
	margin-right: 15px;
}

header#pq-header .pq-top-header.top-style-1 .pq-header-social ul li:last-child {
	margin-right: 0;
}

header#pq-header .pq-top-header.top-style-1 .pq-header-social ul li a {
	padding: 0;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 50%;
	text-align: center;
	border: 1px solid var(--white-color);
}

header#pq-header .pq-top-header.top-style-1 .pq-header-social ul li a:hover {
	background: var(--white-color);
	color: var(--dark-color);
}

header#pq-header .pq-top-header.top-style-1 ul li a:hover {
	color: var(--white-color);
	border: 1px solid var(--white-color);
}

header#pq-header .pq-top-header.top-style-1 .pq-header-social ul li {
	border-left: 0;
}

header#pq-header .pq-top-header.top-style-1 .pq-header-social ul li:last-child {
	border-right: 0;
}

header#pq-header .pq-top-header.top-style-1 .pq-header-tagline {
	color: var(--white-color);
}

header#pq-header .pq-top-header.top-style-1 .pq-header-tagline.text-right {
	text-align: right;
}

header#pq-header .pq-top-header.top-style-1 .pq-header-tagline:hover {
	color: var(--white-color);
	cursor: pointer;
}

header#pq-header .pq-top-header.top-style-2 .row {
	align-items: center;
}

header#pq-header .pq-top-header.top-style-2 {
	padding: 0 45px;
}

header#pq-header .pq-top-header.top-style-2 .pq-header-social ul li {
	margin-right: 15px;
}

header#pq-header .pq-top-header.top-style-2 .pq-header-social ul li:first-child {
	margin-right: 10px;
}

header#pq-header .pq-top-header.top-style-2 .pq-header-social ul li:last-child {
	margin-right: 0;
}

header#pq-header .pq-top-header.top-style-2 .pq-header-social ul li a {
	padding: 0;
}

header#pq-header .pq-top-header.top-style-2 .pq-header-social ul li {
	border-left: 0;
}

header#pq-header .pq-top-header.top-style-2 .pq-header-social ul li:last-child {
	border-right: 0;
}

header#pq-header .pq-top-header.top-style-2 .pq-header-contact ul li {
	padding: 10px 0;
	padding-right: 15px;
	border-left: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

header#pq-header .pq-top-header.top-style-2 .pq-header-contact ul li:last-child {
	border-right: 0;
	padding-right: 0;
}

header#pq-header .pq-top-header.top-style-2 .pq-header-contact ul li+li {
	margin-left: 15px;
}

/*===== Logo =====*/
header#pq-header .pq-bottom-header .navbar .navbar-brand {
	line-height: 80px;
}

header#pq-header .pq-bottom-header .navbar .navbar-brand img {
	height: 60px;
}

/*===== Header Navbar Bar =====*/
header#pq-header .pq-bottom-header {
	min-height: 90px;
}

header#pq-header .pq-bottom-header .navbar {
	padding: 0;
}

header#pq-header .pq-bottom-header .navbar .pq-menu-contain {
	display: inline-block;
	width: 100%;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav {
	float: right;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li {
	position: relative;
	display: inline-block;
	float: left;
	margin-right: 30px;
	color: var(--dark-color);
	line-height: 90px;
	font-weight: 700;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li:last-child {
	margin-right: 0;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li a {
	color: var(--white-color);
	font-family: var(--title-fonts);
	text-transform: uppercase;
	letter-spacing: 1px;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li a:focus,
header#pq-header .pq-bottom-header .navbar .navbar-nav li a:hover,
header#pq-header .pq-bottom-header .navbar .navbar-nav li.current-menu-item a,
header#pq-header .pq-bottom-header .navbar .navbar-nav li.current_page_item a,
header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover a,
header#pq-header .pq-bottom-header .navbar .navbar-nav li.current-menu-ancestor a {
	color: var(--primary-color);
}

/*===== Sub Menu Bar =====*/
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu {
	display: none;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover .sub-menu {
	display: block;
	background: var(--grey-color);
	position: absolute;
	top: 100%;
	left: 0;
	padding-left: 0;
	display: inline-block;
	width: 210px;
	z-index: 999;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li {
	line-height: 2;
	padding: 0;
	margin: 0;
	display: inline-block;
	width: 100%;
	color: var(--white-color);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li:last-child {
	border-bottom: 0;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li i {
	vertical-align: 0.355em;
	font-size: 12px;
	color: var(--white-color);
	opacity: 1;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a {
	line-height: 2;
	text-transform: uppercase;
	padding: 10px 15px;
	display: inline-block;
	width: 100%;
	color: var(--white-color);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a:focus,
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a:hover,
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item>a {
	background: var(--primary-color);
	color: var(--white-color);
}

/*===== Navigation Sub Menu =====*/
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li>.sub-menu {
	display: none;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
	position: absolute;
	top: 0;
	left: 100%;
	display: block;
	background: var(--dark-color);
	padding-left: 0;
	display: inline-block;
	width: 200px;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover .sub-menu li.menu-item-has-children>.pq-submenu-icon {
	opacity: 1;
	position: absolute;
	top: 12px;
	right: 15px;
	line-height: 2;
	font-size: 12px;
	color: var(--white-color);
	-moz-transform: rotate(270deg);
	-webkit-transform: rotate(270deg);
	-o-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu>li.menu-item-has-children:hover>.pq-submenu-icon {
	color: var(--white-color);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu>li.menu-item-has-children:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li.menu-item-has-children:hover>a {
	color: var(--white-color);
	transition: all 0s ease-in-out;
	transition: all 0s ease-in-out;
	-moz-transition: all 0s ease-in-out;
	-ms-transition: all 0s ease-in-out;
	-o-transition: all 0s ease-in-out;
	-webkit-transition: all 0s ease-in-out;
}

/*===== Navigation search =====*/
header#pq-header .pq-menu-search-block {
	position: relative;
	margin: 0 0 0 30px;
}

header#pq-header .pq-menu-search-block a {
	color: var(--primary-color);
	font-size: 22px;
	display: inline-block;
}

/*===== Header Default =====*/
header#pq-header.pq-header-default .pq-bottom-header.pq-header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	background: var(--dark-color);
}


/*==========*/
header#pq-header.pq-header-default .pq-btn-container {
	margin: 0 0 0 30px;
}

header#pq-header.pq-header-default .pq-toggle-btn {
	padding: 0;
	margin: 0 0 0 30px;
}

header#pq-header.pq-header-default .pq-toggle-btn a {
	position: relative;
	display: inline-block;
	padding: 0;
	font-size: 38px;
	background: var(--primary-color);
	color: #fff;
	line-height: 52px;
	width: 52px;
	height: 52px;
	text-align: center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

header#pq-header.pq-header-default .pq-shop-btn {
	margin-left: 30px;
	margin-right: 0;
}

header#pq-header.pq-header-style-1 {
	position: absolute;
	width: 100%;
}

header#pq-header.pq-header-style-1 .pq-menu-search-block,
header#pq-header.pq-header-style-2 .pq-menu-search-block {
	margin-right: 30px;
}


header#pq-header.pq-header-style-1 .pq-bottom-header.pq-header-sticky {
	position: fixed;
	top: 0px;
	left: 0;
	display: inline-block;
	width: 100%;
	z-index: 2;
	background: #0d0d11f7;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header#pq-header.pq-header-style-1,
header#pq-header.pq-header-style-2 .pq-bottom-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header#pq-header.pq-header-style-1 .pq-bottom-header,
header#pq-header.pq-header-style-2 .pq-bottom-header {
	padding: 0 45px;
}

header#pq-header.pq-header-style-2 {
	position: absolute;
	width: 100%;
}

header#pq-header.pq-header-style-2 .pq-bottom-header.pq-header-sticky {
	position: fixed;
	top: 0px;
	left: 0;
	display: inline-block;
	width: 100%;
	z-index: 2;
	background: var(--dark-color);
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

header#pq-header.pq-header-style-2 .pq-bottom-header .navbar .navbar-nav {
	float: left;
}

header#pq-header.pq-header-style-2 .pq-bottom-header .navbar .navbar-brand img {
	margin-left: -140px;
}


header#pq-header.pq-header-style-2 .navbar-expand-lg .navbar-collapse {
	flex-grow: unset;
}

header#pq-header.pq-header-style-2 .pq-bottom-header .navbar .navbar-brand {
	flex-grow: 1;
	text-align: center;
	margin: 0;
}

header#pq-header.pq-header-style-1 .pq-bottom-header .navbar .navbar-nav {
	float: unset;
	justify-content: center;
}


header#pq-header .pq-top-header .pq-header-social ul li {
	color: var(--white-color);
}

input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

/*++++++++++++++++ Header Search +++++++++++*/

.pq-menu-search-block .offcanvas {
	position: fixed;
	z-index: 1050;
	background-color: var(--dark-color) !important;
	padding: 45px;
	height: auto;
	line-height: 0;
	bottom: inherit;
	transform: translateY(-100%) !important;
	transition: all 0.5s ease;
	overflow: hidden;
}

.fade {
	transition: opacity 0.5s linear;
}

.pq-menu-search-block .offcanvas.show {
	display: block;
	transform: translateY(0%) !important;
}

.pq-menu-search-block .offcanvas .btn-close {
	opacity: 1;
	background: none;
	color: var(--white-color);
	font-size: 0;
	position: absolute;
	right: -60px;
	top: 0;
	padding: 0;
	box-shadow: none;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-weight: 400;
	margin: 6px 0;
}

.pq-menu-search-block .offcanvas .btn-close:before {
	font-size: 14px;
	content: "\e646";
	font-family: 'themify';
}

.pq-menu-search-block .offcanvas .btn-close:after {
	content: "";
	background: var(--primary-color);
	width: 40px;
	height: 40px;
	line-height: 40px;
	position: absolute;
	left: 0;
	top: 0;
	transition: all 0.5s ease;
	border-radius: 100%;
	z-index: -1;
}

.pq-menu-search-block .offcanvas .btn-close:hover:after {
	background: var(--dark-color);
}

.pq-menu-search-block .offcanvas .btn-close:hover {
	color: var(--white-color);
}

.pq-menu-search-block .offcanvas .search-form {
	margin: 0 auto;
	width: 60%;
	position: relative;
}

.pq-menu-search-block .offcanvas .search-form label{
	width: 100%;
}

.pq-menu-search-block .offcanvas .search-form .search-field {
	border: none;
	color: var(--secondary-color);
	background: var(--primary-color);
	padding-left: 30px;
	margin-bottom: 0;
}

.pq-menu-search-block .offcanvas .search-form #search-clear {
	display: none;
}

.pq-menu-search-block .offcanvas .search-form input.search-field[type="search"]::-webkit-search-decoration,
.pq-menu-search-block .offcanvas .search-form input.search-field[type="search"]::-webkit-search-cancel-button,
.pq-menu-search-block .offcanvas .search-form input.search-field[type="search"]::-webkit-search-results-button,
.pq-menu-search-block .offcanvas .search-form input.search-field[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance: none;
}

.pq-menu-search-block .offcanvas .search-form .search-field:focus {
	color: var(--primary-color);
}

.pq-menu-search-block .offcanvas .search-form .search-submit {
	background: transparent;
	color: var(--white-color) !important;
}

.pq-menu-search-block .offcanvas .search-form .search-submit:hover {
	color: var(--white-color) !important;
}

/*================================================
Breadcrumb
================================================*/
.pq-breadcrumb {
	background: var(--grey-color);
	color: var(--white-color);
	padding: 3em 0;
	position: relative;
	background-position: center center;
	background-size: cover;
}

.pq-breadcrumb nav {
	position: relative;
}

.pq-breadcrumb:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--dark-color);
	opacity: 0.1;
}

.pq-breadcrumb .pq-breadcrumb-title h1 {
    font-size: 28px;
    line-height: 25px;
}

.pq-breadcrumb-container .breadcrumb {
	background: transparent;
	padding: 0;
	margin: 0;
}

.pq-breadcrumb-container .breadcrumb li {
	list-style-type: none;
	margin-right: 15px;
	padding-left: 0;
    padding-bottom: 10px;
}

.pq-breadcrumb-container .breadcrumb li.active {
	color: var(--primary-color);
}

.pq-breadcrumb-container .breadcrumb li a {
	color: var(--white-color);
	padding: 5px;
    background: #00000073;
    border-radius: 2px;
    padding-bottom: 0.3rem;
	position: relative;
	left: 0;
	transition: left 0.3s ease;    
}

.pq-breadcrumb-container .breadcrumb li a:hover {
	color: var(--primary-color);
	left: -10px;
}

.pq-breadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
	content: "\f125";
	font-size: 12px;
	font-family: "Ionicons";
	padding-right: 15px;
	margin-top: 3px;
	color: var(--white-color);
}

.pq-breadcrumb-container .breadcrumb li.breadcrumb-item i {
	position: relative;
	margin-right: 5px;
	color: var(--primary-color);
	font-size: large;
}

.pq-breadcrumb-container .breadcrumb li.breadcrumb-item i:after {
	content: '';
	position: absolute;
	width: 30px;
	line-height: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--primary-color);
	left: -6px;
	top: -6px;
	z-index: -1;
}

/*================================================
Footer
================================================*/

.payments {
	height: 45px;
	margin-bottom: 5px;
}

footer#pq-footer:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	height: 100%;
	opacity: 1;
	background-image: url(https://static.qgshosting.com/cdn/images/backgrounds/footer-bg-img.webp);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

footer#pq-footer .widget .footer-title {
	color: var(--white-color);
	padding-bottom: 20px;
	margin-bottom: 15px;
	font-size: 24px;
	position: relative;
	line-height: 32px;
	width: 60%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

footer#pq-footer .pq-footer-bottom {
	padding-top: 60px;
	padding-bottom: 15px;
}

footer#pq-footer .widget {
	background: transparent;
	padding: 0;
	box-shadow: none;
	border: none;
	margin-bottom: 45px;
}

footer#pq-footer .widget ul.menu li {
	margin-bottom: 0px;
}

footer#pq-footer .widget ul.menu li a:before {
	position: absolute;
	content: '\f054';
	left: 0;
	font-size: 10px;
	top: 5px;
	color: inherit;
	font-family: "Font Awesome 6 Free";
	line-height: normal;
	font-weight: 900;
	color: var(--primary-color);
}

footer#pq-footer .pq-copyright-footer {
	padding: 15px 0;
	position: relative;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
    background-color: #00000099;
}

footer#pq-footer {
	background: var(--grey-color);
	display: inline-block;
	width: 100%;
	color: var(--secondary-color);
	float: left;
	position: relative;
}

footer#pq-footer .pq-footer-top {
	padding-top: 30px;
}

footer#pq-footer .pq-footer-bottom-list {
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
}

.pq-footer-items {
	display: flex;
	align-items: flex-start;
}

.pq-footer-items-icon {
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 24px;
	color: var(--primary-color);
	border-radius: 50%;
	border: 1px solid var(--primary-color);
}

footer#pq-footer .pq-footer-top .pq-footer-bottom-list .pq-footer-items .pq-footer-items-info {
	margin-left: 30px;
}

.pq-footer-items-info .pq-btn-container a {
	color: var(--white-color);
}

.widget ul li a {
    padding: 0 0 0 15px;
    color: var(--secondary-color);
    position: relative;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
a, .button {
    color: var(--primary-color);
    outline: none !important;
    transition: all 0.5s ease-in-out;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

/*================================================
Section Title
================================================*/

.pq-section-title-style-1.text-center {
	padding: 0 15em;
	margin-bottom: 60px;
}

.pq-section-title-style-1 .pq-section-main-title {
	font-size: 40px;
	line-height: 60px;
	z-index: 9;
	color: var(--white-color);
	padding: 0;
	margin: 0 0;
	position: relative;
	display: block;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.pq-section-title-style-1 .pq-section-description {
	margin-top: 5px;
	margin-bottom: 20px;
	display: inline-block;
}

/*================================================
Marquee
================================================*/

.pq-marquee-main {
	position: relative;
	height: 60px;
	overflow: hidden;
}

.pq-marquee {
	width: 204%;
	position: absolute;
	animation: marqueeLeft 25s linear infinite;
	top: 50%;
	transform: translateY(-50%);
	height: 60px;
	overflow: hidden;
	white-space: nowrap;
}

.pq-marquee ul {
	float: left;
	width: 50%;
}

.marquee-content-items {
	padding: 0;
	margin: 0;
}

.marquee-content-items li {
	display: inline-block;
	list-style-type: none;
	font-size: 60px;
	line-height: 68px;
	position: relative;
	margin-right: 45px;
	text-transform: uppercase;
	color: var(--white-color);
	font-family: var(--title-fonts);
	letter-spacing: 1px;
	font-weight: 700;
}

@keyframes marqueeLeft {
	0% {
		left: 0;
	}

	100% {
		left: -100%;
	}
}

/*================================================
Image Marquee
================================================*/

.pq-img-marquee-main {
	position: relative;
	height: 206px;
	overflow: hidden;
}

.pq-img-marquee {
	width: 300%;
	position: absolute;
	animation: imagemarqueeLeft 40s linear infinite;
	top: 50%;
	transform: translateY(-50%);
	overflow: hidden;
	white-space: nowrap;
	display: flex;
}

.pq-imagemarqueeright .pq-img-marquee {
	animation: imagemarqueeright 40s linear infinite;
	left: inherit;
}

.pq-img-marquee ul {
	display: inline-block;
	margin-right: 10px;
}

.marquee-img-content-items {
	padding: 0;
	margin: 0;
}

.marquee-img-content-items li {
	display: inline-flex;
	margin-right: 5px;
	position: relative;
    vertical-align: middle!important;	
}

.marquee-img-content-items li img {
	width: 350px;
	border-radius: 5px;
}   

.marquee-img-content-items li:last-child {
	margin-right: 0;
}

@keyframes imagemarqueeLeft {
	0% {
		left: 0;
	}

	100% {
		left: -100%;
	}
}


@keyframes imagemarqueeright {
	0% {
		left: -100%;
	}

	100% {
		left: 0;
	}
}

/*================================================
   Tabs
================================================*/

.pq-advance-tab {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding-bottom: 2.5rem;
}

.pq-advance-tab .nav-tabs {
    background: #232839;
    border: none;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    padding: 5px;
}

.pq-advance-tab .nav-tabs .pq-tabs.nav-link {
    margin: 0;
    line-height: 2;
    display: inline-block;
    font-family: var(--title-fonts);
    color: var(--white-color);
    background: #14141d;
    padding: 10px 15px;
    text-align: center;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pq-advance-tab .nav-tabs .pq-tabs.nav-link:last-child {
	margin-right: 0;
}

.pq-advance-tab .nav-tabs .pq-tabs.nav-link.active {
	background: #049df654;
	color: var(--white-color);
}

.pg-promo.active {
    background: var(--white-color)!important;
    color: var(--primary-color)!important;
}

.pq-advance-tab .tab-content {
	margin: 45px 0 0;
	text-align: left;
}

.tab-content {
	text-align: center!important;
}

.pd1rem {
	padding: 1rem;
}

/*================================================
Video Popup
================================================*/

.video-border {
	border: 5px solid #029df6;
	box-shadow: 0 0.0625rem 0.5625rem rgb(2 157 246);
}

.video-desc {
	background: #00000066;
    padding: 1rem;
}

.video-popup {
	position: relative;
}

.pq-popup-video-block.pq-popup-style-1 .pq-video-icon a {
	margin: auto;
	text-decoration: none;
	color: var(--white-color);
	font-size: 22px;
	width: 65px;
	height: 65px;
	line-height: 65px;
	text-align: center;
	display: inline-block;
	background-color: var(--primary-color);
	border-radius: 100%;
	transition: 0.5s ease-in-out;
}

.pq-popup-video-block.pq-popup-style-1 .pq-video-icon a:hover {
	background: var(--white-color);
	color: var(--primary-color);
}

.pq-popup-video-block.pq-popup-style-1 {
	position: relative;
	text-align: center;
}

.pq-popup-video-block.pq-popup-style-1 .pq-video-icon {
	display: inline-block;
	position: relative;
}

.pq-video-img {
	position: relative;
}

.pq-video-img img {
	position: relative;
}

.pq-video-img .pq-popup-video-block.pq-popup-style-1 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.connection .pq-popup-video-block.pq-popup-style-1 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.mfp-wrap .mfp-close {
	padding: 0;
	top: -50px;
	right: 0;
	font-size: 26px;
	opacity: 1;
	height: 50px;
	width: 50px;
	line-height: 50px;
	text-align: center;
	color: var(--white-color);
	background-color: var(--primary-color);
	position: absolute;
	letter-spacing: 0;
	font-weight: 400;
}

.mfp-figure .mfp-close {
	top: -10px;
}

.mfp-wrap .mfp-close:hover {
	background: var(--primary-color);
}

.mfp-wrap .mfp-close:focus {
	outline: none;
}

/*================================================
Client
================================================*/
.pq-client-box.pq-client-style-1 .pq-client-img {
	position: relative;
	display: block;
	width: auto;
	margin: 0 auto;
	-webkit-transition: -webkit-transform .3s ease;
	-moz-transition: -moz-transform .3s ease;
	transition: transform .3s ease;
	opacity: 0.8;
}

.pq-client-box.pq-client-style-1 a:hover .pq-client-img {
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	transform: translateY(100%)
}

.pq-client-box.pq-client-style-1 a:hover .pq-client-hover-img {
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

.pq-client-box.pq-client-style-1 .pq-client-hover-img {
	position: absolute;
	top: 0;
	left: 50%;
	width: auto;
	-webkit-transform: translate(-50%, -100%);
	-moz-transform: translate(-50%, -100%);
	transform: translate(-50%, -100%);
	-webkit-transition: -webkit-transform .3s ease;
	-moz-transition: -moz-transform .3s ease;
	transition: transform .3s ease
}


/*--------- grid --------------- */

.pq-client-box.pq-client-style-1 {
	display: block;
	overflow: hidden;
	position: relative;
}

/*================================================
Fancy Box
================================================*/

.pq-fancy-box.pq-style-1 {
	padding: 45px 30px;
	transition: all 0.5s ease;
	background: var(--grey-color);
	overflow: hidden;
	position: relative;
	border-radius: 3px;
	min-height: 340px;
}

.pq-fancy-box.pq-style-1 .pq-fancy-box-bg {
	position: absolute;
	left: 25%;
	top: 25%;
	width: 60%;
	height: 100%;
	opacity: 1;
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.pq-fancy-box.pq-style-1 .pq-fancy-box-bg img {
	width: 70%;
	display: inherit;
	margin: 0 auto;
	text-align: center;
	margin-top: 45px;
}

.pq-fancy-box.pq-style-1 .pq-fancy-box-bg:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	background: var(--grey-color);
	opacity: 0.5;
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}


.pq-fancy-box.pq-style-1 .pq-fancy-box-info {
	position: relative;
}

.pq-fancy-box.pq-style-1:hover,
.pq-active .pq-fancy-box.pq-style-1 {
	background: var(--grey-color);
}


.pq-fancy-box.pq-style-1 .pq-fancy-box-title {
	color: var(--white-color);
	margin-bottom: 5px;
	transition: all 0s ease-in-out;
	-webkit-transition: all 0s ease-in-out;
}

.pq-fancy-box.pq-style-1 .pq-fancybox-description {
	margin-bottom: 15px;
	color: var(--white-color);
	transition: all 0s ease-in-out;
	-webkit-transition: all 0s ease-in-out;
}

/*================================================
Pricing plan
================================================*/

.pg-curr {
	font-size: 22px;
}

.pq-tabs {
  position: relative;
  padding-top: 20px;
  text-align: center;
}

.pg-promo {
  position: absolute;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 1;
}

.pq-tabs.nav-item.nav-link.btn-price.pg-promo.active {
	color: var(--primary-color)!important;
    background-color: var(--white-color)!important;
}

.pq-pricing-plan.pq-style-1 {
	padding: 25px;
	background: var(--grey-color);
    border: 5px solid #232839;
}

.pq-pricing-plan.pq-style-1 .pq-pricebox-detail {
	padding-top: 1rem;
}

.pq-pricing-plan.pq-style-1 .pq-price-media i {
	font-size: 64px;
	line-height: 72px;
	color: var(--primary-color);
}

.pq-pricing-plan.pq-style-1 .pq-price-content {
	text-align: center;
}

.disk-icon {
	font-size: inherit!important;
}

.popular {
	border: 5px solid #049df6!important;
}

.popular-modded {
	border: 5px solid #ff5c5c!important;
}

.popular-text {
	background-color: #049df6;
    color: white;
    font-weight: 600;
    position: absolute;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 0.9rem;
}

.popular-modded-text {
	background-color: #ff5c5c;
    color: white;
    font-weight: 600;
    position: absolute;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 1.5rem;
}

.product-on-week {
	border: 5px solid #049df6!important;
}

.product-on-week-text {
	background-color: #049df6;
    color: white;
    font-weight: 600;
    position: absolute;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 1.5rem;
}

.resources {
	border-bottom: 1px solid rgb(255, 255, 255, 0.2);
}

.pq-pricing-plan.pq-style-1 .pq-list-info {
	margin: 0;
	padding: 0.5rem 0;
}

.pq-pricing-plan.pq-style-1 .pq-list-info li {
	list-style: none;
	display: flex;
	align-items: center;
}

.pq-pricing-plan.pq-style-1 .pq-list-info li:last-child {
	margin-bottom: 0;
}

.pq-pricing-plan.pq-style-1 .pq-list-info li i {
	padding-right: 0.7rem;
	display: inline-block;
	font-size: 24px;
	line-height: 32px;
	color: var(--primary-color);
}

.pq-pricing-plan.pq-style-1 .price {
	font-size: 48px;
	line-height: 56px;
	display: inline-block;
	color: var(--white-color);
	padding-top: 30px;
}

.pq-pricing-plan.pq-style-1 .price .pq-price span {
	font-size: 20px;
	line-height: 28px;

}

.pq-pricing-plan.pq-style-1 .price .pq-price-sign {
	font-size: 28px;
	line-height: 36px;
}

.pq-pricing-plan.pq-style-1 .price span.pq-price-sign {
	position: relative;
	top: -20px;
}

.pq-pricing-plan.pq-style-1 .price span.price-month {
	font-size: 16px;
	letter-spacing: 1px;
}

.pq-scale {
	transition: transform .2s;
}

.pq-scale:hover {
	transform: scale(1.03);
}

/*================================================
Process Step
================================================*/

.pq-process-step.pq-process-1 {
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: 100px;
}

.pq-process-step.pq-process-1.left .pq-process-img {
	margin-right: 90px;
}

.pq-process-step.pq-process-1.left .pq-process-info,
.pq-process-step.pq-process-1.right .pq-process-info {
	width: 70%;
}

.pq-process-step.pq-process-1 .pq-before-img {
	position: absolute;
	left: 50%;
	opacity: 0.2;
	z-index: 1;
}

.pq-process-step.pq-process-1.left .pq-before-img {
	transform: translate(-50%, -10px);
	top: 65%;
}

.pq-process-step.pq-process-1.right .pq-before-img {
	transform: translate(-50%, -10px) rotateY(180deg);
	top: 68%;
}

.pq-process-step.pq-process-1 .pq-process-img {
	z-index: 2;
}

.pq-process-step.pq-process-1 .pq-process-title {
	margin-bottom: 15px;
}

.pq-process-description {
	margin-bottom: 0;
}

.before-img-none.pq-process-step.pq-process-1.left .pq-before-img {
	display: none;
}

.pq-reverse-process.pq-process-step.pq-process-1.left {
	flex-direction: row-reverse;
}

.pq-reverse-process.pq-process-step.pq-process-1.left .pq-process-img {
	margin-left: 90px;
	margin-right: 0;
}

.pq-reverse-process.pq-process-step.pq-process-1.left .pq-before-img {
	top: 65%;
	transform: translate(-50%, -10px) rotateY(180deg);
}

/*================================================
Image Box
================================================*/

.gs-list-img {
	transition: transform .2s;
}

.gs-list-img:hover {
	transform: scale(1.05);
}

.pq-image-box.pq-style-1 {
	display: flex;
	flex-wrap: nowrap;
}

.pq-image-box.pq-style-1 .item {
	text-align: center;
}

.pq-image-box.pq-style-1 .pq-image-box-media {
	margin-bottom: 30px;
}

.pq-image-box.pq-style-1 .pq-image-box-media img {
	width: 50%;
}

.pq-image-box.pq-style-2 .pq-image-box-img {
	margin-bottom: 30px;
}

.pq-image-box.pq-style-2 .pq-image-box-title a:hover {
	color: var(--white-color);
}

.pq-image-box.pq-style-2 .pq-image-box-description {
	margin-bottom: 0;
	font-weight: 700;
	color: var(--white-color);
	font-family: var(--title-fonts);
	text-transform: uppercase;
}

.pq-image-box.pq-style-3 {
	position: relative;
}

.pq-image-box.pq-style-3 .pq-image-box-media {
	overflow: hidden;
	position: relative;
	border-radius: 5px;
}

.pq-image-box.pq-style-3 .pq-image-box-media img {
	width: 100%;
	transform: scale(1);
	transition: 0.5s ease-in-out;
}

.pq-image-box.pq-style-3:hover .pq-image-box-media img {
	transform: scale(1.1);
}

.pq-image-box.pq-style-3 .pq-image-box-info {
	position: absolute;
	left: 5px;
	bottom: 5px;
	background-color: #00000070;
    padding: 5px;
    border-radius: 5px;
}

.pq-image-box.pq-style-3 .pq-image-category {
	font-family: var(--title-fonts);
	text-transform: uppercase;
	display: inline-block;
	font-weight: 700;
	color: var(--white-color);
}

.col-20 {
	width: 20%;
}

.pq-image-box.pq-style-4 {
	background: var(--dark-color);
	transition: 0.5s ease-in-out;
}

.pq-image-box.pq-style-4 .pq-image-box-media {
	overflow: hidden;
	position: relative;
}

.pq-image-box.pq-style-4 .pq-image-box-media img {
	transform: scale(1);
	transition: 0.5s ease-in-out;
}

.pq-image-box.pq-style-4:hover .pq-image-box-media img {
	transform: scale(1.1);
}

.pq-image-box.pq-style-4 .pq-image-box-info {
	padding: 15px;
}

.pq-image-box.pq-style-4 .pq-image-category {
	font-family: var(--title-fonts);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 5px;
	display: inline-block;
	font-weight: 700;
	color: var(--primary-color);
}

.pq-image-box.pq-style-5 {
	padding: 45px 30px;
	border: 1px solid #ffffff33;
	transition: all 0.5s ease-in-out;
}

.pq-image-box.pq-style-5:hover {
	border-color: var(--primary-color);
}

.pq-image-box.pq-style-5 .pq-image-box-img {
	margin-bottom: 30px;
	text-align: center;
}

.pq-image-box.pq-style-5 .pq-image-box-img img {
	height: 86px;
}

.pq-image-box.pq-style-5 .pq-image-box-content {
	text-align: center;
}

.pq-image-box.pq-style-5 .pq-image-box-content .pq-image-box-title {
	margin-bottom: 5px;
}

.pq-image-box.pq-style-5 .pq-image-box-content .pq-image-box-description {
	margin: 0;
}

.pq-image-box.pq-style-5 .pq-image-box-content .pq-button.pq-button-flat {
	margin-top: 20px;
}

/*================================================
Game video Box
================================================*/

.pq-gaming-video-box {
	overflow: hidden;
	position: relative;
}

.pq-gaming-video-box .pq-gaming-video {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	transition: all 0.5 s ease;
}

.pq-gaming-video-box:hover .pq-gaming-video {
	opacity: 1;
	cursor: pointer;
}

.thevideo {
	width: 100%;
	height: 100%;
}

/*================================================
Hover Image Effect
================================================*/

.pq-menu-tabs {
	text-align: left;
}

.pq-menu-tabs .menu-tabs-item {
	position: relative;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pq-menu-tabs .menu-tabs-item:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pq-menu-tabs .menu-tabs-item a.menu-tabs-link {
	font-family: var(--title-fonts);
	font-size: 26px;
	line-height: 34px;
	position: relative;
	color: var(--white-color);
	padding: 30px 0;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
}

.pq-menu-tabs .menu-tabs-item a.menu-tabs-link i {
	color: var(--primary-color);
	font-size: 56px;
	line-height: 64px;
	margin-right: 30px;
}

.pq-menu-tabs .menu-tabs-item a.menu-tabs-link span {
	position: absolute;
	right: 0;
}

.pq-menu-tabs .menu-tabs-item .menu-tabs-img {
	position: absolute;
	height: 200px;
	opacity: 0;
	left: 71%;
	top: 50%;
	transform: translate3d(calc(0% - 1vw), -50%, 0) rotate3d(0, 0, 1, 0deg);
	z-index: 9;
	transition: all 0.5s ease-in-out;
}

.pq-menu-tabs .menu-tabs-item.active .menu-tabs-img {
	opacity: 1;
}

/*================================================
FAQ
================================================*/

.pq-accordion-block .pq-accordion-box {
	margin-bottom: 30px;
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pq-accordion-block .pq-accordion-box:last-child {
	margin-bottom: 0;
}

.pq-accordion-block .pq-accordion-box .pq-ad-title {
	padding: 30px 15px;
	cursor: pointer;
	transition: all 0.5s ease;
}

.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title {
	padding: 30px 15px 5px;
}

.pq-accordion-block .pq-accordion-box .pq-ad-title i {
	position: absolute;
	top: 35px;
	right: 15px;
	opacity: 1;
	color: var(--white-color);
}

.pq-accordion-block .pq-accordion-box .pq-ad-title i.inactive {
	opacity: 0;
}

.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title i {
	position: absolute;
	top: 35px;
	right: 15px;
	opacity: 0;
	color: var(--white-color);
}

.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title i.inactive {
	opacity: 1;
}

.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title i {
	color: var(--white-color);
}

.pq-accordion-block .pq-accordion-box .pq-accordion-details {
	padding: 0 15px 30px;

}

.pq-accordion-block .pq-accordion-box .pq-accordion-details p {
	margin-bottom: 0;
}

.pq-accordion-block .pq-accordion-box .pq-ad-title .ad-title-text {
	font-size: 20px;
	line-height: 28px;
}

.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title .ad-title-text {
	color: var(--white-color);
}

/*=================================================
Custom Tab
===================================================*/

.pq-tabs-1 .nav-tabs {
	border: none;
	display: flex;
	background: var(--grey-color);
}

.pq-tabs-1 .nav-tabs .nav-item {
	background: var(--grey-color);
	color: var(--secondary-color);
	padding: 12px 30px;
	border: none;
	position: relative;
	font-family: var(--title-fonts);
	font-size: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
	line-height: 2;
	font-weight: 700;
	transition: none;
}

.pq-tabs-1 .nav-tabs .nav-item:last-child {
	margin-right: 0;
}

.pq-tabs-1 .nav-tabs .nav-item i {
	font-size: 62px;
	line-height: 70px;
	display: inline-block;
}

.pq-tabs-1 .nav-tabs .nav-item span {
	display: inline-block;
	width: 100%;
	font-size: 24px;
	line-height: 2;
	letter-spacing: 1px;
	font-weight: 700;
	color: var(--secondary-color);
	font-family: var(--title-fonts);
}

.pq-tabs-1 .nav-tabs .nav-item.active {
	color: var(--white-color);
}

.pq-tabs-1 .nav-tabs .nav-item.active span {
	color: var(--white-color);
}

.pq-tabs-1 .tab-content {
	margin-top: 60px;
}

.pq-tabs-1 .tab-content img.pq-full-width {
	width: 100%;
	height: auto;
	border-radius: 3px;
}

.pq-tabs-1 .tab-content .pq-tab-info {
	padding-left: 45px;
}

.pq-tabs-1 .tab-content .pq-tab-info h2 {
	font-size: 40px;
	line-height: 48px;
	margin-bottom: 15px;
}

.pq-tabs-1 .tab-content .pq-tab-info ul {
	margin: 0;
	padding: 0;
}

.pq-tabs-1 .tab-content .pq-tab-info ul li {
	list-style: none;
	margin: 0;
	padding: 0 0 15px;
	font-size: 20px;
	text-transform: uppercase;
	font-family: var(--title-fonts);
	color: var(--white-color);
	letter-spacing: 1px;
	font-weight: 700;
}

.pq-tabs-1 .tab-content .pq-tab-info ul li .pq-number {
	width: 30px;
	height: 30px;
	line-height: 30px;
	display: inline-block;
	text-align: center;
	background: var(--primary-color);
	color: var(--white-color);
	border-radius: 50%;
	margin-right: 15px;
}

.pq-tabs-1 .tab-content .pq-tab-info .pq-button-block {
	margin: 30px 0 0;
}

.pq-tabs-border .pq-tabs-1 .nav-tabs {
	border-bottom: 1px solid var(--grey-color);
}

.pq-tabs-border .pq-tabs-1 .nav-tabs .nav-item {
	display: inline-flex;
	align-items: center;
	background: transparent;
	border-radius: 5px;
	color: var(--dark-color);
}

.pq-tabs-border .pq-tabs-1 .nav-tabs .nav-item i {
	font-size: 44px;
	line-height: 52px;
}

.pq-tabs-border .pq-tabs-1 .nav-tabs .nav-item span {
	text-align: left;
	margin-left: 15px;
}

.pq-tabs-border .pq-tabs-1 .nav-tabs .nav-item.active,
.pq-tabs-border .pq-tabs-1 .nav-tabs .nav-item.active span {
	color: var(--dark-color);
}

.pq-tabs-border .pq-tabs-1 .nav-tabs .nav-item.active {
	color: var(--primary-color);
}

.pq-tabs-border .pq-tabs-1 .nav-tabs .nav-item:after {
	display: none;
}

/*================================================
Image Portfolio
================================================*/

.pq-background-img {
	min-height: 650px;
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	transition: opacity .5s .2s;
	opacity: 1;
}

.pq-background-img-inner {
	overflow: hidden;
	display: flex;
	width: 100%;
}

.pq-background-img-bg {
	display: block;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: 100%;
}

.pq-background-img-item {
	position: relative;
	display: flex;
	align-items: center;
	padding-top: 0;
	z-index: 5;
	flex: 1;
	height: 100%;
	transition: 0.5s;
	cursor: pointer;
}

.pq-background-img .pq-background-img-item.active {
	flex: 3;
	transition: 0.5s;
}

.pq-background-link {
	padding: 0;
	position: absolute;
	left: 40px;
	top: 40px;
	opacity: 0;
	transition: 0.5 ease;
}

.pq-background-img-item.active .pq-background-link {
	opacity: 1;
}

.pq-background-img-number {
	font-size: 36px;
	line-height: 44px;
	font-weight: 700;
	font-family: var(--title-fonts);
	color: var(--white-color);
}

.pq-background-link a.pq-background-img-number:hover {
	color: var(--white-color);
}

.pq-background-img-info {
	position: absolute;
	left: 40px;
	bottom: -190px;
	right: 0;
	display: block;
	opacity: 0;
	transition: all 0.8s ease;
	cursor: text;
}

.pq-background-img .pq-background-img-item.active .pq-background-img-info {
	opacity: 1;
	left: 40px;
	bottom: 35px;
	width: 50%;
	transition: all 0.8s ease;
}

.pq-background-img-title {
	margin-bottom: 0;
	letter-spacing: 1px;
	font-weight: 700;
	font-family: var(--title-fonts);
	text-transform: uppercase;
	color: var(--white-color);
	transition: all 0.5s ease;
}


/*================================================
Icon Box
================================================*/

.pq-icon-box.pq-style-1 {
	display: flex;
	align-items: center;
}

.gaming .pq-icon-box.pq-style-1 {
	width: 50%;
}

.pq-icon-box.pq-style-1 .pq-icon {
	margin-right: 15px;
}

.pq-icon-box.pq-style-1 .pq-icon i {
	font-size: 42px;
	color: var(--primary-color);
}

.no-limits .pq-icon-box.pq-style-1 .pq-icon {
	margin-right: 40px;
}

.no-limits .pq-icon-box.pq-style-1 .pq-icon i {
	font-size: 56px;
	line-height: 1;
	color: var(--primary-color);
}

.pq-icon-box.pq-style-2 {
	display: flex;
	padding: 0 5px 15px 0;
	margin: 0 0 30px 0;
	border-bottom: 1px solid #ffffff33;
}

.pq-icon-box.pq-style-2:last-child {
	padding: 0 30px 0 0;
	margin: 0 0 0 0;
	border-bottom: none;
}

.pq-icon-box.pq-style-2 .pq-icon {
	margin-right: 30px;
}

.pq-icon-box.pq-style-2 .pq-icon i {
	font-size: 90px;
	line-height: 1;
	display: inline-block;
	color: var(--primary-color);
}

.pq-icon-box.pq-style-2 .pq-icon-box-content .pq-icon-box-description {
	margin-bottom: 0;
}

.pq-icon-box.pq-style-3 {
	padding: 30px 45px;
	border-right: 2px solid #ffffff33;
}

.pq-icon-box.pq-style-3 .pq-icon {
	margin-bottom: 15px;
	text-align: center;
}

.pq-icon-box.pq-style-3 .pq-icon i {
	font-size: 72px;
	line-height: 1;
	display: inline-block;
	color: var(--primary-color);
}

.pq-icon-box.pq-style-3 .pq-icon-box-content {
	text-align: center;
}

.pq-icon-box.pq-style-3 .pq-icon-box-content .pq-icon-box-title {
	margin-bottom: 10px;
}

.pq-icon-box.pq-style-3 .pq-icon-box-content .pq-icon-box-description {
	margin-bottom: 0;
}

.benefits .pq-icon-box.pq-style-3 .pq-icon i {
	font-size: 90px;
}

.benefits .pq-icon-box.pq-style-3 .pq-icon {
	margin-bottom: 20px;
}

.benefits .pq-icon-box.pq-style-3 .pq-icon-box-content .pq-icon-box-title a:hover {
	color: var(--white-color);
}

.pq-icon-box.pq-style-4 .pq-icon {
	margin-bottom: 15px;
	text-align: center;
}

.pq-icon-box.pq-style-4 .pq-icon i {
	font-size: 68px;
	line-height: 1;
	color: var(--primary-color);
}

.pq-icon-box.pq-style-4 .pq-icon-box-content {
	text-align: center;
}

.pq-icon-box.pq-style-4 .pq-icon-box-content .pq-icon-box-title {
	margin-bottom: 20px;
}

.contact .pq-icon-box.pq-style-4 {
	padding: 45px 30px;
	background-color: var(--dark-color);
}

.contact .pq-icon-box.pq-style-4 .pq-icon-box-content .pq-icon-box-title {
	margin-bottom: 10px;
}

.contact .pq-icon-box.pq-style-4 .pq-icon-box-content .pq-icon-box-description {
	margin-bottom: 0;
}

.pq-icon-box.pq-style-5 {
	text-align: center;
}

.pq-icon-box.pq-style-5 .pq-icon {
	margin-bottom: 15px;
}

.pq-icon-box.pq-style-5 .pq-icon i {
	font-size: 90px;
	line-height: 1;
	color: var(--primary-color);
}

.pq-icon-box.pq-style-5 .pq-icon-box-content .pq-icon-box-title {
	margin-bottom: 15px;
}

.pq-icon-box.pq-style-5 .pq-icon-box-content .pq-icon-box-description {
	color: #FFFFFF;
	font-family: var(--title-fonts);
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0;
}

.pq-icon-box.pq-style-6 .pq-icon-box-wrapper {
	display: flex;
	align-items: center;
}

.pq-icon-box.pq-style-6 .pq-icon-box-wrapper .pq-icon {
	margin-right: 20px;
}

.pq-icon-box.pq-style-6 .pq-icon-box-wrapper .pq-icon i {
	font-size: 60px;
	line-height: 1;
	color: var(--primary-color);
}

.pq-icon-box.pq-style-6 .pq-icon-box-wrapper .pq-icon-box-title {
	font-size: 22px;
	line-height: 32px;
}

.pq-icon-box.pq-style-6 .pq-icon-box-description {
	margin: 10px 0 45px 0;
}

.pq-icon-box.pq-style-7 {
	display: flex;
}

.pq-icon-box.pq-style-7 .pq-icon {
	margin-right: 45px;
}

.pq-icon-box.pq-style-7 .pq-icon i {
	font-size: 68px;
	line-height: 1;
	color: var(--white-color);
}

.pq-icon-box.pq-style-7 .pq-icon-box-content .pq-icon-box-title {
	margin-bottom: 20px;
}

.pq-icon-box.pq-style-7 .pq-icon-box-content .pq-icon-box-description {
	margin: 0;
}


/*================================================
List Check
================================================*/

.pq-list-check {
	margin: 0;
	padding: 0;
}

.pq-list-check li {
	list-style: none;
	margin-top: 5px;
	padding-bottom: 5px;
	display: flex;
	align-items: center;
}

.pq-list-check li:first-child {
	margin-top: 0;
}

.pq-list-check li:last-child {
	padding-bottom: 0;
}

.pq-list-check li i {
	font-size: 20px;
	color: var(--primary-color);
	margin-right: 10px;
}

/*=================================================
Testimonial
===================================================*/

.pq-testimonial-box.pq-style-1 {
	background: var(--grey-color);
	padding: 45px;
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-media {
	display: flex;
	position: relative;
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-media .pq-testimonial-img img {
	width: 80px;
	height: 80px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-media .pq-testimonial-img {
	margin-right: 15px;
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-media .pq-testimonial-meta {
	align-self: center;
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-media .pq-testimonial-meta span {
	color: var(--primary-color);
	font-weight: 700;
	font-family: var(--title-fonts);
	text-transform: uppercase;

}

.pq-testimonial-box.pq-style-1 .pq-testimonial-media .pq-testimonial-icon i {
	color: transparent;
	font-size: 36px;
	line-height: 44px;
	-webkit-text-stroke: 1px var(--primary-color);
	position: absolute;
	right: 0;
	top: 10px;
}

/*================================================
Video Background Images
================================================*/

.sevendtd-video {
	background-image: url(https://img.youtube.com/vi/lmPHz0dwBj4/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.arksa-video {
	background-image: url(https://img.youtube.com/vi/0gLODoXanog/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.arkse-video {
	background-image: url(https://img.youtube.com/vi/5fIAPcVdZO8/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.fivem-video {
	background-image: url(https://img.youtube.com/vi/cNr4pE049mk/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.conan-video {
	background-image: url(https://img.youtube.com/vi/73oUz5psOGE/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.corekeeper-video {
	background-image: url(https://img.youtube.com/vi/9JUQYpWrbDY/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.cs2-video {
	background-image: url(https://img.youtube.com/vi/c80dVYcL69E/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.css-video {
	background-image: url(https://img.youtube.com/vi/Ai9aiVQHwFM/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.dayz-video {
	background-image: url(https://img.youtube.com/vi/fJmMbl3bqE0/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.enshrouded-video {
	background-image: url(https://img.youtube.com/vi/BSSIH5L2liI/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.factorio-video {
	background-image: url(https://img.youtube.com/vi/J8SBp4SyvLc/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.ecogame-video {
	background-image: url(https://img.youtube.com/vi/ud_refZuQoA/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.thefront-video {
	background-image: url(https://img.youtube.com/vi/Ep0yC9tHILs/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.halflife-video {
	background-image: url(https://img.youtube.com/vi/pmo5B6yE2Ok/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.hytale-video {
	background-image: url(https://img.youtube.com/vi/o77MzDQT1cg/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.l4d2-video {
	background-image: url(https://img.youtube.com/vi/E7zoQKaMX5o/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.minecraft-video {
	background-image: url(https://img.youtube.com/vi/jLuJbSjo7NA/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.mordhau-video {
	background-image: url(https://img.youtube.com/vi/9GrDWms1nZA/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.gtasa-video {
	background-image: url(https://img.youtube.com/vi/nyk1xKCVFZo/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.rust-video {
	background-image: url(https://img.youtube.com/vi/LGcECozNXEw/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.satisfactory-video {
	background-image: url(https://img.youtube.com/vi/QvWaV4qshZQ/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.scp-video {
	background-image: url(https://img.youtube.com/vi/Mw1YSDRjdK8/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.starbound-video {
	background-image: url(https://img.youtube.com/vi/cJUh9gjEuOs/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.sven-video {
	background-image: url(https://img.youtube.com/vi/3UqXjgkZbEQ/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.terraria-video {
	background-image: url(https://img.youtube.com/vi/6nUvWkD8rAE/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.theforest-video {
	background-image: url(https://img.youtube.com/vi/8KXfxHujIAA/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.unturned-video {
	background-image: url(https://img.youtube.com/vi/CXs71qEvLNU/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.valheim-video {
	background-image: url(https://img.youtube.com/vi/XSVbXgBJIuI/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.vintagestory-video {
	background-image: url(https://img.youtube.com/vi/NJjifFq1NGY/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.vrising-video {
	background-image: url(https://img.youtube.com/vi/rb_IiRt9Als/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.pzomboid-video {
	background-image: url(https://img.youtube.com/vi/nPbsDmzZ3Oc/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

.palworld-video {
	background-image: url(https://img.youtube.com/vi/IltMIJeK-1M/maxresdefault.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;	
    padding: 160px 0;
    position: relative;
}

/*================================================
Video Player
================================================*/

.mfp-bg{
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1042;
    overflow:hidden;
    position:fixed;
    background:#0b0b0b;
    opacity:.8;
}
.mfp-wrap{
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1043;
    position:fixed;
    outline:none !important;
    -webkit-backface-visibility:hidden;
}
.mfp-container{
    text-align:center;
    position:absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
    padding:0 8px;
    box-sizing:border-box;
}
.mfp-container:before{
    content:'';
    display:inline-block;
    height:100%;
    vertical-align:middle;
}
.mfp-align-top .mfp-container:before{
    display:none;
}
.mfp-content{
    position:relative;
    display:inline-block;
    vertical-align:middle;
    margin:0 auto;
    text-align:left;
    z-index:1045;
}
.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{
    width:100%;
    cursor:auto;
}
.mfp-ajax-cur{
    cursor:progress;
}
.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{
    cursor:-moz-zoom-out;
    cursor:-webkit-zoom-out;
    cursor:zoom-out;
}
.mfp-zoom{
    cursor:pointer;
    cursor:-webkit-zoom-in;
    cursor:-moz-zoom-in;
    cursor:zoom-in;
}
.mfp-auto-cursor .mfp-content{
    cursor:auto;
}
.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{
    -webkit-user-select:none;
    -moz-user-select:none;
    user-select:none;
}
.mfp-loading.mfp-figure{
    display:none;
}
.mfp-hide{
    display:none !important;
}
.mfp-preloader{
    color:#CCC;
    position:absolute;
    top:50%;
    width:auto;
    text-align:center;
    margin-top:-0.8em;
    left:8px;
    right:8px;
    z-index:1044;
}
.mfp-preloader a{
    color:#CCC;
}
.mfp-preloader a:hover{
    color:#FFF;
}
.mfp-s-ready .mfp-preloader{
    display:none;
}
.mfp-s-error .mfp-content{
    display:none;
}
button.mfp-close,button.mfp-arrow{
    overflow:visible;
    cursor:pointer;
    background:transparent;
    border:0;
    -webkit-appearance:none;
    display:block;
    outline:0;
    padding:0;
    z-index:1046;
    box-shadow:none;
    touch-action:manipulation;
}
button::-moz-focus-inner{
    padding:0;
    border:0;
}
.mfp-close{
    width:44px;
    height:44px;
    line-height:44px;
    position:absolute;
    right:0;
    top:0;
    text-decoration:none;
    text-align:center;
    opacity:.65;
    padding:0 0 18px 10px;
    color:#FFF;
    font-style:normal;
    font-size:28px;
    font-family:Arial,Baskerville,monospace;
}
.mfp-close:hover,.mfp-close:focus{
    opacity:1;
}
.mfp-close:active{
    top:1px;
}
.mfp-close-btn-in .mfp-close{
    color:#333;
}
.mfp-counter{
    position:absolute;
    top:0;
    right:0;
    color:#CCC;
    font-size:12px;
    line-height:18px;
    white-space:nowrap;
}
.mfp-arrow{
    position:absolute;
    opacity:.65;
    margin:0;
    top:50%;
    margin-top:-55px;
    padding:0;
    width:90px;
    height:110px;
    -webkit-tap-highlight-color:transparent;
}
.mfp-arrow:active{
    margin-top:-54px;
}
.mfp-arrow:hover,.mfp-arrow:focus{
    opacity:1;
}
.mfp-arrow:before,.mfp-arrow:after{
    content:'';
    display:block;
    width:0;
    height:0;
    position:absolute;
    left:0;
    top:0;
    margin-top:35px;
    margin-left:35px;
    border:medium inset transparent;
}
.mfp-arrow:after{
    border-top-width:13px;
    border-bottom-width:13px;
    top:8px;
}
.mfp-arrow:before{
    border-top-width:21px;
    border-bottom-width:21px;
    opacity:.7;
}
.mfp-arrow-left{
    left:0;
}
.mfp-arrow-left:after{
    border-right:17px solid #FFF;
    margin-left:31px;
}
.mfp-arrow-left:before{
    margin-left:25px;
    border-right:27px solid #3f3f3f;
}
.mfp-arrow-right{
    right:0;
}
.mfp-arrow-right:after{
    border-left:17px solid #FFF;
    margin-left:39px;
}
.mfp-arrow-right:before{
    border-left:27px solid #3f3f3f;
}
.mfp-iframe-holder{
    padding-top:40px;
    padding-bottom:40px;
}
.mfp-iframe-holder .mfp-content{
    line-height:0;
    width:100%;
    max-width:900px;
    border: 5px solid #049df6;    
}
.mfp-iframe-holder .mfp-close{
    top:-60px
}
.mfp-iframe-scaler{
    width:100%;
    height:0;
    overflow:hidden;
    padding-top:56.25%;
}
.mfp-iframe-scaler iframe{
    position:absolute;
    display:block;
    top:0;
    left:0;
    width:100%;
    height:100%;
    box-shadow:0 0 8px rgba(0,0,0,0.6);
    background:#000;
}
img.mfp-img{
    width:auto;
    max-width:100%;
    height:auto;
    display:block;
    line-height:0;
    box-sizing:border-box;
    padding:40px 0 40px;
    margin:0 auto;
}
.mfp-figure{
    line-height:0;
}
.mfp-figure:after{
    content:'';
    position:absolute;
    left:0;
    top:40px;
    bottom:40px;
    display:block;
    right:0;
    width:auto;
    height:auto;
    z-index:-1;
    box-shadow:0 0 8px rgba(0,0,0,0.6);
    background:#444;
}
.mfp-figure small{
    color:#bdbdbd;
    display:block;
    font-size:12px;
    line-height:14px;
}
.mfp-figure figure{
    margin:0;
}
.mfp-bottom-bar{
    margin-top:-36px;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    cursor:auto;
}
.mfp-title{
    text-align:left;
    line-height:18px;
    color:#f3f3f3;
    word-wrap:break-word;
    padding-right:36px;
}
.mfp-image-holder .mfp-content{
    max-width:100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure{
    cursor:pointer;
}
@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){
    .mfp-img-mobile .mfp-image-holder{
        padding-left:0;
        padding-right:0;
    }
    .mfp-img-mobile img.mfp-img{
        padding:0;
    }
    .mfp-img-mobile .mfp-figure:after{
        top:0;
        bottom:0;
    }
    .mfp-img-mobile .mfp-figure small{
        display:inline;
        margin-left:5px;
    }
    .mfp-img-mobile .mfp-bottom-bar{
        background:rgba(0,0,0,0.6);
        bottom:0;
        margin:0;
        top:auto;
        padding:3px 5px;
        position:fixed;
        box-sizing:border-box;
    }
    .mfp-img-mobile .mfp-bottom-bar:empty{
        padding:0;
    }
    .mfp-img-mobile .mfp-counter{
        right:5px;
        top:3px;
    }
    .mfp-img-mobile .mfp-close{
        top:0;
        right:0;
        width:35px;
        height:35px;
        line-height:35px;
        background:rgba(0,0,0,0.6);
        position:fixed;
        text-align:center;
        padding:0;
    }
}
@media all and (max-width:900px){
    .mfp-arrow{
        -webkit-transform:scale(0.75);
        transform:scale(0.75);
    }
    .mfp-arrow-left{
        -webkit-transform-origin:0 0;
        transform-origin:0 0;
    }
    .mfp-arrow-right{
        -webkit-transform-origin:100%;
        transform-origin:100%;
    }
    .mfp-container{
        padding-left:6px;
        padding-right:6px;
    }
}


/*================================================
Background Images
================================================*/

.bg-space-engineers-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/space-engineers.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-space-engineers {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/space-engineers.webp);
	padding-top: 9rem!important;
}

.bg-scp-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/scp.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-scp {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/scp.webp);
	padding-top: 9rem!important;
}

.bg-satisfactory-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/satisfactory.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-satisfactory {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/satisfactory.webp);
	padding-top: 9rem!important;
}

.bg-ror2-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/risk-of-rain-2.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-ror2 {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/risk-of-rain-2.webp);
	padding-top: 9rem!important;
}

.bg-veloren-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/veloren.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-veloren {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/veloren.webp);
	padding-top: 9rem!important;
}

.bg-pzomboid-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/pzomboid.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-pzomboid {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/pzomboid.webp);
	padding-top: 9rem!important;
}

.bg-vrising-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/vrising.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-vrising {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/vrising.webp);
	padding-top: 9rem!important;
}

.bg-starbound-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/starbound.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-starbound {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/starbound.webp);
	padding-top: 9rem!important;
}

.bg-enshrouded-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/enshrouded.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-enshrouded {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/enshrouded.webp);
	padding-top: 9rem!important;
}

.bg-terraria-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/terraria.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-terraria {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/terraria.webp);
	padding-top: 9rem!important;
}

.bg-unturned-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/unturned.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-unturned {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/unturned.webp);
	padding-top: 9rem!important;
}

.bg-rust-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/rust.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-rust {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/rust.webp);
	padding-top: 9rem!important;
}

.bg-factorio-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/factorio.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-factorio {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/factorio.webp);
	padding-top: 9rem!important;
}

.bg-7dtd-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/7dtd.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-7dtd {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/7dtd.webp);
	padding-top: 9rem!important;
}

.bg-samp-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/samp.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-samp {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/samp.webp);
	padding-top: 9rem!important;
}

.bg-mtasa-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/mtasa.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-mtasa {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/mtasa.webp);
	padding-top: 9rem!important;
}

.bg-l4d2-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/l4d2.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-l4d2 {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/l4d2.webp);
	padding-top: 9rem!important;
}

.bg-mordhau-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/mordhau.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-mordhau {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/mordhau.webp);
	padding-top: 9rem!important;
}

.bg-thefront-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/the-front.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-thefront {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/the-front.webp);
	padding-top: 9rem!important;
}

.bg-vintagestory-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/vintage-story.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-vintagestory {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/vintage-story.webp);
	padding-top: 9rem!important;
}

.bg-halflife-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/halflife.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-halflife {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/halflife.webp);
	padding-top: 9rem!important;
}

.bg-conan-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/conan.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-conan {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/conan.webp);
	padding-top: 9rem!important;
}

.bg-css-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/css.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-css {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/css.webp);
	padding-top: 9rem!important;
}

.bg-arkgame-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/arkse.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-arkgame {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/ark-survival-evolved.webp);
	padding-top: 9rem!important;
}

.bg-fivem-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/fivem.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-fivem {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/fivem.webp);
	padding-top: 9rem!important;
}

.bg-valheim-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/valheim.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-valheim {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/valheim.webp);
	padding-top: 9rem!important;
}

.bg-hytale-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/hytale.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-hytale {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/hytale.webp);
	padding-top: 9rem!important;
}

.bg-svencoop-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/sven-coop.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-svencoop {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/sven-coop.webp);
	padding-top: 9rem!important;
}

.bg-theforest-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/the-forest.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-theforest {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/the-forest.webp);
	padding-top: 9rem!important;
}

.bg-sonsf-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/sons-of-the-forest.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-sonsf {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/sons-of-the-forest.webp);
	padding-top: 9rem!important;
}

.bg-arksa-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/arksa.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-arksa {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/arksa.webp);
	padding-top: 9rem!important;
}

.bg-dayz-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/dayz.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-dayz {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/dayz.webp);
	padding-top: 9rem!important;
}

.bg-corek-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/corekeeper.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-corek {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/corekeeper.webp);
	padding-top: 9rem!important;
}

.bg-palworld-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/palworld.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-palworld {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/palworld.webp);
	padding-top: 9rem!important;
}

.bg-ecogame-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/ecogame.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-ecogame {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/ecogame.webp);
	padding-top: 9rem!important;
}

.bg-minecraft-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/minecraft.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-minecraft {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/minecraft-v1.webp);
	padding-top: 9rem!important;
}

.bg-cs16 {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/counter-strike16.webp);
	padding-top: 9rem!important;
}

.bg-cs16-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/counter-strike16.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.bg-cs2 {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/counter-strike-2.webp);
	padding-top: 9rem!important;
}

.bg-cs2-info {
	background: url(https://static.qgshosting.com/cdn/images/products/product-main/counter-strike-2-info.webp)!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
    background-position: center!important;
    background-size: cover!important;
}

.gameservers {
	background-image: url(https://static.qgshosting.com/cdn/images/products/product-head/datacenter-head.webp);
	padding-top: 10rem!important;
	padding-bottom: 3rem!important;
}

.mainpagebg {
    background-image: url(https://static.qgshosting.com/cdn/images/backgrounds/mainpagebg.webp);
    padding-top: 10rem!important;
    padding-bottom: 5rem!important;
}

.padb1rem {
	padding-bottom: 1rem;
}

.padb3rem {
	padding-bottom: 3rem;
}

.padb10rem {
	padding-bottom: 10rem;
}

.search-game {
	max-width: 100%;
}

.quicksearch {
	background: #14141d8c!important;
    color: #029df6!important;
}

.pq-advance-tab .nav-tabs .gamefilter {
    background: #23283900!important;
    padding: 2px!important;
}

.pq-advance-tab .nav-tabs .pq-tabs.nav-link .gamefilter {
	background: #00000052!important;
}

 .coverid-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    width: 1905px;
}

.covervid-wrapper {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.pq-bg-img-1::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(https://static.qgshosting.com/cdn/images/backgrounds/datacenter-cage.webp);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.bk-to-games {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    vertical-align: middle;
}

.cloud.pq-bg-img-1:before {
	opacity: 0.2;
}

.discover.pq-bg-img-2:before {
	opacity: 0.3;
}

.pq-bg-img-5::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(https://static.qgshosting.com/cdn/images/backgrounds/clients-partners.webp);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

/*================================================
Contact box
================================================*/

.pq-contact-box {
	border-top: 1px solid #ffffff33;
	padding: 30px 0;
	display: flex;
	align-items: center;
}

.pq-contact-box .pq-contact-box-icon {
	margin-right: 30px;
}

.pq-contact-box .pq-contact-box-icon i {
	font-size: 48px;
	line-height: 1;
	color: var(--primary-color);
}

.pq-contact-box .pq-contact-box-content .pq-contact-box-title {
	margin-bottom: 15px;
}

.pq-contact-box .pq-contact-box-content .pq-contact-box-description {
	margin: 0;
}

/*================================================
Custom CSS
================================================*/

.ptpb {
	padding-top: 60px;
	padding-bottom: 60px;	
}

.divider {
	border-bottom: 1px solid #ffffff33;
}

.pq-divider-spacing {
	padding-top: 10px;
	margin-bottom: 30px;
}

.pq-mb-45 {
	margin-bottom: 45px;
}

.pq-pe-30 {
	padding-right: 30px;
}

.pq-pt-60 {
	padding-top: 60px;
}

.pq-pt-130 {
	padding-top: 130px;
}

.pq-py-130 {
	padding: 130px 0;
}

.pq-pb-60 {
	padding-bottom: 60px;
}

.pq-mt-60 {
	margin-top: 60px;
}

.pq-mb-60 {
	margin-bottom: 60px;
}

.pq-pt-45 {
	padding-top: 45px;
}

.pq-mt-30 {
	margin-top: 30px;
}

.pq-mt-45 {
	margin-top: 45px;
}

.pq-mb-130 {
	margin-bottom: -130px;
}

.pq-pt-260 {
	padding-top: 260px;
}

.pq-mt-90 {
	margin-top: 90px;
}

.pq-ms-380 {
	margin-left: -380px;
}

.pq-mt-130 {
	margin-top: 130px;
}

.pq-ps-300 {
	padding-left: 300px;
}

.pq-ps-30 {
	padding-left: 30px;
}

.pq-pb-10 {
	padding-bottom: 10px;
}

.pq-gaming-img {
	margin-left: -150px;
}

.pq-more-link {
	padding: 36px 0;
	text-align: center;
}

.pq-more-link a:hover {
	color: var(--white-color);
}

.pq-no-limits-img {
	margin-right: -90px;
}

.pq-connection-spacing {
	padding: 6rem 3rem;
}

.pq-me-20 {
	margin-right: 20%;
}

.pq-applyform textarea {
	height: 150px;
}

.button-align {
	text-align: end;
}

.button-align-start {
	text-align: start;
}

.pq-ms-80 {
	margin-left: 80px;
}

.process .pq-button:first-child {
	margin-right: 30px;
}

.map {
	line-height: 0;
}

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

.contact-form {
	padding: 45px 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100%;
}

.pq-social-media-grid {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}

.pq-social-media-grid li {
	list-style: none;
	margin-right: 15px;
}

.pq-social-media-grid li:last-child {
	margin-right: 0;
}

.pq-social-media-grid li a {
	border: 1px solid var(--white-color);
	border-radius: 50%;
	padding: 5px 10px;
}

.pq-social-media-grid li a i {
	color: var(--white-color);
	font-size: 15px;
}

.pq-social-media-grid li a:hover {
	background-color: var(--primary-color);
}

.pq-mb-30 {
	margin-bottom: 30px;
}

.pq-sticky-top {
	position: sticky;
	top: 130px;
	z-index: 1;
}

button.mfp-arrow {
	position: absolute;
}

.mfp-arrow-right {
	right: 100px;
}

.pq-icon-boxes {
	display: flex;
	width: 100%;
}

.pq-category-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.loc-srv {
    background: rgba(0,182,122,.15);
    border: 2px solid #00b67a;
    color: #ffffff;
    font-size: 14px;
    margin: 15px 0 10px;
    padding: 8px 4px;
}

.locations {
    padding: 116px 0 131px
}

@media(max-width: 1199px) {
    .locations {
        padding:82px 0 95px
    }
}

@media(max-width: 991px) {
    .locations {
        padding:72px 0 80px
    }
}

@media(max-width: 767px) {
    .locations {
        padding:64px 0 54px
    }
}

.locations__infoscroll {
    position: relative;
    scroll-margin: 100px;
    z-index: 20
}

.locations__header.--text-center {
    text-align: center
}

.locations__header.--text-center .locations__title {
    font-size: 20px;
    font-weight: 100
}

.locations__header.--text-center .locations__subtitle {
    max-width: 100%
}

.locations__title {
    color: var(--text-secondary);
    font-family: LakehurstGothic-Medium;
    font-size: 30px;
    margin-bottom: 20px;
    margin-top: 0
}

@media(max-width: 1199px) {
    .locations__title {
        font-size:27px
    }
}

@media(max-width: 991px) {
    .locations__title {
        font-size:23px;
        margin-bottom: 15px
    }
}

@media(max-width: 767px) {
    .locations__title {
        font-size:20px
    }
}

.locations__subtitle {
    margin-bottom: 35px;
    max-width: 450px
}

@media(max-width: 767px) {
    .locations__subtitle {
        margin-bottom:24px
    }
}

.locations__main {
    padding: 180px 0 80px;
    position: relative
}

@media(max-width: 991px) {
    .locations__main {
        padding:170px 0 80px
    }
}

@media(max-width: 767px) {
    .locations__main {
        padding:0 0 16px
    }
}

.locations__main.--no-controls {
    padding-top: 50px
}

.locations__main.--control-labels {
    padding: 145px 0 80px!important
}

@media(max-width: 991px) {
    .locations__main.--control-labels {
        padding:135px 0 80px!important
    }
}

@media(max-width: 767px) {
    .locations__main.--control-labels {
        padding:0 0 16px!important
    }
}

.locations__main.--support .locations__mark-core {
    cursor: default;
    pointer-events: none
}

.locations__controls {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: var(--bg-blur);
    border: 2px solid var(--border-primary);
    border-radius: 15px;
    color: var(--text-secondary);
    font-weight: 100;
    left: 50%;
    padding: 22px 27px 11px;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 332px;
    z-index: 2
}

@media(max-width: 767px) {
    .locations__controls {
        border-width:1px;
        margin: auto;
        max-width: 100%;
        padding: 10px 15px 0;
        position: static;
        transform: translateX(0);
        width: 331px
    }
}

.locations__controls-title {
    font-size: 15px;
    margin-bottom: 11px;
    text-transform: uppercase
}

@media(max-width: 767px) {
    .locations__controls-title {
        font-size:12px;
        margin-bottom: 10px
    }
}

.locations__controls-row {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 11px
}

@media(max-width: 767px) {
    .locations__controls-row {
        flex-wrap:nowrap;
        font-size: 12px;
        margin-bottom: 10px
    }
}

.locations__controls-label {
    align-items: center;
    display: flex;
    flex-grow: 1;
    flex-wrap: nowrap
}

@media(max-width: 767px) {
    .locations__controls-label {
        flex-wrap:nowrap;
        padding-right: 15px
    }
}

.locations__controls-name {
    font-size: 13px;
    text-transform: capitalize
}

.locations__controls-mark {
    border-radius: 50%;
    display: inline-block;
    font-size: 0;
    height: 24px;
    line-height: 0;
    margin-right: 9px;
    width: 24px
}

@media(max-width: 767px) {
    .locations__controls-mark {
        height:22px;
        width: 22px
    }
}

.locations__controls-mark.--premium {
    background-color: #029df6
}

.locations__controls-mark.--budget {
    background-color: #37d79d
}

.locations__controls-mark.--both {
    background: linear-gradient(90deg,#029df6 50%,#37d79d 0)
}

.locations__controls-switch {
    font-size: 0;
    line-height: 0
}

.locations__map {
    margin: auto;
    position: relative;
    width: 891px;
    z-index: 1
}

@media(max-width: 991px) {
    .locations__map {
        width:100%
    }
}

@media(max-width: 767px) {
    .locations__map {
        margin:0 -15px;
        width: calc(100% + 30px)
    }
}

.locations__mark {
    align-items: center;
    display: flex;
    justify-content: center;
    position: absolute
}

.locations__mark.--active {
    z-index: 2
}

.locations__mark.--active .locations__mark-flag {
    opacity: 1;
    visibility: visible
}

.locations__mark.--disabled {
    pointer-events: none
}

.locations__mark:before {
    animation-delay: -1s;
    animation: mapShine 2s linear infinite;
    border-radius: 100px;
    content: "";
    height: 30px;
    position: absolute;
    width: 30px
}

@media(max-width: 767px) {
    .locations__mark:before {
        height:15px;
        width: 15px
    }
}

.locations__mark.--premium {
    z-index: 2
}

.locations__mark.--premium: before {
    box-shadow:0 0 10px 5px #029df6;
}

@media(max-width: 767px) {
    .locations__mark.--premium:before {
        box-shadow:0 0 1px 1px #029df6;
    }
}

.low-ms {
    background: rgba(0,182,122,.15);
    border: 2px solid #00b67a;
    color: #ffffff;
    padding: 3px;
}

.med-ms {
	background: rgb(182 167 0 / 15%);
    border: 2px solid #b6a500;
    color: #ffffff;
    padding: 3px;
}

.high-ms {
	background: rgb(182 0 0 / 15%);
    border: 2px solid #b60000;
    color: #ffffff;
    padding: 3px;
}

.locations__flag {
	height: 25px;
}

.locations__mark.--premium .locations__mark-core {
    background-color: #00c90d
}

.locations__mark.--budget {
    z-index: 1
}

.locations__mark.--budget: before {
    animation-delay:.4s;
    box-shadow: 0 0 10px 5px #37d79d
}

@media(max-width: 767px) {
    .locations__mark.--budget:before {
        box-shadow:0 0 1px 1px #37d79d
    }
}

.locations__mark.--budget .locations__mark-core {
    background-color: #37d79d;
}

.locations__mark.--both: before {
    animation-delay:.7s;
    box-shadow: 0 0 10px 5px 0 0 1px 2px #029df6 #37d79d;
}

@media(max-width: 767px) {
    .locations__mark.--both:before {
        box-shadow:0 0 1px 1px 0 0 1px 1px #029df6 #37d79d;
    }
}

.locations__mark.--both .locations__mark-core {
    background: linear-gradient(90deg,#029df6 50%,#37d79d 0)
}

.locations__mark.--blue: before {
    animation-delay:.1s;
    box-shadow: 0 0 10px 5px 0 0 1px 2px #1b57c4 #00f;
}

@media(max-width: 767px) {
    .locations__mark.--blue:before {
        box-shadow:0 0 1px 1px 0 0 1px 1px #1b57c4 #00f;
    }
}

.locations__mark.--blue .locations__mark-core {
    background-color: #1b57c4;
}

.locations__mark-core {
    border-radius: 50%;
    cursor: pointer;
    display: block;
    height: 10px;
    opacity: .7;
    width: 10px;
}

@media(max-width: 767px) {
    .locations__mark-core {
        height:7px;
        width: 7px;
    }
}

.locations__mark-flag {
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    font-size: 0;
    font-style: normal;
    height: 20px;
    line-height: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    transition: opacity visibility .3s ease-in-out .3s;
    visibility: hidden;
    width: 20px;
    z-index: 5;
}

.locations__mark-flag img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.locations__map_head {
    padding-top: 6rem!important;
}

.locations__info {
    align-items: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: var(--bg-blur);
    border: 2px solid var(--border-primary);
    bottom: -25px;
    display: flex;
    border: 5px solid #232939;
    flex-wrap: wrap;
    font-weight: 100;
    justify-content: space-between;
    left: 50%;
    padding: 13px 30px;
    position: absolute;
    scroll-margin: 100px;
    transform: translateX(-50%);
    z-index: 0;
    width: 700px;
}

@media(max-width: 991px) {
    .locations__info {
        font-size:13px
    }
}

@media(max-width: 767px) {
    .locations__info {
        border-width:1px;
        font-size: 12px;
        padding: 10px 15px 15px;
        position: static;
        transform: translateX(0);
        width: 100%
    }
}

.locations__info.--alternative-cards {
    margin-bottom: 15px;
    margin-top: 20px;
    padding: 26px 27px;
    position: static;
    transform: none;
    width: 100%
}

.locations__info.--alternative-cards: first-of-type {
    margin-top:20px
}

@media(max-width: 767px) {
    .locations__info.--alternative-cards .locations__info-col {
        margin-bottom:0
    }
}

.locations__info.--alternative-cards .locations__info-col: first-of-type {
    width:70%;
}

.locations__info.--alternative-cards .locations__info-col: nth-of-type(2) {
    text-align:right;
    width: 30%;
}

.locations__info.--alternative-cards .locations__info-col: nth-of-type(2) .btn {
    padding:16px 31px;
}

@media(max-width: 767px) {
    .locations__info.--alternative-cards .locations__info-col:nth-of-type(2) .btn {
        padding:10px 15px 7px;
    }

    .locations__info.--alternative-cards .locations__info-row {
        white-space: normal;
    }
}

.locations__info-row {
    overflow: hidden;
    text-overflow: ellmemoryis;
    white-space: nowrap
}

.locations__info-col:first-of-type {
    width: 50%
}

@media(max-width: 767px) {
    .locations__info-col:first-of-type {
        width:50%
    }
}

@media(max-width: 575px) {
    .locations__info-col:first-of-type {
        margin-bottom:10px;
        width: 100%
    }
}

.locations__info-col:nth-of-type(2) {
    width: 50%
}

@media(max-width: 767px) {
    .locations__info-col:nth-of-type(2) {
        width:50%;
    }
}

@media(max-width: 575px) {
    .locations__info-col:nth-of-type(2) {
        margin-bottom:15px;
        width: 100%;
    }
    .locations__info-col:nth-of-type(3) {
        margin-bottom:15px;
        width: 100%;
    }    
}

.locations__info-col:nth-of-type(3) {
    width: 50%;
}

@media(max-width: 767px) {
    .locations__info-col:nth-of-type(3) {
        margin-top:15px;
        text-align: center;
        width: 100%;
    }
}

@media(max-width: 575px) {
    .locations__info-col:nth-of-type(1) {
        margin-top:0;
        text-align: center;
    }    

    .locations__info-col:nth-of-type(2) {
        margin-top:0;
        text-align: center;
    }

    .locations__info-col:nth-of-type(3) {
        margin-top:0;
        text-align: center;
    }
}

.locations__info-col:nth-of-type(4) {
    width: 50%;
}

@media(max-width: 767px) {
    .locations__info-col:nth-of-type(4) {
        margin-top:15px;
        text-align: center;
        width: 100%;
    }
}

@media(max-width: 575px) {
    .locations__info-col:nth-of-type(4) {
        margin-top:0;
        text-align: center;
    }
}

.locations__info-out_of_stock {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 15px;
    padding: 26px 26px 34px;
    position: static;
    transform: none;
    width: 100%;
}

.locations__info-out_of_stock-title {
    color: #bc4343;
    font-size: 14px;
    font-weight: 400;
    margin-left: 25px;
    text-transform: none;
}

.locations__info-out_of_stock-text {
    color: var(--text-secondary);
    display: block;
    font-size: 14px;
    margin: 8px 0 0;
}

.locations__info-out_of_stock-text a {
    text-decoration: underline;
}

.locations__info-out_of_stock-alternative {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 23px;
}

.locations__info-out_of_stock .locations__info-place {
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.locations__info-place {
    color: var(--text-secondary);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    overflow: hidden;
    text-overflow: ellmemoryis;
    text-transform: uppercase;
    white-space: nowrap;
}

@media(max-width: 767px) {
    .locations__info-place {
        font-size:12px
    }
}

.locations__info-value {
    color: var(--text-secondary);
    cursor: default
}

.locations__out-of-stock-wrap {
    margin: -30px auto;
    max-width: 500px;
    position: relative;
    z-index: 0
}

.locations__out-of-stock-wrap .sect-preloader {
    padding: 10px 0
}

.locations__support-icon {
    display: block;
    height: 24px;
    left: 8px;
    position: absolute;
    top: -25px;
    width: 26px
}

@media(max-width: 767px) {
    .locations__support-icon {
        height:15px;
        left: 6px;
        top: -18px;
        width: 17px
    }
}

.locations__support-icon img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%
}

.pdt5 {
	padding-top: 5px;
}

.pdt2rem {
	padding-top: 2rem;
}

.text-muted {
    color: #4c4c4c!important;
    font-size: 0.8rem!important;
}

.controlzone {
    border-radius: 5px!important;
    border: 0px solid #232a39!important;
    color: #e5e5e5!important;
    background-color: #14141d!important; 
}

.controlzone:hover {
    border-radius: 5px!important;
    border: 0px solid #232a39!important;
    color: #e5e5e5!important;
    background-color: #14141d!important;
} 

.trustpilot-footer {
	height: 37px;
}

.gamelist {
    padding: 0px 10px!important;
}

@-webkit-keyframes L_circle_rotate{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes L_circle_rotate{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes L_stroke_rotate{0%{-webkit-transform:rotate(0);transform:rotate(0)}12.5%{-webkit-transform:rotate(135deg);transform:rotate(135deg)}25%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}37.5%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}50%{-webkit-transform:rotate(540deg);transform:rotate(540deg)}62.5%{-webkit-transform:rotate(675deg);transform:rotate(675deg)}75%{-webkit-transform:rotate(810deg);transform:rotate(810deg)}87.5%{-webkit-transform:rotate(945deg);transform:rotate(945deg)}100%{-webkit-transform:rotate(1080deg);transform:rotate(1080deg)}}@keyframes L_stroke_rotate{0%{-webkit-transform:rotate(0);transform:rotate(0)}12.5%{-webkit-transform:rotate(135deg);transform:rotate(135deg)}25%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}37.5%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}50%{-webkit-transform:rotate(540deg);transform:rotate(540deg)}62.5%{-webkit-transform:rotate(675deg);transform:rotate(675deg)}75%{-webkit-transform:rotate(810deg);transform:rotate(810deg)}87.5%{-webkit-transform:rotate(945deg);transform:rotate(945deg)}100%{-webkit-transform:rotate(1080deg);transform:rotate(1080deg)}}@-webkit-keyframes L_stroke_left_grow{0%,100%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}50%{-webkit-transform:rotate(-140deg);transform:rotate(-140deg)}}@keyframes L_stroke_left_grow{0%,100%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}50%{-webkit-transform:rotate(-140deg);transform:rotate(-140deg)}}@-webkit-keyframes L_stroke_right_grow{0%,100%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}50%{-webkit-transform:rotate(140deg);transform:rotate(140deg)}}@keyframes L_stroke_right_grow{0%,100%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}50%{-webkit-transform:rotate(140deg);transform:rotate(140deg)}}.loader-circle{top:50%;left:50%;z-index:1;color:#444;margin-top:-1em;margin-left:-1em;position:absolute;-webkit-animation:L_circle_rotate 1.568s linear infinite both;animation:L_circle_rotate 1.568s linear infinite both}.loader-circle .loader-stroke-left:before,.loader-circle .loader-stroke-right:before,.loader-circle:before{content:'';display:block;border-style:solid;border-width:.21429em;border-color:currentColor}.loader-circle,.loader-circle .loader-stroke-left,.loader-circle .loader-stroke-left:before,.loader-circle .loader-stroke-right,.loader-circle .loader-stroke-right:before,.loader-circle:before{width:2em;height:2em;border-radius:50%;box-sizing:border-box}.loader-circle .loader-stroke-left:before,.loader-circle .loader-stroke-right{position:absolute;clip:rect(0 2em 2em 1em)}.loader-circle .loader-stroke-left,.loader-circle .loader-stroke-right:before{position:absolute;clip:rect(0 1em 2em 0)}.loader-circle:before{position:absolute;clip:rect(0 1.05em 1em .95em)}.loader-circle .loader-stroke-left,.loader-circle .loader-stroke-right,.loader-circle:before{-webkit-animation:L_stroke_rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both;animation:L_stroke_rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both}.loader-circle .loader-stroke-right:before{-webkit-animation:L_stroke_right_grow 1333ms cubic-bezier(.4,0,.2,1) infinite both;animation:L_stroke_right_grow 1333ms cubic-bezier(.4,0,.2,1) infinite both}.loader-circle .loader-stroke-left:before{-webkit-animation:L_stroke_left_grow 1333ms cubic-bezier(.4,0,.2,1) infinite both;animation:L_stroke_left_grow 1333ms cubic-bezier(.4,0,.2,1) infinite both}
.mhn-slide-vps .mhn-item{width:100%;padding:10px}
.mhn-slide-vps .mhn-inner{width:100%;height:100%;box-shadow:0 2px 10px 0 rgba(0,0,0,.16),0 2px 5px 0 rgba(0,0,0,.26);border-radius:3px}
.mhn-slide-vps .mhn-item img{display:none}
.mhn-slide-vps .mhn-img{min-height:200px;overflow:hidden;height:100%;width:100%;color:white;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=) #eee no-repeat center/cover;position:relative}
.mhn-slide-vps .mhn-text{text-align:center;padding:0 10px}
.mhn-slide-vps .mhn-text h4{font-weight:700;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}
.mhn-slide-vps .mhn-text p{max-height:4.5em;overflow:hidden}
.mhn-slide-vps .owl-stage-outer{z-index:1!important;}
.mhn-slide-vps .owl-nav{color:#333;position:absolute;top:0;left:0;right:0;bottom:0!important;}
.mhn-slide-vps .owl-nav svg{color:currentColor!important;}
.mhn-slide-vps .owl-nav .disabled{display:none!important;}
.mhn-slide-vps .owl-prev,
.mhn-slide-vps .owl-next{
	top:110px;
	z-index:2;
	width:55px;
	height:55px;
	padding:8px;
	margin-top:-20px;
	position:absolute;
	background-color:#049df6!important;
}
.mhn-slide-vps .owl-prev{left:-10px}
.mhn-slide-vps .owl-next{right:-10px}

@-webkit-keyframes L_circle_rotate{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes L_circle_rotate{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes L_stroke_rotate{0%{-webkit-transform:rotate(0);transform:rotate(0)}12.5%{-webkit-transform:rotate(135deg);transform:rotate(135deg)}25%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}37.5%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}50%{-webkit-transform:rotate(540deg);transform:rotate(540deg)}62.5%{-webkit-transform:rotate(675deg);transform:rotate(675deg)}75%{-webkit-transform:rotate(810deg);transform:rotate(810deg)}87.5%{-webkit-transform:rotate(945deg);transform:rotate(945deg)}100%{-webkit-transform:rotate(1080deg);transform:rotate(1080deg)}}@keyframes L_stroke_rotate{0%{-webkit-transform:rotate(0);transform:rotate(0)}12.5%{-webkit-transform:rotate(135deg);transform:rotate(135deg)}25%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}37.5%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}50%{-webkit-transform:rotate(540deg);transform:rotate(540deg)}62.5%{-webkit-transform:rotate(675deg);transform:rotate(675deg)}75%{-webkit-transform:rotate(810deg);transform:rotate(810deg)}87.5%{-webkit-transform:rotate(945deg);transform:rotate(945deg)}100%{-webkit-transform:rotate(1080deg);transform:rotate(1080deg)}}@-webkit-keyframes L_stroke_left_grow{0%,100%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}50%{-webkit-transform:rotate(-140deg);transform:rotate(-140deg)}}@keyframes L_stroke_left_grow{0%,100%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}50%{-webkit-transform:rotate(-140deg);transform:rotate(-140deg)}}@-webkit-keyframes L_stroke_right_grow{0%,100%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}50%{-webkit-transform:rotate(140deg);transform:rotate(140deg)}}@keyframes L_stroke_right_grow{0%,100%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}50%{-webkit-transform:rotate(140deg);transform:rotate(140deg)}}.loader-circle{top:50%;left:50%;z-index:1;color:#444;margin-top:-1em;margin-left:-1em;position:absolute;-webkit-animation:L_circle_rotate 1.568s linear infinite both;animation:L_circle_rotate 1.568s linear infinite both}.loader-circle .loader-stroke-left:before,.loader-circle .loader-stroke-right:before,.loader-circle:before{content:'';display:block;border-style:solid;border-width:.21429em;border-color:currentColor}.loader-circle,.loader-circle .loader-stroke-left,.loader-circle .loader-stroke-left:before,.loader-circle .loader-stroke-right,.loader-circle .loader-stroke-right:before,.loader-circle:before{width:2em;height:2em;border-radius:50%;box-sizing:border-box}.loader-circle .loader-stroke-left:before,.loader-circle .loader-stroke-right{position:absolute;clip:rect(0 2em 2em 1em)}.loader-circle .loader-stroke-left,.loader-circle .loader-stroke-right:before{position:absolute;clip:rect(0 1em 2em 0)}.loader-circle:before{position:absolute;clip:rect(0 1.05em 1em .95em)}.loader-circle .loader-stroke-left,.loader-circle .loader-stroke-right,.loader-circle:before{-webkit-animation:L_stroke_rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both;animation:L_stroke_rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both}.loader-circle .loader-stroke-right:before{-webkit-animation:L_stroke_right_grow 1333ms cubic-bezier(.4,0,.2,1) infinite both;animation:L_stroke_right_grow 1333ms cubic-bezier(.4,0,.2,1) infinite both}.loader-circle .loader-stroke-left:before{-webkit-animation:L_stroke_left_grow 1333ms cubic-bezier(.4,0,.2,1) infinite both;animation:L_stroke_left_grow 1333ms cubic-bezier(.4,0,.2,1) infinite both}
.mhn-slide .mhn-item{width:100%;padding:10px}
.mhn-slide .mhn-inner{width:100%;height:100%;box-shadow:0 2px 10px 0 rgba(0,0,0,.16),0 2px 5px 0 rgba(0,0,0,.26);border-radius:3px}
.mhn-slide .mhn-item img{display:none}
.mhn-slide .mhn-img{min-height:200px;overflow:hidden;height:100%;width:100%;color:white;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=) #eee no-repeat center/cover;position:relative}
.mhn-slide .mhn-text{text-align:center;padding:0 10px}
.mhn-slide .mhn-text h4{font-weight:700;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}
.mhn-slide .mhn-text p{max-height:4.5em;overflow:hidden}
.mhn-slide .owl-stage-outer{z-index:1!important;}
.mhn-slide .owl-nav{color:#333;position:absolute;top:0;left:0;right:0;bottom:0!important;}
.mhn-slide .owl-nav svg{color:currentColor!important;}
.mhn-slide .owl-nav .disabled{display:none!important;}
.mhn-slide .owl-prev,
.mhn-slide .owl-next{
	top:110px;
	z-index:2;
	width:55px;
	height:55px;
	padding:8px;
	margin-top:-20px;
	position:absolute;
	background-color:#049df6!important;
}
.mhn-slide .owl-prev{left:-10px}
.mhn-slide .owl-next{right:-10px}

.partb1 {
	background: #0c0c11;
    padding: 2em;
    margin: 1em;
    border-radius: 5px;
}

.partb2 {
	background: #232839;
    padding: 2em;
    margin: 1em;
    border-radius: 5px;
}

.infob1{
    background-color: #049df6;
    color: white;	
    border-radius: 5px;
}

.btn-n2 {
	color: #efefef;
    background-color: #049df6;
    padding: 1rem;
}

.btn-n2:hover {
	color: #efefef;
    box-shadow: 0 0.0625rem 0.5625rem rgb(2 157 246);
    text-decoration: none;
}

.btn-trial {
	padding-top: 2em!important;
}

.terminal-window {
    text-align: left;
    height: 360px;
    border-radius: 10px;
    margin: auto;
    position: relative
}

.browser-window .window-header,.terminal-window header {
    background: linear-gradient(45deg,#00446b,#049df6);
    height: 30px;
    border-radius: 8px 8px 0 0;
    padding-left: 10px
}

.browser-window .window-header .button,.terminal-window header .button {
    width: 12px;
    height: 12px;
    margin: 10px 4px 0 0;
    display: inline-block;
    border-radius: 8px
}

.browser-window .window-header .button,.terminal-window header .button.green {
    background: #2eb929
}

.browser-window .window-header .button.green,.terminal-window header .button.yellow {
    background: #e5c30f
}

.browser-window .window-header .button.red,.terminal-window header .button.red {
    background: #e75448
}

.terminal-window section.terminal {
    color: #fff;
    font-family: Menlo,Monaco,Consolas,"Courier New",Courier;
    font-size: 10pt;
    background: #30353a;
    padding: 10px;
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    top: 30px;
    bottom: 0;
    overflow: auto
}

span.prompt {
    white-space: pre-line
}

.terminal::-webkit-scrollbar {
    width: 0;
    background: 0 0
}

.windows-terminal section.terminal {
    background-color: #012456;
    font-family: Consolas,sans-serif
}

.windows-terminal section.terminal .history span,.windows-terminal section.terminal .prompt-cursor span {
    color: #fff
}

@media screen and (max-width: 1024px) {
    .terminal-window section.terminal {
        font-size:9pt
    }
}

.terminal-window section.terminal .typed-cursor {
    opacity: 1;
    animation: blink .7s infinite
}

@keyframes blink {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.terminal-data {
    display: none
}

.terminal-window .gray {
    color: gray
}

.terminal-window .green {
    color: #17b512
}
.card {
    border: 3px solid #232839!important;
    border-radius: 5px!important;
    background: #14141d!important;
}

.rec-players {
	color: #ffffff;
    background: #049df65e;
    border: 3px solid #029df6;
    padding: 5px;
}

.sld-icon {
	color: #029df6;
}

.tparrows.tp-rightarrow:before {
    font-family: "Font Awesome 5 Free"; /* Ensure Font Awesome is being used */
    content: "\f061" !important; /* Unicode for the right arrow icon */
    font-weight: 900; /* For Font Awesome Solid icons */
}

.tparrows.tp-leftarrow:before {
    font-family: "Font Awesome 5 Free"; /* Ensure Font Awesome is being used */
    content: "\f060" !important; /* Unicode for the left arrow icon */
    font-weight: 900; /* For Font Awesome Solid icons */
}

.pt2rem {
	padding-top: 2rem;
}

sup {
    top: -10px!important;
    font-size: 17px!important;
}

.small, small {
    font-size: 16px!important;
}

.cur-font {
    font-size: 24px!important;
}

.locations-map-container {
  position: relative;
  max-width: 900px;
  margin: 50px auto 10px;
  padding: 0 15px;
}
.map-image {
  width: 100%;
  display: block;
}
.location-marker {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #00ae48;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 rgba(0, 174, 72, 0.7);
}
.location-marker:hover {
  transform: scale(1.2);
}
.tooltip {
  display: none;
  position: absolute;
  background: #1c1c2e;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 999;
  min-width: 200px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tooltip img {
  width: 20px;
  margin-bottom: 5px;
}
.latency-box {
  display: none;
  opacity: 0;
  width: 40%;
  margin: 20px auto 50px;
  background: linear-gradient(90deg, #101323, #0d1222);
  border: 1px solid #019df6;
  border-radius: 10px;
  padding: 15px;
  color: #ffffff;
  animation: fadeInUp 0.5s ease forwards;
}
.latency-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.latency-left h3 {
  margin: 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.latency-left p {
  color: #ccc;
  font-size: 13px;
  margin: 0;
}
.latency-center {
  font-size: 16px;
  text-align: right;
  font-weight: bold;
  margin-top: 10px;
}
.signal-icon {
  color: #00ff6a;
  margin-left: 5px;
}
.latency-flag {
  width: 22px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0% {
    transform: scale(1.1);
    box-shadow: 0 0 0 0 rgba(0, 174, 72, 0.7);
  }
  70% {
    transform: scale(1.3);
    box-shadow: 0 0 0 10px rgba(0, 174, 72, 0);
  }
  100% {
    transform: scale(1.1);
    box-shadow: 0 0 0 0 rgba(0, 174, 72, 0);
  }
}

/*  Responsive adjustments */
@media (max-width: 768px) {
  .locations-map-container {
    margin: 30px auto 10px;
  }

  .tooltip {
    font-size: 12px;
    min-width: 150px;
    padding: 8px;
  }

  .latency-box {
    width: 90%;
    margin: 20px auto;
    padding: 12px;
  }

  .latency-left h3 {
    font-size: 14px;
    gap: 6px;
  }

  .latency-left p {
    font-size: 12px;
  }

  .latency-center {
    font-size: 14px;
    text-align: left;
    margin-top: 10px;
  }

  .tooltip img,
  .latency-flag {
    width: 18px;
  }
}

.feature-badges {
  gap: 5px;
}

.feature-badge {
	background-color: #049df6;
	color: white;
	padding: 3px 10px;
	border-radius: 5px;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 5px;
	white-space: nowrap;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	transition: background-color 0.2s;
	}

.feature-badge:hover {
    box-shadow: 0 0.0625rem 0.5625rem rgb(2 157 246);
    text-decoration: none;
}

.feature-badge-pb3 {
	padding-bottom: 3em;
}