/*
Theme Name: Linkage Theme
Author: J.V.A
Description: 「」
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: bootstrap, LESS, bower, gulp
Text Domain: oracle

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

@media (min-width: 1400px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		max-width: 1610px;
	}
}

:root {
	--c_red: #b80000;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Roboto", sans-serif;
	width: 1920px;
	max-width: 100%;
	margin: auto;
}

a, .btn {
	transition: all .3s;
}

.btn-custom {
	background-color: var(--c_red);
	border-color: var(--c_red);
	color: #ffffff;
	border-radius: 0;
	font-weight: 600;
}

.btn-custom:hover, .btn-custom:focus {
	background-color: #ffffff;
	color: var(--c_red);
	border-color: var(--c_red);
}

.btn-custom-alt {
	background-color: #ffffff;
	border-color: #ffffff;
	color: var(--c_red);
	border-radius: 0;
	font-weight: 600;
}

.btn-custom-alt:hover, .btn-custom-alt:focus {
	background-color: var(--c_red);
	color: #ffffff;
	border-color: #ffffff;
}

.s_title {
	text-align: center;
	font-size: 80px;
	font-weight: 900;
	text-transform: uppercase;
	position: relative;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
}

.s_title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 150px;
	height: 2px;
	background-color: var(--c_red);
}

.gform_required_legend {
	display: none;
}

#page-wrap {
	overflow: hidden;
}

.gform-theme--foundation .gform_fields {
	row-gap: 1rem !important;
}

.gform_wrapper.gravity-theme .gfield .ginput_container:not(.ginput_container_fileupload) input, .gform_wrapper.gravity-theme .gfield select, .gform_wrapper.gravity-theme .gfield textarea {
	border: solid 2px var(--c_red);
	border-radius: 0;
	padding: 1rem;
	font-size: 1rem;
}

#main_header .header_top .site_logo {
	display: table;
	margin: auto;
	width: 300px;
	max-width: 100%;
}

#main_header .header_top .site_logo:hover, #main_header .header_top .site_logo:focus {
	transform: scale(.96);
}

#main_header .header_top .box {
	display: flex;
	align-items: center;
}

#main_header .header_top .box .fa-solid {
	font-size: 4rem;
	margin-right: .5rem;
	color: var(--c_red);
}

#main_header .header_top .box p {
	margin-bottom: 0;
	display: table;
	background-color: var(--c_red);
	padding: 0 .5rem;
	color: #ffffff;
	font-size: .7rem;
	font-weight: 900;
}

#main_header .header_top .box a {
	font-size: 1.5rem;
	color: #000000;
	font-weight: 600;
}

#main_header .header_top .box a:hover, #main_header .header_top .box a:focus {
	color: var(--c_red);
}

#main_header .header_bot {
	background-color: var(--c_red);
}

#main_header .header_bot .header_nav {
	text-align: center;
	padding: 0;
	margin: 0;
	list-style: none;
}

#main_header .header_bot .header_nav > li {
	display: inline-block;
	vertical-align: middle;
}

#main_header .header_bot .header_nav > li > a {
	font-size: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	color: #ffffff;
	border-bottom: solid 5px transparent;
	display: table;
	padding: .2rem 1rem;
}

#main_header .header_bot .header_nav > li > a:hover, #main_header .header_bot .header_nav > li > a:focus, #main_header .header_bot .header_nav > li > a.active {
	border-color: #ffffff;
}

#banner_section {
	position: relative;
}

#banner_section .img_container:after {
	content: '';
	position: absolute;
	inset: 0;
	right: 20%;
	background: linear-gradient(to right, rgba(184,0,0,0.6) 0%,rgba(184,0,0,0) 100%);
}

#banner_section .img_container .fake_image {
	padding-top: 50.78%;
	background-size: cover;
	background-position: center;
/*	transition: all 5s;*/
/*	transform: scale(2);*/
}

#banner_section .slick-active .img_container .fake_image {
/*	transform: scale(1);*/
}

#banner_section .container {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
}

#banner_section .box {
	position: relative;
	border-left: solid 10px #ffffff;
	padding: 2rem;
	border-radius: .5rem 0 0 .5rem;
}

#banner_section .box:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 30%;
	height: 10px;
	background-color: #ffffff;
	border-radius: 0 .5rem .5rem 0;
}

#banner_section .box:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50%;
	height: 10px;
	background-color: #ffffff;
	border-radius: 0 .5rem .5rem 0;
}

#banner_section .box .content {
	font-size: 90px;
	font-weight: 900;
	color: #ffffff;
	text-shadow: 0 0 5px #000;
}

#banner_section .box .btn-custom-alt {
	font-size: 1.5rem;
	padding: 1rem 2.5rem;
}

