/*
Theme Name: Renov8 WP
Version: 2.1.0
Requires at least: 6.0
Requires PHP: 8.0
Description: Theme for Renov8
Author: Fio & Nikko
Author URI: https://ostenpowers.com.au/
Theme URI: https://ostenpowers.com.au/web-design-development/
*/

* {
	box-sizing: border-box;
	margin: 0;
	scroll-behavior: smooth;
}

body {
	position: relative;
	overflow-x: hidden;
	background: #242424;
}

p {
	margin: 20px 0;
	line-height: 1.4;
}

a {
	text-decoration: none;
	color: red;
}

a[href^=tel] {
  text-decoration: inherit;
  color: inherit;
}

p,span,a,li,h1,h2,h3,h4,h5,h6,div,input,textarea {
	font-family: 'Montserrat', sans-serif;
}

/* HEADER */

header .header-bar {
	background: #272727;
	width: 100px;
	height: 100vh;
	position: fixed;
	z-index: 1;
}

header .header-logo {
	position: absolute;
	z-index: -1;
	left: 100px;
	background: #272727;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	transition: left 0.5s ease;
}

header .header-logo.active {
	left: 0;
}

header .nav-bar-main {
	width: 100px;
	height: 100px;
}

header #navigation-toggle {
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	height: 100px;
	width: 100%;
	background: #BD1A1B;
	position: absolute;
	z-index: 5;
	top: 0;
	transition: top 0.5s ease;
}

header #navigation-toggle.active {
	top: 100px;
}

header #navigation-toggle:after {
  content: url("assets/img/nav-button.svg");
  position: absolute;
  width: 46px;
  height: 22px;
  opacity: 1;
  transition: height 0.5s ease, opacity 0.5s ease;
}

header #navigation-toggle.active:after {
	content: url("assets/img/close.svg");
	height: 46px;
	opacity: 1;
}

header #navigation-list {
	background: #717171;
	position: relative;
	overflow: hidden;
	top: 100px;
	left: -250px;
	width: 350px;
	transition: left 0.5s ease-in-out;
	z-index: -1;
	padding: 25px;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}

header #navigation-list.active {
	left: 100px;
}

header #navigation-list li {
	width: 100%;
	list-style: none;
	position: relative;
}

header #navigation-list li:before {
	content: "";
	height: 0.8px;
	width: calc(100% + 20px);
	background: #A1A0A0;
	position: absolute;
	left: -10px;
}

header #navigation-list li:last-child:after {
	content: "";
	height: 0.8px;
	width: calc(100% + 20px);
	background: #A1A0A0;
	position: absolute;
	left: -10px;
}

header #navigation-list li .navigation__item {
	padding: 20px 15px;
	font-weight: 700;
	display: flex;
	justify-content: space-between;
	border-left: 0.8px solid #A1A0A0;
	border-right: 0.8px solid #A1A0A0;
}

header #navigation-list li .navigation__item .number {
	color: #909090;
	padding: 0;
	position: relative;
	transition: padding 0.5s ease;
}

header #navigation-list li .navigation__item .number:before {
	content: "";
	height: 0.5px;
	width: 15px;
	background: #A1A0A0;
	position: absolute;
	top: 50%;
	left: -15px;
	transition: width 0.5s ease
}

header #navigation-list li .navigation__item:hover .number,
header #navigation-list li .navigation__item.active .number {
	padding: 0 0 0 15px;
}

header #navigation-list li .navigation__item:hover .number:before,
header #navigation-list li .navigation__item.active .number:before {
	width: 30px;
}

header #navigation-list li .navigation__item .page {
	color: #FFFFFF;
	text-transform: uppercase;
	position: relative;
	display: flex;
	align-items: center;
}

header #navigation-list li .navigation__item .page:before {
	content: "";
	height: 0.5px;
	width: 32px;
	background: #A1A0A0;
	opacity: 1;
	transform: rotate(0deg);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

header #navigation-list li .navigation__item.active .page:before,
header #navigation-list li .navigation__item:hover .page:before {
	opacity: 0;
	transform: rotate(-90deg);
}

header #navigation-list li .navigation__item .page:after {
	content: "";
	height: 3px;
	width: 150px;
	background: #BD1A1B;
	position: absolute;
	right: -200px;
	transition: right 0.4s ease;
	z-index: -1;
}

header #navigation-list li .navigation__item.active .page:after,
header #navigation-list li .navigation__item:hover .page:after {
	right: -45px;
}

header .navigation li.dropdown .navigation-parent {
	cursor: pointer;
	position: relative;
}

header .navigation li.dropdown .navigation-parent:after {
	content: url("assets/img/nav-dropdown-icon.svg");
	width: 16px;
	height: 14px;
	position: absolute;
	right: -7.5px;
}

header .navigation li.dropdown .navigation-parent.active ~ div.dropdown-items {
  	max-height: 500px;
}

header .navigation div.dropdown-items {
	max-height: 0;
	position: relative;
	overflow: hidden;
	background: transparent;
	border-left: 0.8px solid #A1A0A0;
	border-right: 0.8px solid #A1A0A0;
	padding: 0;
	transition: max-height 1s ease;
}

header #navigation-list .dropdown-item {
	display: flex;
	justify-content: flex-end;
	font-weight: 700;
	font-size: 14px;
	color: #FFFFFF;
	text-transform: uppercase;
	padding: 10px 20px;
	border-top: 0.8px solid #A1A0A0;
}

header .nav-bar-socials {
	position: relative;
	display: flex;
	flex-flow: column;
	align-items: center;
	background: #3D3D3D;
	width: 100%;
	padding: 15px 0;
}

header .nav-bar-socials:before {
	content: "";
	height: 100px;
	width: 0.5px;
	background:  #909090;
}

header .nav-bar-socials:after {
	content: "";
	height: 42px;
	width: 0.5px;
	background: #909090;
}

header .nav-bar-socials a {
	display: flex;
	margin: 8px 0;
}

header .nav-bar-copyright {
	background: #272727;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 35%;
}

header .nav-bar-copyright-text {
	color: #FFFFFF;
	letter-spacing: 1.12px;
	/*left: calc(50% - 0.5rem);*/
	line-height: 1;
	padding-top: 0.5rem;
	position: relative;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	white-space: nowrap;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}

/* BANNER */

.banner.banner-home {
	height: 100vh;
	background: url("assets/img/banner-home.png");
	background-size: cover;
	padding-top: 100px;
	padding-bottom: 100px;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
}

.banner.banner-home .banner-home-heading {
	color: #FFFFFF;
	font-size: 65px;
	font-weight: 400;
	text-align: center;
}

.banner.banner-home .banner-home-heading .text_bold {
	font-weight: 700;
}

.banner.banner-inner {
	background: url("assets/img/banner-inner.png");
	background-size: cover;
	padding-top: 150px;
	padding-bottom: 100px;
}

