/*
Theme Name: Aric Pair Portfolio
Theme URI: 
Description: Child of Divi
Author: Aric Pair
Author URI: 
Template: Divi
Version: 4.27.0
*/

/* Generated by Orbisius Child Theme Creator (https://orbisius.com/products/wordpress-plugins/orbisius-child-theme-creator/) on Fri, 26 Jul 2024 17:35:51 +0000 */ 
/* The plugin now uses the recommended approach for loading the css files.*/

.et_pb_image img {
	pointer-events: none;
}

.et_pb_section_video_bg {
	transform: scale(1.03);
	clip-path: inset(-1px -1px);
}

#main-header {
	box-shadow: none !important;
	border-bottom: 2px solid #e7ecef;
}

.et_header_style_left #et-top-navigation nav>ul>li.work-link>a,
.et-fixed-header #top-menu li.current-menu-item.work-link>a,
#top-menu li.current_page_item.work-link>a {
	color: rgba(33,39,56,0.5) !important;
}

h1, h2, h3, h4, h5, h6 {
	padding-bottom: 0px !important;
}

h5 {
	text-transform: uppercase;
	opacity: .5;
	letter-spacing: .2em;
}

p#pre-list {
	padding-bottom: 0px;
}

.et_pb_text ul {
	padding-top: 1em;
}

.et_pb_text li {
	padding-bottom: 8px;
}

.et_password_protected_form p input {
	border-radius: 4px !important;
}

.custom-button {
	font-size: 20px;
	font-weight: 800;
	padding: 10px 20px;
	line-height: 1.7em;
	color: #212738;
	background-color: #fff;
	border: 2px solid #e7ecef;
	border-radius: 8px;
	-webkit-transition-duration: .2s;
	transition-duration: .2s;
	cursor: pointer;
}

.button-code-section .et_pb_code_inner {
	display: flex;
}

.custom-button:hover {
	background-color: #f8fcff;
}

@media(min-width: 981px) {
	.portfolio-row {
		display: flex;
	}
	.align-vertical {
		display: flex;
		flex-direction: row;
		align-items: center;
	}
	.align-vertical .et_pb_testimonial {
		height: 100%;
	}
}

.portfolio-card {
	transition: all .2s;
}

.portfolio-card:hover {
	transform: scale(1.01);
}

.card-text {
	margin-bottom: 24px;
}

.tag-group {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
#project-page-tags {
	margin: 12px 0px;
}

.tag {
	background-color: #C7EAFF;
	padding: 2px 12px;
	border-radius: 8px;
}

.tag p {
	font-weight: bold;
	font-size: 14px;
	color: #212738;
	white-space: nowrap;
}

.summary-rows p {
	padding-bottom: 0;
}

hr {
	border: 1px solid #E7ECEF;
}
hr.first {
	margin-top: 32px;
	margin-bottom: 16px;
}
hr.padded {
	margin-top: 16px;
	margin-bottom: 16px;
}
hr.last {
	margin-top: 16px;
	margin-bottom: 0px;
}

.card-divider hr {
	margin-top: 32px;
	margin-bottom: 32px;
}

.social-icon-container {
	display: flex;
	flex-direction: row;
	gap: 20px;
}

.social-icon {
	transition: all .2s;
	border-radius: 48px;
}

.social-icon:hover {
	background-color: rgba(255, 255, 255, .2);
}

#footer-bottom {
	display: none;
}



/* Intro Animation */

#hero {
  	position: relative;
  	overflow: hidden;
  	display: flex;
	align-items: center;
  	justify-content: center;
}

#hero .hero-text {
	width: 80%;
	max-width: 1200px;
	z-index: 1;
	display: flex;
	flex-direction: column;
}

@media(max-width: 767px) {
	#hero .hero-text h1 {
		font-size: 24px;
	}
}
@media(max-width: 980px) {
	#hero .hero-text {
		padding: 80px 0;
	}
}
@media(min-width: 981px) {
	#hero .hero-text {
		padding: 10% 0;
	}
	#hero .hero-text h1 {
		font-size: 48px;
	}
}

#horizontal {
	animation-name: horizontal;
	animation-duration: var(--horizontal-speed);
}

#vertical {
	position: absolute;
	animation-name: vertical;
	animation-duration: var(--vertical-speed);
}

#vertical,
#horizontal {
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	animation-fill-mode: both;
	animation-direction: alternate-reverse;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

#dvd {
	width: 88px;
	height: 56px;
}

#cursor {
  	fill: #C7EAFF;
}

@keyframes horizontal {
	from {
		transform: translateX(var(--translate-x));
	}
	to {
		transform: translateX(calc(-1*var(--translate-x)));
	}
}

@keyframes vertical {
	from {
		transform: translateY(var(--translate-y));
	}
	to {
		transform: translateY(calc(-1*var(--translate-y)));
	}
}