#services_section {
	background-image: url(images/services-bg.jpg);
	background-position: top right;
	padding: 4rem 0 8rem;
	background-repeat: no-repeat;
}

#services_section .services_excerpt {
	text-align: center;
	font-size: 2rem;
	width: 1144px;
	max-width: 100%;
	margin: ;
	margin: auto;
	margin-bottom: 2rem;
}

#services_section .box {
	border-radius: 5px;
	box-shadow: 0 3px 6px 3px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	height: 100%;
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
}

#services_section .box .img_container {
	overflow: hidden;
}

#services_section .box .img_container .fake_image {
	padding-top: 73.39%;
	background-size: cover;
	background-position: center;
}

#services_section .box .bg {
	background-size: cover;
	background-position: center;
	flex: 1;
}

#services_section .box .count-1 {
	background-image: url(images/serv-1.jpg);
}

#services_section .box .count-2 {
	background-image: url(images/serv-2.jpg);
}

#services_section .box .count-3 {
	background-image: url(images/serv-3.jpg);
}

#services_section .box .icon {
	width: 125px;
	display: block;
	margin: auto;
	border-radius: 100%;
	background-color: var(--c_red);
	margin-top: -4rem;
}

#services_section .box .icon .fake_image {
	padding-top: 100%;
	background-size: cover;
	background-position: center;
}

#services_section .box .title {
	text-align: center;
	font-size: 2rem;
	font-size: ;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--c_red);
	padding: 0 1rem;
}

#services_section .box .content {
	padding: 0 1rem 2rem;
	text-align: center;
	font-size: 1.4rem;
	
}

#team_section {
	/*	background: linear-gradient(to bottom, rgba(184,0,0,0) 0%,rgba(184,0,0,0.05) 50%,rgba(184,0,0,0.05) 51%,rgba(184,0,0,0) 100%);*/
	background-color: var(--c_red);
	padding: 4rem 0;
}

#team_section .img_container {
	border-radius: 2rem;
	overflow: hidden;
	box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.2);
}

#team_section .img_container .fake_image {
	padding-top: 106.58%;
	background-size: cover;
	background-position: center;
}

#team_section .box {
	position: relative;
	width: 125%;
	background-color: #ffffff;
	padding: 3rem;
	border-radius: 2rem;
	box-shadow: 0 0 12px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

#team_section .box .s_title {
	text-align: left;
}

#team_section .box .s_title:after {
	left: 0;
	transform: unset;
}

#team_section .box .content {
	font-size: 1.4rem;
	margin-bottom: 2rem;
}

#team_section .box .bot {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#team_section .box .bot .btn-custom {
	font-size: 1.5rem;
	padding: 1rem 2.5rem;
}

#team_section .box .bot .controls {
	display: flex;
	gap: 1rem;
}

#team_section .box .bot .controls button {
	background-color: var(--c_red);
	border: navajowhite;
	width: 40px;
	height: 40px;
	color: #fff;
	border-radius: 100%;
	font-size: 1.3em;
}

#about_section {
	background: linear-gradient(to bottom, rgba(184,0,0,0) 0%,rgba(184,0,0,0.05) 50%,rgba(184,0,0,0.05) 51%,rgba(184,0,0,0) 100%);
	padding: 4rem 0;
}

#about_section .img_container {
	border-radius: 2rem;
	overflow: hidden;
	box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.2);
}

#about_section .img_container .fake_image {
	padding-top: 106.58%;
	background-size: cover;
	background-position: center;
}

#about_section .s_title {
	text-align: left;
	font-size: 3rem;
}

#about_section .s_title:after {
	left: 0;
	transform: unset;
	width: 100px;
}

#about_section .about_content {
	font-size: 1.4rem;
	margin-bottom: 2rem;
}

#about_section .btn-custom {
	font-size: 1.5rem;
	padding: 1rem 2.5rem;
}

#project_section {
	padding: 4rem 0;
	background-image: url(images/proj-bg.jpg);
	background-size: cover;
	background-position: center bottom;
}

#project_section .s_title {
	margin-bottom: 3rem;
}

#project_section  h3 {
	color: var(--c_red);
	font-size: 2rem;
	font-weight: 900;
	margin-bottom: 1.5rem;
}

#project_section .tab-content > .tab-pane {
	display: block;
	overflow: hidden;
	height: 0;
}

#project_section .tab-content > .active {
	height: auto;
}

#project_section .project_categories {
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 1.4rem;
}

#project_section .project_categories > li {
	border: solid 3px #cccccc;
}

#project_section .project_categories > li:not(:last-child) {
	border-bottom: 0;
}

#project_section .project_categories > li > p {
	margin: 0;
	padding: 1rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#project_section .project_categories > li > p .fa-solid {
	color: var(--c_red);
}

#project_section .project_categories > li > .nav-link {
	display: flex;
	padding: 1rem 2rem;
	width: 100%;
	text-align: left;
	align-items: center;
	justify-content: space-between;
}