.banner.banner-inner .banner-inner-title {
	text-align: center;
	text-transform: uppercase;
	font-size: 50px;
	font-weight: 700;
	color: #FFFFFF;
	padding: 0 50px;
}

.banner.banner-inner .banner-inner-title.banner-inner-title-blog {
	text-transform: capitalize;
}

.banner.banner-inner .banner-inner-subtitle {
	text-align: center;
	font-size: 20px;
	color: #FFFFFF;
}

/* SECTION */

.section {
	padding: 50px 7%;
	padding-left: calc(7% + 100px);
}

.section-low {
	padding: 0px 7%;
	padding-left: calc(7% + 100px);
}

.section-nopadding {
	padding: 50px 0 50px 100px;
}

.section-wide {
	padding: 50px 2.5%;
	padding-left: calc(2.5% + 100px);
}

.section-title {
	padding-bottom: 30px;
}

.section-title.section-title-center {
	display: flex;
	justify-content: center;
	text-align: center;
}

.section-title .section-title-small {
	position: relative;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	margin: 10px 0;
}

.section-title .section-title-small:before {
	content: "";
	height: 10px;
	width: 10px;
	background: #BD1A1B;
	margin-right: 10px;
}

.section-title .section-title-text {
	font-size: 30px;
	font-weight: 700;
	text-transform: uppercase;
	color: #FFFFFF;
	max-width: 750px;
}

.section-title .section-title-text-med {
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	color: #FFFFFF;
	max-width: 750px;
}

/* HOME STEPS */

.steps .steps-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	border: 0.5px solid #909090;
}

.steps .steps-item {
	width: 33.333333333%;
	border-right: 0.5px solid #909090;
	padding: 30px;
	padding-bottom: 10px;
	text-align: center;
	color: #FFFFFF;
}

.steps .steps-item:last-child {
	border-right: none;
}

.steps .steps-item .steps-item-title {
	font-size: 20px;
	font-weight: 700;
}

/* REASONS */

.reasons {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.reasons .reasons-left,
.reasons .reasons-right {
	width: 48%;
}

.reasons .reasons-list .reasons-list-item {
	display: flex;
	margin: 15px 0;
}

.reasons .reasons-list-item .reasons-list-item-img-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90px;
	height: 90px;
	padding: 25px;
	background: #3D3D3D;
}

.reasons .reasons-list-item:hover .reasons-list-item-img-container {
	background: #BD1A1B;
}

.reasons .reasons-list-item .reasons-list-item-text-container {
	padding-left: 10px;
}

.reasons .reasons-list-item .reasons-title {
	color: #FFFFFF;
	font-size: 20px;
	font-weight: 600;
}

.reasons .reasons-list-item .reasons-text {
	color: #FFFFFF;
	margin: 10px 0;
}

.reasons .reasons-right {
	display: flex;
}

.reasons .reasons-right .reasons-right-img-container {
	width: calc(100% - 65px);
	height: 100%;
	display: flex;
}

.reasons .reasons-right .reasons-right-img-container img {
	width: 100%;
	object-fit: cover;
}

.reasons .reasons-right .reasons-right-button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 65px;
	height: fit-content;
	padding-top: 0.5rem;
	position: relative;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	white-space: nowrap;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	border: 0.3px solid #909090;
	background: transparent;
	transition: background 0.5s ease;
}

.reasons .reasons-right .reasons-right-button:hover {
	background: #BD1A1B;
}

.reasons .reasons-right .reasons-right-button span {
	display: flex;
	padding: 15px 0;
	color: #FFFFFF;
	letter-spacing: 1.12px;
	line-height: 1;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
}

.reasons .reasons-right .reasons-right-button img {
	transform: rotate(180deg);
}

/* SERVICES */

.best-services {
	scroll-margin-top: 80px;
}

.best-services .services-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.best-services .services-list .services-list-item {
	display: flex;
	align-items: center;
	padding: 20px;
	margin: 10px 0;
	position: relative;
	overflow: hidden;
	border: 0.5px solid #909090;
	width: 32%;
}

.best-services .services-list .services-list-item:after {
	content: "";
	height: 0;
	width: 0;
	border-right: 20px solid #3D3D3D;
	border-bottom: 20px solid #3D3D3D;
	border-left: 20px solid transparent;
	border-top: 20px solid transparent;
	position: absolute;
	z-index: -1;
	right: 0;
	bottom: 0;
	transition: border-right 0.5s ease, border-bottom 0.5s ease;
}

.best-services .services-list .services-list-item:hover:after {
	border-right: 20px solid #BD1A1B;
	border-bottom: 20px solid #BD1A1B;
}

.best-services .services-list .services-list-title {
	color: #FFFFFF;
	font-size: 24px;
	font-weight: 600;
	text-transform: uppercase;
	padding-left: 20px;
}

.best-services .services-list-item .services-list-arrowhead {
	position: absolute;
	right: 0;
	bottom: 5px;
}

/* HOME SLIDER */

.slick-initialized .slick-slide.slide {
	display: flex;
	position: relative;
}

.slide .slide-img-container {
	width: 55%;
	display: flex;
}

.slide .slide-img-container img {
	width: 100%;
	object-fit: contain;
}

.slide .slide-text-container {
	background: #3D3D3D;
	height: fit-content;
	position: absolute;
	left: 45%;
	padding: 30px;
	padding-top: 110px;
	width: 40%;
}

.slide .slide-text-container .section-title {
	padding-bottom: 0;
}

.slider .slick-prev,
.slider .slick-next {
	top: 100px;
	z-index: 2;
	width: 43px;
	height: 116px;
	border: 0.3px solid #909090;
}

.slider .slick-prev {
	left: 85%;
}

.slider .slick-next {
	left: calc(85% + 43px);
}

/* HOME PHOTO GRID */

.home-photo-grid-flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.home-photo-grid-flex .home-photo-grid-item {
	width: 32%;
	object-fit: contain;
}

.slider .slick-next:before,
.slider .slick-prev:before {
	opacity: 1;
	font-size: 24px;
}

.slider .slick-next:before {
	content: url("assets/img/slider-arrow-next.svg");
	width: 24px;
	height: 24px;
}

.slider .slick-prev:before {
	content: url("assets/img/slider-arrow-prev.svg");
	width: 24px;
	height: 24px;
}

/* PROJECTS */

.projects-category {
	background: #505050;
	padding-left: 100px;
}

.projects-category .filter-mobile {
	display: none;
}

.projects-category .filters {
	display: flex;
	justify-content: center;
}

.projects-category .filters .filter-button {
	cursor: pointer;
	width: 10%;
	padding: 55px 0;
	border-left: 0.5px solid #909090;
}

.projects-category .filters .filter-button:last-child {
	border-right: 0.5px solid #909090;
}

