/**
Theme Name: CountourosWP
Theme URI: https://sorvus.com/
Author: Sorvus Media
Version: 1.0.1
**/

/**
Fonts
**/
/* poppins-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  src: url('fonts/poppins-v21-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/poppins-v21-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/poppins-v21-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/poppins-v21-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/poppins-v21-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/**
Css Reset
**/
a, a:after, a:before{
	text-decoration:none;
	color:inherit;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
table {border-collapse: collapse;border-spacing: 0;}
* { box-sizing: border-box;	-moz-box-sizing: border-box; -webkit-box-sizing: border-box;}
a {outline : none; color:inherit; text-decoration:none;}
a img {outline : none;}
img {border : 0; display:block;}
strong, b{	font-weight:600;}

/**
Root Variables
**/
:root{

	--clr_main:#DFD9CB;
	--clr_black:#1A1A1A;
	--clr_grey:#313131;
	--page_padding:5vw;
}

::selection {
	background: var(--clr_main); /* WebKit/Blink Browsers */
	color: var(--clr_black);
}
::-moz-selection {
	color: var(--clr_black);
	background:  var(--clr_main); /* Gecko Browsers */
}


.mob_only{
	display:none;
}

.clear_header{
    height:200px;
}


/**
Variables
**/
body, html{
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size:16px;
    color:var(--clr_main);
	background:var(--clr_grey);
	background-image: url("img/bg.webp");
	background-repeat: repeat;
    background-size:400px ; 
}

body{
	width:100%;
    overflow-x:hidden;
}

.wrapper{
    width:100%;
	padding:0px var(--page_padding);
    display: block;
    margin:0 auto;
}

section{
	position:relative;
	float:left;
	width:100%;
}

section,
div{
	scroll-margin-top: 100px;
	background-repeat: no-repeat;
	background-position: center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.error-page{
    font-size: 4em;
    font-weight: 700;
}
/**
Columns
**/
[class*="col-"] {
	float:left;
}

.col-D {width:3.5%;height:10px;}
.col-0 {width:31%;}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-20 {width:20%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

/**
Grid
**/
[class*="grid-"] {
	display: grid;
	grid-template-rows: 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
}	

.grid-2{
    grid-template-columns: repeat(2, 1fr);
}
.grid-3{
    grid-template-columns: repeat(3, 3fr);
}
.grid-4{
    grid-template-columns: repeat(4, 1fr);
}
.grid-5{
    grid-template-columns: repeat(5, 1fr);
}

.grid-more-space{
    grid-column-gap: 105px;
}

/**
Floats & Aligns
**/
.txt-center{
	text-align:center;
}

.txt-left{
	text-align:left;
}

.txt-right{
	text-align:right;
}

.float-left{
	float:left;
}

.float-right{
	float:right;
}

.empty{
    min-height: 1px;
}

/**
Buttons
**/
.btn_01{
    display: inline-block;
    position: relative;
    letter-spacing: 0.1em;
    padding-bottom: 5px;
    font-weight: 200;
    font-size: 0.9em;
}

.btn_01:before{
    content:"";
    position: absolute;
    right:0;
    bottom:0;
    width:100%;
    height:1px;
    background:var(--clr_main);
}
.btn_01:hover{
    color:#fff;
}
.btn_01:hover:before{
    width:50%;
}

.cta{
    display: inline-block;
    border:1px solid var(--clr_main);
    font-size: 0.9em;
    background:var(--clr_main);
    color:var(--clr_black);
    line-height: 40px;
    padding:0px 35px;
    border-radius: 35px;
}

.cta_b{
    background:none;
    color:var(--clr_main);
}

.cta:hover{
    background:#fff;
    color:var(--clr_black);
    border:1px solid #fff;
}

.slider_btns svg{
    height:45px;
    width:auto;
}

.slider_btns:hover{
    cursor: pointer;
}


.pagi_links{
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-evenly;
	align-items: center;
	align-content: stretch;
    margin-top:40px;
}

.pagi_links a{
    width:100%;
    min-width: 50%;
    border:1px solid var(--clr_main);
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: stretch;
    padding:20px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.pagi_links a svg{
    fill:currentcolor;
}

.pagi_links a:hover{
    background:#fff;
    color:var(--clr_black);
    border:1px solid #fff;
}
/**
Header
**/
header{
    position: absolute;
    top:0;
    left:0;
    right:0;
    padding:20px var(--page_padding);
	z-index:1000;
    pointer-events: none
}

.header_lookbook,
.header_nav{
    padding:30px 0px;
	pointer-events: auto; 
}

.header_lookbook span,
.header_nav span{
    line-height: 20px;
    display: block;
    font-size: 15px;
    float: left;
    letter-spacing: 0.1em;
}

.header_nav span{
    float: right;
}

.header_nav span.nav_opened{
    display: none;
}

.nav_triggered span.nav_opened{
    display: block;
}

.nav_triggered span.nav_closed{
    display: none;
}

.header_lookbook svg,
.header_nav svg{
    display: inline-block;
    float:left;
    fill:var(--clr_main);
    width:20px;
    height:20px;
    margin-right: 10px;
    margin-left:0px;
}

.header_nav svg{
    float:right;
    margin-left: 10px;
    margin-right:0px;
}

.header_logo{
    text-align: center;
    padding:33px 0px;
	pointer-events: auto; 
}

.header_logo img{
    display: inline-block;
    height:14px;
    width:auto;
}

.header_nav{
    text-align: right;
    cursor: pointer;
}

/**
Main Nav
**/

.main_nav{
    background:var(--clr_main);
    padding:50px;
    color:var(--clr_black);
    position: relative;
    top:50px;
    opacity: 0;
    visibility: hidden;
    width:100%;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.main_nav_active{
    pointer-events: auto; 
    opacity: 1;
    visibility: visible;
    top:0;
}

.main_nav_header{
    font-size: 1.2em;
    padding:0px 10px 15px;
}

.main_02{
    min-height: 50vh;
}

.main_nav_grid{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.main_01 { grid-area: 1 / 1 / 6 / 5; }
.main_02 { grid-area: 1 / 5 / 6 / 7; }
.main_03 { grid-area: 1 / 7 / 4 / 10; }
.main_04 { grid-area: 4 / 7 / 6 / 10; }
.main_05 { grid-area: 1 / 10 / 4 / 13; }
.main_06 { grid-area: 4 / 10 / 6 / 13; }

.main_nav_grid ul{
    list-style: none;
    float:left;
    width:100%;
    border:1px solid var(--clr_black);
}

.main_nav_grid ul li{
    display: inline-block;
    width:100%;
    float: left;
    
}

.main_nav_grid ul li a{
    display: inline-block;
    width:100%;
    padding:10px;
    border-bottom:1px solid var(--clr_black);
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: stretch;
    font-weight: 600;
}

.main_nav_grid ul li:last-child a{
    border-bottom: none;
}

.main_nav_grid ul li a:hover{
    background:var(--clr_black);
    color:var(--clr_main);
}

.main_nav_grid ul li a svg{
    fill:var(--clr_black);
}

.main_nav_grid ul li a:hover svg{
    fill:var(--clr_main);
}

.main_nav_btn{
    border:2px solid var(--clr_black);
    background:var(--clr_black);
    color:var(--clr_main);
    padding:20px;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: flex-end;
	align-content: stretch;
    font-size: 1.5em;
    position: relative;
}

.main_nav_btn_reversed{
    background:none;
    color:var(--clr_black);
}

.main_nav_btn:hover{
    background:#fff;
    color:var(--clr_black);
    border:2px solid #fff;
}

.main_nav_btn:before{
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.64' height='13.64' viewBox='0 0 13.64 13.64'%3E%3Cg transform='translate(0.707 6.82) rotate(-45)'%3E%3Cg%3E%3Cg%3E%3Cpath d='M8.645,9.145A.5.5,0,0,1,8.291,9L-.354.354a.5.5,0,0,1,0-.707.5.5,0,0,1,.707,0L9,8.291a.5.5,0,0,1-.354.854Z'/%3E%3C/g%3E%3Cg transform='translate(0.494 0.494)'%3E%3Cpath d='M8.15,8.65H0a.5.5,0,0,1-.5-.5.5.5,0,0,1,.5-.5H7.65V0a.5.5,0,0,1,.5-.5.5.5,0,0,1,.5.5V8.15a.5.5,0,0,1-.5.5Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    width: 13.64px; 
    height: 13.64px;
    background-color:currentcolor; 
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.64' height='13.64' viewBox='0 0 13.64 13.64'%3E%3Cg transform='translate(0.707 6.82) rotate(-45)'%3E%3Cg%3E%3Cg%3E%3Cpath d='M8.645,9.145A.5.5,0,0,1,8.291,9L-.354.354a.5.5,0,0,1,0-.707.5.5,0,0,1,.707,0L9,8.291a.5.5,0,0,1-.354.854Z'/%3E%3C/g%3E%3Cg transform='translate(0.494 0.494)'%3E%3Cpath d='M8.15,8.65H0a.5.5,0,0,1-.5-.5.5.5,0,0,1,.5-.5H7.65V0a.5.5,0,0,1,.5-.5.5.5,0,0,1,.5.5V8.15a.5.5,0,0,1-.5.5Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat;
    -webkit-mask-size: cover;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.64' height='13.64' viewBox='0 0 13.64 13.64'%3E%3Cg transform='translate(0.707 6.82) rotate(-45)'%3E%3Cg%3E%3Cg%3E%3Cpath d='M8.645,9.145A.5.5,0,0,1,8.291,9L-.354.354a.5.5,0,0,1,0-.707.5.5,0,0,1,.707,0L9,8.291a.5.5,0,0,1-.354.854Z'/%3E%3C/g%3E%3Cg transform='translate(0.494 0.494)'%3E%3Cpath d='M8.15,8.65H0a.5.5,0,0,1-.5-.5.5.5,0,0,1,.5-.5H7.65V0a.5.5,0,0,1,.5-.5.5.5,0,0,1,.5.5V8.15a.5.5,0,0,1-.5.5Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat;
    mask-size: cover;
    position: absolute;
    right:20px;
    top:20px;
}

/**
Hero: Home
**/
.hero_home{
    position: relative;
    height:100vh;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    padding:0px var(--page_padding);
}

.hero_home:before{
    content:"";
    position: absolute;
    right:2vw;
    top:30vh;
    height:40vh;
    background:var(--clr_main);
    width:1px;
}

.hero_home_main{
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: stretch;
}

.hero_home_social{
    float:left;
    width:30px;
}

.hero_home_social a{
    display: inline-block;
    float:left;
    margin-bottom: 5px;
}

.hero_home_social a svg{
    fill:var(--clr_main);
    height:30px;
    width:auto;
}

.hero_home_social a:hover svg{
    fill:#fff;
}

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

.hero_home_title p{
    font-size: 3.2em;
    font-weight: 200;
    line-height: 1.2em;
    letter-spacing: 0.1em;
}

.hero_home_slider_btns{
    margin-top:25px;
}

.hero_home_slider_btns div{
    display: inline-block;
    margin-left: 5px;
}

.hero_home_footer{
    position: absolute;
    bottom:0;
    left:0;
    right:0;
    padding:5vh var(--page_padding);
    background: rgb(26,26,26);
	background: -moz-linear-gradient(0deg, rgba(26,26,26,1) 20%, rgba(26,26,26,0) 100%);
	background: -webkit-linear-gradient(0deg, rgba(26,26,26,1) 20%, rgba(26,26,26,0) 100%);
	background: linear-gradient(0deg, rgba(26,26,26,1) 20%, rgba(26,26,26,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1a1a1a",endColorstr="#1a1a1a",GradientType=1);
}

.hero_home_footer span{
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9em;
    line-height: 40px;
    font-weight: 200;
}

.hero_home_footer a{
    margin-left: 10px;
}

.hero_home_slider{
    position: absolute;
    left:0;
    right:0;
    top:0;
    height:100vh;
    z-index: -1;
}

.hero_home_slider .swiper-slide {
    width:100%;
    height:100%;
    background-position: center;
    background-size: cover;
}

.hero_home_slider:after{
    content:"";
    position: absolute;
    left:0;
    right:0;
    bottom:0;
    top:0;
    background:rgba(0,0,0,.41);
    z-index: 1;
}

/**
Page Elements
**/
.headerspace{
    width:100%;
    float:left;
    display: inline-block;
    height:170px;
}


.block{
    padding:10vh 0px;
}

.hero_page_title{
    border-bottom:1px solid var(--clr_main);
    padding:20px 0px;
}

.hero_page_title h1{
    font-weight: 400;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero_page_title_options{
    text-align: right;
    padding-top:10px;
}

.hero_page_title_options a,
.hero_page_title_options div{
    display: inline-block;
    margin-left: 15px;
    font-size: 0.8em;
    line-height: 30px;
    font-weight: 200;
}

.hero_page_title_options svg{
    height:10px;
    width:auto;
    margin-top:11px;
    float:left;
    margin-right: 10px;
}

.hero_page_title_options a:hover{
    color:#fff;
}

/**
Single Lookbook
**/
.centered_image{
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    padding:50px 0px;
    position: relative;
    overflow: hidden;
}

.centered_image_blured{
    position: absolute;
    left:-20px;
    right:-20px;
    bottom:-20px;
    top:-20px;
    filter: blur(28px);
    -webkit-filter: blur(28px);
}

.centered_image:after{
    content:"";
    position: absolute;
    left:0;
    right:0;
    bottom:0;
    top:0;
    background:rgba(0,0,0,0.8);
}

.centered_image img{
    max-height: 50vh;
    max-width:80vw;
    position: relative;
    z-index: 1;
}

.recreate h3{
    font-size: 2em;
    font-weight: 200;
    text-transform: uppercase;
}

.recreate_content{
    padding-top:10px;
}

.recreate_content h2{
    font-weight: 200;
    font-size: 1.8em;
    padding-bottom: 20px;
}

.recreate_content ul{
    margin-bottom: 40px;
    list-style: none;
}

.recreate_content ul li a{
    font-weight: 600;
}

.recreate_content ul li a:hover{
    margin-left:5px;
    color:#fff;
}

.recreate_content .cta{
    margin-top:25px;
    font-size: 1em;
    line-height: 50px;
    padding:0px 40px;
	border-radius:0px;
}

/**
Archive Lookbook
**/
.grid {
	text-align: center;
	width: calc(100% - 0px);
	float:right;
}

.grid-item img{
	width:100%;
	height:auto;
}

.grid-item {
	box-sizing: border-box;
	display:inline;
	margin-bottom: 10px;
	
    width: calc(50% - 5px);
}

.grid-item a{
    position: relative;
    width:100%;
    float:left;
}

.grid-item a:before{
    content:"Recreate the Concept";
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: absolute;
    left:0;
    right:0;
    bottom:0;
    top:0;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    background:rgba(0,0,0,0.6);
    visibility: hidden;
    opacity: 0;
}

.grid-item a:hover:before{
    visibility: visible;
    opacity: 1;
}
@media (min-width: 1000px) {
  .grid-item {
  }
}

@media (min-width: 1500px) {
  .grid-item {
    width: calc(33.333% - 7.5px);
  }
}
#load-more-container{
    text-align: center;
    padding:40px;
}

#load-more-container button{
    background:none;
    color:var(--clr_main);
    border:1px solid var(--clr_main);
    outline:none;
    padding:10px 40px;
    font-size: 1em;
    font-weight: 200;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.1em;
    cursor: pointer;
}

/**
Lookbook Slider
**/
.lookbookslider .swiper-slide {
    display:inline-block;
	width:auto;
	height:auto;
}

.lookbookslider .swiper-slide img {
    display: block;
    height:45vh;
    width:auto;
    object-fit: cover;
}

.lookbookslider a{
    position: relative;
    width:100%;
    float:left;
}

.lookbookslider a:before{
    content:"Recreate the Concept";
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: absolute;
    left:0;
    right:0;
    bottom:0;
    top:0;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    background:rgba(0,0,0,0.6);
    visibility: hidden;
    opacity: 0;
}

.lookbookslider a:hover:before{
    visibility: visible;
    opacity: 1;
}

.lookbookslider_footer{
    padding:40px 0px;
}

.lookbookslider_footer a{
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lookbookslider_footer a:hover{
    color:#fff;
}

.lookbookslider_btns{
}

.lookbookslider_btns div{
    display: inline-block;
    margin-left: 5px;
}

/**
Cases Block
**/
.cases{
    background:var(--clr_grey);
    padding:80px 0px;
    -webkit-box-shadow: 0px 20px 25px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 20px 25px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 20px 25px 0px rgba(0,0,0,0.75);
    margin-bottom: 40px;
}

.cases_title{
    font-size: 1.8em;
    font-weight: 200;
    padding-bottom: 30px;
}

.cases_btns{
    margin-top: 40px;
}

.cases_btns a{
    border-radius: 0px;
}

.cases_grid a img{
    width:100%;
    height:auto;
}

.cases_grid a .case_img{
    object-fit: cover;
    height:30vh;
    overflow: hidden;
    filter: grayscale(100%);
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.cases_grid a .case_link{
    position: relative;
    padding:20px 0px;
    border-bottom: 1px solid var(--clr_main);
    font-weight: 600;
    font-size: 0.9em;
}

.cases_grid a .case_link:before{
    content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25'%3E%3Cg id='Group_115' data-name='Group 115' transform='translate(-1210.25 -5069.75)'%3E%3Cpath id='Ellipse_16' data-name='Ellipse 16' d='M12.5.5A12,12,0,0,0,7.829,23.557,12,12,0,0,0,17.171,1.443,11.924,11.924,0,0,0,12.5.5m0-.5A12.5,12.5,0,1,1,0,12.5,12.5,12.5,0,0,1,12.5,0Z' transform='translate(1210.25 5069.75)' fill='%23dfd9cb'/%3E%3Cg id='Group_41' data-name='Group 41' transform='translate(1219.396 5082.25) rotate(-45)'%3E%3Cg id='Group_5' data-name='Group 5' transform='translate(0 0)'%3E%3Cg id='Group_3' data-name='Group 3' transform='translate(0 0)'%3E%3Cpath id='Path_2' data-name='Path 2' d='M4.572,4.822A.249.249,0,0,1,4.4,4.749L.073.427A.25.25,0,0,1,.427.073L4.749,4.4a.25.25,0,0,1-.177.427Z' transform='translate(0 0)' fill='%23dfd9cb'/%3E%3C/g%3E%3Cg id='Group_28' data-name='Group 28' transform='translate(4.822) rotate(90)'%3E%3Cpath id='Path_2-2' data-name='Path 2' d='M4.572,4.822A.249.249,0,0,1,4.4,4.749L.073.427A.25.25,0,0,1,.427.073L4.749,4.4a.25.25,0,0,1-.177.427Z' transform='translate(0 0)' fill='%23dfd9cb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    position: absolute;
    right:0;
    top:0;
    bottom:0;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
}

.cases_grid a:hover{
    color:#fff;
}

.cases_grid a:hover .case_img{
    filter: grayscale(0%);
}

/**
Stats Block
**/
.stats{
    text-align: center;
    padding:
}

.stats_title{
    margin-bottom: 35px;
}

.stats_title img{
    display: inline-block;
    width:350px;
    height:auto;
    max-width:80%;
}

.stats_content{
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: stretch;
	align-content: stretch;
    text-align: left;
}

.stats_content p{
    padding-bottom: 20px;
    font-weight: 200;
}

.stats_content svg{
    float:left;
    width:90%;
    height:auto;
}

.stats_nums{
    margin:80px 0px 50px;
}

.stats_nums_compact .stats_num{
    margin:0px 0px 30px 0px;
}

.stats_nums img{
    height:30px;
    width:auto;
    display: inline-block;
}

.stats_nums .stats_num_desc p{
    margin: 10px auto 0px;
    font-weight: 300;
}

.simple_content p{
    font-size: 1.6em;
    font-weight: 200;
    max-width: 1400px;
    padding-bottom: 20px;
}

.simple_content p:last-child{
    padding-bottom: 0px;
}

/**
Svg Image Block
**/
.svg_full_holder{
    text-align: center;
    margin-bottom: 40px;
}

.svg_full_holder img{
    display: inline-block;
    width:90%;
    max-width: 1100px;
    height: auto;
}

/**
Map Block
**/
#map{
    height:50vh;
    margin:20px 0px;
}

.map_header a{
    display: inline-block;
    margin-left:5px;
}

.map_header a svg{
    fill:currentcolor;
}

.map_header a:hover{
    color:#fff;
}

.map_footer a{
    margin-right: 5px;
}

.contacts svg{
    height:30px;
    width:auto;
    margin-bottom: 20px;
}

.contacts strong{
    float:left;
    width:100%;
    padding-bottom: 10px;
}

.contacts{
    font-size: 0.95em;
}

.numbers div{
    margin-bottom: 20px;
}

/**
Part Collection
**/
.ci_list{
    padding:20px 0px;
}
.ci_list ul{
    list-style: none;
    float:left;
    width:100%;
}

.ci_list ul li{
    display: inline-block;
    width:100%;
    float: left;
    
}

.ci_list ul li a{
    display: inline-block;
    width:100%;
    padding:15px 0px;
    border-bottom:1px solid var(--clr_main);
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: stretch;
    font-weight: 500;
}

.ci_list ul li a:hover{
    background:var(--clr_black);
    color:#fff;
    padding-left:10px;
}

.ci_list ul li a svg{
    fill:var(--clr_main);
}

.ci_list ul li a:hover svg{
    fill:#fff;
}

.ci_title{
    font-size: 1.7em;
    font-weight: 100;
    line-height: 1.2em;
    padding:20px 0px;
}

.collection_index_wrapper{
    position: relative;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	align-content: stretch;
}
.collection_gallery_grid{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
}

.collection_gallery_grid div:nth-child(1){
    grid-area: 1 / 1 / 2 / 5;
}

.collection_gallery_grid div:nth-child(2){
    grid-area: 1 / 5 / 2 / 10; 
}

.collection_gallery_grid div:nth-child(3){
    grid-area: 1 / 10 / 2 / 13;
}

/**
Single Case Study
**/
.case_desc{
    font-weight: 200;
    font-size: 1.2em;
}

.case_gallery,
.case_gallery .lookbookslider_btns{
    margin-top:50px;
}

/**
Cases Grid
**/
.case_studies_grid{
    display: grid;
	grid-template-rows: 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-columns: repeat(3, 1fr);
}

.single_case_grid{
    position: relative;
}

.single_case_grid_bg{
    height:25vh;
    position: relative;
}

.single_case_grid_title{
    padding:10px;
}

.single_case_grid_bg:before{
    content:"View Project";
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: absolute;
    left:0;
    right:0;
    bottom:0;
    top:0;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    background:rgba(0,0,0,0.6);
    visibility: hidden;
    opacity: 0;
    color: var(--clr_main);
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.single_case_grid:hover{
    background: var(--clr_main);
    color:var(--clr_black);
}

.single_case_grid:hover .single_case_grid_bg:before{
    visibility: visible;
    opacity: 1;
}

.section_title{
    font-size: 2em;
    font-weight: 200;
    padding-bottom: 30px;
}

/**
Product Category Page
**/
.category_content{
    padding-bottom: 10vh;
}

.category_content p{
    font-size: 1.2em;
    font-weight: 200;
}

.faqs_holder{
    padding:10vh 0px;
}

.product_catalogue h2{
    font-weight: 200;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.more_same a{ 
    width:50%;
    float:left;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 200;
    letter-spacing: 0.05em;
}

/**
Products Archive
**/
.product_catalogue_grid{
    
}

.product_catalogue_grid article{
    width:100%;
    margin-bottom: 45px;
}

.product-archive-card__link{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(7, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.product_catalogue_grid article:nth-child(even) .product-archive-card__media{
    grid-area: 1 / 7 / 8 / 13;
}

.product_catalogue_grid article:nth-child(odd) .product-archive-card__media{
    grid-area: 1 / 1 / 8 / 7;
}

.product-archive-card__body{
    grid-area: 2 / 5 / 7 / 9;
    background:var(--clr_black);
    padding:55px;
    display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: stretch;
	align-content: stretch;
}

.product-archive-card__title{
    padding-bottom: 25px;
}

.product-archive-card__cta{
    margin-top:25px;
    font-weight: 300;
    opacity: 0.6;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
}

.product-archive-card__cta svg{
    margin-right: 10px;
}
/**
FAQs
**/
.faq{
    margin-bottom: 15px;
    cursor: pointer;
}

.faq_question{
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: stretch;
    padding:15px;
    border:1px solid;
    letter-spacing: 0.05em;
}

.faq_question svg{
    height:25px;
    width:auto;
}

.faq_answer{
    padding:15px;
    display: none;
}

.faq_active .faq_answer{
    display: block;   
}

.faq_active .faq_question{
    background:var(--clr_main);
    color:var(--clr_black);
}

/**
Level 1
**/
.mlevelcat{
    margin-bottom: 10vh;
}
.mlevelcat_image{
    height:50vh;
}

.mlevelcat_content{
    float:right;
    border:1px solid;
    border-top:none;
    padding:25px;
    margin-right: 25px;
}

.mlevelcat_title h2{
    font-weight: 700;
    font-size: 1.4em;
    padding-bottom: 15px;
}

.mlevelcat_subs ul{
    list-style: none;
}

.mlevelcat_subs ul li{
    width:50%;
    float:left;
    display: inline-block;
}

.mlevelcat_subs ul li a{
    position: relative;
    margin-bottom: 15px;
    font-weight: 200;
    display: inline-block;
}

.mlevelcat_subs ul li a:before{
    content:"";
    position: absolute;
    left:0;
    bottom:0;
    width:0%;
    height:1px;
    background:var(--clr_main);
}

.mlevelcat_subs ul li a:hover:before{
    width:100%;
}

/**
Archive Brands
**/
.brands_grid a{
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    border:1px solid;
    opacity: 0.7;
    height:100px;
}

.brands_grid a:hover{
    opacity: 1;
}

.brands_grid a img{
    max-height: 60%;
    max-width: 60%;
}

/**
Footer
**/
footer{
    display: inline-block;
    position: relative;
    float:left;
    width:100%;
    margin-top:100px;
	padding:0px var(--page_padding);
}

footer p{
    font-weight: 200;
    font-size: 0.9em;
    line-height: 1.7em;
}

footer h3{
    font-weight: 500;
    padding-bottom: 20px;
    font-size: 1.1em;
}

.footer_padding{
    padding-top: 30px;
}

footer a:hover{
    color:#fff;
}

.footer_social a{
    display: inline-block;
    float:left;
    margin-right: 7px;
}

.footer_social a svg{
    fill:var(--clr_main);
    height:30px;
    width:auto;
}

.footer_social a:hover svg{
    fill:#fff;
}

footer nav{
    font-size: 0.9em;;
}

footer nav a{
    font-weight: 200;
}

.footer_brands{
    margin-top:80px;
    overflow: hidden;
}

.footer_brands .swiper-slide{
    cursor: grab;
    width:100%;
    height:100px;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    border:1px solid;
    opacity: 0.7;
}

.footer_brands .swiper-slide img{
    max-height: 60%;
    max-width: 60%;
}

.copyrights{
    margin-top:80px;
    padding-top:20px;
    padding-bottom: 150px;
    border-top:2px solid var(--clr_main);;
    float:left;
    width:100%;
    font-weight: 200;
}

.footer_logo img{
    float:right;
    height:60px;
    width:auto;
}

@media (max-width: 1260px) and (min-width: 0px) { 
body, html{
	width:100%;
	max-width:100%;
    overflow-x: hidden;
}

[class*="col-"] {
	width:100%;
}

[class*="grid-"] {
	grid-template-columns: repeat(1, 1fr);
}

.no_mob{
    display: none;
}

.header_logo{
    float:left;
    width:60%;
    text-align: left;
}
.main_nav_btn{
    padding:10px;
    font-size: 1.2em
}
.header_nav{
    float:right;
    width:40%;
}

.main_nav_grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.main_nav{
    padding:20px;
}

.main_01 { grid-area: 1 / 1 / 2 / 3; }
.main_02 { grid-area: 2 / 1 / 3 / 3; max-height:200px;}
.main_03 { grid-area: 3 / 1 / 4 / 2; }
.main_04 { grid-area: 3 / 2 / 4 / 3; }
.main_05 { grid-area: 4 / 1 / 5 / 2; }
.main_06 { grid-area: 4 / 2 / 5 / 3; }
.main_02 { display: none; grid-area: 2 / 1 / 3 / 3; height:200px; overflow:hidden;}

.main_03,
.main_04,
.main_05,
.main_06{
    min-height: 145px;
}
.hero_home{
    position: relative;
}
.hero_home_slider{
    position: absolute;
    left:0; right:0;
    bottom:0; top:0;
    z-index: 0;
}
.hero_home_main{
    z-index: 1;
    display: flex;
	flex-direction: row-reverse;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: stretch;
}

.hero_home:before{
    display: none;
}

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

.hero_home_title p{
    font-size: 2.2em;
}

.hero_home_footer,
.hero_home_footer .txt-right{
    text-align: center;
}

.hero_home_footer .txt-right a{
    margin-left:5px;
    margin-right: 5px;
}

.hero_home_slider_btns{
    margin-top:25px;
}

.hero_home_slider_btns div{
    display: inline-block;
    margin-left: 0px;
    margin-right:5px;
}
.stats_nums{
    display: grid;
	grid-template-rows: 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 45px;
    grid-template-columns: repeat(2, 1fr);
}

.stats_content .col-3{
    display: none;
}

.stats_content p{
    text-align: center;
    padding-bottom: 20px;
    font-weight: 200;
}

.collection_index_wrapper{
    position: relative;
    display: inline-block;
}

.collection_gallery_grid{
    height:40vh;
    margin-bottom: 40px;
}

.cases_text{
    margin-bottom: 35px;
}

.footer_block{
    margin-bottom: 35px;
    text-align: center;
}

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

.footer_logo img{
    display: inline-block;
    float:none;
}

.footer_social a{
    display: inline-block;
    float:none;
    margin:0px 5px;
}

.copyrights,
.copyrights .txt-right{
    text-align: center;
}
.case_studies_grid{
    display: grid;
	grid-template-rows: 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-columns: repeat(1, 1fr);
}
.product-archive-card__link{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.product_catalogue_grid article:nth-child(even) .product-archive-card__media{
    grid-area: 1 / 1 / 3 / 13;
}

.product_catalogue_grid article:nth-child(odd) .product-archive-card__media{
    grid-area: 1 / 1 / 3 / 13;
}

.product-archive-card__body{
    grid-area: 2 / 2 / 4 / 12;
    background:var(--clr_black);
    padding:25px;
    display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: stretch;
	align-content: stretch;
}
.more_same{
    margin-top: 25px;
}

.more_same a{
    width:100%;
    padding-left:20px;
    position: relative;
}

.more_same a:before{
    content:"-";
}

.product_catalogue h2{
    line-height: 1em;
    padding-bottom: 35px;
}
.hero_page_title_options{
    text-align: left;
    padding-top:10px;
    margin-left:0px;
    padding-left: 0px;
}

.hero_page_title_options a{
    float: left;
    margin-left:0;
}

.hero_page_title h1{
    line-height: 1em;
}
}