#project_section .project_categories > li > .nav-link .fa-solid {
	color: transparent;
	transition: all .3s;
}

#project_section .project_categories > li > .nav-link.active .fa-solid {
	color: var(--c_red);
}

#project_section .img_grid {
	display: flex;
	align-items: center;
	justify-content: ;
	gap: 1rem;
	flex-wrap: wrap;
}

#project_section .img_grid .img_container {
	width: 32%;
	position: relative;
	overflow: hidden;
}

#project_section .img_grid .img_container .fake_image {
	padding-top: 100%;
	background-size: cover;
	background-position: center;
	transition: all .3s;
}

#project_section .img_grid .img_container:hover .fake_image {
	transform: scale(1.1);
}

#project_section .img_grid .img_container .link_box {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.49);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all .3s;
}

#project_section .img_grid .img_container:hover .link_box {
	opacity: 1;
}

#testimonials_section {
	background: linear-gradient(to bottom, rgba(184,0,0,0) 0%,rgba(184,0,0,0.05) 50%,rgba(184,0,0,0.05) 51%,rgba(184,0,0,0) 100%);
	padding: 4rem 0;
}

#testimonials_section .s_title {
	text-align: left;
	font-size: 4rem;
	margin-bottom: 4rem;
}

#testimonials_section .s_title:after {
	left: 0;
	transform: unset;
}

#testimonials_section .test_bg {
	box-shadow: 0 0 9px 6px rgba(0, 0, 0, 0.3);
	border-radius: 1rem;
	overflow: hidden;
}

#testimonials_section .test_bg .fake_image {
	padding-top: 84.9%;
	background-size: cover;
	background-position: center;
}

#testimonials_section .box {
	box-shadow: 0 0 9px 6px rgba(0, 0, 0, 0.3);
	border-radius: 1rem;
	margin-left: -15rem;
	background-color: #ffffff;
	padding: 2rem;
}

#testimonials_section .box .top {
	display: flex;
	border-bottom: solid 3px #808080;
	padding-bottom: 2rem;
	margin-bottom: 2rem;
	align-items: center;
}

#testimonials_section .box .top .img_container {
	width: 75px;
	overflow: hidden;
	border-radius: 100%;
	margin-right: 1rem;
}

#testimonials_section .box .top .img_container ~ div {
	flex: 1;
}

#testimonials_section .box .top .img_container .fake_image {
	padding-top: 100%;
	background-size: cover;
	background-position: center;
}

#testimonials_section .box .top .name {
	font-size: 26px;
	text-transform: uppercase;
	color: var(--c_red);
}

#testimonials_section .box .top .position {
	font-size: 23px;
}

#testimonials_section .box .testimonial {
	font-size: 24px;
	margin-bottom: 1rem;
}

#testimonials_section .box .rating {
	padding: 0;
	margin: 0;
	list-style: none;
}

#testimonials_section .box .rating > li {
	display: inline-block;
	vertical-align: middle;
	font-size: 25px;
	color: #dd0;
}

#career_section {
	background-image: url(images/career-bg.fw.png);
	background-position: bottom right;
	background-repeat: no-repeat;
	background-size: contain;
	padding: 4rem 0;
}

#career_section .s_title {
	margin-bottom: 4rem;
}

#career_section .img_container {
	position: relative;
	padding: 0 1.5rem;
}

#career_section .img_container:before {
	content: '';
	position: absolute;
	top: 3rem;
	left: 0;
	width: 41px;
	height: 176px;
	background-color: var(--c_red);
}

#career_section .img_container:after {
	content: '';
	position: absolute;
	bottom: 3rem;
	right: 0;
	width: 41px;
	height: 176px;
	background-color: #000000;
}

#career_section .img_container .fake_image {
	padding-top: 119.9%;
	background-size: cover;
	background-position: center;
}

#career_section .sub_title {
	margin-bottom: 1rem;
	color: var(--c_red);
}

#career_section .career_accordion {}

#career_section .career_accordion .accordion-item {
	border: solid 2px var(--c_red);
	margin-bottom: 1rem;
	background-color: #ffffff;
}

#career_section .career_accordion .accordion-item .accordion-header {}

#career_section .career_accordion .accordion-item .accordion-header .accordion-button {
	padding: 1rem;
	border-bottom: solid 2px var(--c_red);
	font-weight: 600;
	font-size: 1.4rem;
}

#career_section .career_accordion .accordion-item .accordion-header .accordion-button.collapsed {
	border-color: transparent;
}

#career_section .career_accordion .accordion-item .accordion-collapse {}

#career_section .career_accordion .accordion-item .accordion-collapse .accordion-body {
	padding: 1rem;
}

#contact_section {
	padding: 6rem 0;
