/*
	Theme Name: xxplore
	Theme URI: https://wpdedicated.uk
	Description: Hand Crafted theme
	Version: 1.3
	Author: Ben Kitching
	Author URI: https://benkitching.uk
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

:root {
  --purple: #15172c;
  --light-purple: #bfb5fe;
}

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
html {
	font-size:1vw;
	margin:0;
	padding:0;
}

body {
	font: 300 1rem/1.1 'DM Sans', Arial, sans-serif;
	color: #fff;
	margin: 0;
	padding: 0;
	max-width: 100vw;
	overflow-x: clip;
	background-color: var(--purple);
}
body.loading {
	overflow:hidden;
}


#loader {
	background-color: var(--light-purple);
	width: 100vw;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999999;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
img {
	max-width:100%;
	vertical-align:bottom;
}

/*------------------------------------*\
    LINKS
\*------------------------------------*/

a {
	color: inherit;
	text-decoration: none;
	transition: 0.5s all;
}
a:hover {
	text-decoration: underline;
}
a:focus {
	outline: 0;
}
a:hover,
a:active {
	outline: 0;
}

a.no-decoration {
	text-decoration: none !important;
}

a.btn, #form-container .gform_button.button {
	display: inline-block;
	width: fit-content;
	border: 1px solid;
	padding: 0.6rem 1.8rem;
	border-radius: 2rem;
	margin-left: auto;
	text-decoration: none;
	color: var(--purple);
	min-width: 12rem;
	font-size: 1rem;
}

a.btn.solid, #form-container .gform_button.button {
	background-color: var(--light-purple);
	border-color: var(--light-purple);
}
a.btn.solid:hover, #form-container .gform_button.button:hover {
	background-color: transparent;
	color: var(--light-purple);
}

a.btn.outline {
	background-color: transparent;
	border-color: var(--purple);
}

a.btn.outline:hover {
	background-color: var(--purple);
	color:var(--light-purple);
}

/*------------------------------------*\
    FORMS
\*------------------------------------*/

#form-container .gform_confirmation_message {
	text-align: center;
	font-size: 2rem;
	color: var(--purple);
}
#form-container input:focus, #form-container textarea:focus {
	border: none !important;
	outline-color: var(--light-purple);
}

#form-container input[type=text], #form-container input[type=textarea], #form-container input[type=email], #form-container input[type=password] {
	padding:2rem 2rem 2rem 6rem;
	background-color:#fff;
	border: none;
	font-size: 1.6rem;
}
#form-container .gform-theme--foundation .gfield textarea {
	border: none;
	padding: 4rem 2rem 2rem 2rem;
	width: 24rem;
}

#form-container {
	width: 42rem;
	position: relative;
	min-height: 29rem;
	background-color: #f2f2f2;
	padding: 2rem;
	border-radius: 2rem;
}

#form-container .gfield {
	position: relative;
}

#form-container label.gfield_label {
	position: absolute;
	left: 2rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1rem;
}

#form-container .gfield--type-textarea label.gfield_label {
	top: 2rem;
	transform: none;
}

#form-popup {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	display: none;
}

#form-popup-inner {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#form-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
}
#form-header svg {
	height: 2rem;
}
#form-header a svg {
	height: 1.4rem;
	transition: 0.5s transform;
}
#form-header a:hover svg {
	transform: rotate(45deg);
}

#form-container .gform_heading, #form-container span.gfield_required {
	display: none !important;
}

#form-container .gform-theme--foundation .gform_fields {
	row-gap: 0.5rem;
}

#form-container .gform_footer {
	justify-content: flex-end;
	position: absolute;
	right: 2rem;
	bottom: 2rem;
}



/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

.block {
	width:100%;
	position: relative;
	height: calc(100vw * 56.25);
	max-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.block.square {
	height: 42rem;
}

.bg-img {
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left: 0;
}
.bg-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.block-inner {
	position: relative;
}

.offset {
	position: relative;
	top: 4rem;
}

#scroll-down {
	position: absolute;
	bottom: 2rem;
}

#header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 2;
}
.header-inner {
	display: flex;
	justify-content: space-between;
	padding: 1rem 2rem;
}

.header-strip {
	width: 100%;
	height: 0.6rem;
}

.scroller svg {
	width: 2rem;
	height: auto;
	cursor: pointer;
}

.linkedin {
	display: flex;
	align-items: center;
}
.linkedin svg {
	width: 2rem;
	height: auto;
	margin-left: 0.6rem;
}
.logo svg {
	height: 4rem;
	width: auto;
}

#footer {
	background-color: #fff;
	color: #999999;
	padding: 1rem 2rem;
	position: relative;
	border-top: 0.6rem solid var(--light-purple);
}
.footer-top {
	display: flex;
	width: 100%;
	justify-content: space-between;
	padding-bottom: 12rem;
	padding-top: 1rem;
	align-items: center;
}
.footer-logo svg {
	height: 3rem;
}
.footer-inner {
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.footer-inner p {
	flex-grow: 1;
	padding-right: 2rem;
}
.footer-top p {
	flex-grow: 0;
}
.footer-inner a {
	color: #fff;
}
.footer-inner p.footer-middle {
	width: 80%;
	padding-right: 28%;
}

#back-top {
	color: #fff;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding-right: 0;
	margin-left: auto;
}
#back-top svg {
	margin-left: 0.5rem;
}

