/*
	Theme Name: PQUBE
	Author: Michail Bakas
	Version: 1.1
*/


/* Table of Contents

	- HTML5 Reset
		- Baseline Normalize
		- Box Sizing
		- Float Clearing
	- Defaults
		- Typographical Elements
		- Headings
		- Objects
		- Gallery
		- Forms
		- Buttons
		- Tables
	- Structure and Layout
		- Site Containers
		- Column Widths and Positions
		- Column Classes
	- Common Classes
		- Avatar
		- Genesis
		- Search Form
		- Titles
		- WordPress
	- Widgets
	- Plugins
		- Genesis eNews Extended
		- Jetpack
	- Site Header
		- Title Area
		- Widget Area
	- Site Navigation
		- Primary Navigation
		- Secondary Navigation
		- Footer Navigation
		- Responsive Menu
	- Content Area
		- Front Page
		- Dashicons
		- Flexible Widgets
		- Content
		- Entries
		- Entry Meta
		- After Entry
		- Pagination
		- Content Boxes
		- Comments
	- Sidebar
	- Footer Widgets
	- Site Footer 
	- Media Queries
		- Media Queries
		- Max-width: 1200px
		- Max-width: 768px
		- Max-width: 320px

*/


/*
HTML5 Reset
---------------------------------------------------------------------------------------------------- */

/* Baseline Normalize
	normalize.css v2.1.3 | MIT License | git.io/normalize
--------------------------------------------- */

article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}

/* Box Sizing
--------------------------------------------- */

*,
input[type="search"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

/* Float Clearing
--------------------------------------------- */

.author-box:before,
.clearfix:before,
.entry:before,
.entry-content:before,
.pagination:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.widget:before,
.wrap:before {
	content: " ";
	display: table;
}

.author-box:after,
.clearfix:after,
.entry:after,
.entry-content:after,
.pagination:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.widget:after,
.wrap:after {
	clear: both;
	content: " ";
	display: table;
}


/*
Defaults
---------------------------------------------------------------------------------------------------- */

/* Typographical Elements
--------------------------------------------- */




body {
	background-color: #000;
	color: #fff;
    font-family: 'bohem', sans-serif;
	font-size: 16px;
	font-weight: 200;
	line-height: 1.7;
	/* text-shadow: 1px 1px 4px rgb(0 0 0); */
	-webkit-font-smoothing: antialiased; 
}

body.altitude-home {
	background: none;
}

a,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button,
.site-header.dark {
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition:    all 0.2s ease-in-out;
	-ms-transition:     all 0.2s ease-in-out;
	-o-transition:      all 0.2s ease-in-out;
	transition:         all 0.2s ease-in-out;
}

::-moz-selection {
	background-color: #000;
	color: #fff;
}

::selection {
	background-color: #000;
	color: #fff;
}

a {
	color: #fff;
	letter-spacing: 3px;
	text-decoration: none;
}

a:hover {
	color:  #fff;
	text-shadow: 0 0 5px #fff, 0 0 10px #fff;
}

li.active a {
  	color: #3a0a00;
	-webkit-text-stroke: 2px #3a0a00;
	text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #fff, 0 0 40px #fff, 0 0 80px #fff;
}

a {
  transition: 
    /* step 1 */
    color      0,5s,
    /* step 2 */
    font-weight 0.5s,
	/* step 3 */
    text-shadow 0.5s;
	  
}

ul#tabs-nav {
    display: inline-flex;
}

.tabs ul li{
    padding: 5px;
}

.tabs ul li img{
    opacity: 0.7;
}

.tabs ul li.active img{
    opacity: 1;
}

p {
    font-family: 'bohem', sans-serif;
	margin: 0 0 30px;
	padding: 0;
    -moz-transition:1s ease-in-out;
    -ms-transition:1s ease-in-out;
    -o-transition:1s ease-in-out;
    -webkit-transition:1s ease-in-out;
    transition:1s ease-in-out;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

b,
strong {
	font-weight: 800;
}

cite,
em,
i {
	font-style: italic;
}

blockquote {
	color: #999;
	margin: 40px;
}

blockquote::before {
	content: "\201C";
	display: block;
	font-size: 30px;
	height: 0;
	left: -20px;
	position: relative;
	top: -10px;
}

hr {
	border: 0;
	border-collapse: collapse;
	border-top: 2px solid #f5f5f5; 
	clear: both;
	margin: 40px 0;
}


/* Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 200;
	line-height: 1.2;
	margin: 0 0 20px;
}

h1 {
	font-size: 36px;
}

h2 {
	font-size: 32px;
}

.image-section h2,
.solid-section h2 {
	font-size: 80px;
	font-weight: 200;
	line-height: 1;
}

.front-page-2.solid-section h2 {
	font-size: 48px;
}

h3 {
	font-size: 38px;
}

h4 {
	font-size: 24px;
}


h5 {
	font-size: 20px;
}


h6 {
	font-size: 18px;
}

/* Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
}

.full-width-content img.pull-left {
	float: left;
	margin: 0 40px 40px -200px;
}

.full-width-content img.pull-right {
	float: right;
	margin: 0 -200px 40px 40px;
}

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



.gallery-item {
	float: left;
	margin: 0;
	padding: 0 4px;
	text-align: center;
}

.gallery-columns-1 .gallery-item {
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	width: 50%;
}

.gallery-columns-3 .gallery-item {
	width: 33%;
}

.gallery-columns-4 .gallery-item {
	width: 25%;
}

.gallery-columns-5 .gallery-item {
	width: 20%;
}

.gallery-columns-6 .gallery-item {
	width: 16.6666%;
}

.gallery-columns-7 .gallery-item {
	width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
	width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	width: 11.1111%;
}

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
	clear: left;
}

.gallery .gallery-item img {
	border: none;
	height: auto;
	margin: 0;
}

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

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 0;
	box-shadow: none;
	color: #000;
	font-size: 20px;
	font-weight: 200;
	padding: 20px;
	width: 100%;
}


input:focus,
textarea:focus {
	border: 1px solid #999;
	outline: none;
}

.front-page input:focus,
.front-page textarea:focus {
	border: 1px solid #22a1c4;
	outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

::-moz-placeholder {
	color: #000;
	opacity: 1;
}

::-webkit-input-placeholder {
	color: #000;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.widget .button {
	background-color: #5e5957 !important;
	border: 3px solid black;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
    /*font-family: '';*/
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 2px;
	padding: 15px 25px;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	white-space: normal;
	width: auto;
}

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