.projects-category .filters .filter-button span {
	color: #FFFFFF;
	font-weight: 500;
	position: relative;
	display: flex;
	justify-content: center;
	text-align: center;
	padding: 5px 0;
}

.projects-category .filters .filter-button.selected span:after {
	content: "";
	position: absolute;
	height: 2px;
	width: 50px;
	background: #BD1A1B;
	bottom: 0;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}

.projects-gallery {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.projects-gallery .project-item {
	width: 32%;
	height: 420px;
	background: #444444;
	position: relative;
	overflow: hidden;
	margin: 15px 0;
	display: flex;
	flex-flow: column;
	justify-content: flex-end;
}

.projects-gallery .project-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
}

.projects-gallery .project-item .project-item-info {
	position: relative;
	padding: 20px;
}

.projects-gallery .project-item .project-item-info .project-category {
	font-weight: 500;
	font-size: 15px;
	color: #FFFFFF;
}

.projects-gallery .project-item .project-item-info .project-name {
	font-weight: 700;
	font-size: 20px;
	color: #FFFFFF;
	margin: 5px 0;
}

.projects-gallery .project-item-filler {
	width: 32%;
}


/* INNER PAGE PROCESS */

.process-flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.process-flex .process-item {
	width: 23%;
	margin: 15px 0;
	display: flex;
	flex-flow: column;
	align-items: center;
	text-align: center;
	color: #FFFFFF;
	border: 0.5px solid #434343;
}

.process-flex .process-item .process-item-icon-container {
	background: #3D3D3D;
	width: 95px;
	height: 82px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.process-flex .process-item .process-item-text-container {
	padding: 0 20px;
}

.process-flex .process-item .process-item-title {
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
}

/* BENEFITS */

.benefits-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}

.benefits-grid-column {
	background: #2D2D2D;
	display: grid;
	grid-template-rows: 1fr 1fr;
}

.benefits-grid-column:nth-child(even) .benefits-grid-img-container {
	grid-row: 2 / span 1;
}

.benefits-grid-img-container {
	display: grid;
	align-self: stretch;
}

.benefits-grid-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.benefits-grid-bottom {
  text-align: center;
  display: flex;
  flex-flow: column;
  align-items: center;
  color: #FFFFFF;
  padding: 25px;
}

.benefits-grid-icon-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 98px;
	width: 98px;
	border: 0.5px solid #FFFFFF;
	border-radius: 50%;
	margin: 15px;
}

.grid-icon {
	width: 45px;
	height: 45px;
}

.benefits-grid-title {
	font-size: 20px;
	font-weight: 700;
}

/* MAKE SOMETHING GREAT */

.make-something-great {
	display: flex;
	flex-flow: column;
	align-items: center;
}

.make-something-great .make-something-great-text {
	font-size: 50px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	max-width: 750px;
	color: #FFFFFF;
}

.make-something-great .contact-button {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	width: 135px;
	padding: 5px 10px;
	background: #3D3D3D;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 500;
	transition: background 0.5s ease
}

.make-something-great .contact-button:hover {
	background: #BD1A1B;
}

/* CONTENT FLEX */

.content-flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}

.content-flex .content-flex-img-container,
.content-flex .content-flex-text-container {
	width: 48%;
}

.content-flex .content-flex-img-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 0.5px solid #434343;
	padding: 20px;
}

.content-flex .content-flex-img-container img {
	width: 48%;
	object-fit: contain;
}

.content-flex .content-flex-text-container {
	padding: 20px;
	text-align: right;
	color: #FFFFFF;
}

.content-flex .content-flex-title {
	font-size: 20px;
	font-weight: 700;
}

.content-flex .corner1 {
	position: absolute;
	top: 0;
	left: 0;
}

.content-flex .corner2 {
	position: absolute;
	bottom: 0;
	left: 0;
	transform: rotate(270deg);
}

.content-flex .corner3 {
	position: absolute;
	top: 0;
	right: 0;
	transform: rotate(90deg);
}

.content-flex .corner4 {
	position: absolute;
	bottom: 0;
	right: 0;
	transform: rotate(180deg);
}

/* SERVICE PHOTO GRID */

.service-photo-grid {
	border: 1px solid #434343;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.service-photo-grid .service-photo-grid-column {
	width: 25%;
	border-right: 1px solid #434343;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
}

.service-photo-grid .service-photo-grid-column:nth-child(even) {
	flex-flow: column-reverse;
}

.service-photo-grid .service-photo-grid-column:last-child {
	border-right: none;
}

.service-photo-grid .service-photo-grid-column:nth-child(odd) .service-photo-grid-number {
	border-bottom: 1px solid #434343;
}

.service-photo-grid .service-photo-grid-column:nth-child(even) .service-photo-grid-number {
	border-top: 1px solid #434343;
}

.service-photo-grid .service-photo-grid-column img {
	width: 100%;
	object-fit: cover;
}

.service-photo-grid .service-photo-grid-number,
.service-photo-grid .service-photo-grid-main {
	padding: 20px;
}

.service-photo-grid .service-photo-grid-number {
	text-align: center;
	color: #FFFFFF;
}

.service-photo-grid .service-photo-grid-number .number {
	font-size: 12vw;
	font-weight: 700;
	opacity: 0.15;
	transition: opacity 0.5s ease;
}

.service-photo-grid .service-photo-grid-column:hover .service-photo-grid-number .number {
	opacity: 1;
}

.service-photo-grid-text {
	padding-bottom: 15px;
}

.service-photo-grid-text span {
	display: flex;
	position: relative;
	color: #FFFFFF;
	line-height: 120%;
}

.service-photo-grid-text span.style {
	font-size: 14px;
	font-weight: 400;
	display: flex;
	align-items: center;
}

.service-photo-grid-text span.style:before {
	content: "";
	height: 1px;
	width: 35px;
	background: #BD1A1B;
	margin-right: 5px;
}

.service-photo-grid-text span.project {
	font-size: 20px;
	font-weight: 700;
}

/* RECENT BLOGS */

.recent-blogs-row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.recent-blogs-row .recent-blog-card {
	width: 32%;
	background: #3D3D3D;
	margin: 15px 0;
}

.recent-blogs-row .recent-blog-card .recent-blog-card-top {
	height: 250px;
	position: relative;
}

.recent-blogs-row .recent-blog-card .recent-blog-card-img-container {
	display: flex;
	height: 250px;
}

.recent-blogs-row .recent-blog-card .recent-blog-card-img-container img {
	width: 100%;
	object-fit: cover;	
    height: 250px;
	position: relative;
}

.recent-blogs-row .recent-blog-card .recent-blog-card-date-container {
	display: flex;
	flex-flow: column;
	align-items: center;
	position: absolute;
	background: #BD1A1B;
	bottom: 0;
	right: 0;
	width: 65px;
	padding: 10px 0;
}

