/*
==================================================================
Theme Name: Ra-Guel
Version: 1.0
Author: Neobrand®
Author URI: https://neobrand.com
==================================================================
*/

/* Root */

:root {
	--black: #151515;
	--yellow: #ffe800;
	--grey: #707070;
}

::-moz-selection {
	color: white;
	background: var(--yellow);
	text-shadow: 0 0 0 transparent;
}

::selection {
	color: white;
	background: var(--yellow);
	text-shadow: 0 0 0 transparent;
}


/* General */

html,body {
	font-family: 'Bebas Neue', cursive;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: var(--black);
}

body.noscroll {
	overflow: hidden;
}

a {
	transition: all 280ms ease;
	text-decoration: none;
	color: var(--grey);
}

h1,h2,h3,h4,h5 {
	width: 100%;
	margin: 0 0 30px 0;
	font-family: 'Bebas Neue', cursive;
	font-weight: 400;
}

p {
	width: 100%;
	margin: 0 0 30px 0;
	font-size: 22px;
	line-height: 30px;
	color: #fff;
	font-family: 'Vollkorn', serif;
	float: left;
}

* > p:last-child {
	margin-bottom: 0;
}

.button {
	padding: 15px 40px;
	border: 1px solid var(--yellow);
	font-family: 'Vollkorn', serif;
	font-size: 22px;
	color: #fff;
	position: relative;
}

.button::after {
	content: '';
	width: 45px;
	height: 1px;
	background-color: var(--yellow);
	transform: translate(50%, -50%);
	transition: all 280ms ease;
	position: absolute;
	top: 50%;
	right: 1px;
}

.button:hover::after {
	right: -5px;
}

.button.center {
	transform: translateX(-50%);
	float: left;
	position: relative;
	left: 50%;
}


/* Header */

header {
	position: fixed;
	top: 110px;
	left: 140px;
	z-index: 10;
}

header nav {
	display: flex;
	flex-direction: column;
}

header nav > a {
	width: 110px;
}

header nav > a img {
	width: 100%;
	float: left;
}

header nav a:hover {
	color: #fff;
}

header nav #mobile {
	display: none;
}

header nav ul {
	margin-top: 36px;
}

header nav ul li {
	margin-bottom: 15px;
}

header nav ul li:last-child {
	margin-bottom: 0;
}

header nav ul li a {
	font-size: 30px;
}

header nav ul li.current-menu-item a {
	color: var(--yellow);
}

header nav ul.contact a {
	font-size: 18px;
	font-family: 'Vollkorn', serif;
}


/* Main */

main {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
}

main section {
	width: 100%;
	max-width: 1320px;
	color: #fff;
}


/* Home */

.home main {
}

.home #projects {
	max-width: 860px;
	min-height: 100vh;
	padding-top: 110px;
	padding-bottom: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home #projects::after {
	content: '';
	width: 1px;
	height: 180px;
	background-color: var(--yellow);
	transform: translate(-50%, -50%);
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 3;
	display: none;
}

.home #projects .projects {
	display: grid;
	grid-template-columns: repeat(7, 110px);
	grid-template-rows: repeat(5, 110px);
	gap: 12px;
	float: left;
}

.home #projects .projects article {
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 280ms ease;
}

.home #projects .projects article:not(.border) {
	position: relative;
	z-index: 3;
}

.home #projects .projects article.blocked {
	opacity: 0.25;
	filter: grayscale(1);
}

.home #projects .projects article.blocked a {
	cursor: not-allowed;
}

.home #projects .projects article figure {
	width: 110px;
	height: 110px;
	border: 1px solid #fff;
	overflow: hidden;
	position: relative;
}

.home #projects .projects article.empty:not(.border) figure {
	border: 0;
}

.home #projects .projects article figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 280ms ease;
}

.home #projects .projects article:not(.blocked):hover figure img {
	opacity: 0.5;
}