/* Buttons
--------------------------------------------- */

button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
.button.clear:hover,
.button:hover,
.footer-widgets button,
.footer-widgets input[type="button"],
.footer-widgets input[type="reset"],
.footer-widgets input[type="submit"],
.footer-widgets .widget .button,
.widget .button:hover,
.widget .button.clear:hover {
	background-color: #5e5957;
	color: #fff;
}

.button {
	display: inline-block;
}

button.small,
input[type="button"].small,
input[type="reset"].small,
input[type="submit"].small,
.button.small {
	padding: 8px 16px;
}

.widget .button.clear {
	background-color: transparent;
	border: 2px solid #000;
	color: #000;
}

/* .image-section .button {
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 20px;
	margin-bottom: 20px;
} */

.image-section .button.clear {
	border-color: #fff;
	color: #fff;
}

.footer-widgets button:hover,
.footer-widgets input:hover[type="button"],
.footer-widgets input:hover[type="reset"],
.footer-widgets input:hover[type="submit"],
.footer-widgets .widget .button:hover,
.image-section button:hover,
.image-section input:hover[type="button"],
.image-section input:hover[type="reset"],
.image-section input:hover[type="submit"],
.image-section .widget .button:hover {
	background-color: #fff;
	border-radius: 5px;
	border: 3px solid black;
	color: #e0be10;
}

button:disabled,
button:disabled:hover,
input:disabled,
input:disabled:hover,
input[type="button"]:disabled,
input[type="button"]:disabled:hover,
input[type="reset"]:disabled,
input[type="reset"]:disabled:hover,
input[type="submit"]:disabled,
input[type="submit"]:disabled:hover {
	background-color: #ddd;
	border-color: #ddd;
	color: #fff;
	cursor: not-allowed;
}

.post-password-form input[type="password"] {
	margin-bottom: 15px;
}

/* Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 2;
	margin-bottom: 40px;
	width: 100%;
}

tbody {
	border-bottom: 1px solid #ddd;
}

th,
td {
	text-align: left;
}

th {
	font-weight: bold;
	text-transform: uppercase;
}

td {
	border-top: 1px solid #ddd;
	padding: 6px 0;
}


/*
Structure and Layout
---------------------------------------------------------------------------------------------------- */
/*
Content Area
---------------------------------------------------------------------------------------------------- */

.image-section {
	clear: both;
	text-align: center;
	overflow: hidden;
	width: 100%;
    vertical-align: middle;
    padding: 3% 0px;
    
    -webkit-background-clip: padding-box;
	-moz-background-clip:    padding;
	background-clip:         padding-box;
	position: relative;
	background-position: center;
    background-size: cover;
    
   /* background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat; 
    
    
    background-attachment: fixed;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;    */
}
*/

/* Site Containers
--------------------------------------------- */

.site-inner {
	background-color: #000;
	clear: both;
	position: relative;
	z-index: 9;
	word-wrap: break-word;    
    margin-top: 0;
    max-width: 100%;
    float: none;
    margin: 0 auto;
}

.firstposition{
padding-top:100px;
}


.wrap {
    float: none;
    margin: 0 auto;
    max-width: 1200px;
    text-align: center;
}


.custom-inner {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;

}
.custom-wrap{
    text-align: center;
    width: 100%;
    position: absolute;
    top: 47%;
    transform: translateY(-47%)!important;
}

.characterbox .wrap{
    max-width: 1000px;
}

.altitude-landing .site-container .site-inner {
	margin-top: 100px;
}

.secondary-nav .site-inner {
	margin-top: 250px;
}

/* Column Classes
	Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css
--------------------------------------------- */

.five-sixths,
.four-sixths,
.one-fourth,
.one-fifth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-fifths,
.two-sixths,
.two-thirds {
	float: left;
	margin-left: 2.564102564102564%;
}

.one-half {
	padding: 0px 3%;
}

.one-half,
.three-sixths,
.two-fourths {
	width: 48.717948717948715%;
}

.one-third,
.two-sixths {
	width: 31.623931623931625%;
}

.four-sixths,
.two-thirds {
	width: 65.81196581196582%;
}

.one-fourth {
	width: 23.076923076923077%;
}

.three-fourths {
	width: 74.35897435897436%;
}

.one-fifth {
	width: 17.9487179487179488%;
}

.two-fifths {
	width: 38.4615384615384616%;
}

.three-fifths {
	width: 58.9743589743589744%;
}

.four-fifths {
	width: 79.4871794871794872%;
}

.one-sixth {
	width: 14.52991452991453%;
}

.five-sixths {
	width: 82.90598290598291%;
}

.first {
	clear: both;
	margin-left: 0;
}


/* Search Form
--------------------------------------------- */

.search-form {
	overflow: hidden;
}

.search-form input[type="search"] {
	margin-right: 10px;
	width: auto;
}

.search-form input[type="submit"] {
	padding: 25px;
}

.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* Titles
--------------------------------------------- */

.acf-title {
	font-family: 'bohem', sans-serif;
	font-size: 50px;
	padding: 25px 5px;
    color: #fff;
    text-shadow: -1px 3px 3px #000000;
	letter-spacing: 1px;
	text-transform: uppercase;
    
}

/* Lightbox
--------------------------------------------- */


body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;

  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}



/* WordPress
--------------------------------------------- */

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

a.alignnone {
	display: inline-block;
}

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
}


.alignnone {
	margin: 0 0 12px;
    border: 5px solid #fff;
    border-radius: 5px;
    -moz-transition:1s ease-in-out;
    -ms-transition:1s ease-in-out;
    -o-transition:1s ease-in-out;
    -webkit-transition:1s ease-in-out;
    transition:1s ease-in-out;
}



a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 24px 24px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 24px 24px;
}