.recent-blogs-row .recent-blog-card .recent-blog-card-date-container span {
	display: flex;
	text-align: center;
	color: #FFFFFF;
}

.recent-blogs-row .recent-blog-card .recent-blog-card-date-container span.day {
	font-size: 24px;
	font-weight: 600;
}

.recent-blogs-row .recent-blog-card .recent-blog-card-date-container span.month {
	font-size: 14px;
	font-weight: 500;
}

.recent-blogs-row .recent-blog-card-bottom {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	padding: 25px;
}

.recent-blogs-row .recent-blog-card-bottom .recent-blog-card-info {
	padding-bottom: 25px;
}

.recent-blogs-row .recent-blog-card-bottom .recent-blog-title {
	font-size: 20px;
	font-weight: 600;
	color: #FFFFFF;
}

.recent-blogs-row .recent-blog-card-bottom .recent-blog-read-more {
	display: flex;
	align-items: center;
	padding: 5px 0;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 500;
	width: fit-content;
}

.recent-blogs-row .recent-blog-card-bottom .recent-blog-read-more img {
	margin-left: 5px;
}

/* BLOG PAGE */

.blogs {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.blogs .blog-post-card {
	width: 48%;
	margin: 15px 0;
	background: #505050;
}

.blogs .blog-post-card .blog-post-card-img-container {
	display: flex;
	height: 350px;
}

.blogs .blog-post-card .blog-post-card-img-container img {
	width: 100%;
	object-fit: cover;
}

.blogs .blog-post-card .blog-post-card-text-container {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	padding: 5px 25px 25px;
}

.blogs .blog-post-card .blog-info {
	border-bottom: 1px solid #3E3E3E;
	padding: 15px 0;
	margin-bottom: 15px;
}

.blogs .blog-post-card .blog-post-card-title {
	font-size: 20px;
	font-weight: 700;
	color: #FFFFFF;
}

.blogs .blog-post-card .blog-post-card-snippet {
	color: #FFFFFF;
}

.blogs .blog-post-card .blog-post-card-button {
	display: flex;
	color: #FFFFFF;
	text-transform: uppercase;
	border: 1px solid #FFFFFF;
	width: fit-content;
	padding: 10px 20px;
}

.section-low {
    display: flex;
    justify-content: flex-start;
}
.pagination-inner {
    border-top: 1px solid #939393;
    display: flex;
    list-style: none; /* Remove default list styles */
    margin: 0;
	align-items: center;
	padding: 50px 0;
	width: 100%;
}

.pagination li {
    margin-right: 15px;
    display: inline-flex; /* Adjust display for li */
}

.pagination a,
.pagination span {
    color: #939393;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    height: 36px;
    padding: 10px;
    padding-top: 0;
    text-decoration: none; /* Remove underline from pagination links */
    border-bottom: 1px solid #939393;
}

.pagination a:hover,
.pagination a.active,
.pagination span:hover,
.pagination span.current {
    color: #FFFFFF;
    border-bottom: 1px solid #BD1A1B;
}

.pagination .pagination-arrow {
    margin-right: 0; /* Adjust margin for the arrow image */
}

/* BLOG DETAIL */

.blog-flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.blog-flex .blog-main {
	width: 64%;
}

.blog-flex .blog-main .blog-main-img-container {
	display: flex;
}

.blog-flex .blog-main .blog-main-img-container img {
	width: 100%;
	object-fit: contain;
}

.blog-info {
	padding: 20px 0;
	display: flex;
	align-items: center;
}

.blog-info .blog-info-item {
	display: flex;
	align-items: center;
}

.blog-info .blog-info-item:first-child:after {
	content: "";
	display: flex;
	width: 60px;
	height: 1px;
	margin-right: 15px;
	background-color: #FFFFFF;
}

.blog-info .blog-info-item .blog-info-icon-container {
	display: flex;
	padding: 7px;
	background: #BD1A1B;
}

.blog-info .blog-info-item .blog-info-text {
	font-size: 14px;
	font-weight: 500;
	color: #FFFFFF;
	padding: 0 10px;
}

.blog-flex .blog-main .blog-main-content {
	padding: 15px 0;
	border-top: 1px solid #5C5C5C;
	border-bottom: 1px solid #5C5C5C;
}

.blog-flex .blog-main .blog-main-content  {
	color: #ebebeb;
	font-weight: 500;
}
.has-white-background-color {
	color: black;
}

.blog-flex .blog-main .blog-main-content h2,
.blog-flex .blog-main .blog-main-content h3,
.blog-flex .blog-main .blog-main-content h4,
.blog-flex .blog-main .blog-main-content h5,
.blog-flex .blog-main .blog-main-content h6 {
	color: #FFFFFF;
	font-weight: 600;
	font-size: 20px;
}

.blog-flex .blog-main .blog-main-content .wp-block-quote {
	display: flex;
	align-items: center;
	padding: 0 20px;
	margin: 20px 0;
	border-left: 4px solid #BD1A1B;
}

.blog-flex .blog-main .blog-main-content .wp-block-quote p {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #D6D6D6;
	padding-left: 20px;
}

.blog-flex .blog-sidebar {
	width: 32%;
}

.search-bar {
	border: 1px solid #5C5C5C;
	border-left: 3px solid #BD1A1B;
	display: flex;
	justify-content: space-between;
}

.search-bar input {
	background: transparent;
	border: none;
	-webkit-appearance: none;
	width: calc(100% - 40px);
	color: #FFFFFF;
	font-weight: 500;
	padding: 20px;
	outline: none;
}

.search-bar input::-webkit-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #FFFFFF;
}

.search-bar input:-ms-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #FFFFFF;
}
.search-bar input:-moz-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #FFFFFF;
}

.search-bar input::-moz-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #FFFFFF;
}
.search-bar button {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 10px;
}

.blog-flex .blog-sidebar .blog-sidebar-item {
	margin: 35px 0;
}

.blog-flex .blog-sidebar .blog-sidebar-item .blog-sidebar-title {
	color: #FFFFFF;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 700;
	padding-bottom: 5px;
	position: relative;
}

.blog-flex .blog-sidebar .blog-sidebar-item .blog-sidebar-title:after {
	content: "";
	height: 2px;
	width: 80px;
	background-color: #BD1A1B;
	position: absolute;
	bottom: 0;
	left: 0;
}

.blog-flex .blog-sidebar .blog-sidebar-category {
	display: flex;
	align-items: center;
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 500;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #5C5C5C;
}

.blog-flex .blog-sidebar .blog-sidebar-category:last-child {
	border-bottom: none;
}

.blog-flex .blog-sidebar .blog-sidebar-category:before {
	content: "";
	display: flex;
	height: 10px;
	width: 10px;
	background-color: #BD1A1B;
	margin-right: 10px;
}

