/*-----------------------------------------------------------------------------------
	Judgement Productions
	About: Enter theirs Worlds Deeply
	Author: Judgement Productions
	Version: 2.8
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:#0D0D0D;
    overflow-x:hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-container{overflow: hidden;} /* Prevents unwanted scroll space when scroll FX used. */
a,button{transition: background .3s ease-in-out;outline: none!important;} /* Prevent blue selection glow on Chrome and Safari */
a:hover{text-decoration: none; cursor:pointer;}
.scroll-fx-lock-init{position:fixed!important;top: 0;bottom: 0;left: :0;right: 0;z-index:99999;} /* ScrollFX Lock */
.blocs-grid-container{display: grid!important;grid-template-columns: 1fr 1fr;grid-template-rows: auto auto;column-gap: 1.5rem;row-gap: 1.5rem;} /* CSS Grid */
nav .dropdown-menu .nav-link{color:rgba(0,0,0,0.6)!important;} /* Maintain Downdown Menu Link Color in Navigation */
[data-bs-theme="dark"] nav .dropdown-menu .nav-link{color:var(--bs-dropdown-link-color)!important;} /* Maintain Downdown Menu Link Color in Navigation in Darkmode */


/* Preloader */

.page-preloader{position: fixed;top: 0;bottom: 0;width: 100%;z-index:100000;background:#FFFFFF url("img/pageload-spinner.gif") no-repeat center center;animation-name: preloader-fade;animation-delay: 2s;animation-duration: 0.5s;animation-fill-mode: both;}
.preloader-complete{animation-delay:0.1s;}
@keyframes preloader-fade {0% {opacity: 1;visibility: visible;}100% {opacity: 0;visibility: hidden;}}

/* = Web Fonts
-------------------------------------------------------------- */

@font-face {
	font-family:'Michroma-Regular';
	src: url('./fonts/Michroma-Regular/Michroma-Regular.ttf');
	src: url('./fonts/Michroma-Regular/Michroma-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'AnekLatin-Regular';
	src: url('./fonts/AnekLatin-Regular/AnekLatin-Regular.ttf');
	src: url('./fonts/AnekLatin-Regular/AnekLatin-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'Karrera-Regular';
	src: url('./fonts/Karrera-Regular/Karrera-Regular.woff');
	src: url('./fonts/Karrera-Regular/Karrera-Regular.woff') format('woff'),
	url('./fonts/Karrera-Regular/Karrera-Regular.eot?#iefix') format('embedded-opentype'),
	url('./fonts/Karrera-Regular/Karrera-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'AnekLatinExpanded-Regular';
	src: url('./fonts/AnekLatinExpanded-Regular/AnekLatin_Expanded-Regular.ttf');
	src: url('./fonts/AnekLatinExpanded-Regular/AnekLatin_Expanded-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'CormorantSC-Regular';
	src: url('./fonts/CormorantSC-Regular/CormorantSC-Regular.ttf');
	src: url('./fonts/CormorantSC-Regular/CormorantSC-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'AnekLatinExpanded-Bold';
	src: url('./fonts/AnekLatinExpanded-Bold/AnekLatin_Expanded-Bold.ttf');
	src: url('./fonts/AnekLatinExpanded-Bold/AnekLatin_Expanded-Bold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'AnekLatinCondensed-Bold';
	src: url('./fonts/AnekLatinCondensed-Bold/AnekLatin_Condensed-Bold.ttf');
	src: url('./fonts/AnekLatinCondensed-Bold/AnekLatin_Condensed-Bold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'CormorantSC-Light';
	src: url('./fonts/CormorantSC-Light/CormorantSC-Light.ttf');
	src: url('./fonts/CormorantSC-Light/CormorantSC-Light.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'BebasNeue-Regular';
	src: url('./fonts/BebasNeue-Regular/BebasNeue-Regular.ttf');
	src: url('./fonts/BebasNeue-Regular/BebasNeue-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'AnekLatinCondensed-Regular';
	src: url('./fonts/AnekLatinCondensed-Regular/AnekLatin_Condensed-Regular.ttf');
	src: url('./fonts/AnekLatinCondensed-Regular/AnekLatin_Condensed-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'aAssassinNinja';
	src: url('./fonts/aAssassinNinja/aAssassinNinja.ttf');
	src: url('./fonts/aAssassinNinja/aAssassinNinja.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

/* = Blocs
-------------------------------------------------------------- */

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	padding:0 20px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
	display:flex;
}
.bloc .container{
	padding-left:0;
	padding-right:0;
	position:relative;
}


/* Sizes */

.bloc-lg{
	padding:100px 20px;
}
.bloc-sm{
	padding:20px;
}

/* = Full Screen Blocs 
-------------------------------------------------------------- */

.bloc-fill-screen{
	min-height:100vh;
	display: flex;
	flex-direction: column;
	padding-top:20px;
	padding-bottom:20px;
}
.bloc-fill-screen > .container{
	align-self: flex-middle;
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
}
.bloc-fill-screen > .container > .row{
	flex-grow: 1;
	align-self: center;
	width:100%;
}
.bloc-fill-screen .fill-bloc-top-edge, .bloc-fill-screen .fill-bloc-bottom-edge{
	flex-grow: 0;
}
.bloc-fill-screen .fill-bloc-top-edge{
	align-self: flex-start;
}
.bloc-fill-screen .fill-bloc-bottom-edge{
	align-self: flex-end;
}

/* = Full Width Blocs 
-------------------------------------------------------------- */

.full-width-bloc{
	padding-left:0;
	padding-right:0;
}
.full-width-bloc .row{
	margin-left:0;
	margin-right:0;
}
.full-width-bloc .container{
	width:100%;
	max-width:100%!important;
}
.full-width-bloc .carousel img{
	width:100%;
	height:auto;
}


/* Edge Dividers */

.bloc-shape-divider{
	position: absolute;
	width:100%;
	text-align:center;
	left:0;
	right:0;
	z-index: 0;
	display: flex;
	pointer-events: none;
}
.svg-divider{
	width:100%;
	height:100px;
	fill:#000000;
}
.bloc-divider-top{
	top:-1px;
	align-items: flex-start;
}
.bloc-divider-bottom{
	bottom:-1px;
	align-items: flex-end;
}


/* Flip Edge Divider */

.bloc-divider-flip-x svg{
	transform:scale(-1,1);
}
.bloc-divider-flip-y svg{
	transform:scale(1,-1);
}
.bloc-divider-flip-x.bloc-divider-flip-y svg{
	transform:scale(-1,-1);
}


/* Background Styles */

.bg-center,.bg-l-edge,.bg-r-edge,.bg-t-edge,.bg-b-edge,.bg-tl-edge,.bg-bl-edge,.bg-tr-edge,.bg-br-edge,.bg-repeat{
	-webkit-background-size: auto!important;
	-moz-background-size: auto!important;
	-o-background-size: auto!important;
	background-size: auto!important;
}
.bg-center{
	-webkit-background-size: auto;
}


/* Background Textures */

.bloc-bg-texture::before{
	content:"";
	background-size: 2px 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	left:0;
	right:0;
}
.texture-paper::before{
	background: url("img/texture-paper.png");
	background-size: 280px 280px;
}
.texture-darken::before{
	background: rgba(0,0,0,0.5);
}


/* Background Effects */

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index:-1;
}
.parallax {
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Dark theme */

.d-bloc{
	color:rgba(255,255,255,.7);
}
.d-bloc button:hover{
	color:rgba(255,255,255,.9);
}
.d-bloc .icon-round,.d-bloc .icon-square,.d-bloc .icon-rounded,.d-bloc .icon-semi-rounded-a,.d-bloc .icon-semi-rounded-b{
	border-color:rgba(255,255,255,.9);
}
.d-bloc .divider-h span{
	border-color:rgba(255,255,255,.2);
}
.d-bloc .a-btn,.d-bloc .navbar a, .d-bloc a .icon-sm, .d-bloc a .icon-md, .d-bloc a .icon-lg, .d-bloc a .icon-xl, .d-bloc h1 a, .d-bloc h2 a, .d-bloc h3 a, .d-bloc h4 a, .d-bloc h5 a, .d-bloc h6 a, .d-bloc p a{
	color:rgba(255,255,255,.6);
}
.d-bloc .a-btn:hover,.d-bloc .navbar a:hover,.d-bloc a:hover .icon-sm, .d-bloc a:hover .icon-md, .d-bloc a:hover .icon-lg, .d-bloc a:hover .icon-xl, .d-bloc h1 a:hover, .d-bloc h2 a:hover, .d-bloc h3 a:hover, .d-bloc h4 a:hover, .d-bloc h5 a:hover, .d-bloc h6 a:hover, .d-bloc p a:hover{
	color:rgba(255,255,255,1);
}
.d-bloc .navbar-toggle .icon-bar{
	background:rgba(255,255,255,1);
}
.d-bloc .btn-wire,.d-bloc .btn-wire:hover{
	color:rgba(255,255,255,1);
	border-color:rgba(255,255,255,1);
}
.d-bloc .card{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover{
	color:rgba(0,0,0,.7);
}
.d-bloc .card icon{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover{
	color:rgba(0,0,0,1);
}
.d-bloc .card .btn-wire, .d-bloc .card .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* Light theme */

.d-bloc .card,.l-bloc{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover,.l-bloc button:hover{
	color:rgba(0,0,0,.7);
}
.l-bloc .icon-round,.l-bloc .icon-square,.l-bloc .icon-rounded,.l-bloc .icon-semi-rounded-a,.l-bloc .icon-semi-rounded-b{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span,.l-bloc .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn,.l-bloc .a-btn,.l-bloc .navbar a,.l-bloc a .icon-sm, .l-bloc a .icon-md, .l-bloc a .icon-lg, .l-bloc a .icon-xl, .l-bloc h1 a, .l-bloc h2 a, .l-bloc h3 a, .l-bloc h4 a, .l-bloc h5 a, .l-bloc h6 a, .l-bloc p a{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover,.l-bloc .a-btn:hover,.l-bloc .navbar a:hover, .l-bloc a:hover .icon-sm, .l-bloc a:hover .icon-md, .l-bloc a:hover .icon-lg, .l-bloc a:hover .icon-xl, .l-bloc h1 a:hover, .l-bloc h2 a:hover, .l-bloc h3 a:hover, .l-bloc h4 a:hover, .l-bloc h5 a:hover, .l-bloc h6 a:hover, .l-bloc p a:hover{
	color:rgba(0,0,0,1);
}
.l-bloc .navbar-toggle .icon-bar{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .btn-wire,.d-bloc .card .btn-wire:hover,.l-bloc .btn-wire,.l-bloc .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}

/* Row Margin Offsets */

.voffset{
	margin-top:30px;
}
/* Dividers */

.b-divider{
	border-top:1px solid rgba(0,0,0,.1);
	border-bottom:1px solid rgba(0,0,0,.1);
}


/* = NavBar
-------------------------------------------------------------- */

.navbar-dark .nav .dropdown-menu .nav-link{
	color: rgb(64, 64, 64);
}
/* Navbar Icon */
.svg-menu-icon{
	fill: none;
	stroke: rgba(0,0,0,0.5);
	stroke-width: 2px;
	fill-rule: evenodd;
}
.navbar-dark .svg-menu-icon{
	stroke: rgba(255,255,255,0.5);
}
.menu-icon-thin-bars{
	stroke-width: 1px;
}
.menu-icon-thick-bars{
	stroke-width: 5px;
}
.menu-icon-rounded-bars{
	stroke-width: 3px;
	stroke-linecap: round;
}
.menu-icon-filled{
	fill: rgba(0,0,0,0.5);
	stroke-width: 0px;
}
.navbar-dark .menu-icon-filled{
	fill: rgba(255,255,255,0.5);
}
.navbar-toggler-icon{
	background: none!important;
	pointer-events: none;
	width: 33px;
	height: 33px;
}
/* Handle Multi Level Navigation */
.dropdown-menu .dropdown-menu{
	border:none}
@media (min-width:576px){
	
.navbar-expand-sm .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-sm .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:768px){
	.navbar-expand-md .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-md .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:992px){
	.navbar-expand-lg .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-lg .dropdown-menu .submenu-left{
	right:100%;
	left:auto}
}
/* = Open menus on hover
-------------------------------------------------------------- */
@media (min-width: 992px){
	.hover-open-submenu li:hover > .dropdown > .dropdown-menu, .hover-open-submenu .dropdown-menu > li:hover .dropdown-menu{
	display: block;
}
.hover-open-submenu li .dropdown .dropdown-menu{
	margin-top:0;
}
}
/* = Bric adjustment margins
-------------------------------------------------------------- */

.mg-md{
	margin-top:10px;
	margin-bottom:20px;
}

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

.btn-d,.btn-d:hover,.btn-d:focus{
	color:#FFF;
	background:rgba(0,0,0,.3);
}

/* Prevent ugly blue glow on chrome and safari */
button{
	outline: none!important;
}

.btn-sq{
	border-radius: 0px;
}
.btn-style-none,.btn-style-none:hover,.btn-style-none:active,.btn-style-none:focus{
	background:none;
	box-shadow: none;
	padding:0;
}
.btn-wire{
	background:transparent!important;
	border:2px solid transparent;
}
.btn-wire:hover{
	background:transparent!important;
	border:2px solid transparent;
}
.btn-xl{
	padding: 16px 40px;
	font-size: 28px;
}
.a-block{
	width:100%;
	text-align:left;
	display: inline-block;
}
.text-center .a-block{
	text-align:center;
}
.dropdown a .caret{
	margin:0 0 0 5px}.btn-dropdown .dropdown-menu .dropdown{
	padding: 3px 20px;
}

/* = Icons
-------------------------------------------------------------- */
.icon-md{
	font-size:30px!important;
}

/*  Image Protection */
.img-protected{
	-webkit-touch-callout: none;
}

/* = Text & Icon Styles
-------------------------------------------------------------- */
.sm-shadow{
	text-shadow:0 1px 2px rgba(0,0,0,.3);
}


.card-sq, .card-sq .card-header, .card-sq .card-footer{
	border-radius:0;
}
.card-rd{
	border-radius:30px;
}
.card-rd .card-header{
	border-radius:29px 29px 0 0;
}
.card-rd .card-footer{
	border-radius:0 0 29px 29px;
}
/* = Masonary
-------------------------------------------------------------- */
.card-columns .card {
	margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
	.card-columns {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	orphans: 1;
	widows: 1;
}
.card-columns .card {
	display: inline-block;
	width: 100%;
}
}


/* Scroll FX */
.scroll-fx-in-range{
	will-change: opacity;
}


/* ScrollToTop button */

.scrollToTop{
	width:36px;
	height:36px;
	padding:5px;
	position:fixed;
	bottom:20px;
	right:20px;
	opacity:0;
	z-index:999;
	transition: all .3s ease-in-out;
	pointer-events:none;
}
.showScrollTop{
	opacity: 1;
	pointer-events:all;
}
.scroll-to-top-btn-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}
/* = Lightbox
-------------------------------------------------------------- */

a[data-lightbox]{
	position: relative;
	display: block;
	text-align: center;
}
a[data-lightbox]:hover::before{
	content:"+";
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial;
	font-size:32px;
	line-height: 42px;
	width:50px;
	height:50px;
	margin-left:-25px;
	border-radius: 50%;
	background:rgba(0,0,0,.5);
	color:#FFF;
	font-weight:100;
	z-index: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
a[data-lightbox]:hover img{
	opacity: 0.6;
	-webkit-animation-fill-mode: none;
	animation-fill-mode:none;
}
.lightbox-caption{
	padding: 20px;
	color: #FFF;
	background: rgba(0,0,0,.5);
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 0px;
}
.close-lightbox:hover,.next-lightbox:hover, .prev-lightbox:hover{
	background:rgba(0,0,0,.5);
}
.next-lightbox, .prev-lightbox,.close-lightbox{
	position: absolute;
	padding:6px;
	background:rgba(0,0,0,.3);
	line-height:0;
	transition: background .2s ease-in-out;
	border-radius:.25rem;
	border:none;
	z-index:20;
}
.next-lightbox, .prev-lightbox{
	top:45%;
}
.close-lightbox{
	top:20px;
	right:20px;
}
.next-lightbox{
	right:25px;
}
.prev-lightbox{
	left:25px;
}
.lightbox-prev-icon,.lightbox-next-icon,.lightbox-close-icon{
	fill:none;
	stroke: #fff;
	stroke-width: 3px;
	fill-rule: evenodd;
	stroke-linecap:round;
}
.lightbox-close-svg{
	pointer-events:none;
}

/* = Custom Styling
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"AnekLatin-Regular";
	line-height:40px;
	white-space:pre-line;
	color:var(--swatch-var-3409)!important;
	text-shadow:0.00px -0.00px 0px #000000;
}
.container{
	max-width:1140px;
}
.hero-heading{
	width:100%;
	font-size:100px;
	text-transform:none;
	line-height:200px;
	text-align:center;
}
.navbar-brand img{
	max-width:600px;
}
.navbar-nav li a{
	font-weight:bold;
	text-transform:uppercase;
}
.primary-divider{
	background-color:var(--swatch-var-3409);
	max-width:150px;
	height:2px;
}
.section-heading{
	font-weight:bold;
	text-transform:capitalize;
	color:var(--swatch-var-3409)!important;
	font-size:80px;
	line-height:300px;
}
.section-p{
	font-size:20px;
	line-height:40px;
	white-space:pre-line;
	color:var(--swatch-var-6728)!important;
}
.primary-btn{
	background-color:#00C7AF;
	color:#00C7AF!important;
	fill:#00C7AF!important;
	stroke:#00C7AF!important;
	font-family:"Oswald";
	border-color:#00C7AF!important;
	border-style:solid;
	text-align:center;
}
.primary-btn:hover{
	background-color:var(--swatch-var-79);
}
.btn{
	font-weight:bold;
}
.center-divider{
	margin-left:auto;
	margin-right:auto;
	font-size:60px;
	font-family:"aAssassinNinja";
}
.custom-field{
	background-color:transparent;
	border-style:solid;
	border-color:var(--swatch-var-3409)!important;
	border-radius:0px 0px 0px 0px;
	margin-bottom:20px;
	border-width:2px 2px 2px 2px;
	caret-color:var(--swatch-var-3409);
	color:var(--swatch-var-6728)!important;
	text-align:center;
	font-family:"Oswald";
	font-style:italic;
}
.custom-field::placeholder{
	color:var(--swatch-var-3409)!important;
}
.custom-field:focus{
	background-color:transparent;
	color:var(--swatch-var-6728)!important;
}
.name-heading{
	font-size:40px;
}
h1,h2,h3,h4,h5,h6{
	font-family:"aAssassinNinja";
}
.row-style{
	width:100%;
}
.menu-icon-stroke{
	stroke:var(--swatch-var-3409)!important;
	fill:var(--swatch-var-3409)!important;
}
.img-gallery-style{
	width:229px;
}
.img-12-style{
	width:228px;
}
.img-16-style{
	width:267px;
}
h6{
	font-family:"AnekLatinCondensed-Regular";
}
.prehead{
	font-family:"AnekLatinExpanded-ExtraLight";
	color:var(--swatch-var-6728)!important;
	font-size:40px;
}
.p-style{
	line-height:100px;
	font-family:"CormorantSC-Regular";
	letter-spacing:10px;
	font-size:28px;
}
.field-style{
	text-align:center;
	width:100%;
}
.row-5-style{
	width:100%;
}
.p-1-style{
	font-family:"Oswald";
	line-height:100px;
	font-size:40px;
}
.team-card{
	min-height:350px;
}
.h4-style{
	width:100%;
	font-size:30px;
	font-family:"Oswald";
	line-height:50px;
}
.row-bloc-5-style{
	opacity:0.6;
	width:100%;
}
.genres{
	color:#FFFFFF!important;
	font-size:40px;
	text-align:left;
	line-height:100px;
	font-family:"Oswald";
}
.bloc-divider-t-fill{
	fill:var(--swatch-var-3409);
	width:100%;
	height:20px;
}
.bloc-divider-t-bloc-4-fill{
	fill:#00C7AF;
	height:100px;
	width:100%;
}
.h1-style{
	line-height:1px;
	font-size:20px;
	width:100%;
	font-family:"Karrera-Regular";
	color:var(--swatch-var-6728)!important;
	text-transform:none;
}
.container-div-0-style{
	height:133px;
}
.container-div-0-bloc-1-style{
	height:30px;
}
.bloc-divider-t-0-fill{
	fill:#000000;
}
.bloc-divider-b-fill{
	fill:#079EC7;
	width:100%;
	height:5px;
}
.bloc-divider-b-bloc-4-fill{
	fill:#000000;
}
.row-bloc-4-style{
	width:100%;
}
.p-bloc-4-style{
	font-size:100px;
	font-family:"aAssassinNinja";
	line-height:300px;
}
.bloc-divider-t-bloc-1-fill{
	fill:var(--swatch-var-2869);
}
.img-contact-style{
	width:900px;
	height:1425px;
}
.bloc-divider-t-bloc-21-fill{
	fill:var(--swatch-var-1165);
	height:30px;
}
.radio{
	font-family:"Oswald";
	color:#FFFFFF!important;
	text-align:right;
	text-transform:none;
	font-size:40px;
	line-height:50px;
	fill:var(--swatch-var-3409);
	background-size:length;
	stroke:var(--swatch-var-3409);
	caret-color:var(--swatch-var-3409);
}
.label-style{
	font-family:"AnekLatinExpanded-ExtraLight";
	font-size:30px;
	line-height:50px;
	width:100%;
	text-align:right;
}
.h2-bloc-20-style{
	font-size:80px;
	line-height:200px;
}
.h2-6-style{
	font-family:"AnekLatinCondensed-Bold";
	font-size:45px;
	line-height:50px;
	letter-spacing:5px;
	margin-top:20px;
	text-shadow:0.00px -2.00px 2px #000000;
}
.h4-14-style{
	font-size:30px;
	font-family:"Oswald";
	line-height:50px;
}
.h4-15-style{
	font-size:30px;
	font-family:"Oswald";
	line-height:50px;
}
.h4-16-style{
	font-size:30px;
	font-family:"Oswald";
	line-height:50px;
	width:100%;
}
.h4-17-style{
	font-size:30px;
	font-family:"Oswald";
	line-height:50px;
}
.h4-19-style{
	font-size:30px;
	font-family:"Oswald";
	line-height:50px;
}
.h4-brand-amicy--style{
	font-size:30px;
	font-family:"Oswald";
	line-height:50px;
}
.h4-21-style{
	font-size:30px;
	font-family:"Oswald";
	line-height:50px;
	width:100%;
}
.h4-bloc-4-style{
	width:100%;
	font-family:"Oswald";
	line-height:50px;
	font-size:30px;
}
.img-35-style{
	height:400px;
}
.h1-bloc-4-style{
	font-family:"AnekLatinExpanded-ExtraLight";
	font-size:30px;
	line-height:200px;
	width:100%;
}
.h1-news-letters-style{
	font-family:"AnekLatinExpanded-ExtraLight";
	font-size:30px;
	line-height:200px;
	width:100%;
	text-align:right;
}
.bloc-divider-b-bloc-1-fill{
	fill:var(--swatch-var-3409);
	height:10px;
}
.bloc-divider-b-guides-fill{
	fill:var(--swatch-var-3409);
}
.bloc-divider-b-bloc-5-fill{
	fill:var(--swatch-var-1453);
	height:px;
}
.bloc-divider-t-bloc-5-fill{
	fill:var(--swatch-var-1453);
	height:5px;
}
.label-name--style{
	font-family:"AnekLatinExpanded-ExtraLight";
	font-size:30px;
	line-height:50px;
	width:100%;
	text-align:right;
}
.label-email-style{
	font-family:"AnekLatinExpanded-ExtraLight";
	font-size:30px;
	width:100%;
	line-height:50px;
	text-align:right;
}
.label-phone-style{
	font-family:"AnekLatinExpanded-ExtraLight";
	font-size:30px;
	width:100%;
	line-height:50px;
	text-align:right;
}
.bloc-divider-t-guides-fill{
	fill:var(--swatch-var-3409);
}
.bloc-divider-b-bloc-12-fill{
	fill:#000000;
}
.h4-follow-us-style{
	font-family:"AnekLatinExpanded-ExtraLight";
}
.h4-connect-style{
	font-family:"AnekLatinExpanded-ExtraLight";
	font-size:30px;
	line-height:50px;
	text-align:center;
}
.p-8-style{
	font-size:30px;
	line-height:50px;
	font-family:"AnekLatinExpanded-ExtraLight";
}
.p-5-style{
	font-size:30px;
	line-height:50px;
	font-family:"AnekLatinExpanded-ExtraLight";
	width:100%;
}
.p-6-style{
	font-family:"Oswald";
	width:100%;
	line-height:40px;
	margin-top:45px;
	letter-spacing:1px;
	text-transform:uppercase;
	text-indent:20px;
	white-space:normal;
	text-shadow:0.00px -2.00px 2px #000000;
	font-size:15px;
}
.h4-3-style{
	font-family:"Oswald";
	line-height:50px;
	font-size:30px;
}
.h4-5-style{
	font-family:"Oswald";
	width:100%;
	line-height:50px;
	font-size:30px;
}
.label-1-style{
	font-family:"Oswald";
	font-size:16px;
}
.row-11-style{
	width:100%;
}
.h1-bloc-6-style{
	font-family:"Oswald";
	font-size:40px;
	line-height:100px;
	width:100%;
}
.row-bloc-3-style{
	width:100%;
}
.row-bloc-6-style{
	width:100%;
}
.h1-p-s--style{
	font-family:"AnekLatinSemiExpanded-ExtraLight";
}
.h1-remake--style{
	font-family:"AnekLatinExpanded-ExtraLight";
	line-height:50px;
	font-size:30px;
}
.h1-expertise-style{
	font-family:"Oswald";
	line-height:50px;
	font-size:30px;
}
.h1-30-style{
	font-size:30px;
	line-height:50px;
	font-family:"Oswald";
}
.h1-32-style{
	font-size:30px;
	line-height:50px;
	font-family:"Oswald";
}
.btn-style{
	font-weight:normal;
	font-family:"Karrera-Regular";
	text-align:center;
	text-transform:capitalize;
	text-decoration:none;
	white-space:normal;
	font-size:13px;
	text-shadow:3.21px 3.83px 50px #000000;
	box-shadow:0.00px 0.00px 20px #000000;
	color:var(--swatch-var-6728)!important;
	letter-spacing:5px;
	width:30%;
	border-left-width:30px;
	padding-top:20px;
	padding-bottom:20px;
}
.h1-guides-style{
	line-height:200px;
	font-size:80px;
}
.img-front-magazine-style{
	width:1140px;
	border-radius:0px 0px 0px 0px;
}
.h1-classes--style{
	font-family:"AnekLatinExpanded-ExtraLight";
	font-size:30px;
	line-height:200px;
	text-align:center;
}
.img-25-style{
	width:233px;
}
.img-27-style{
	width:254px;
}
.navbar-logo{
	text-transform:none;
	text-decoration:none;
	font-size:20px;
}
.logo{
	font-family:"Michroma-Regular";
	font-size:16px;
	letter-spacing:10px;
}
menu{
	font-size:30px;
	font-family:"Alvifont";
	line-height:2px;
	letter-spacing:2px;
}
.h6-style{
	font-family:"AnekLatin-Regular";
	font-size:14px;
	text-shadow:0.00px -2.00px 2px #000000;
}
h1{
	font-family:"AnekLatinCondensed-Regular";
}
h2{
	font-family:"AnekLatinExpanded-Regular";
}
h3{
	font-family:"AnekLatin-Regular";
}
h4{
	font-family:"CormorantSC-Regular";
}
p{
	font-family:"Karrera-Regular";
}
.book-header{
	letter-spacing:10px;
	text-decoration:none;
	text-transform:capitalize;
	text-align:left;
	font-size:45px;
	color:var(--swatch-var-3409)!important;
	margin-bottom:100px;
	text-shadow:3.21px 3.83px 50px #000000;
}
.book-sub{
	color:var(--swatch-var-2941)!important;
	font-family:"Karrera-Regular";
	font-size:14px;
	text-align:left;
	text-transform:capitalize;
	margin-bottom:100px;
	text-shadow:3.21px 3.83px 50px #000000;
}
.book-body{
	color:var(--swatch-var-6728)!important;
	font-family:"AnekLatin-Regular";
	text-transform:none;
	margin-bottom:200px;
	text-shadow:3.21px 3.83px 50px #000000;
}
.book-cover-img{
	box-shadow:0.00px 0.00px 50px #000000;
	text-shadow:0.00px -0.00px 0px #000000;
}
.genre-menu{
	text-transform:none;
	text-indent:10px;
	text-align:center;
	font-family:"AnekLatinCondensed-Regular";
	text-shadow:0.00px -2.00px 2px #000000;
	font-size:20px;
	color:var(--swatch-var-2941)!important;
}
.logo-genre{
	margin-bottom:100px;
	font-family:"Karrera-Regular";
	font-size:32px;
	color:var(--swatch-var-3409)!important;
}
.bloc-divider-b-0-fill{
	fill:var(--swatch-var-4197);
	height:5px;
}
.h1-3-style{
	font-size:50px;
	letter-spacing:1px;
	line-height:50px;
}
.h1-2-style{
	font-size:50px;
	line-height:50px;
	letter-spacing:1px;
}
.h1-4-style{
	font-size:50px;
	letter-spacing:1px;
	line-height:50px;
}
.h1-5-style{
	font-size:50px;
	letter-spacing:1px;
}
.blocs-card-width{
	width:25%;
}
.img-style{
	width:460px;
}
.music{
	color:#0D0D0D!important;
	font-family:"Karrera-Regular";
	text-transform:none;
	text-decoration:none;
	font-size:14px;
	letter-spacing:8px;
}
.h2-style{
	line-height:70px;
	letter-spacing:10px;
	text-indent:px;
	font-size:50px;
}
.bloc-divider-t-style{
	height:2px;
}
.link-bloc-0-28780-style{
	font-size:30px;
}
.h3-style{
	font-size:14px;
	font-family:"Karrera-Regular";
	letter-spacing:10px;
	text-shadow:0.00px -2.00px 2px #000000;
}
.h1-the-armory-style{
	font-family:"AnekLatinExpanded-Regular";
	letter-spacing:px;
	text-indent:0px;
	color:#079EC7!important;
	font-size:150px;
}
.shirt{
	text-shadow:0.00px -2.00px 2px #000000;
	box-shadow:0.00px 0.00px 10px #089EC7;
}
.box-title{
	color:var(--swatch-var-6728)!important;
	text-align:right;
	text-transform:none;
	font-family:"Karrera-Regular";
	line-height:60px;
	font-size:24px;
}
.box-text{
	color:var(--swatch-var-3409)!important;
	text-align:right;
	font-family:"AnekLatinExpanded-Bold";
}
.enter-button{
	color:var(--swatch-var-1453)!important;
	font-family:"Karrera-Regular";
	letter-spacing:10px;
	text-transform:uppercase;
	line-height:100px;
}
.btn-redbuble-style{
	text-align:center;
	font-family:"CormorantSC-Light";
	font-size:14px;
	text-transform:uppercase;
	letter-spacing:10px;
	white-space:normal;
	text-overflow:ellipsis;
	writing-mode:horizontal-tb;
	font-weight:lighter;
	margin:20px 20px 20px 20px;
	padding-right:0px;
	padding-top:20px;
	padding-bottom:20px;
}
.down{
	margin:0px 0px 0px 0px;
}
main{
	font-family:"Karrera-Regular";
	font-size:40px;
	color:var(--swatch-var-6728)!important;
}
.purchase-button{
	color:var(--swatch-var-2941)!important;
	font-family:"Karrera-Regular";
	text-transform:capitalize;
	letter-spacing:5px;
	font-size:20px;
	border-color:#079EC7!important;
	border-style:solid;
	border-bottom-width:0px;
	text-align:center;
	border-left-width:400px;
	border-right-width:600px;
	text-indent:20px;
	padding-bottom:24px;
}
.img-indepth-style{
	width:581px;
}
.btn-21-style{
	padding-top:20px;
	padding-bottom:20px;
}
.img-bloc-2-style{
	width:150px;
	height:150px;
}
footer{
	text-shadow:0.00px -2.00px 2px #000000,0.00px -2.00px 2px #000000;
	font-family:"Lagunas";
	font-size:14px;
}
.footer-bottom-center{
	font-family:"Karrera-Regular";
	text-transform:uppercase;
	font-size:20px;
	letter-spacing:10px;
}
.footer-up{
	font-family:"BebasNeue-Regular";
	font-size:16px;
	letter-spacing:5px;
	padding-bottom:300px;
}
.link-bloc-0-style{
	font-family:"Karrera-Regular";
}
.navmenu{
	font-family:"Karrera-Regular";
	text-align:center;
	text-transform:none;
	text-decoration:none;
	margin-bottom:100px;
	letter-spacing:10px;
	text-indent:30px;
	font-size:18px;
	padding-top:10px;
	margin-top:100px;
	text-shadow:0.00px -2.00px 2px #000000;
}
.h6-4-style{
	font-family:"BebasNeue-Regular";
	font-size:12px;
}
.bloc-divider-b-style{
	height:5px;
	fill:var(--swatch-var-3409);
}
.bloc-divider-t-0-style{
	height:5px;
	fill:var(--swatch-var-4638);
}
.bloc-divider-b-36532-fill{
	fill:var(--swatch-var-4785);
	height:5px;
}
.bloc-divider-b-bloc-3-fill{
	fill:var(--swatch-var-1453);
	height:5px;
}
.bloc-divider-t-bloc-3-fill{
	fill:var(--swatch-var-2794);
	height:5px;
}
.bloc-divider-b-bloc-7-fill{
	fill:var(--swatch-var-1453);
	height:5px;
}
.bloc-divider-t-bloc-7-style{
	height:5px;
	fill:var(--swatch-var-1453);
}
.copyright-style{
	font-size:12px;
	text-align:left;
	color:var(--swatch-var-4593)!important;
	font-family:"BebasNeue-Regular";
	letter-spacing:1px;
	line-height:2px;
	text-indent:20px;
	margin-top:10px;
	margin-bottom:10px;
}
.footer-image{
	max-width:800px;
	text-align:center;
}
.h1-7-style{
	font-family:"Michroma-Regular";
	font-size:50px;
}
.bloc-divider-t-22368-fill{
	fill:var(--swatch-var-1453);
}
.bloc-divider-t-6768-fill{
	fill:var(--swatch-var-1453);
	height:px;
}

/* = Colour
-------------------------------------------------------------- */

/* Swatch Variables */
:root{
	
	--swatch-var-3648:rgba(255,255,255,0.50);
	
	--swatch-var-6728:rgba(255,255,255,1.00);
	
	--swatch-var-3409:rgba(8,158,199,1.00);
	
	--swatch-var-1165:rgba(13,13,13,1.00);
	
	--swatch-var-5561:rgba(15,15,15,0.50);
	
	--swatch-var-5871:rgba(199,0,124,1.00);
	
	--swatch-var-1869:rgba(0,0,0,0.70);
	
	--swatch-var-2869:rgba(0,0,0,1.00);
	
	--swatch-var-600:rgba(0,0,0,1.00);
	
	--swatch-var-2941:rgba(13,13,13,1.00);
	
	--swatch-var-4593:rgba(255,255,255,0.50);
	
	--swatch-var-2914:rgba(0,199,175,1.00);
	
	--swatch-var-5122:rgba(199,8,62,1.00);
	
	--swatch-var-4812:rgba(255,0,90,1.00);
	
	--swatch-var-4638:rgba(8,199,144,1.00);
	
	--swatch-var-4785:rgba(199,145,8,1.00);
	
	--swatch-var-1453:rgba(8,158,199,1.00);
	
	--swatch-var-4197:rgba(199,8,62,1.00);
	
	--swatch-var-2794:rgba(137,137,149,1.00);
	
}


/* Background colour styles */

.bgc-1165{
	background-color:var(--swatch-var-1165);
}

/* Text colour styles */

.tc-6728{
	color:var(--swatch-var-6728)!important;
}
.tc-2869{
	color:var(--swatch-var-2869)!important;
}
.tc-3409{
	color:var(--swatch-var-3409)!important;
}

/* Button colour styles */

.btn-c-2794{
	background:var(--swatch-var-2794);
	color:rgba(0,0,0,.5)!important;
}
.btn-c-2794:hover{
	background:#565662!important;
	color:rgba(0,0,0,.5)!important;
}
.btn-c-6728{
	background:var(--swatch-var-6728);
	color:rgba(0,0,0,.5)!important;
}
.btn-c-6728:hover{
	background:#CCCCCC!important;
	color:rgba(0,0,0,.5)!important;
}
.btn-c-2914{
	background:var(--swatch-var-2914);
	color:rgba(0,0,0,.5)!important;
}
.btn-c-2914:hover{
	background:#00947C!important;
	color:rgba(0,0,0,.5)!important;
}
.btn-c-3409{
	background:var(--swatch-var-3409);
	color:#FFFFFF!important;
}
.btn-c-3409:hover{
	background:#006B94!important;
	color:#FFFFFF!important;
}
.btn-c-1453{
	background:var(--swatch-var-1453);
	color:#FFFFFF!important;
}
.btn-c-1453:hover{
	background:#006B94!important;
	color:#FFFFFF!important;
}
.wire-btn-c-3409{
	color:var(--swatch-var-3409)!important;
	border-color:var(--swatch-var-3409)!important;
}
.wire-btn-c-1453{
	color:var(--swatch-var-1453)!important;
	border-color:var(--swatch-var-1453)!important;
}

/* Link colour styles */

.ltc-6728{
	color:var(--swatch-var-6728)!important;
}
.ltc-6728:hover{
	color:#CCCCCC!important;
}
.ltc-3648{
	color:var(--swatch-var-3648)!important;
}
.ltc-3648:hover{
	color:rgba(204,204,204,0.50)!important;
}

/* Icon colour styles */

.icon-6728{
	color:var(--swatch-var-6728)!important;
	border-color:var(--swatch-var-6728)!important;
}

/* Bloc image backgrounds */

.bg-Winter{
	background-image:url("img/Winter.jpg");
	background-image: -webkit-image-set(url("img/Winter.webp") 1x,
url("img/Winter.webp") 2x);background-image: image-set(url("img/Winter.jpg") 1x,
url("img/Winter.jpg") 2x,url("img/Winter.webp") 1x,
url("img/Winter.webp") 2x);
}
.bg-Spring{
	background-image:url("img/Spring.jpg");
	background-image: -webkit-image-set(url("img/Spring.webp") 1x,
url("img/Spring.webp") 2x);background-image: image-set(url("img/Spring.jpg") 1x,
url("img/Spring.jpg") 2x,url("img/Spring.webp") 1x,
url("img/Spring.webp") 2x);
}
.bg-Autumn{
	background-image:url("img/Autumn.jpg");
	background-image: -webkit-image-set(url("img/Autumn.webp") 1x,
url("img/Autumn.webp") 2x);background-image: image-set(url("img/Autumn.jpg") 1x,
url("img/Autumn.jpg") 2x,url("img/Autumn.webp") 1x,
url("img/Autumn.webp") 2x);
}
.bg-Summer-20Box-20S1{
	background-image:url("img/Summer%20Box%20S1.png");
	background-image: -webkit-image-set(url("img/Summer%20Box%20S1.webp") 1x,
url("img/Summer%20Box%20S1.webp") 2x);background-image: image-set(url("img/Summer%20Box%20S1.png") 1x,
url("img/Summer%20Box%20S1.png") 2x,url("img/Summer%20Box%20S1.webp") 1x,
url("img/Summer%20Box%20S1.webp") 2x);
}
.bg-Spring-20Box-20S2{
	background-image:url("img/Spring%20Box%20S2.png");
	background-image: -webkit-image-set(url("img/Spring%20Box%20S2.webp") 1x,
url("img/Spring%20Box%20S2.webp") 2x);background-image: image-set(url("img/Spring%20Box%20S2.png") 1x,
url("img/Spring%20Box%20S2.png") 2x,url("img/Spring%20Box%20S2.webp") 1x,
url("img/Spring%20Box%20S2.webp") 2x);
}
.bg-Summer{
	background-image:url("img/Summer.jpg");
	background-image: -webkit-image-set(url("img/Summer.webp") 1x,
url("img/Summer.webp") 2x);background-image: image-set(url("img/Summer.jpg") 1x,
url("img/Summer.jpg") 2x,url("img/Summer.webp") 1x,
url("img/Summer.webp") 2x);
}
.bg-Autumn-20Box-20S1{
	background-image:url("img/Autumn%20Box%20S1.png");
	background-image: -webkit-image-set(url("img/Autumn%20Box%20S1.webp") 1x,
url("img/Autumn%20Box%20S1.webp") 2x);background-image: image-set(url("img/Autumn%20Box%20S1.png") 1x,
url("img/Autumn%20Box%20S1.png") 2x,url("img/Autumn%20Box%20S1.webp") 1x,
url("img/Autumn%20Box%20S1.webp") 2x);
}
.bg-Logo-20Transparent{
	background-image:url("img/Logo%20Transparent.png");
	background-image: -webkit-image-set(url("img/Logo%20Transparent.webp") 1x,
url("img/Logo%20Transparent.webp") 2x);background-image: image-set(url("img/Logo%20Transparent.png") 1x,
url("img/Logo%20Transparent.png") 2x,url("img/Logo%20Transparent.webp") 1x,
url("img/Logo%20Transparent.webp") 2x);
}
.bg-Winter-20Box-20S2{
	background-image:url("img/Winter%20Box%20S2.png");
	background-image: -webkit-image-set(url("img/Winter%20Box%20S2.webp") 1x,
url("img/Winter%20Box%20S2.webp") 2x);background-image: image-set(url("img/Winter%20Box%20S2.png") 1x,
url("img/Winter%20Box%20S2.png") 2x,url("img/Winter%20Box%20S2.webp") 1x,
url("img/Winter%20Box%20S2.webp") 2x);
}
.bg-The-20Street-20of-20Kings{
	background-image:url("img/The%20Street%20of%20Kings.jpg");
	background-image: -webkit-image-set(url("img/The%20Street%20of%20Kings.webp") 1x,
url("img/The%20Street%20of%20Kings.webp") 2x);background-image: image-set(url("img/The%20Street%20of%20Kings.jpg") 1x,
url("img/The%20Street%20of%20Kings.jpg") 2x,url("img/The%20Street%20of%20Kings.webp") 1x,
url("img/The%20Street%20of%20Kings.webp") 2x);
}
.bg-Vespara{
	background-image:url("img/Vespara.jpg");
	background-image: -webkit-image-set(url("img/Vespara.webp") 1x,
url("img/Vespara.webp") 2x);background-image: image-set(url("img/Vespara.jpg") 1x,
url("img/Vespara.jpg") 2x,url("img/Vespara.webp") 1x,
url("img/Vespara.webp") 2x);
}
.bg-Youtube-20Solo-20Covers-201{
	background-image:url("img/Youtube%20Solo%20Covers%201.png");
	background-image: -webkit-image-set(url("img/Youtube%20Solo%20Covers%201.webp") 1x,
url("img/Youtube%20Solo%20Covers%201.webp") 2x);background-image: image-set(url("img/Youtube%20Solo%20Covers%201.png") 1x,
url("img/Youtube%20Solo%20Covers%201.png") 2x,url("img/Youtube%20Solo%20Covers%201.webp") 1x,
url("img/Youtube%20Solo%20Covers%201.webp") 2x);
}
.bg-Instagram-20Solo-20Cover-201-20revenge{
	background-image:url("img/Instagram%20Solo%20Cover%201%20revenge.jpg");
	background-image: -webkit-image-set(url("img/Instagram%20Solo%20Cover%201%20revenge.webp") 1x,
url("img/Instagram%20Solo%20Cover%201%20revenge.webp") 2x);background-image: image-set(url("img/Instagram%20Solo%20Cover%201%20revenge.jpg") 1x,
url("img/Instagram%20Solo%20Cover%201%20revenge.jpg") 2x,url("img/Instagram%20Solo%20Cover%201%20revenge.webp") 1x,
url("img/Instagram%20Solo%20Cover%201%20revenge.webp") 2x);
}
.bg-Cover-20Teepublic-20{
	background-image:url("img/Cover%20Teepublic%20.png");
	background-image: -webkit-image-set(url("img/Cover%20Teepublic%20.webp") 1x,
url("img/Cover%20Teepublic%20.webp") 2x);background-image: image-set(url("img/Cover%20Teepublic%20.png") 1x,
url("img/Cover%20Teepublic%20.png") 2x,url("img/Cover%20Teepublic%20.webp") 1x,
url("img/Cover%20Teepublic%20.webp") 2x);
}
.bg-Youtube-20Icon{
	background-image:url("img/Youtube%20Icon.png");
	background-image: -webkit-image-set(url("img/Youtube%20Icon.webp") 1x,
url("img/Youtube%20Icon.webp") 2x);background-image: image-set(url("img/Youtube%20Icon.png") 1x,
url("img/Youtube%20Icon.png") 2x,url("img/Youtube%20Icon.webp") 1x,
url("img/Youtube%20Icon.webp") 2x);
}



/* = Bloc Padding Multi Breakpoint
-------------------------------------------------------------- */

@media (min-width: 576px) {
    .bloc-xxl-sm{padding:200px 20px;}
    .bloc-xl-sm{padding:150px 20px;}
    .bloc-lg-sm{padding:100px 20px;}
    .bloc-md-sm{padding:50px 20px;}
    .bloc-sm-sm{padding:20px;}
    .bloc-no-padding-sm{padding:0 20px;}
}
@media (min-width: 768px) {
    .bloc-xxl-md{padding:200px 20px;}
    .bloc-xl-md{padding:150px 20px;}
    .bloc-lg-md{padding:100px 20px;}
    .bloc-md-md{padding:50px 20px;}
    .bloc-sm-md{padding:20px 20px;}
    .bloc-no-padding-md{padding:0 20px;}
}
@media (min-width: 992px) {
    .bloc-xxl-lg{padding:200px 20px;}
    .bloc-xl-lg{padding:150px 20px;}
    .bloc-lg-lg{padding:100px 20px;}
    .bloc-md-lg{padding:50px 20px;}
    .bloc-sm-lg{padding:20px;}
    .bloc-no-padding-lg{padding:0 20px;}
}


/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container{
        padding-left: 0; 
        padding-right: 0;  
    }
}
@media (max-width: 991px)
{
    .container{width:100%;}
    .bloc{padding-left: constant(safe-area-inset-left);padding-right: constant(safe-area-inset-right);} /* iPhone X Notch Support*/
    .bloc-group, .bloc-group .bloc{display:block;width:100%;}
}
@media (max-width: 767px)
{
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .btn-dwn{
       display:none; 
    }
    .voffset{
        margin-top:5px;
    }
    .voffset-md{
        margin-top:20px;
    }
    .voffset-lg{
        margin-top:30px;
    }
    form{
        padding:5px;
    }
    .close-lightbox{
        display:inline-block;
    }
    .blocsapp-device-iphone5{
	   background-size: 216px 425px;
	   padding-top:60px;
	   width:216px;
	   height:425px;
    }
    .blocsapp-device-iphone5 img{
	   width: 180px;
	   height: 320px;
    }
}

@media (max-width: 991px){
	.h1-contact-us-style{
		width:100%;
	}
	.mt-md-0{
	}
	.mt-md-4{
	}
	.blocs-card-width{
		width:50%;
	}
	
}

@media (max-width: 767px){
	.text-center{
	}
	.menu-icon-stroke{
		stroke:#00C7AF!important;
		fill:#00C7AF!important;
	}
	h1,h2,h3,h4,h5,h6,p,label,.btn,a{
		white-space:pre-line;
	}
	.text-right{
	}
	.text-left{
	}
	.blocs-card-width{
		width:50%;
	}
	
}

@media (max-width: 575px){
	.section-heading{
		font-size:30px;
		text-transform:capitalize;
		writing-mode:horizontal-tb;
		color:var(--swatch-var-3409)!important;
		line-height:150px;
	}
	.section-p{
		text-align:right;
		color:var(--swatch-var-6728)!important;
		font-size:18px;
		text-transform:none;
		white-space:nowrap;
	}
	.name-heading{
		font-size:30px;
	}
	.hero-heading{
		font-size:80px;
		line-height:150px;
		width:100%;
	}
	.menu-icon-0-stroke{
		stroke:#00C7AF!important;
		fill:#00C7AF!important;
	}
	.menu-icon-stroke{
		stroke:#00C7AF!important;
		fill:#00C7AF!important;
	}
	.primary-btn{
		background-color:var(--swatch-var-3409);
		color:#00C7AF!important;
		border-color:#00C7AF!important;
		line-height:50px;
	}
	.navbar-brand img{
		width:90px;
		height:90px;
	}
	.footer-link{
		text-align:center;
	}
	.mt-1{
	}
	.h1-bloc-4-style{
		line-height:50px;
		width:100%;
	}
	.radio{
		font-size:20px;
		line-height:50px;
	}
	.h1-style{
		font-size:50px;
		line-height:100px;
		font-family:"aAssassinNinja";
	}
	.h1-news-letters-style{
		line-height:50px;
		width:100%;
		text-align:center;
	}
	.h2-6-style{
		font-size:30px;
		line-height:50px;
		width:100%;
	}
	.p-1-style{
		line-height:100px;
		font-size:40px;
	}
	.h2-bloc-20-style{
	}
	.h3-style{
		width:100%;
		font-size:50px;
		line-height:100px;
	}
	.p-bloc-4-style{
		font-size:80px;
		line-height:200px;
	}
	.p-style{
		font-family:"Oswald";
		font-size:30px;
		line-height:50px;
	}
	.h4-connect-style{
		font-size:30px;
		line-height:100px;
		text-align:center;
	}
	.h2-8-style{
		font-size:80px;
		line-height:100px;
	}
	.h1-bloc-6-style{
		line-height:50px;
		font-size:30px;
	}
	.genres{
	}
	.roles{
		font-family:"AnekLatinExpanded-ExtraLight";
		font-size:30px;
		text-align:center;
	}
	.p-bloc-6-style{
		line-height:50px;
	}
	.h4-14-style{
		line-height:50px;
		font-size:30px;
	}
	.h4-15-style{
		font-size:30px;
	}
	.h4-17-style{
		font-size:30px;
	}
	.h4-16-style{
		font-size:30px;
	}
	.h4-21-style{
		font-size:30px;
	}
	.h4-brand-amicy--style{
		font-size:30px;
	}
	.h4-19-style{
		font-size:30px;
	}
	.h4-style{
		font-size:30px;
	}
	.row-bloc-4-style{
		width:100%;
	}
	.container-div-bloc-16-style{
		height:60px;
	}
	.navbar-logo{
		font-size:18px;
	}
	.blocs-card-width{
		width:100%;
	}
	
}

