/*
	Theme Name: Brandified
	Theme URI: https://wwww.brandified.co.uk
	Description: Brandified Theme
	Version: 1.0.0
	Author: Brandified Ltd (@brandifiedltd)
	Author URI: https://www.brandified.co.uk
	Tags: Brandified, Agency, Studio

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/


:root {
	/* COLOURS */
	--bg-light: #fff;
	--bg-dark: #000;
	
	--neutral-color: #252c3f;
	--neutral-light: #F4F4F4;
	
	--default-neutral: #252c3f;
	--default-light: #fff;	
	--default-dark: #000;	
	
	--lighter-text: #74757f;
	--light-brand: #46ffd4;
	  
	/* FONTS */
	--font-sans: 'DM Sans', sans-serif;
	--font-serif: 'Playfair Display', sans-serif;
	
	--heading-large: 900 120px/120px var(--font-serif);
	--heading-medium: 700 90px/90px var(--font-sans);
	--heading-small: 700 50px/50px var(--font-sans);
	--heading-smaller: 700 28px/36px var(--font-sans);
	
	--p-smalll: 14px;
	--p-normal: 20px;
	--p-medium: 1.2em;
	--p-large: 26px;
	
	/* MESURIADAU */
	
}

body {
	font-family: var(--font-sans);
	font-size: 18px;
	line-height: 1.4em;
	background: var(--bg-light);
	color: var(--default-dark);
	padding: 0;
	margin: 0;
}


h1 {
	font: var(--heading-large);
}

h2 {
	font: var(--heading-medium);
	margin-bottom: 40px;
	letter-spacing: -1px;
	padding-bottom: 20px;
	color: var(--light-brand);
}

h3 {
	font: var(--heading-small);
	margin-bottom: 0px;
	letter-spacing: -1px;
	padding-bottom: 0px;
}

h4 {
	font: var(--heading-smaller);
	margin-bottom: 20px;
	letter-spacing: -1px;
}

h4 span {
	background: var(--light-brand);
	padding: 0px 5px;
}

p {
	font-size: 22px;
	line-height: 1.4em;
	margin-bottom: 20px;
}

p.lighter-text {
	color: var(--lighter-text);
	font-size: var(--p-normal);
}
	
a.button {
	padding: 15px 20px;
	background: transparent;
	border: 2px solid var(--light-brand);
	border-radius: 100px;
	text-decoration: none;
	margin-top: 40px;
	display: inline-block;
	transition: all 0.3s ease-in-out 0s;
	font-weight: 500;
}

a.button:hover {
	padding: 15px 20px;
	background: #fff;
	border: 2px solid var(--bg-light);
	border-radius: 100px;
	text-decoration: none;
	margin-top: 40px;
	display: inline-block;
	color: #000;
}

	
/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}


/* Columns */

* {
	box-sizing: border-box;
}


[class*="col-"] {
	float: left;
	padding: 30px;
	/* border: 1px dashed #777777; */
}


.row::after {
	content: "";
	clear: both;
	display: table;
}


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


@media only screen and (max-width: 768px) {
	/* For mobile phones: */
	[class*="col-"] {
		width: 100%;
	}
	
	.col-m-1 {width: 8.33%;}
	.col-m-2 {width: 16.66%;}
	.col-m-3 {width: 25%;}
	.col-m-4 {width: 33.33%;}
	.col-m-5 {width: 41.66%;}
	.col-m-6 {width: 50%;}
	.col-m-7 {width: 58.33%;}
	.col-m-8 {width: 66.66%;}
	.col-m-9 {width: 75%;}
	.col-m-10 {width: 83.33%;}
	.col-m-11 {width: 91.66%;}
	.col-m-12 {width: 100%;}
}

@media (min-width: 768px) and (max-width: 1024px) {
	 
	 [class*="col-"] {
		 width: 100%;
	 }
	 
	.col-t-1 {width: 8.33%;}
	.col-t-2 {width: 16.66%;}
	.col-t-3 {width: 25%;}
	.col-t-4 {width: 33.33%;}
	.col-t-5 {width: 41.66%;}
	.col-t-6 {width: 50%;}
	.col-t-7 {width: 58.33%;}
	.col-t-8 {width: 66.66%;}
	.col-t-9 {width: 75%;}
	.col-t-10 {width: 83.33%;}
	.col-t-11 {width: 91.66%;}
	.col-t-12 {width: 100%;}
	  
}