.wp-caption-text {
	font-size: 18px;
	line-height: 1.2;
	text-align: center;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.gallery-caption,
.entry-content .gallery-caption {
	margin: 0 0 10px;
}

.post-password-form input {
	width: auto;
}

.post-password-form input[type="submit"] {
	padding: 25px;
}

.wp-audio-shortcode,
.wp-playlist,
.wp-video {
	margin: 0 0 28px;
}


/*
Widgets
---------------------------------------------------------------------------------------------------- */

.widget {
	word-wrap: break-word;
}

.widget ol > li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget ul li {
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.widget li li {
	border: none;
	margin: 0 0 0 30px;
	padding: 0;
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}


/*
Plugins
---------------------------------------------------------------------------------------------------- */


/* Jetpack
--------------------------------------------- */

#wpstats {
	display: none;
}


/*
Site Header
---------------------------------------------------------------------------------------------------- */

.site-header {
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
}

.site-header.dark {
	background-color: #000;
	opacity:0.8;
	transition-delay: 0.5s;
	
}

.site-header.dark > .wrap {
	border-bottom: none;
}

.site-header.dark .nav-secondary {
	display: none;
}

.admin-bar .site-header {
	top: 0px;
}

/* Title Area
--------------------------------------------- */

.title-area {
	float: left;
	padding: 25px 0;
	width: 360px;
	
}

.site-header.dark .title-area {
	padding: 15px 0;
}

.site-title {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 2px;
	line-height: 1;
	margin-bottom: 0;
	text-transform: uppercase;
}

.site-title a,
.site-title a:hover {
	color: #fff !important;
}

.header-image .title-area,
.header-image .site-header.dark .title-area {
	padding: 0;
	display: none;
	
}

.header-image .site-title > a {
	background-size: contain !important;
	display: block;
	height: 76px;
	text-indent: -9999px;
}

.header-image .dark .site-title > a {
	height: 56px;
}

.site-description {
	display: block;
	height: 0;
	margin-bottom: 0;
	text-indent: -9999px;
}


/*
Site Navigation
---------------------------------------------------------------------------------------------------- */

.nav-menu {
	line-height: 1;
}

.nav-menu .menu-item {
	display: inline-block;
	text-align: left;
	text-shadow: 0 0 3px #00afdd;
}

.nav-menu li li {
	margin-left: 0;
}

.nav-menu a {
	color: #fff;
	display: block;
	font-size: 28px;
	font-family: 'bohem', sans-serif;
	font-weight: 200;
	letter-spacing: 1px;
	padding: 20px 15px;
	text-transform: uppercase;
	text-shadow: 3px 3px 3px rgb(15, 26, 12);
	-webkit-transition: 200ms linear 0s;
	-moz-transition: 200ms linear 0s;
	-o-transition: 200ms linear 0s;
	transition: 200ms linear 0s;
	
}

.nav-menu a:hover {
	color:#870101;
	text-shadow: -1px 3px 3px #000000;
}

.site-header.dark .nav-menu a {
	padding: 20px 15px;
}

.nav-menu li.highlight a:hover::before {
	color: #e0be10;
}

.nav-menu li.highlight > a {
	font-weight: 800;
}

.nav-menu li.current-menu-item > a,
.nav-menu > li > a {
	/* border-bottom: 2px solid transparent; */
 }

.nav-menu li.current-menu-item > a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu > li > a:hover {
	border-color: transparent;
}

.nav-menu > .menu-item > a {
	text-transform: uppercase;
}


.nav-menu .sub-menu {
	left: -9999px;
	letter-spacing: 0;
	opacity: 0;
	position: absolute;
	-webkit-transition: opacity .4s ease-in-out;
	-moz-transition:    opacity .4s ease-in-out;
	-ms-transition:     opacity .4s ease-in-out;
	-o-transition:      opacity .4s ease-in-out;
	transition:         opacity .4s ease-in-out;
	width: 200px;
	z-index: 99;
}

.nav-menu .sub-menu a {
	background-color: #111;
	padding: 20px;
	position: relative;
	width: 200px;
}

.nav-menu .sub-menu a:hover,
.nav-menu .sub-menu li.current-menu-item > a {
	background-color: #222;
}

.nav-menu .sub-menu .sub-menu {
	margin: -54px 0 0 199px;
}

.nav-menu .menu-item:hover {
	position: static;
}

.nav-menu .menu-item:hover > .sub-menu {
	left: auto;
	opacity: 1;
}

.nav-menu > .first > a {
	padding-left: 0;
}

.nav-menu > .last > a {
	padding-right: 0;
}

.nav-menu > .right {
	color: #fff;
	display: inline-block;
	list-style-type: none;
	padding: 27px 20px;
	text-transform: uppercase;
}

.nav-menu > .right > a {
	display: inline;
	padding: 0;
}

.nav-menu > .rss > a {
	margin-left: 48px;
}

.nav-menu > .search {
	display: block;
	margin: 0 auto;
	padding: 0 20px 20px;
	width: 50%;
}

/* Primary Navigation
--------------------------------------------- */

.nav-primary {
	text-align: center;
}


.nav-primary .nav-menu {
	/*float: right; */
}

/* Responsive Menu
--------------------------------------------- */

.responsive-menu-icon {
	cursor: pointer;
	display: none;
	margin-bottom: 10px;
	text-align: center;
}

.responsive-menu-icon::before {
	color: #fff;
	text-shadow: 1px 1px 10px rgb(15, 26, 12);
	content: "\f333";
	font: normal 30px/1 "dashicons";
	margin: 0 auto;
}

.nav-secondary .responsive-menu-icon {
	margin: 10px auto 0;
}

/* Mouse Effect */

@-webkit-keyframes ani-mouse {
	0% {
	opacity: 1;
	top: 29%;
	}
	15% {
	opacity: 1;
	top: 50%;
	}
	50% {
	opacity: 0;
	top: 50%;
	}
	100% {
	opacity: 0;
	top: 29%;
	}
}
@-moz-keyframes ani-mouse {
	0% {
	opacity: 1;
	top: 29%;
	}
	15% {
	opacity: 1;
	top: 50%;
	}
	50% {
	opacity: 0;
	top: 50%;
	}
	100% {
	opacity: 0;
	top: 29%;
	}
}
@keyframes ani-mouse {
	0% {
	opacity: 1;
	top: 29%;
	}
	15% {
	opacity: 1;
	top: 50%;
	}
	50% {
	opacity: 0;
	top: 50%;
	}
	100% {
	opacity: 0;
	top: 29%;
	}
}
 .scroll-btn {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
}
.scroll-btn > * {
	display: inline-block;
	line-height: 18px;
	font-size: 13px;
	font-weight: normal;
	color: #7f8c8d;
	color: #ffffff;
	font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
	letter-spacing: 2px;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *.active {
	color: #ffffff;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *:active,
.scroll-btn > *.active {
	opacity: 0.8;
	filter: alpha(opacity=80);
}
.scroll-btn .mouse {
	position: relative;
	display: block;
	width: 35px;
	height: 55px;
	margin: 0 auto 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 3px solid white;
	border-radius: 23px;
}
.scroll-btn .mouse > * {
	position: absolute;
	display: block;
	top: 29%;
	left: 50%;
	width: 8px;
	height: 8px;
	margin: -4px 0 0 -4px;
	background: white;
	border-radius: 50%;
	-webkit-animation: ani-mouse 2.5s linear infinite;
	-moz-animation: ani-mouse 2.5s linear infinite;
	animation: ani-mouse 2.5s linear infinite;
}


/* Dashicons
--------------------------------------------- */

	.dashicons {
	font-size: 40px;
	height: 40px;
	margin-bottom: 20px;
	width: 40px;
}

/* Flexible Widgets
--------------------------------------------- */

.flexible-widgets {

	padding-bottom: 60px;
	padding-top: 60px;
	
}

.flexible-widgets .widget {
	float: left;
	margin: 0 0 40px 2.564102564102564%;
}

.flexible-widgets.widget-full .widget,
.flexible-widgets.widget-area .widget:nth-of-type(1),
.flexible-widgets.widget-halves.uneven .widget:last-of-type {
	background: none;
	margin-left: 0;
	padding: 0;
	width: 100%;
}
	
.widget-area.flexible-widgets.widget-half .widget,
.flexible-widgets.widget-halves .widget {
	width: 48.717948717948715%;
}

.flexible-widgets.widget-thirds .widget {
	width: 31.623931623931625%;
}

.flexible-widgets.widget-fourths .widget {
	width: 23.076923076923077%;
}

.flexible-widgets.widget-halves .widget:nth-child(even),
.flexible-widgets.widget-thirds .widget:nth-child(3n+2),
.flexible-widgets.widget-fourths .widget:nth-child(4n+2) {
	clear: left;
	margin-left: 0;
}

.solid-section .widget {
	background-color: #fff;
}


.flexible-widgets.widget-halves h2,
.flexible-widgets.widget-thirds h2,
.flexible-widgets.widget-fourths h2 {
	font-size: 36px;
}

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

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

.sidebar-content .content {
	float: right;
}

.full-width-content .content {
	padding: 0 200px 50px;
	width: 100%;
}

.full-width-content.front-page .content {
	padding: 0;
}
/* Comments
--------------------------------------------- */


/* Parallax
--------------------------------------------- */

.jarallax {
    position: relative;
    z-index: 0;
}
.jarallax > .jarallax-img {
    position: absolute;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


/* Parallax
--------------------------------------------- */

.comment-respond,
.entry-comments,
.entry-pings {
	margin-bottom: 100px;
}

p.comment-meta,
.entry-comments .comment,
.entry-comments .comment-reply {
	margin-bottom: 40px;
}

.comment-header {
	font-size: 20px;
}

.entry-comments .comment {
	border-bottom: 1px solid #000;
}

.comment-content,
.entry-comments .comment {
	clear: both;
}

p.form-submit,
.entry-comments .children .comment,
.entry-comments .comment-author {
	margin: 0;
}

.entry-comments .children .comment {
	border: none;
}

.comment-respond label {
	display: block;
	font-weight: 800;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 100%;
}

.comment-list li,
.ping-list li {
	list-style-type: none;
}

.entry-comments ul.children {
	margin-left: 40px;
}

.ping-list .reply {
	display: none;
}

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

.footer-soc {
    display: flex;
    width: 300px;
    margin: 0 auto;
    text-align: center;
    overflow: auto;
    padding: 5px;
    padding-bottom: 15px;
}

.footer-soc a{
    padding: 0px 3px 0px 3px;}


/*

.site-footer {

	background-color: #000;
	background-size: cover;
	padding: 50px 20px 20px;
	text-align: center;
    font-size: 12px;
}

.site-footer,
.site-footer a,
.site-footer p {
	color: #fff;
}

.site-footer a:hover {
	color: #22a1c4;
}

.site-footer p {
	font-size: 14px;
	letter-spacing: 1px;
	margin-bottom: 0;
	text-transform: uppercase;
}

.mob-strap {
	display: none;
}

.strap-right {
	margin-bottom: 20px;
    display: block;
    font-size: 30px;
	    line-height: 34px;
    font-family: '';
	text-transform: uppercase;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}
.strap-right-2 {
	margin-bottom: 20px;
    display: block;
    font-size: 20px;
	line-height: 22px;
	color: #2dc5ff;
	font-family: '';
	text-transform: uppercase;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}

*/
    
/*
 
Media Queries
---------------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 4400px) {
    .fixtextposition{
        right: 40%!important;
    }
}

@media only screen and (max-width: 3840px) {
    .fixtextposition{
        right: 35%!important;
    }
}

@media only screen and (max-width: 2560px) {
    .fixtextposition{
        right: 30%!important;
    }
}

@media only screen and (max-width: 1920px) {
    .fixtextposition{
        right: 25%!important;
    }
    
    .bottom-right {
    max-width: 450px!important;
    }
}

@media only screen and (max-width: 1700px) {
    
    .bottom-right {
    max-width: 350px!important;
    }
    
    
}

@media only screen and (max-width: 1600px) {
    
    .bottom-right {
    max-width: 250px!important;
    }
	
	
}

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

    /*.image-section {
	background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat; 
	
	}*/
    
    
    
    .bottom-right {
    max-width: 300px!important;
    }
    
    .bottom-right {
    display: none;
    }
    
    
    site-inner,
	.wrap {
		max-width: none;
		width: 100%;
		padding-left: 10px;
    	padding-right: 10px;
	}
    
    
    
    .acf-title{    
        font-size: 40px;
        -moz-transition:1s ease-in-out;
		-ms-transition:1s ease-in-out;
		-o-transition:1s ease-in-out;
		-webkit-transition:1s ease-in-out;
		transition:1s ease-in-out;
        
    }
    
    p{
        font-size: 18px;
        -moz-transition:1s ease-in-out;
		-ms-transition:1s ease-in-out;
		-o-transition:1s ease-in-out;
		-webkit-transition:1s ease-in-out;
		transition:1s ease-in-out;
    }
    
    .su-youtube{
        width: 80% !important;
        margin: 0 auto !important;
        
    }
    
    
    
	.overview-text {
		margin-top:-150px;
	}
	
	
	.nav-menu a {
		padding: 30px 10px;
    	text-shadow: 1px 1px 10px rgb(15, 26, 12);
		font-size:20px;
	}
	
	.site-header.dark .nav-menu a {
		padding: 20px 10px;
		
	}
	
	
}



@media only screen and (max-width: 768px) {
    
    .trailerbullet .boximage{
        padding: 15px!important;
        padding-top: 15px!important;
    }
	
	.buynowbuttonstatic{
		width:150px!important;
		height:30px!important;
	}
	h1 {
    font-size: 26px!important;
	}
	
	.inline {
    	display: unset!important;
	}
	.soc-icon {
    max-width: 90px!important;
    }
	.inlineslider{
	padding-top:5px!important;
	}
    .stores .nav a {
    padding: 0px!important;
    }
	
	.nav-tabs .pc{
		display:inline-block!important;
	}
	
	.pots{
		padding-top:5px;!important;
	}
	
	.textcorrection{
		text-align:center!important;
	}
	
	.vidbg-container{
		position: inherit!important;
	}
	
	/*.characterbox{
    background-image: url(/tormented-souls/wp-content/uploads/2021/07/tormented-souls-location.png);
	position: relative;
    z-index: unset!important;
	}*/
	
	.boximage{
		padding: 5px 5px 5px 5px!important;
	}
    .mobile{
    display: unset!important;
    }

    .pc{
        display: none!important;
    }
    
    .active-slide,
    .active-slidem,
    .active-slide1,
    .active-slide2,
    .active-slide1m,
    .active-slide2m{
        display: unset!important;
    }
    
    .slider-dots li,
    .slider-dotsm li,
    .slider-dots1 li,
    .slider-dots2 li,
    .slider-dots1m li,
    .slider-dots2m li{
         width: 30px!important;
        height: 30px!important;
        margin-top: 10px;
    }
    
    .arrow-prev,
    .arrow-prev1,
    .arrow-prev2,
    .arrow-prevm,
    .arrow-prev1m,
    .arrow-prev2m{
        margin-right:0px!important;
        margin-top:0px!important;
    }
    
    .arrow-next,
    .arrow-next1,
    .arrow-next2,
    .arrow-nextm,
    .arrow-next1m,
    .arrow-next2m{
        margin-left:0px!important;
        margin-top:0px!important;
    }
	
	
    
    .doubleboxtext {
     padding-top: 0px!important;
     margin-bottom: 0px!important;
     margin-left: 0px!important;
    }
    
    
    #topgobutton.show {
    display: none;
    }
    
    .imagecorner{
    display: none!important;
    
    }
    
    .buynowbutton {
        left: 15px!important;
        bottom: 15px!important;
        width: 50vw!important;
    }
    
    
    .firstposition{
    padding-top:15px;
    }
    
    .padright{
	padding-right:0px!important;		
	}
    
    .padleft{
	padding-left:0px!important;		
	}
    
    .padding-top{
    padding-top:0px!important;	
    }
    
    .custom-wrap {
        text-align: center;
        width: 100%;        
        top: 0%!important;
        transform: translateY(0%)!important;

    }
    
    .acf-title{    
        font-size: 30px;
        -moz-transition:1s ease-in-out;
		-ms-transition:1s ease-in-out;
		-o-transition:1s ease-in-out;
		-webkit-transition:1s ease-in-out;
		transition:1s ease-in-out;
        
        
    }
    
    .bullet-head{    
    font-size: 14px!important;
    }
	
	.site-footer img{
        transform: scale(0.9);
    }
	
	h3{
		font-size: 28px!important;
	}
    .overview-text {
		font-size: 14px!important;
    	max-width: 350px;
    	margin: 5px auto;
    	margin-top: -100px;
	}
    p{
        font-size: 14px;
        -moz-transition:1s ease-in-out;
		-ms-transition:1s ease-in-out;
		-o-transition:1s ease-in-out;
		-webkit-transition:1s ease-in-out;
		transition:1s ease-in-out;
      
    }
    
    .col {
        
        margin: 0;
        width: 100%;
    }
    
    .alignnone {
        margin: 0 0 22px;
        width: 80%;
        -moz-transition:1s ease-in-out;
		-ms-transition:1s ease-in-out;
		-o-transition:1s ease-in-out;
		-webkit-transition:1s ease-in-out;
		transition:1s ease-in-out;
    }
    
    .footer-soc {
	width: 250px;
	margin: 0 auto;
	text-align: center;
	}

    .site-inner,
	.wrap {
		max-width: none;
		width: 100%;
		padding-left: 5px;
    	padding-right: 5px;
	}
	

	.nav-menu.responsive-menu {
		display: none;
		float: none;
		padding-bottom: 20px;
	}

	.nav-menu.responsive-menu .menu-item,
	.responsive-menu-icon {
		display: block !important;
	}

	.nav-menu.responsive-menu .menu-item:hover {
		position: static;
	}

	.nav-menu.responsive-menu li.current-menu-item > a,
	.nav-menu.responsive-menu .sub-menu li.current-menu-item > a:hover,
	.nav-menu.responsive-menu li a,
	.nav-menu.responsive-menu li a:hover {
		background: none;
		border: none;
		display: block;
		padding: 10px 0;
		text-transform: none;
	}

	.nav-menu.responsive-menu .menu-item-has-children {
		cursor: pointer;	
	}

	.nav-menu.responsive-menu .menu-item-has-children > a {
		margin-right: 60px;
	}

	.nav-menu.responsive-menu > .menu-item-has-children:before {
		content: "\f347";
		float: right;
		font: normal 20px/1 "dashicons";
		height: 20px;
		padding: 7px 20px;
		right: 0;
		text-align: right;
		z-index: 9999;
	}

	.nav-menu.responsive-menu .menu-open.menu-item-has-children:before {
		content: "\f343";
	}

	.nav-menu.responsive-menu > .menu-item > .sub-menu {
		display: none;
	}

	.nav-menu.responsive-menu .sub-menu {
		background-color: rgba(255, 255, 255, 0.05);
		left: auto;
		opacity: 1;
		position: relative;
		-moz-transition:    opacity .4s ease-in-out;
		-ms-transition:     opacity .4s ease-in-out;
		-o-transition:      opacity .4s ease-in-out;
		-webkit-transition: opacity .4s ease-in-out;
		transition:         opacity .4s ease-in-out;
		width: 100%;
		z-index: 99;
	}

	.nav-menu.responsive-menu .sub-menu .sub-menu {
		background-color: transparent;
		margin: 0;
		padding-left: 25px;
	}

	.nav-menu.responsive-menu .sub-menu li a,
	.nav-menu.responsive-menu .sub-menu li a:hover {
		padding: 10px 0;
		position: relative;
		text-transform: none;
		width: 100%;
	}

	.nav-menu.responsive-menu .current-menu-item > a,
	.nav-menu.responsive-menu .sub-menu .current-menu-item > a:hover,
	.nav-menu.responsive-menu > li.menu-item-has-children:hover > a,
	.nav-menu.responsive-menu a:hover {
		background: none;
	}

	.site-header .nav-menu.responsive-menu .current-menu-item > a,
	.site-header .nav-menu.responsive-menu .sub-menu li a,
	.site-header .nav-menu.responsive-menu .sub-menu li a:hover,
	.site-header .nav-menu.responsive-menu .sub-menu,
	.site-header .nav-menu.responsive-menu > .menu-item-has-children:before,
	.site-header .nav-menu.responsive-menu > li:hover > a,
	.site-header .nav-menu.responsive-menu a:hover {
    /* Mobile menu */    
		color: #fff;
		text-shadow: 1px 1px 10px rgb(15, 26, 12);
	}
	
	
	.site-header {
		position: static;
	}
	

	.content,
	.sidebar,
	.site-header .widget-area,
	.title-area {
		width: 100%;
	}
	
	.site-header .title-area,
	.site-header.dark .title-area {
		padding: 15px 0;
	}
	
	.header-image .dark .site-title > a {
		height: 76px;
	}

	.nav-menu,
	.site-header .widget-area,
	.site-title {
		text-align: center;

	}
	
	.header-image .site-title > a {
		background-position: center !important;
	}
	
	.nav-primary .nav-menu {
		float: none;
	}
	

	.nav-menu a,
	.site-header.dark .nav-menu a {
		padding: 10px;
	}


	.five-sixths,
	.four-sixths,
	.one-fourth,
    .one-fifth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		margin: 0;
		width: 100%;
	}
	

}

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

	.image-section h2,
	.solid-section h2 {
		font-size: 20px;
	}
	

}