/*------------------------------------*\
    Colors / SVG
\*------------------------------------*/

.text-light {
	color: var(--light-purple);
}

.bg-light {
	background-color: var(--light-purple);
	color: var(--purple);
}

.uuid-713d866e-e952-44a6-b31a-af3faac90b07 {
  fill: #bfb5ff;
}

.uuid-736f362a-e34e-45f3-a1eb-5fbd2a678c90 {
  fill: none;
  stroke: #15172d;
  stroke-width: 1.5px;
}

.uuid-20fb0d92-404a-459e-b6b7-79ff49e9ac57, .uuid-cec70d54-b938-491b-b80c-1b4c4a80dede {
  fill: none;
}

.uuid-f3200d8a-f947-4719-b5a5-f5367a3aaf43 {
  clip-path: url(#uuid-3b25695b-5503-4301-ba93-f1ebe349d893);
}

.uuid-906ed47b-77fe-462a-8953-5862d571b0b8 {
  fill: #bfb5ff;
}

.uuid-cec70d54-b938-491b-b80c-1b4c4a80dede {
  stroke: #bfb5ff;
  stroke-miterlimit: 10;
  stroke-width: 1.14px;
}

.uuid-96a4a5e4-2158-429a-b7aa-60fc6c9405f7 {
  clip-path: url(#uuid-1f737cdd-5f6a-445d-aae2-e70617896be1);
}

.uuid-2983ac12-194d-4f32-90fb-edcce869d821 {
  fill: #fff;
}

.uuid-883b43c0-4272-480e-a96d-cb0ef1080d16 {
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: .5px;
}

.uuid-883b43c0-4272-480e-a96d-cb0ef1080d16, .uuid-dbdf8888-7a6b-4294-9603-59d61834cfa3 {
  fill: none;
}

.uuid-9e7af4d5-3079-4e36-ac81-80c9677a6cd3 {
  fill: #bfb5ff;
}

.uuid-70709d33-27c9-4c8b-97fc-71f775975997 {
  fill: none;
  stroke: #15172d;
  stroke-width: 1.5px;
}

.uuid-ef886ead-c644-424f-84b4-8b8b612f5b2c {
  fill: #15172d;
}

.uuid-a3e54db0-6063-4c4f-b2d3-c3087c497b47 {
  fill: #b3b3b3;
}

.uuid-9fc8e1db-095c-4f56-bacf-44272f369943 {
  fill: #bfb5ff;
}

/*------------------------------------*\
	MISC
\*------------------------------------*/


::selection {
	background:var(--purple);
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:var(--purple);
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:var(--purple);
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

p, h1, .h1, h2, .h2, h3, .h3, h4, h5, h6 {
	margin:1rem 0;
	line-height: 1.1;
	font-weight: 300;
}

h1, .h1 {
	font-size: 5.5rem;
}

h2, .h2 {
	font-size: 3.6rem;
}

h3, .h3 {
	font-size: 2.4rem;
}
h4, .h4 {
	font-size: 0.8rem;
}

.text-center {
	text-align: center;
}

strong, b, .bold {
	font-weight: 500;
}

@font-face {
  font-family: 'DM Sans';
  src: url('./fonts/dm-sans.ttf') format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: 'DM Sans';
  src: url('./fonts/dm-sans-italic.ttf') format("truetype-variations");
  font-weight: 100 900;
  font-style: italic;
}

/*------------------------------------*\
    Spacing and Grid
\*------------------------------------*/

.row {
	display: flex;
	flex-wrap: wrap;
	height: 100%;
}
.col {
	position: relative;
	height: 100%;
}
.col.half {
	width: 50%;
}

.w66 {
	width: 66%;
}

.nudge {
	position: relative;
	top: -8rem;
	left: -12rem;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.m0 {
	margin: 0;
}
.p7 {
	padding: 7rem;
}
.mt4 {
	margin-top: 4rem;
}


/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

.sfs {
	display: none;
}

@media (orientation:portrait) {

	html {
		font-size: 3.2vw;
	}

	.hfs {
		display: none;
	}
	.sfs {
		display: block;
	}

	.logo svg {
		height: 3rem;
	}

	.block-inner {
		max-width: 90%;
	}

	h2, .h2 {
		font-size: 2.2rem;
	}
	h3, .h3 {
		font-size: 1.6rem;
	}
	h4, .h4 {
		font-size: 1rem;
	}

	.nudge {
		position: static;
	}

	.p7 {
		padding: 2rem;
	}

	.w66 {
		width: calc(100% - 4rem);
	}

	.col.half {
		width: 100%;
	}

	.block.square {
		height: auto;
	}
	.block.square .col {
		min-height: 50vh;
	}

	.footer-inner {
		flex-wrap: wrap;
	}

	.footer-inner p.footer-middle {
		padding-right: 4rem;
	}

	#back-top {
		width: 8rem;
		margin-left: auto;
		padding-right: 0 !important;
		flex-grow: 0;
	}

	#form-container {
		width: 95%;
	}

	#form-container .gform-theme--foundation .gfield textarea {
		width: 100%;
	}

	#form-container .gform_footer {
		position: static;
		justify-content: flex-start;
		margin-left: ;
	}

}