.home #projects .projects article figure a::after {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url('images/more.svg');
	background-position: center;
	background-repeat: no-repeat;
	transform: scale(0.5);
	opacity: 0;
	transition: all 280ms ease;
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
}

.home #projects .projects article:not(.blocked):hover figure a::after {
	opacity: 1;
	transform: scale(1);
}

.home #intro {
	max-width: none;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	position: relative;
}

.home #intro::before {
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 85%);
	position: absolute;
	top: 0;
	left: 0;
}

.home #intro::after {
	content: '';
	width: 1px;
	height: 180px;
	background-color: var(--yellow);
	transform: translate(-50%, 75%);
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 3;
}

.home #intro article {
	width: 100%;
	max-width: 860px;
	padding: 100px 0;
	position: relative;
	z-index: 1;
}

.home #intro article h1 {
	font-size: 50px;
}

.home #intro article p {
	font-size: 30px;
	line-height: 40px;
}

.home #services {
	padding-top: 150px;
	text-align: center;
}

.home #services h2 {
	font-size: 50px;
	margin-bottom: 15px;
}

.home #services p {
	font-size: 30px;
	line-height: 40px;
}

.home #services .services {
	width: 100%;
	margin-top: 50px;
	padding-bottom: 125px;
	display: flex;
	justify-content: center;
	float: left;
}

.home #services .services article {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.home #services .services article:nth-child(2) {
	margin: 0 100px;
}

.home #services .services article figure {
	width: 150px;
	height: 168px;
	border-top: 4px solid #fff;
	border-bottom: 4px solid #fff;
	display: flex;
	align-items: center;
	position: relative;
}

.home #services .services article figure img {
	height: 150px;
}

.home #services .services article figure figcaption {
	width: 100%;
	transform: translateY(100%);
	position: absolute;
	bottom: 0;
}

.home #services .services article figure figcaption h3 {
	text-align: center;
	margin-top: 20px;
	font-size: 28px;
}

.home .project {
	width: 100%;
	height: 100%;
	max-width: 1020px;
	padding-bottom: 150px;
	overflow: auto;
	background-color: var(--black);
	opacity: 0;
	transform: translate(-50%, -50px);
	pointer-events: none;
	transition: all 720ms ease;
	position: fixed;
	top: 0;
	left: 50%;
	z-index: 9;
}

.home .project.active {
	opacity: 1;
	transform: translate(-50%, 0);
	pointer-events: all;
}

.home .project .close {
	width: 30px;
	height: 30px;
	font-size: 32px;
	color: var(--yellow);
	background-color: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: absolute;
	top: -7px;
	right: 20px;
	z-index: 3;
}

.home .project section {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 110px;
	position: relative;
}

.home .project section article {
	max-width: 1020px;
	position: relative;
}


/* About */

.about #team {
	margin-top: 150px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px;
	row-gap: 100px;
}

.about #team article {
	display: flex;
	align-items: stretch;
	position: relative;
}

.about #team article figure {
	min-width: 250px;
	height: 250px;
	margin-right: 30px;
}

.about #team article h3 {
	margin-bottom: 70px;
	font-size: 38px;
	color: var(--yellow);
}

.about #team article h3 em {
	width: 100%;
	font-size: 22px;
	font-family: 'Vollkorn', serif;
	font-weight: 400;
	color: #fff;
	float: left;
	clear: both;
}

.about #team article h3 span.line {
	width: calc(100% + 100px);
	margin-left: -100px;
	margin-top: 20px;
	border: 0;
	border-top: 1px solid var(--yellow);
	float: left;
}

.about #team article p {
	font-size: 15px;
	line-height: 20px;
	hyphens: auto;
}


/* Serices */

.services #services {
	margin-top: 150px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 75px;
}

.services #services figure img {
	height: auto;
}

.services #services article {
	display: flex;
	align-items: stretch;
}

.services #services article figure {
	min-width: 530px;
	height: 530px;
	margin-right: 50px;
	background-color: #f2f2f2;
}