/* Media Queries ---------------------------------------------------------------------------------------------- */


/* Buy selector styles */

.buy-selectors {
    padding: 8px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    overflow: auto;
    padding-top: 10px;
}

.buy-selectors h4 {
    color: black;
}

.country h4{
    padding-top: 20px;
}

.form-control{    
    display: unset!important;
  /*  border-radius: 8px;
    max-width: 85%;
	appearance: auto; */
    
}

.nav {
    display: unset!important;
    
}


.nav-tabs {
	text-align: center;
    border: 0px!important;
}


.stores .nav a {
    /* padding: 18px 4px; */
    /* background-color: #fff; */
    /* border-radius: 30% 70% 0% 100% / 71% 25% 75% 29%  ; */
    cursor: pointer;
    display: inline-block;
    opacity: 0.6;
    padding: 15px 5px;
    text-align: center;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    margin: 5px auto;
    font-size: 16px;
    min-width: 180px;
    
}

.tab-content>.active {
    display: unset!important;
}

.modal .modal-dialog .modal-content .modal-body .tab-content {
    display: unset!important;
}



.stores .nav a.playstation4 {
    background: #01418f;
    border: 2px solid #01418f;
    color: #fff;
   
}

.stores .nav a.playstation5 {
    background: #01418f;
    border: 2px solid #01418f;
    color: #fff;
   
}

