/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

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

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

/* 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 element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font:300 11px/1.4 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
	color:#fff;
	background-color: #000;
}



/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color: inherit;
	text-decoration: none;
}
a:hover {
	color:#2525e7;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

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

/* wrapper */
.wrapper {
	font-size: 1vw;
	position:relative;
}

section article {
	width: 84%;
	margin: 0 auto;
}

/* header */
.header {
	
}

.logo {
	position: absolute;
	width: auto;
	top: 3em;
	left: 10%;
	z-index: 8;
}

.logo-img {
	height: 3em;
	width: auto;
}

/* logo */
.logo {

}
.logo-img {

}
/* nav */
.nav {

}
/* sidebar */
.sidebar {

}
/* footer */
.footer {
	display: none;
}

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



#scroll_vid_wrapper {
  height: 100vh; 
	position: relative;
}

#scroll_vid_wrapper > div {
	position: sticky;
	top: 0;
	display: flex;
}

#scroll_vid_wrapper::after {
	content: '';
	position: absolute;
	height: 100vh;
	width: 100%;
	left: 0;
	bottom: 0;
	background: #000000;
background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

#scroll_vid {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	object-position: center center;
}





#main_content > div {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 2em 0 1em 0;
}

.page_text {
	font-size: 2.8em;
	font-weight: 700;
	padding-right: 2em;
}



.wp-block-button__link {
	color: #fff;
	/*background-color: #00c4a3;*/
	background-color: transparent;
	font-weight: 600;
	position: relative;
	border: 0.125em solid #fff;
	padding-left: 4em;
	padding-right: 1.5em;
	letter-spacing: 0.05em;
	transition: all 0.5s;
}

.wp-block-button__link:hover {
	padding-left: 1.5em;
	padding-right: 4em;
	background-color: #2525e7;
	color: #fff;
	border-color: #2525e7;
}

.wp-block-button__link::before {
	content: '';
	width: 2.1em;
	height: 1.1em;
	background-image: url(/wp-content/uploads/2025/07/qa_arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	position: absolute;
	left: 1em;
	top: 0.9em;
	opacity: 1;
	transition: all 0.5s;
	filter: brightness(0) invert(1);
}

.wp-block-button__link:hover::before {
	left: 3em;
	opacity: 0;
}

.wp-block-button__link::after {
	content: '';
	width: 2.1em;
	height: 1.1em;
	background-image: url(/wp-content/uploads/2025/07/qa_arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	position: absolute;
	right: 3em;
	top: 0.9em;
	opacity: 0;
	filter: brightness(0) invert(1);
	transition: all 0.5s;
}

.wp-block-button__link:hover::after {
	right: 1em;
	opacity: 1;
}









/*------------------------------------*\
    IMAGES
\*------------------------------------*/


.qbikby img {
	height: 1.5em;
	width: auto;
}


/* Icon Scroll */

.icon_scroll_ct {
	position: absolute;
	right: 10%;
	top: calc(100vh - 6.5em);
	z-index: 12;
}

.icon_scroll_ct.scdn {
	
}

.icon-scroll,
.icon-scroll:before {
  position: absolute;
  left: 50%;
}
.icon-scroll {
  width: 2em;
  height: 3.5em;
  box-shadow: inset 0 0 0 2px #fff;
  border-radius: 1em;
}
.icon-scroll:before {
  content: '';
  width: 0.3em;
  height: 0.3em;
  background: #fff;
  margin-left: -0.15em;
  top: 0.8em;
  border-radius: 0.5em;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
          animation-name: scroll;
}
@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2.1em);
            transform: translateY(2.1em);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2.1em);
            transform: translateY(2.1em);
  }
}


.portfolio_ct {
	display: flex;
	justify-content: flex-end;
}

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

.portfolio_txt {
	text-align: right;
	padding-right: 1em;
	font-weight: 800;
	letter-spacing: 0.05em;
	line-height: 1.2;
	transition: all 0.5s;
	color: #fff;
}

.portfolio_wrapper:hover .portfolio_txt {
	color: #2525e7;
}

.portfolio_sym {
	width: 4em;
	height: 4em;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	transition: all 0.5s;
}

.portfolio_wrapper:hover .portfolio_sym {
	background-color: #2525e7;
}

.portfolio_sym img {
	width: 1.4em;
	height: auto;
	transform: rotate(90deg);
	position: absolute;
	filter: brightness(0);
	transition: all 0.5s;
}

.portfolio_sym::before {
	content: '';
	position: absolute;
	width: 2em;
	height: 0em;
	border: 0.1em solid #000;
	transform: translateY(0.9em);
	transition: all 0.5s;
}

.portfolio_wrapper:hover .portfolio_sym::before {
	width: 2em;
	height: 2em;
	transform: translateY(0em);
	border: 0.1em solid #fff;
}

.portfolio_sym .portfolio_arrow1 {
	transform: translateY(-0.25em) rotate(90deg);
}

.portfolio_wrapper:hover .portfolio_sym .portfolio_arrow1 {
	transform: translateY(1.25em) rotate(90deg);
	opacity: 0;
}

.portfolio_sym .portfolio_arrow2 {
	transform: translateY(-1.5em) rotate(90deg);
	opacity: 0;
	filter: brightness(0) invert(1);
}

.portfolio_wrapper:hover .portfolio_sym .portfolio_arrow2 {
	transform: translateY(0em) rotate(90deg);
	opacity: 1;
}

.banner_text_wrapper {
	position: absolute;
	left: 10%;
	top: 50%;
}

.banner_text_wrapper span {
	font-size: 4.8em;
	font-weight: 800;
	display: inline-block;
	line-height: 1.1;
	transform: translateY(-60%);
}


/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/


/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width:1140px) {
	
	.wrapper {
		font-size: 1.6vw;
	}
	
	.logo, .banner_text_wrapper {
		left: 6%;
	}
	
}


@media only screen and (max-width:781px) {
	
	.page_text {
		padding-right: 0;
		font-size: 3.6em;
	}
	
	.logo-img {
		height: 5em;
	}
	
	.wp-block-buttons {
		font-size: 1.6em;
	}
	
	.content_main_container {
		padding-bottom: 4em;
	}
	
	.second_content {
		font-size: 1.6em;
		flex-direction: column-reverse;
		padding-bottom: 3em;
	}
	
	.portfolio_ct {
		padding-bottom: 4em;
	}
	
	
}


@media only screen and (max-width:600px) {
	
	
	.second_content {
		font-size: 2.4em;
	}
	
	.portfolio_ct {
		padding-top: 4em;
	}
	
}



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

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	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;
	}
}