@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
  .col-t-1 {width: 8.33%;}
  .col-t-2 {width: 16.66%;}
  .col-t-3 {width: 25%;}
  .col-t-4 {width: 33.33%;}
  .col-t-5 {width: 41.66%;}
  .col-t-6 {width: 50%;}
  .col-t-7 {width: 58.33%;}
  .col-t-8 {width: 66.66%;}
  .col-t-9 {width: 75%;}
  .col-t-10 {width: 83.33%;}
  .col-t-11 {width: 91.66%;}
  .col-t-12 {width: 100%;}
  
}


@media only screen and (min-width: 768px) {
	/* For desktop: */
	.col-1 {width: 8.33%;}
	.col-2 {width: 16.66%;}
	.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%;}
}



.col-centered {
	margin-left: auto !important; 
	margin-right: auto !important; 
	float: none !important; 
	padding: 0px !important;
}

.no-p {
	padding: 0 !important;
}










/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* header */
.header {
	padding-top: 0px !important;
}
/* logo */
.logo {
	font-size: 40px;
	margin: 30px 0 0 0;
	line-height: 0.9em;
	color: var(--default-dark);
}
.logo span {
	font-size: 12px;
}

.logo a {
	text-decoration: none;
}

/* nav */
.nav {
	text-align: center;
}
/* sidebar */
.sidebar {

}
/* footer */
.footer {
	background: var(--bg-dark);
	color: var(--bg-light);
}

.footer h4 a {
	color: var(--bg-light);
	text-decoration: none;
}