.stores .nav a.switch {
    background: #e7000a;
    border: 2px solid #e7000a;
    color: #fff;
	
}

.stores .nav a.pc {
    background: #1c2837;
    border: 2px solid #1c2837;
    color: #fff;
    
}

.stores .nav a.xboxone {
    background: #21791d;
    border: 2px solid #21791d;
    color: #fff;
   
}

.stores .nav a.xboxx {
    background: #21791d;
    border: 2px solid #21791d;
    color: #fff;
   
}

.stores .nav a.active {
    opacity: 1;
	border: 2px solid #fff;
}

.desturl .button{
    min-width: 200px;
    border-radius: 8px;
}



/* Social Icons */


.soc-icon {
	display: inline-block;
    max-width: 150px;
}




/* Section Line */

.session-border{	
	border-top: 5px solid #000;
}


/* Fonts */


@font-face {
    font-family: 'bohem';  
    src: url(/tormented-souls/wp-content/themes/PQUBE/fonts/Bohemian_Typewriter.otf);  
    font-weight: normal;  
}


/*
@font-face {
    font-family: Rockwell_MT_Bold;  
    src: url(/the-plane-effect/wp-content/themes/PQUBE/fonts/HelveticaNeue.ttf);  
    font-weight: normal;  
}
*/

/* Character Cards */