.services #services article div h3 {
	font-size: 50px;
	padding-bottom: 30px;
	position: relative;
}

.services #services article div h3::after {
	content: '';
	width: 480px;
	height: 1px;
	background-color: var(--yellow);
	position: absolute;
	bottom: 0;
	left: -120px;
}

.services #services article div p {
	font-size: 22px;
	line-height: 30px;
}


/* Project */

.project main {
	padding-top: 110px;
}

.project main section {
	max-width: 1640px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.project section article {
	max-width: 1220px;
	display: grid;
	grid-template-columns: calc(60% - 25px) 40%;
}

.project section article #gallery {
	margin-right: 25px;
}

.project section article #gallery .owl-item figure {
	cursor: zoom-in;
}

.project section article #gallery .owl-item figure img {
	transition: all 280ms ease;
}

.project section article #gallery .owl-item figure:hover img {
	filter: brightness(120%);
}

.project section article #gallery #thumbs {
	width: 100%;
	margin-top: 25px;
	float: left;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.project section article #gallery #thumbs figure {
	width: 100%;
	height: 100%;
	opacity: 0.5;
	transition: all 280ms ease;
	cursor: pointer;
	float: none;
	display: inline-block;
	position: relative;
}

.project section article #gallery #thumbs figure.active,
.project section article #gallery #thumbs figure:hover {
	opacity: 1;
}

.project section article #gallery #thumbs figure::after {
	content: '';
	width: calc(100% - 6px);
	height: calc(100% - 6px);
	border: 3px solid var(--yellow);
	transform: scale(0.75);
	opacity: 0;
	transition: all 280ms ease;
	position: absolute;
	top: 0;
	left: 0;
}

.project section article #gallery #thumbs figure.active::after {
	transform: scale(1);
	opacity: 1;
}

.project section article div span {
	width: 100%;
	float: left;
}

.project section article div h1 {
	font-size: 70px;
	color: var(--yellow);
	float: left;
}

.project section article div h1::after {
	content: '';
	width: 80%;
	margin: 20px 0;
	border-top: 1px solid var(--yellow);
	float: left;
}

.project section article div ul li {
	width: 100%;
	margin-bottom: 10px;
	font-family: 'Vollkorn', serif;
	color: #fff;
	font-size: 18px;
	display: flex;
	align-items: center;
	position: relative;
}

.project section article div ul li::before {
	content: '';
	width: 30px;
	margin-top: -2px;
	margin-right: 10px;
	border-top: 1px solid #fff;
	float: left;
}

.project section article div > span {
	width: 100%;
	font-size: 21px;
	color: var(--grey);
	float: left;
}

.project section article div > span a:hover {
	color: #fff;
}

.project nav.project-nav {
	width: 100%;
	max-width: 1640px;
	margin-top: 120px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--yellow);
	display: flex;
	justify-content: center;
	position: relative;
}

.project nav.project-nav::after {
	content: '';
	width: 1px;
	height: 120px;
	background-color: var(--yellow);
	transform: translateX(-50%);
	position: absolute;
	left: 50%;
	bottom: -60px;
}

.project nav.project-nav a,
.project nav.project-nav span {
	width: 100px;
	float: left;
}

.project nav.project-nav a {
	font-size: 24px;
}

.project nav.project-nav a:hover {
	color: #fff;
}

.project nav.project-nav a:first-child {
	margin-right: 20px;
}

.project nav.project-nav a:last-child {
	margin-left: 15px;
}

.project nav.project-nav a i {
	color: var(--yellow);
}

.project #cta {
	margin-top: 90px;
}

.project #cta h4 {
	font-size: 38px;
	color: #fff;
}


/* Projects Filter */

nav#projects-filter {
	position: fixed;
	top: 110px;
	right: 140px;
	z-index: 11;
}

nav#projects-filter span {
	font-size: 30px;
	color: #fff;
}