.blog-flex .blog-sidebar .blog-sidebar-recent-post {
	display: flex;
	margin: 15px 0;
}

.blog-flex .blog-sidebar .blog-sidebar-recent-post-img-container {
	display: flex;
	width: 30%;
	max-width: 95px;
	height: 95px;
}

.blog-flex .blog-sidebar .blog-sidebar-recent-post-img-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-flex .blog-sidebar .blog-sidebar-recent-post-text-container {
	max-width: 70%;
	padding-left: 10px;
}

.blog-flex .blog-sidebar .blog-sidebar-recent-post-text-container p {
	margin: 5px 0;
	color: #FFFFFF;
}

.blog-flex .blog-sidebar .blog-sidebar-recent-post-text-container p.blog-sidebar-recent-post-title {
	font-size: 14px;
	font-weight: 500;
}

.blog-flex .blog-sidebar .blog-sidebar-recent-post-text-container p.blog-sidebar-recent-post-date {
	font-size: 10px;
	font-weight: 500;
	position: relative;
	display: flex;
	align-items: center;
	margin-top: 15px;
}

.blog-flex .blog-sidebar .blog-sidebar-recent-post-text-container p.blog-sidebar-recent-post-date:before {
	content: "";
	display: flex;
	height: 12px;
	width: 12px;
	background-color: #BD1A1B;
	margin-right: 10px;
}

.blog-flex .blog-sidebar .blog-sidebar-related-tags {
	display: flex;
	flex-wrap: wrap;
}

.blog-flex .blog-sidebar .blog-sidebar-related-tag {
	display: flex;
	color: #9C9C9C;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid #5C5C5C;
	padding: 5px 10px;
	width: fit-content;
	margin: 5px 10px;
	margin-left: 0;
}

/* CONTACT PAGE  */

.section.contact-info {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-bottom: 0;
}

.contact-info .contact-info-item {
	width: 32%;
	padding: 25px;
	margin: 10px 0;
	border: 1px solid #5C5C5C;
	display: flex;
	align-items: center;
}

.contact-info .contact-info-item .contact-info-text-container {
	padding-left: 25px;
}

.contact-info .contact-info-item .contact-info-title {
	font-weight: 500;
	font-size: 20px;
	color: #FFFFFF;
	margin: 0;
	padding-bottom: 5px;
}

.contact-info .contact-info-item .contact-info-text {
	display: flex;
	font-size: 14px;
	color: #FFFFFF;
}

.contact-main {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap-reverse;
}

.contact-main .contact-form-container {
	width: 58%;
	border: 0.5px solid #909090;
	padding: 50px;
}

.contact-main .map-container {
	width: 40%;
}

.contact-main .map-container iframe {
	width: 100%;
	height: 100%;
}

/* HOME CONTACT FORM */

.home-contact-form {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.home-contact-form .home-contact-form-left {
	width: 42%;
	position: relative;
}

/*.home-contact-form .home-contact-form-left .home-contact-form-left-content {
	position: absolute;
}*/

.home-contact-form .home-contact-form-left-heading {
	background: #3D3D3D;
	padding: 30px;
	padding-top: 50px;
	width: calc(100% + 28px);
}

.home-contact-form .home-contact-form-left .home-contact-form-text-container {
	padding: 0 25px;
}

.home-contact-form .home-contact-form-left .home-contact-form-text {
	color: #EBEBEB;
}

.home-contact-form .home-contact-form-left-heading .section-title {
	padding-bottom: 0;
}

.home-contact-form-main {
	width: 58%;
	border: 0.5px solid #909090;
	padding: 50px;
}

/* FORMS */

.contact-form-title {
	font-size: 20px;
	font-weight: 600;
	color: #FFFFFF;
}

.contact-form {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.contact-form .form__field {
	width: 100%;
}

.contact-form .form__field_half {
	width: 48%;
}

.contact-form label {
	display: none;
}

.contact-form .form__field,
.contact-form .form__field_half {
	display: flex;
	margin: 5px 0;
	border-bottom: 1px solid #686868;
	position: relative;
	transition: border-bottom 0.5s ease;
}

.contact-form .form__field-icon-container {
	display: flex;
	padding-top: 20px;
}

.contact-form .form__field:after,
.contact-form .form__field_half:after {
	content: "";
	position: absolute;
	height: 4px;
	width: 20px;
	bottom: 0;
	left: 0;
	right: unset;
	background: #686868;
	transition: left 0.5s ease, background 0.5s ease;
}

.contact-form .form__field:focus-within,
.contact-form .form__field_half:focus-within {
	border-bottom: 1px solid #FFFFFF;
}

.contact-form .form__field:focus-within:after,
.contact-form .form__field_half:focus-within:after {
	background: #FFFFFF;
	left: calc(100% - 20px);
}

.contact-form input,
.contact-form textarea {
	width: calc(100% - 20px);
	background: transparent;
	border: none;
	padding: 20px 15px;
	color: #FFFFFF;
	font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border: none;
}

.contact-form input::-webkit-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  color: #686868;
}

.contact-form input:-ms-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  color: #686868;
}

.contact-form input:-moz-placeholder {
  font-family: 'Montserrat', sans-serif;
  color: #686868;
}

.contact-form input::-moz-placeholder {
  font-family: 'Montserrat', sans-serif;
  color: #686868;
}

.contact-form textarea::-webkit-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  color: #686868;
}

.contact-form textarea:-ms-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  color: #686868;
}

.contact-form textarea:-moz-placeholder {
  font-family: 'Montserrat', sans-serif;
  color: #686868;
}

.contact-form textarea::-moz-placeholder {
  font-family: 'Montserrat', sans-serif;
  color: #686868;
}


.contact-form .form__field_submit input {
	cursor: pointer;
	width: 250px;
	background: #3D3D3D;
	color: #FFFFFF;
	font-size: 24px;
	font-weight: 600;
	text-transform: uppercase;
	-webkit-appearance: none;
	padding: 10px;
	margin-top: 20px;
}

/* FOOTER */

footer {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	background: #1F1F1F;
	margin-top: 50px;
}

footer .footer-column {
	width: 25%;
	padding-left: 5px;
	padding-right: 5px;
}

footer .footer-column:last-child {
	width: 15%;
	padding-right: 0;
}

footer .footer-column:first-child {
	width: 35%;
	padding-left: 0;
}

footer .footer-logo {
	height: 80px;
	object-fit: contain;
}

footer .footer-text {
	color: #FFFFFF;
}

footer .footer-column-title {
	font-weight: 700;
	color: #FFFFFF;
	text-transform: uppercase;
}

footer .footer-links .footer-link {
	display: flex;
	align-items: center;
	margin: 10px 0;
}

footer .footer-links .footer-link .footer-link-icon {
	margin-right: 5px;
}