.scene {

  	width: 100%;
    height: 400px;
    perspective: 1200px;
    display: inline-block;
}

.ch-cards {
    overflow: auto;
}

.ch-cards .one-half {
	padding-top: 40px;
}

/*
.card-desc {
	margin-top: 88%;
}

*/

.overview-text {
	 color: #fff;
    text-align: center;
    font-size: 18px;
    line-height: 1.8em;
    text-shadow: 2px 2px 0px #000000bd;
}
	
.cards {
  width: 100%;
  height: 100%;
  transition: transform 1s;
  transform-style: preserve-3d;
  cursor: pointer;
  position: relative;
	margin: 0 auto;
	max-width:300px;
}

.cards.is-flipped {
  transform: rotateY(180deg);


}

.cards__face {
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 260px;
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 40px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}


.cards__face--back {

  transform: rotateY(180deg);
}

/* Image Hover */

.front-page-4 img  {

	-webkit-transition: 500ms linear 0s;
	-moz-transition: 500ms linear 0s;
	-o-transition: 500ms linear 0s;
	transition: 500ms linear 0s;
	border: 3px solid #947429;
    border-radius: 10px;
	box-shadow: 0px 0px 0px 5px rgb(24 45 133);
	-webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.75);
	/*height:641px;
	width:413px;*/
	
}