nav#projects-filter div {
	margin-top: 10px;
	padding: 15px 0 15px 15px;
	display: flex;
	flex-direction: column;
	border-left: 2px solid var(--yellow);
}

nav#projects-filter div a {
	font-size: 28px;
}

nav#projects-filter div a:hover {
	color: #fff;
}

nav#projects-filter div a.active {
	color: var(--yellow);
}


/* Contact */

#contact {
	width: 100%;
	height: 100%;
	background-color: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(1.2);
	pointer-events: none;
	transition: all 720ms ease;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 11;
}

#contact.active {
	opacity: 1;
	transform: scale(1);
	pointer-events: all;
}

#contact ul {
	transform: translateX(-50%) translateY(calc(100% + 40px)) scale(0);
	transition: all 560ms ease 560ms;
	position: fixed;
	bottom: 40px;
	left: 50%;
}

#contact.active ul {
	transform: translateX(-50%) translateY(0)  scale(1);
}

#contact ul li {
	margin: 0 15px;
	float: left;
}

#contact ul li a {
	font-size: 24px;
	font-family: 'Vollkorn', serif;
}

#contact ul li a:hover {
	color: #fff;
}

#contact article {
	width: 100%;
	max-width: 585px;
	background-color: var(--black);
	position: relative;
}

#contact .close {
	width: 60px;
	height: 60px;
	font-size: 32px;
	color: var(--yellow);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: absolute;
	top: 50px;
	right: 50px;
}

#contact article h3 {
	margin-bottom: 10px;
	font-size: 30px;
	color: #fff;
}

#contact article p {
	margin-top: 0;
	margin-bottom: 0;
}

.wpcf7 form {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
	float: left;
	position: relative;
}

.wpcf7 .block {
	width: 100%;
}

.wpcf7 .block.last {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.wpcf7 .block.last .wpcf7-list-item {
	margin: 0;
}

.wpcf7 input:not([type="checkbox"]):not([type="submit"]),.wpcf7 textarea {
	width: 100%;
	height: 50px;
	border: 1px solid var(--yellow);
	padding: 15px;
	background-color: var(--black);
	font-family: 'Vollkorn', serif;
	color: #fff;
	font-size: 18px;
}

.wpcf7 input.wpcf7-not-valid {
	border-color: #dc3232 !important;
}

.wpcf7 textarea {
	height: 145px;
	resize: none;
}

.wpcf7 [type="submit"] {
	background-color: var(--black);
	transition: all 280ms ease;
}

.wpcf7 .wpcf7-submit:disabled {
	border-color: rgb(255 255 255 / 50%);
	color: rgb(255 255 255 / 50%);
}

.wpcf7 [type="submit"]:not([disabled]) {
	cursor: pointer;
}

.wpcf7 .policy .showinfo {
	color: var(--grey);
	cursor: pointer;
}

.wpcf7 .policy .privacy-info {
	font-size: 0.75em;
	line-height: normal;
	margin-top: 20px;
	height: 0;
	transition: 0.2s;
	opacity: 0;
}

#contact .wpcf7 .policy .privacy-info.active {
	height: 80px;
	margin-top: 10px;
	opacity: 1;
	transition: 0.2s;
}

.wpcf7 .wpcf7-acceptance span {
	margin-left: 0;
}

.wpcf7 .wpcf7-acceptance label {
	font-size: 18px;
	font-family: 'Vollkorn', serif;
	color: #fff;
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
}

.wpcf7 .wpcf7-acceptance label a:hover {
	color: #fff;
}

.wpcf7 .wpcf7-acceptance label::before {
	content: '';
	min-width: 18px;
	height: 18px;
	margin-right: 10px;
	border: 1px solid #fff;
	position: relative;
	top: -2px;
}