/*	background-image: url(images/contact-bg.jpg);*/
/*	background-size: cover;*/
/*	background-position: center;*/
}

#contact_section .contact_box {
	width: 870px;
	max-width: 100%;
	margin: auto;
	padding: 2rem 5rem;
	background-color: rgba(61, 57, 57, 0.5);
}

#contact_section .contact_box h2 {
	text-align: center;
	font-size: 3rem;
	font-weight: 900;
	color: #ffffff;
}

#contact_section .contact_box h3 {
	text-align: center;
	color: #ffffff;
	margin-bottom: 2rem;
}

#contact_section .contact_box .btn-custom {
	font-size: 1.5rem;
	padding: 1rem 2.5rem;
	margin: auto;
}

#footer {
	background-color: unset;
}

#footer .footer_main {
	background-color: var(--c_red);
	padding: 4rem 0;
}

#footer .footer_main h3 {
	text-align: center;
	color: #ffffff;
	margin-bottom: 1.5rem;
}

#footer .footer_main .footer_nav {
	padding: 0;
	margin: 0;
	list-style: none;
}

#footer .footer_main .footer_nav > li {
	line-height: 2.5;
}

#footer .footer_main .footer_nav > li > a {
	color: #ffffff;
	display: table;
}

#footer .footer_main .footer_nav > li > a:hover, #footer .footer_main .footer_nav > li > a:focus, #footer .footer_main .footer_nav > li > a.active {
	color: #ff0;
}

#footer .footer_main .acf-map {
	height: 300px;
	width: 400px;
	max-width: 100%;
	margin: auto;
}

#footer .footer_main .socials {
	text-align: center;
	padding: 0;
	margin: 0;
	list-style: none;
}

#footer .footer_main .socials > li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 .2rem;
}

#footer .footer_main .socials > li > a {
	display: flex;
	width: 30px;
	height: 30px;
	color: #ffffff;
	border: solid 3px #ffffff;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
}

#footer .footer_main .socials > li > a:hover, #footer .footer_main .socials > li > a:focus {
	color: var(--c_red);
	background-color: #ffffff;
}

#footer .footer_main .site_info {
	margin: 0;
	list-style: none;
	position: relative;
}

#footer .footer_main .site_info span {
	color: #ffffff;
	position: absolute;
	left: 5px;
	top: 0px;
}

#footer .footer_main .site_info > li {
	display: inline-block;
	color: #ffffff;
}

#footer .footer_main .site_info > li:not(:last-child):after {
	content: '/';
	color: #fff;
	margin: 0 0.5rem;
}

#footer .footer_main .site_info > li > a {
	color: #ffffff;
}

#footer .footer_main .site_info > li > a:hover, #footer .footer_main .site_info > li > a:focus {
	color: #ffff00;
}

#footer .footer_main .footer_logo {
	max-width: 300px;
}

#footer .footer_colophon {
	background-color: #000000;
	padding: 1rem 0;
}

#footer .footer_colophon p {
	margin: 0;
	color: #ffffff;
	font-weight: 600;
}

#innerpage_banner {
	height: 350px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
}

#innerpage_banner:before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: #000;
	opacity: .5;
}

#innerpage_banner .container {
	position: relative;
}

#innerpage_banner h1 {
	color: #fff;
	text-align: center;
	text-transform: uppercase;
}

.project_gallery .box {
	position: relative;
	background-color: #000000;
}

.project_gallery .box a {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	font-size: 4rem;
	color: transparent;
}

.project_gallery .box:hover a {
	color: #ffffff;
}

.project_gallery .box img {
	transition: all .3s;
}

.project_gallery .box:hover img {
	opacity: .7;
}

.projects_list .img_container {
	display: block;
	position: relative;
	overflow: hidden;
}

.projects_list .img_container .fake_image {
	padding-top: 100%;
	background-size: cover;
	background-position: center;
	transition: all .3s;
}

.projects_list .img_container:hover .fake_image, .projects_list .img_container:focus .fake_image {
	transform: scale(1.1);
}

.projects_list .img_container .title {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;
	color: #ffffff;
	font-size: 1.5rem;
	opacity: 0;
	transition: all .3s;
}

.projects_list .img_container:hover .title, .projects_list .img_container:focus .title {
	opacity: 1;
}

.post-list .img_container {
	display: block;
	margin: auto;
	margin-bottom: 1rem;
}

.post-list .img_container .fake_image {
	padding-top: 75%;
	background-size: cover;
	background-position: center;
}

.back-to-top {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	bottom: 5px;
	right: 5px;
	width: 50px;
	height: 50px;
	background-color: #000;
	z-index: 99;
	opacity: 0;
	transition: all .3s;
	font-size: 2rem;
	color: #fff;
}

.back-to-top.show {
	opacity: 1;
}