.front-page-4 img:hover  {
	-webkit-box-shadow: 0px 0px 19px 2px rgb(148, 116, 41);
	-moz-box-shadow: 0px 0px 19px 2px rgb(148, 116, 41);
	box-shadow: 0px 0px 19px 2px rgb(148, 116, 41);
	transition: 500ms;
}

.front-page-6 img  {

	-webkit-transition: 500ms linear 0s;
	-moz-transition: 500ms linear 0s;
	-o-transition: 500ms linear 0s;
	transition: 500ms linear 0s;
	border: 3px solid #947429;
    border-radius: 10px;
	box-shadow: 0px 0px 0px 5px rgb(24 45 133);
	-webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.75);
	/*height:641px;
	width:413px;*/
	
}

.front-page-6 img:hover  {
	-webkit-box-shadow: 0px 0px 19px 2px rgb(148, 116, 41);
	-moz-box-shadow: 0px 0px 19px 2px rgb(148, 116, 41);
	box-shadow: 0px 0px 19px 2px rgb(148, 116, 41);
	transition: 500ms;
}



.custom-text{
	color: #e0be10;
    text-shadow: 1px 1px 1px rgb(15, 26, 12);
	
}




.copyw{
	font-size: 16px;	
}

/* Buy Now Button
--------------------------------------------- */