.wpcf7 .wpcf7-acceptance label::after {
	content: '';
	width: 14px;
	height: 14px;
	background-color: var(--yellow);
	opacity: 0;
	transform: scale(0);
	transition: all 280ms ease;
	position: absolute;
	top: 1px;
	left: 3px;
}

.wpcf7 .wpcf7-acceptance label.active::after {
	opacity: 1;
	transform: scale(1);
}

.wpcf7 .wpcf7-acceptance label input {
	width: 20px;
	height: 20px;
	opacity: 0;
	cursor: pointer;
	position: absolute;
	top: -2px;
}

.wpcf7 .ajax-spinner {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.wpcf7 .wpcf7-not-valid-tip,
.wpcf7 .wpcf7-response-output {
	display: none !important;
}

.wpcf7 .wpcf7-spinner {
	transform: translate(-50%,-50%);
	position: absolute;
	top: 50%;
	left: 50%;
}


/* Regular */

.regular main {
	padding-top: 110px;
}

.regular main section {
	max-width: 1100px;
}

.regular h1 {
	font-size: 70px;
	padding-bottom: 20px;
	margin-top: -10px;
	border-bottom: 2px solid var(--yellow);
	color: var(--yellow);
}

.regular .privacy h2 {
	margin-top: 30px;
	display: inline-block;
	width: 100%;
	clear: both;
	font-size: 36px;
	padding-bottom: 20px;
	border-bottom: 2px solid var(--yellow);
	color: white;
}

.regular .privacy h3 {
	padding-top: 30px;
	font-size: 28px;
	padding-bottom: 0;
	color: white;
}

.regular .privacy ul {
	padding-left: 20px;
}

.regular .privacy ul li {
	font-size: 22px;
	line-height: 30px;
	font-family: 'Vollkorn', serif;
	margin: 10px 0;
	list-style: square;
}

.regular .privacy ul li b {
	text-transform: uppercase;
}


/* Footer */

footer {
	width: 100%;
	margin-top: 150px;
	background-color: var(--black);
	display: flex;
	justify-content: center;
	float: left;
	position: relative;
	z-index: 10;
}

footer > div {
	width: 100%;
	max-width: 1640px;
	padding: 50px 0;
	border-top: 1px solid var(--yellow);
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
}

footer > div #copy {
	font-family: 'Vollkorn', serif;
	color: #fff;
}

footer > div #copy p {
	width: auto;
	margin-bottom: 0;
	font-size: 16px;
	display: inline-block;
	float: none;
}

footer > div #copy a:hover {
	color: #fff;
}

footer > div #social {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

footer > div #social a {
	font-size: 24px;
	color: var(--yellow);
	display: flex;
	align-items: center;
	justify-content: center;
}

footer #neobrand {
	width: 24px;
	opacity: 0.5;
	overflow: hidden;
	float: right;
}

footer #neobrand:hover {
	opacity: 1;
}

footer #neobrand img {
	width: auto;
	height: 24px;
	float: left;
}

#contact .wpcf7-form .ajax-loader {
	position: absolute;
	right: 160px;
	margin-left: auto;
	top: calc(100% - 45px);
}

.error-img {
	display: flex;
	justify-content: center;
	align-items: center;
}

.error-img img {
	width: 100%;
	text-align: center;
	max-width: 500px;
}


/* Cookies */

#cookies-eu-banner {
	max-width: 500px;
	padding: 50px;
	background-color: var(--black);
	right: 0;
}

#cookies-eu-banner #cookies-eu-label {
	max-width: 720px;
	margin-bottom: 30px;
	font-family: 'Vollkorn', serif;
}

#cookies-eu-banner #cookies-eu-buttons button {
	margin: 0 10px;
	font-size: 18px;
	font-family: 'Bebas Neue', serif;
}

#cookies-eu-reject {
	color: #666;
}

#cookies-eu-banner #cookies-eu-accept {
	background-color: var(--black);
	border-color: var(--yellow);
	color: var(--yellow);
}

.grecaptcha-badge {
	display: none;
}