footer .footer-links .footer-link .footer-link-text {
	color: #FFFFFF;
}

@media screen and (min-width: 1750px) {
	/* SECTION */

	.section {
		padding: 50px 15%;
		padding-left: calc(15% + 100px);
	}

	.section-nopadding {
		padding: 50px 8% 50px 100px;
		padding-left: calc(8% + 100px);
	}

	.section-wide {
		padding: 50px 10.5%;
    padding-left: calc(10.5% + 100px);
	}

	.section-low {
		padding: 0 15%;
		padding-left: calc(15% + 100px);
	}
}

@media screen and (max-width: 1050px) {

	/* HEADER */

	header .header-bar {
		width: 75px;
	}

	header .nav-bar-main {
		width: 75px;
		height: 75px;
	}

	header #navigation-toggle {
		height: 75px;
	}

	header #navigation-toggle.active {
		top: 75px;
	}

	header #navigation-toggle:after {
		transform: scale(0.7);
	}

	header #navigation-list {
		top: 75px;
	}

	header #navigation-list.active {
		left: 75px;
	}

	header .header-logo {
		left: 75px;
		height: 75px;
	}

	header .header-logo img {
		height: 55px;
		object-fit: contain;
	}

	header #navigation-list {
		left: -275px;
		transform: scale(0.8);
		transform-origin: top left;
	}

	/* SECTION */

	.section {
		padding: 40px 5%;
		padding-left: calc(5% + 75px)
	}

	.section-wide {
		padding: 40px 2.5%;
		padding-left: calc(2.5% + 75px);
	}

	.section-nopadding {
		padding: 40px 0 40px 75px;
	}

	.section-low {
		padding: 0 5%;
		padding-left: calc(5% + 75px)
	}

	.section-title .section-title-text {
		font-size: 24px;
	}

	.section-title .section-title-text-med {
		font-size: 18px;
	}

	/* PROJECTS */

	.projects-category {
		padding-left: 75px;
	}

	/* BANNERS */

	.banner.banner-home .banner-home-heading {
		font-size: 45px;
	}

	.banner.banner-inner .banner-inner-title {
		font-size: 40px;
	}

	.banner.banner-inner .banner-inner-subtitle {
		font-size: 16px;
	}

	/* HOME RECENT BLOGS */
	.recent-blogs-row .recent-blog-card-bottom .recent-blog-title {
		font-size: 16px;
	}

	.recent-blogs-row .recent-blog-card-bottom {
		padding: 20px 15px;
	}

	.recent-blogs-row .recent-blog-card .recent-blog-card-top,
	.recent-blogs-row .recent-blog-card .recent-blog-card-img-container {
		height: 200px;
	}

	/* MAKE SOMETHING GREAT */

	.make-something-great .make-something-great-text {
		font-size: 45px;
	}

	/* HOME PAGE */

	.slide .slide-text-container {
		padding: 20px;
		padding-top: 80px;
	}

	.steps .steps-item {
		padding: 20px;
	}

	.steps .steps-item .steps-item-title {
		font-size: 18px;
	}

	.steps .steps-item .steps-item-text {
		font-size: 14px;
	}

	.best-services .services-list .services-list-item {
		padding: 15px;
	}

	.best-services .services-list .services-list-title {
		font-size: 18px;
	}

	.best-services .services-list-icon {
		height: 40px;
		width: 40px;
	}

	.reasons .reasons-list-item .reasons-text {
		font-size: 14px;
	}

	.reasons .reasons-list-item .reasons-title {
		font-size: 16px;
	}

	.reasons .reasons-right .reasons-right-button span {
		font-size: 18px;
	}

	.reasons .reasons-right .reasons-right-button {
		width: 55px;
	}

	.reasons .reasons-right .reasons-right-img-container {
		width: calc(100% - 55px);
	}

	/* SERVICE PAGE*/

	.content-flex .content-flex-text-container .content-flex-text,
	.benefits-grid .benefits-grid-text {
		font-size: 14px;
	}

	.service-photo-grid-text span.style {
		font-size: 10px;
	}

	.service-photo-grid-text span.project {
		font-size: 14px;
	}

	.benefits-grid-bottom {
		padding: 20px;
	}

	.benefits-grid-title {
		font-size: 16px;
	}

	.service-photo-grid .service-photo-grid-number,
	.service-photo-grid .service-photo-grid-main {
		padding: 15px;
	}

	.process-flex .process-item .process-item-text-container {
		padding: 0 10px;
	}

	.process-flex .process-item .process-item-title {
		font-size: 16px;
	}

	.process-flex .process-item .process-item-text {
		font-size: 14px;
	}

	/* CONTACT PAGE */

	.contact-info .contact-info-item {
		padding: 15px;
	}

	.contact-info .contact-info-item .contact-info-text-container {
		padding-left: 15px;
	}

	.contact-info .contact-info-item .contact-info-title {
		font-size: 18px;
	}

	.contact-info .contact-info-item .contact-info-text {
		font-size: 12px;
	}

	.contact-main .contact-form-container {
		padding: 30px;
	}

	/* FORMS */
	.home-contact-form-main {
		padding: 30px;
	}

	/* BLOG */

	.blogs .blog-post-card .blog-post-card-title {
		font-size: 18px;
	}

	.blogs .blog-post-card .blog-post-card-snippet {
		font-size: 14px;
	}

	.blogs .blog-post-card .blog-post-card-img-container {
		height: 250px;
	}

	.blogs .blog-post-card .blog-post-card-text-container {
		padding: 5px 15px 15px;
	}

	.blog-info .blog-info-item .blog-info-text {
		font-size: 12px;
	}

	.blogs .blog-post-card .blog-post-card-button {
		font-size: 14px;
	}

	.blog-info .blog-info-item:first-child:after {
		width: 50px;
	}

	.pagination-inner {
		padding: 30px 0;
	}

	/* BLOG POST */
	.blog-flex .blog-main .blog-main-content p,
	.blog-flex .blog-main .blog-main-content a,
	.blog-flex .blog-main .blog-main-content .wp-block-quote p {
		font-size: 14px;
	}

	.blog-flex .blog-main .blog-main-content h2,
	.blog-flex .blog-main .blog-main-content h3,
	.blog-flex .blog-main .blog-main-content h4,
	.blog-flex .blog-main .blog-main-content h5,
	.blog-flex .blog-main .blog-main-content h6 {
		font-size: 18px;
	}

	.blog-flex .blog-sidebar .blog-sidebar-item .blog-sidebar-title {
		font-size: 18px;
	}

	.blog-flex .blog-sidebar .blog-sidebar-category {
		font-size: 14px;
	}

	/* FOOTER */

	footer .footer-text,
	footer .footer-links .footer-link .footer-link-text {
		font-size: 14px;
	}

}