.buynowbutton {
    display: inline-block;  
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000; 
    background-image: url(https://pqube.co.uk/tormented-souls/wp-content/uploads/2021/08/buynow-button.png);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    background-position: center;
    background-size: cover;
    background-color: #14110f !important;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    white-space: normal;
    width: 14vw;
    height: 4vw;
    
}



.buynowbutton:hover {
    -webkit-box-shadow: 0px 0px 22px 1px rgb(255 255 255);
    -moz-box-shadow: 0px 0px 22px 1px rgb(255 255 255);
    box-shadow: 0px 0px 22px 1px rgb(255 255 255);

}

.buynowbuttonstatic {
    background-image: url(https://pqube.co.uk/tormented-souls/wp-content/uploads/2021/08/buynow-button.png);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    background-position: center;
    background-size: cover;
    background-color: #14110f !important;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    white-space: normal;
    width: 200px;
    height: 60px;
    
}



.buynowbuttonstatic:hover {
    -webkit-box-shadow: 0px 0px 22px 1px rgb(255 255 255);
    -moz-box-shadow: 0px 0px 22px 1px rgb(255 255 255);
    box-shadow: 0px 0px 22px 1px rgb(255 255 255);

}

/* Fade Inside-Out Effect */

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  25% {
    -webkit-transform: scale3d(0.6, 0.6, 0.6);
    transform: scale3d(0.6, 0.6, 0.6);
  }

  50% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  75% {
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

/* Text Fade Effect */

.fadeup-effect {
	-webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
	opacity: 0;
	overflow: hidden;
	transform: scale(0.5);
}

@-webkit-keyframes fadeInUp {

	from {
		opacity: 0;
		transform: scale(0.5);		
	}
    to {
		opacity: 1;
		transform: scale(1);
	}
}
@keyframes fadeInUp {
    from {
		opacity: 0;
		transform: scale(0.5);
	}
    to {
		opacity: 1;
		transform: scale(1);
	}
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

/* Youtube */

.ytvideoset{
/*    max-width: 900px;
    margin: 0 auto;
*/
}


.su-youtube {
    border: 5px solid #000;    
}

/*
.su-youtube:hover {
	-webkit-box-shadow: 0px 0px 19px 2px rgb(224, 190, 16);
	-moz-box-shadow: 0px 0px 19px 2px rgb(224, 190, 16);
	box-shadow: 0px 0px 19px 2px rgb(224, 190, 16);
	transition: 500ms;
}
*/

/* Other */

.mid-soc img {
	max-width: 50px;
    margin: 0px 10px 80px;
}

.bullet-head{    
    font-size: 16px;
}

.top-center {
	margin-top: -20px;
	margin-bottom: 80px;
}

.story{
    margin: auto 0;
}


.padright{
	padding-right:250px;
    padding-top: 350px;
	
}

.padleft{
	padding-left:250px;
    padding-top: 350px;
}

.padding-top{
    padding-top:500px;	
}

.trailerbullet .boximage{
    text-align: left;
	padding:25px;
}

.carouselbox .boximage{
    text-align: left;
}

.boximage{
    background-image: url('/tormented-souls/wp-content/uploads/2021/07/paper_blank_burnt.png');
    -webkit-background-clip: padding-box;
	-moz-background-clip:    padding;
	background-clip:         padding-box;
	position: relative;
	background-position: center;
    background-size: cover;
    color: #1b1a1a;
}

.modal-content{
	background-image: url('/tormented-souls/wp-content/uploads/2021/07/paper_blank_burnt.png');
    -webkit-background-clip: padding-box;
	-moz-background-clip:    padding;
	background-clip:         padding-box;
	position: relative;
	background-position: center;
    background-size: cover;
	background-color:#fff0;
}


.imagecorner{
    margin-top: -225px;
    margin-left: 40px;
    transform: rotate(-10deg);
    width: 300px;
    
}

.fixtextposition {
    background: transparent;
    padding: 2vw;
    position: absolute;
    right: 25%;
    /* padding: 2vw; */
    /*position: absolute; */
    /*right: calc(.5em + 400px); */
    /* top: 10%; */
    /* transform: translateY(-50%);  */  
    
}

.fiximageposition{
    min-height: 250px;
    background-repeat: no-repeat;
    background-position: center;
}

.fixedbuttonposition{
    position: fixed;
    bottom: 30px;
    left: 30px;
      
}

/* App links */

.get-app {
  list-style: none;
  padding-bottom: 9px;
  padding-left: 0px;
  padding-top: 9px;
}

.get-app li {
  float: left;
  margin-bottom: 5px;
  margin-right: 5px;
}

.get-app img {
  height: 40px;
}




.steamcustombtn {
    display: inline-block;
    height: 34px;
    padding: 5px;
    font-size: 14px;
    color: #d2efa9;
    text-shadow: 1px 1px 2px rgba( 0, 0, 0, 0.3 );
    text-align: center;
    padding: 0px 11px;
    line-height: 34px;
    border-radius: 2px;
    text-transform: unset;
    background: #75b022;
    background: -webkit-linear-gradient( top, #6fa720 5%, #588a1b 95%);
    background: linear-gradient( to bottom, #6fa720 5%, #588a1b 95%);
    background: linear-gradient( to right, #6fa720 5%, #588a1b 95%);
    cursor: pointer;
}
.steamcustombtn:hover {
    color: #fff;
    background: #6aa621;
    background: -webkit-linear-gradient( top, #8ed629 5%, #6aa621 95%);
    background: linear-gradient( to bottom, #8ed629 5%, #6aa621 95%);
    background: linear-gradient( to right, #8ed629 5%, #6aa621 95%);
}



/* Double Carousel */

.slider {
  
}

.slide,
.slidem,
.slide1,
.slide2,
.slide1m,
.slide2m{  
  display: none;
}

.active-slide,
.active-slidem,
.active-slide1,
.active-slide2,
.active-slide1m,
.active-slide2m{
    display: flex;
}



.slider-nav,
.slider-navm,
.slider-nav1,
.slider-nav2,
.slider-nav1m,
.slider-nav2m{
  text-align: center;
}




.arrow-prev,
.arrow-prevm{
  margin-right: 15px;
  display: inline-block;
  vertical-align: top;
  margin-top: 9px;
}

.arrow-prev1,
.arrow-prev2,
.arrow-prev1m,
.arrow-prev2m{
  margin-right: 15px;
  display: inline-block;
  vertical-align: top;
  margin-top: 9px;
}

.arrow-next,
.arrow-nextm{
  margin-left: 15px;
  display: inline-block;
  vertical-align: top;
  margin-top: 9px;
}

.arrow-next1,
.arrow-next2,
.arrow-next1m,
.arrow-next2m{
  margin-left: 15px;
  display: inline-block;
  vertical-align: top;
  margin-top: 9px;
}

.arrow-prev,
.arrow-next{
		margin-top:250px!important;
	}

.arrow-prev1m img,
.arrow-next1m img,
.arrow-prev2m img,
.arrow-next2m img{
    width: 40px;
}

.slider-dots,
.slider-dotsm,
.slider-dots1,
.slider-dots2,
.slider-dots1m,
.slider-dots2m{
  list-style: none;
  display: inline-block;
  padding-left: 0;
  margin-bottom: 0;
}

.slider-dots li,
.slider-dotsm li,
.slider-dots1 li,
.slider-dots2 li,
.slider-dots1m li,
.slider-dots2m li{
  background-image: url('/tormented-souls/wp-content/uploads/2021/07/carousel_indicator-inactive.png');
    width: 50px;
    height: 50px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    position: relative;
    background-position: center;
    background-size: cover;    
  display: inline-flex;
  font-size: 30px;
  margin-right: 5px;
}

.slider-dots li.active-dot {
  background-image: url('/tormented-souls/wp-content/uploads/2021/07/carousel_indicator_active.png');
}

.slider-dotsm li.active-dotm {
  background-image: url('/tormented-souls/wp-content/uploads/2021/07/carousel_indicator_active.png');
}

.slider-dots1 li.active-dot1 {
  background-image: url('/tormented-souls/wp-content/uploads/2021/07/carousel_indicator_active.png');
}

.slider-dots2 li.active-dot2 {
  background-image: url('/tormented-souls/wp-content/uploads/2021/07/carousel_indicator_active.png');
}

.slider-dots1m li.active-dot1m {
  background-image: url('/tormented-souls/wp-content/uploads/2021/07/carousel_indicator_active.png');
}

.slider-dots2m li.active-dot2m {
  background-image: url('/tormented-souls/wp-content/uploads/2021/07/carousel_indicator_active.png');
}

/*
.slide img,
.slide1 img,
.slide2 img{
    position: relative;
    z-index: 10;
}
*/

.slider1 .boximage {
    transform: rotate(1deg);
}

.slider2 .boximage {
    transform: rotate(-1deg);
}






.doubleboximagespace{
    margin-left:-25px;
}








/* Nav Button */

#topgobutton {
  display: inline-block;
  background-color: #5e5957;
  width: 100px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
  opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#topgobutton::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#topgobutton:hover {
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 22px 1px rgb(255 255 255);
    -moz-box-shadow: 0px 0px 22px 1px rgb(255 255 255);
    box-shadow: 0px 0px 22px 1px rgb(255 255 255);
	 
}
#topgobutton:active {
  background-color: #555;
}
#topgobutton.show {
  opacity: 1;
  visibility: visible;
}

.bottom-right{    
    position: absolute;
    right: 0px;
    bottom: 0px;
    max-width: 600px;
}

.bullets{
    height: 30px;
}

.carouselalign{
    display: inline-flex;
}

.carouselalign .boximage{
    
    height: 300px;
    padding: 60px;
}

.mobile{
    display: none;
}

.pc{
    display: unset;
}

.modal-content{
    margin: 0 auto!important;
    width: auto!important;
}



.trailerline{
	display:grid;
}

.inlineslider{
    display: inline-flex;
	padding-top:125px;
}

.trailerbullet .one-half {
	padding: 0px!important;
}

.trailerbullet p {
    
	margin: 0px!important;
}

.carouselbox .inlineslider img{
    width:400px;
}

.carouseldoublebox .inlineslider img{
    width:550px;
}

.carouselbox .boximagespace {
    margin-left: -55px;
    margin-top: 25px;
}

.carouselbox .inlineslider img{
	position:relative;
	z-index:10;
}

.carouselbox .boximage{
    padding: 25px 25px 25px 60px;
}

.carouseldoublebox .inlineslider img{
	border:5px solid black;
}

.slider1 .boximage{
	position:relative;
	z-index:10;
	padding: 15px;
	text-align:left;
    min-height: 320px;
}

.slider2 .boximage{
	position:relative;
	z-index:10;
	padding: 15px;
	text-align:right;
    min-height: 320px;
}

.site-header .wrap {
    max-width: 2400px;
    letter-spacing: 5px;
}

.textcorrection{
		text-align:left;
	}

.pots{
		padding-top:25px;
	}

.inline{
	display:inline-flex;
}