.footer h4 a:hover {
	color: var(--light-brand);
	text-decoration: none;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/


section {
	
}

.section-header {
	padding: 120px 0px 300px 0px;
}

.section-content {
	padding: 60px 0px 240px 0px;
}

.section-light {
	background-color: var(--bg-light);
}

.section-light a {
	color: var(--default-dark);
}

.section-dark {
	background-color: var(--bg-dark);
	color: var(--default-light);
}

.section-dark a {
	color: var(--light-brand);
}

.wave-dark {
	background-image: url('./img/wave-dark.svg');
	background-position: center bottom -2px;
	background-size: 102% auto;
	background-repeat: no-repeat;
}

.wave-light {
	background-image: url('./img/wave-light.svg');
	background-position: center bottom -2px;
	background-size: 102% auto;
	background-repeat: no-repeat;
}

.wave-dark-medium {
	background-image: url('./img/wave-dark-medium.svg');
	background-position: center bottom -2px;
	background-size: 102% auto;
	background-repeat: no-repeat;
}

.wave-light-medium {
	background-image: url('./img/wave-light-medium.svg');
	background-position: center bottom -2px;
	background-size: 102% auto;
	background-repeat: no-repeat;
}


.wave-dark-hard {
	background-image: url('./img/wave-dark-hard.svg');
	background-position: center bottom -2px;
	background-size: 102% auto;
	background-repeat: no-repeat;
}

.wave-light-hard {
	background-image: url('./img/wave-light-hard.svg');
	background-position: center bottom -2px;
	background-size: 102% auto;
	background-repeat: no-repeat;
}



/*
  Rollover Image
 */
.item-work {
	position: relative;
	width: 100%;
	max-width: 100%;
	
}

.item-work img {
	width: 100%; 
	max-width: 100%;
	height: auto; 
	border-radius: 15px;
}


.item-work img.image-hover {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  object-fit: contain;
  opacity: 0;
  transition: all .2s;
}
.item-work:hover img.image-hover {
  opacity: 1;
  transform: scale(1.05);
}







/*
a { position: relative; color: var(--light-brand); text-decoration: none; }
a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--bg-light);
  visibility: hidden;
  -webkit-transform: scaleX(0);
	  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
	  transition: all 0.3s ease-in-out 0s;
}

a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
} */


/*------------------------------------*\
    MENU
\*------------------------------------*/

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

  .outer-menu {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1;
  }
  .outer-menu .checkbox-toggle {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	cursor: pointer;
	width: 60px;
	height: 60px;
	opacity: 0;
  }
  .outer-menu .checkbox-toggle:checked + .hamburger > div {
	-webkit-transform: rotate(135deg);
			transform: rotate(135deg);
  }
  .outer-menu .checkbox-toggle:checked + .hamburger > div:before,
  .outer-menu .checkbox-toggle:checked + .hamburger > div:after {
	top: 0;
	-webkit-transform: rotate(90deg);
			transform: rotate(90deg);
  }
  .outer-menu .checkbox-toggle:checked + .hamburger > div:after {
	opacity: 0;
  }
  .outer-menu .checkbox-toggle:checked ~ .menu {
	pointer-events: auto;
	visibility: visible;
  }
  .outer-menu .checkbox-toggle:checked ~ .menu > div {
	-webkit-transform: scale(1);
			transform: scale(1);
	transition-duration: 0.75s;
  }
  .outer-menu .checkbox-toggle:checked ~ .menu > div > div {
	opacity: 1;
	transition: opacity 0.4s ease 0.4s;
  }
  .outer-menu .checkbox-toggle:hover + .hamburger {

  }
  .outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
	-webkit-transform: rotate(225deg);
			transform: rotate(225deg);
  }
  .outer-menu .hamburger {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	width: 60px;
	height: 60px;
	padding: 0.5em 1em;
	background: #111111;
	border-radius: 50px !important;
	cursor: pointer;
	transition: box-shadow 0.4s ease;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 3px;
  }
  .outer-menu .hamburger > div {
	position: relative;
	flex: none;
	width: 100%;
	height: 2px;
	background: #fff;
	transition: all 0.4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .outer-menu .hamburger > div:before,
  .outer-menu .hamburger > div:after {
	content: '';
	position: absolute;
	z-index: 1;
	top: -10px;
	right: 0;
	width: 100%;
	height: 2px;
	background: inherit;
	transition: all 0.4s ease;
  }
  .outer-menu .hamburger > div:after {
	top: 10px;
  }
  .outer-menu .menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	visibility: hidden;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	outline: 1px solid transparent;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .outer-menu .menu > div {
	width: 200vw;
	height: 200vw;
	color: #ffffff;
	background: #111111;
	border-radius: 50%;
	transition: all 0.4s ease;
	flex: none;
	-webkit-transform: scale(0);
			transform: scale(0);
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .outer-menu .menu > div > div {
	text-align: center;
	max-width: 90vw;
	max-height: 100vh;
	opacity: 0;
	transition: opacity 0.4s ease;
	overflow-y: auto;
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .outer-menu .menu > div nav > ul {
	list-style: none;
	padding: 0 1em;
	margin: 0;
	display: block;
	max-height: 100vh;
  }
  .outer-menu .menu > div > nav > ul > li {
	padding: 0;
	margin: 1em;
	font-size: 24px;
	display: block;
  }
  .outer-menu .menu > div > nav > ul > li > a {
	position: relative;
	display: inline;
	cursor: pointer;
	transition: color 0.4s ease;
	color: #fff;
	font-family: 'Playfair Display', sans-serif;
	font-size: 30px;
  }
  .outer-menu .menu > div > nav > ul > li > a:hover {
	color: var(--light-brand);
  }
  .outer-menu .menu > div > nav > ul > li > a:hover:after {
	width: 100%;
  }
  .outer-menu .menu > div > nav > ul > li > a:after {
	content: '';
	position: absolute;
	z-index: 1;
	bottom: -0.15em;
	left: 0;
	width: 0;
	height: 2px;
	background: #111111;
	transition: width 0.4s ease;
  }

  

  li.qtranxs-lang-menu a {
	  color: #999999 !important;
  }

  ul.workList {
	margin-top: 50px;
	margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
  }

  ul.workList li {
	 list-style: none;
	 float: left;
	 height: 300px;
	 border: 5px solid #fff;
	 padding: 20px;
	 border-radius: 3px;
	 background-size: cover;
	 background-position: center;
	 background-repeat: no-repeat;
	 background-color: #f1f1f1;
  }

  ul.workList h3 {
	margin-top: 0px;
	color: #fff;
 }


  



/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background: var(--light-brand);
	color: var(--default-dark);
	text-shadow:none;
}
::-webkit-selection {
	background: var(--light-brand);
	color: var(--default-dark);
	text-shadow:none;
}
::-moz-selection {
	background: var(--light-brand);
	color: var(--default-dark);
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

















/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}