@media screen and (max-width: 900px) {

	/* MAKE SOMETHING GREAT */

	.make-something-great .make-something-great-text {
		font-size: 35px;
	}

	/* HOME PAGE */

	.home-contact-form .home-contact-form-left .home-contact-form-text {
		font-size: 14px;
	}

	.best-services .services-list-icon {
		width: 30px;
		height: 30px;
	}

	.best-services .services-list .services-list-title {
		font-size: 14px;
	}

	.reasons .reasons-list-item .reasons-list-item-img-container {
		height: 60px;
		width: 60px;
		padding: 10px;
	}

	/* SERVICE PAGE */
	.service-photo-grid .service-photo-grid-number .number {
		font-size: 10vw;
	}

	.benefits-grid-icon-container {
		height: 75px;
		width: 75px;
	}

	/* PROJECTS */

	.projects-category .filters .filter-button span {
		font-size: 14px;
	}

	.projects-gallery .project-item {
		height: 320px;
	}

	.projects-gallery .project-item .project-item-info .project-name {
		font-size: 18px;
		line-height: 1.2;
	}

	.projects-gallery .project-item .project-item-info .project-category {
		font-size: 14px;
	}

	.projects-gallery .project-item .project-item-info {
		padding: 10px;
	}

	/* FORMS */

	.contact-form input, .contact-form textarea {
		font-size: 14px;
	}

	/* BLOG POST */

	.blog-flex .blog-main {
		width: 58%;
	}

	.blog-flex .blog-sidebar {
		width: 38%;
	}

	/* CONTACT PAGE */

	.contact-info .contact-info-item .contact-info-title {
		font-size: 16px;
	}

	/* FOOTER */

	footer .footer-logo {
		height: 65px;
	}


}

@media screen and (max-width: 760px) {
	.recent-blogs-row .recent-blog-card {
		width: 48%;
	}

	.section-title {
		padding-bottom: 20px;
	}

	.section-title .section-title-text {
		font-size: 20px;
	}

	/* HOME PAGE */

	.reasons .reasons-left, .reasons .reasons-right {
		width: 100%;
	}

	.home-contact-form .home-contact-form-left,
	.home-contact-form-main {
		width: 100%;
	}

	.home-contact-form-main {
		margin-top: 15px;
	}

	.home-contact-form .home-contact-form-left-heading {
		width: 100%;
	}

	.best-services .services-list .services-list-item {
		width: 48%;
	}

	.slick-initialized .slick-slide.slide {
		display: block;
	}

	.slide .slide-text-container {
		position: relative;
		left: unset;
		width: calc(100% - 60px);
	}

	.slider .slick-prev, .slider .slick-next {
		top: unset;
		bottom: 0;
		width: 30px;
		height: 80px;
	}

	.slider .slick-prev {
		left: unset;
		right: 30px;
	}

	.slider .slick-next {
		left: unset;
		right: 0;
	}

	.slide .slide-img-container {
		width: 100%;
	}

	/* SERVICE PAGE */

	.process-flex .process-item {
		width: 48%;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
	}

	.benefits-grid-column {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr;
	}

	.benefits-grid-column:nth-child(even) .benefits-grid-img-container {
		grid-column: 2 / span 1;
		grid-row: 1 / span 1;
	}

	.service-photo-grid .service-photo-grid-column {
		width: 50%;
	}

	.service-photo-grid .service-photo-grid-column:nth-child(2) .service-photo-grid-number {
		border-bottom: 1px solid #434343;
	}

	.service-photo-grid .service-photo-grid-column:nth-child(3) .service-photo-grid-number {
		border-top: 1px solid #434343;
	}

	.content-flex .content-flex-img-container, .content-flex .content-flex-text-container {
		width: 100%;
	}

	.content-flex .content-flex-text-container {
		padding: 20px 10px;
	}

	/* CONTACT PAGE */

	.contact-main .contact-form-container,
	.contact-main .map-container {
		width: 100%;
	}

	.contact-main .map-container {
		margin-bottom: 15px;
	}

	.contact-info .contact-info-item {
		width: 100%;
	}

	/* BLOG */

	.blogs .blog-post-card {
		width: 100%;
	}

	/* BLOG POST */

	.blog-flex .blog-main,
	.blog-flex .blog-sidebar {
		width: 100%;
	}

	.blog-flex .blog-main {
		margin-bottom: 40px;
	}

	.blog-flex .blog-main .blog-main-content .wp-block-quote {
		padding: 0 10px;
	}

	.blog-flex .blog-main .blog-main-content .wp-block-quote p {
		padding-left: 10px;
	}

	/* PROJECTS */

	.projects-category {
		padding-left: calc(5% + 75px);
		padding-right: 5%;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.projects-category .filter-mobile {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.projects-category .filter-mobile .filter-mobile-label {
		font-weight: 500;
		font-size: 16px;
		color: #FFFFFF;
	}

	.projects-category .filter-mobile .filter-mobile-arrow {
		transform: rotate(90deg);
	}

	.projects-category .filters {
    display: block;
    max-height: 0;
    position: relative;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease;
}

	.projects-category .filters.active {
	    max-height: 500px; /* Adjust this value based on your content */
	    padding: 10px 0;
	}

	.projects-category .filters .filter-button {
		padding: 5px 0;
		border-left: none;
		width: 100%;
	}

	.projects-category .filters .filter-button:last-child {
		border-right: none;
	}

	.projects-category .filters .filter-button span {
		justify-content: flex-start;
		text-align: left;
	}

	.projects-gallery .project-item {
		width: 48%;
	}

	.projects-category .filters .filter-button.selected span:after {
		right: unset;
    margin-left: unset;
    margin-right: unset;
  }

	/* FOOTER */
	footer .footer-column {
		width: 40%;
	}

	footer .footer-column:first-child {
		width: 55%;
	}

}

@media screen and (max-width: 650px) {
	.steps .steps-item {
		width: 100%;
		border-right: none;
		border-top: 0.5px solid #909090;
	}

	.steps .steps-item:first-child {
		border-top: none;
	}

	.recent-blogs-row .recent-blog-card {
		width: 100%;
	}

	/* MAKE SOMETHING GREAT */
	.make-something-great .make-something-great-text {
		font-size: 24px;
	}

	/* FOOTER */

	footer .footer-column {
		width: 100%;
	}
	footer .footer-column:first-child {
		width: 100%;
	}
}

@media screen and (max-width: 550px) {
	/* HEADER */

	header .header-bar {
		width: 50px;
	}

	header .nav-bar-main {
		width: 50px;
		height: 50px;
	}

	header #navigation-toggle {
		height: 50px;
	}

	header #navigation-toggle.active {
		top: 50px;
	}

	header #navigation-toggle:after {
		transform: scale(0.6);
	}

	header #navigation-list {
		top: 50px;
	}

	header #navigation-list.active {
		left: 50px;
	}

	header .header-logo {
		left: 50px;
		height: 50px;
	}

	header .header-logo img {
		height: 40px;
		object-fit: contain;
	}

	header #navigation-list {
		left: -300px;
	}

	header .nav-bar-socials a {
		transform: scale(0.9);
	}

	/* SECTION */

	.section {
		padding: 40px 5%;
		padding-left: calc(5% + 50px)
	}

	.section-wide {
		padding: 40px 2.5%;
		padding-left: calc(2.5% + 50px);
	}

	.section-nopadding {
		padding: 40px 0 40px 50px;
	}

	.section-low {
		padding-left: calc(5% + 50px);
	}

	.section-title .section-title-small {
		font-size: 14px;
	}

	.section-title .section-title-text-med {
		font-size: 14px;
	}

	/* BANNERS */

	.banner.banner-home .banner-home-heading,
	.banner.banner-inner .banner-inner-title {
		font-size: 28px;
	}

	.banner.banner-inner .banner-inner-title {
		padding: 0;
	}

	/* HOME PAGE */
	.best-services .services-list .services-list-item {
		flex-flow: column;
		text-align: center;
	}

	.best-services .services-list .services-list-title {
		padding-left: 0;
		padding-top: 15px;
	}

	.best-services {
		scroll-margin-top: 55px;
	}

	.home-contact-form .home-contact-form-left .home-contact-form-text-container {
		padding: 0 10px;
	}

	.home-photo-grid-flex .home-photo-grid-item {
		width: 100%;
		margin: 10px 0;
	}

	/* PROJECTS */
	.projects-gallery .project-item {
		width: 100%;
	}

	.projects-category {
		padding-left: calc(5% + 50px);
	}

	/* BLOG */

	.blogs .blog-post-card .blog-post-card-img-container {
		height: 200px;
	}

	.blog-info .blog-info-item:first-child:after {
		width: 30px;
	}

	.blogs .blog-post-card .blog-post-card-title {
		font-size: 16px;
	}

	.blogs .blog-post-card .blog-post-card-button {
		font-size: 12px;
	}

	.blog-info .blog-info-item .blog-info-icon-container {
		padding: 5px;
	}

	.blog-info .blog-info-item .blog-info-text {
		font-size: 10px;
	}

	.pagination a {
		font-size: 14px;

	}

	.pagination .pagination-arrow {
		transform: scale(0.75);
	}

	/* SERVICE PAGE */

	.benefits-grid-column {
		grid-template-columns : 1fr
	}

	.benefits-grid-column:nth-child(even) .benefits-grid-img-container {
		grid-column: 1 / span 1;
	}

	/* FORMS */

	.contact-form .form__field_half {
		width: 100%;
	}

	.home-contact-form-main,
	.contact-main .contact-form-container {
		padding: 30px 20px;
	}

	.contact-form-title {
		font-size: 18px;
	}

	.contact-form .form__field_submit input {
		font-size: 18px;
	}

	.contact-form .form__field_submit,
	.contact-form .form__field_submit input {
		width: 100%;
	}
}

@media screen and (max-width: 350px) {
	/* SERVICE PAGE */
	.process-flex .process-item {
		width: 100%;
	}

	.best-services .services-list .services-list-item {
		width: 100%;
	}

	.slide .slide-text-container {
		padding: 15px;
		padding-top: 80px;
	}
}

@media screen and (max-width: 330px) {
	.section-title .section-title-small {
		font-size: 12px;
	}

	.section-title .section-title-text-med {
		font-size: 12px;
	}
}

.sidebar-social {
    font-size: 20px;
    border: 1px solid #aaa;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 10px 0px;
    text-align: center;
    color: #aaa;
}
.cta-konsul {
	display: block;
	position: relative;
	background: #bd1a1b;
	padding: 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	color: white;
	font-weight: bold;
	margin-top: 30px;
	margin-bottom: 5px;
}
.cta-konsul::after {
    content: ""; 
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-image: url('assets/img/floating-whatsapp.svg');
}
.after-cta {
	color: white;
	font-size: .7rem;
}
.wp-block-quote {
	position: relative;
    display: flex; /* Add display: flex to enable vertical centering */
    align-items: center; /* Center vertically */
}
.wp-block-quote p {
	padding-left: 40px !important;
}
.wp-block-quote::before {
    content: ""; 
    position: absolute;
    top: 50%; /* Position at the vertical center */
    left: 10px;
    width: 30px;
    height: 30px;
    background-image: url('assets/img/blog-post-quote.svg');
    background-size: contain; /* Ensure the background image is contained within the element */
    transform: translateY(-50%); /* Adjust for vertical centering */
}
.wpcf7-response-output {
	color: white;
}
.home-photo-grid p {
    color: #ebebeb;
}
.home-photo-grid a {
    font-weight: bold;
}
.pilihan-kontraktor {
    color: white;
}

.proses-kerja {
    color: #FFFFFF;
}
.proses-kerja a {
    font-weight: bold;
}
.proses-kerja h2 {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    max-width: 750px;
}
.proses-kerja .row {
    width: 100%;
    display: flex;
    flex-direction: row;
}
.proses-kerja .col {
    width: 50%;
}
@media screen and (max-width: 768px) {
    .proses-kerja .row {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .proses-kerja .col {
        width: 100%;
    }
}
.proses-kerja img {
    display: inline-block;
    background: lightgrey;
    width: 80px;
	height: auto !important;
    padding: 10px;
}
.proses-kerja .content {
    display: inline-block;
    width: calc(100% - 120px);
    padding-left: 10px;
    vertical-align: top;
}
.proses-kerja p {
    margin-top: 7px;
    font-size: .9rem;
}

.skema-pembayaran {
    background: #1f1f1f;
    color: white;
}
.skema-pembayaran img {
	max-width: 100%;
}
.skema-pembayaran .row {
    width: 100%;
    display: flex;
    flex-direction: row;
}
.skema-pembayaran .col {
    width: 50%;
    padding: 20px;
}
@media screen and (max-width: 768px) {
    .skema-pembayaran .row {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .skema-pembayaran .col {
        width: 100%;
    }
}
.ngg-gallery-thumbnail img {
    width: 100%;
}
.lgx_logo_slider_app {
	z-index: 0;
}
.lgx_app_item_row img {
	height: 60px;
}

.area-kerja {
    background: url('http://renov8.id/wp-content/uploads/2024/02/indo-map.png') no-repeat center center;
    background-size: cover;
    display: block;
    text-align: center;
    color: white;
}
.area-kerja h2 {
    font-size: 50px;
    font-weight: 700;
}
.area-kerja h3 {
    line-height: 3rem;
}
.banner-inner-cta {
	width: 300px;
	text-align: center;
	margin: 0 auto;
}