/* 
================================================================================
TABLE OF CONTENTS
================================================================================

1. Theme Information
2. CSS Reset
3. Global Styles
4. Header
5. Footer
6a. Top Navigation Bar
6b. Top nav drop down
7. Contact Form
8. Main
9. Swiper & Gallery
10. Off Canvas/Mobile Sidebar
999. Home Cards (Sample Content)

*/

/* 
================================================================================
1. Theme Information
================================================================================
*/
/*
Theme Name: Fisher Metal
Description: Bespoke theme by Four Gears for Fisher Metal
Author: Four Gears (DT)
Author URI: https://FourGears.com
Version: 1.878
Last Updated: 15/05/2023
*/

/* 
================================================================================
2. CSS Reset
================================================================================
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* 
================================================================================
3. Global Styles
================================================================================
*/

:root {
	--background-gray: #272727;
	--background-darkened: #0F0F0F;
	--highlight-color: #FABD50;
	--red: #F5443B;
	--slight-gray: #9f9f9e;
}  

body {
	background-color: var(--background-darkened) !important;
	color:white;
  }

/* H tags */
h1, h2, h3, h4 {
	font-family: 'Cairo', sans-serif;
	text-transform: uppercase;
	letter-spacing: 5px;
	line-height: 1.5;
	margin: 0;
	color: white;
  }
  
  h1 {
	font-size: 62px;
  }
  
  h2 {
	font-size: 52px;
  }
  
  h3 {
	font-size: 42px;
  }
  
  h4 {
	font-size: 32px;
  }
  
  /* Body and everything else */
  body, p, ul, li {
	font-family: 'Oxygen', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: normal;
	margin: 0;
	padding: 0;
  }
  
  

/* 
================================================================================
4. Header Styling
================================================================================
*/

header{
	position: fixed;
	width: 100%;
	padding: 1em;
	z-index: 999;
	background: linear-gradient(180deg, rgba(0,0,0,1) 35%, rgba(255,0,0,0) 100%);
	background-color: rgba(0, 0, 0, 0);
}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: var(--background-gray) #000 ;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #000;
  }

  *::-webkit-scrollbar-thumb {	
    background-color: var(--background-darkened);
	border: 4px solid #000;
      }

/* Cookie
*/
.cookie{
    max-width: 420px;
    width: 100%;
    background-color: var(--background-darkened);
    position: fixed;
    border-radius: 10px;
    padding: 10px 20px;
    border: 2px solid var(--highlight-color);
    display: flex;
    align-items: center;
    margin: 25px;
    bottom: 25px;
	z-index: 999;
}


@media (max-width: 576px){
	.cookie{
    flex-wrap: wrap;
    width: 100%;
    max-width: unset;
    margin: 0;
    bottom: 0;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    border: transparent;
    border-radius: 0;
    border-top: 2px solid var(--highlight-color);	}
	.cookie .txt{
    text-align: center;
		padding-bottom: 15px;
}
}

.cookie .txt{
    width: 100%;
}
.txt p{
	color: var(--slight-gray);
	margin: 0;
}

.cookie a{
	color: var(--red);
	text-decoration: none;
}

.cookie .accept {
    background-color: var(--red);
    color: #fff !important;
    border-radius: 32px;
    padding: 10px 20px;
}

.cookie .accept:hover {
	background-color: var(--highlight-color);
}


/* 
================================================================================
5. Footer
================================================================================
*/
.site-footer
{
	background-color: var(--background-darkened);
	padding:45px 0 20px;
	font-size:15px;
	line-height:24px;
	color:white;
	border-top: 1px solid var(--highlight-color);
}
.site-footer hr
{
	border-top-color: var(--highlight-color);
	opacity:1;
}
.site-footer hr.small
{
	margin:20px 0
}
.site-footer h6
{
	color: var(--highlight-color);
}
.site-footer a
{
	color: var(--slight-gray);
	text-decoration:none;
	transition: all 0.15s ease-in-out;
}
.site-footer a:hover
{
	color:var(--red);
	text-decoration:underline;
	transition: all 0.15s ease-in-out;
}
.footer-links
{
	padding-left:0;
	list-style:none
}
.footer-links li
{
	display:block
}
.footer-links a
{
	color:#737373;
	text-decoration: none;
}
.footer-links a:active,.footer-links a:focus,.footer-links a:hover
{
	color:var(--highlight-color);
	text-decoration:none;
}
.footer-links.inline li
{
	display:inline-block
}
.site-footer .social-icons
{
	text-align:right
}
.site-footer .social-icons a
{
	width:40px;
	height:40px;
	line-height:40px;
	margin-left:6px;
	margin-right:0;
	border-radius:100%;
	background-color: var(--background-gray)
}
.copyright-text
{
	margin:0
}

.site-footer .copyright{
	color: var(--slight-gray);
}

@media (max-width:991px)
{
	.site-footer [class^=col-]
	{
		margin-bottom:30px
	}
}
@media (max-width:767px)
{
	.site-footer
	{
		padding-bottom:0
	}
	.site-footer .copyright-text,.site-footer .social-icons
	{
		text-align:center
	}
}
.social-icons
{
	padding-left:0;
	margin-bottom:0;
	list-style:none
}
.social-icons li
{
	display:inline-block;
	margin-bottom:4px
}
.social-icons li.title
{
	margin-right:15px;
	text-transform:uppercase;
	color:#96a2b2;
	font-weight:700;
	font-size:13px
}
.social-icons a{
	background-color:white;
	color:var(--slight-gray);
	font-size:16px;
	display:inline-block;
	line-height:44px;
	width:44px;
	height:44px;
	text-align:center;
	margin-right:8px;
	border-radius:100%;
	-webkit-transition:all .2s linear;
	-o-transition:all .2s linear;
	transition:all .2s linear
}
.social-icons a:active,.social-icons a:focus,.social-icons a:hover
{
	color:white;
	background-color:var(--highlight-color)
}
.social-icons.size-sm a
{
	line-height:34px;
	height:34px;
	width:34px;
	font-size:14px
}
.social-icons a.facebook:hover
{
	background-color:#3b5998
}
.social-icons a.twitter:hover
{
	background-color:#00aced
}
.social-icons a.linkedin:hover
{
	background-color:#007bb6
}
.social-icons a.dribbble:hover
{
	background-color:#ea4c89
}
@media (max-width:767px)
{
	.social-icons li.title
	{
		display:block;
		margin-right:0;
		font-weight:600
	}
}

#left-line {
	position: fixed;
	top: 0;
	left: 0;
	width: 1px;
	height: 250px;
	background: radial-gradient(circle, rgba(255,140,0,1) 0%, rgba(0,0,0,0) 100%);
	z-index: 9999;
	opacity: 0.5;
  }


/* 
================================================================================
6a. Top Navigation 
================================================================================
*/

.site-navigation {
	top: 0;
	width: 100%;
}

.site-navigation a:hover {
	color: pink;
}

.site-navigation a:hover::after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background-color: pink;
	position: absolute;
	top: 100%;
	left: 0;
}

.site-navigation a:hover::before {
	content: "";
	display: block;
	color: pink;
	font-size: 12px;
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}

.navbar-nav li {
	padding-left: 10px;
	padding-right: 10px;
}

.logo-img {
	max-width: 100%;
	height: 100%;
	max-height: 60px;
	transition: all 0.3s ease-in-out;
    object-position: left;
    object-fit: cover;
  }

.logo-container:hover {
	filter: brightness(5);
	transition: all 0.3s ease-in-out;
}

.logo-container {
	transition: all 0.3s ease-in-out;
}

.logo-container.hide-text .logo-img {
	aspect-ratio: 1 / 1.2;
	object-position: left;
	object-fit: cover;
	transition: aspect-ratio 0.5s ease-in-out;
  }
  
  .logo-container.hide-text .logo-img.hide {
	width: 0%;
	transition: all 0.5s ease-in-out;
  }
  


.navbar-toggler-icon {
	color: #fff;
}

.navbar-toggler-icon i {
	font-size: 24px;
}

.navbar-nav li a {
	color: #fff;
	text-decoration: none;
	position: relative;
}

.navbar-nav li a::before {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background-color: var(--red);
	bottom: -2px;
	left: 0;
	z-index: -1;
	transition: width 0.3s ease-in-out;
}

.navbar-nav li a:hover::before {
	width: 100%;
	z-index: 1;
}

.navbar-nav li a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background-color: var(--red);
	bottom: -2px;
	right: 0;
	z-index: -1;
	transition: width 0s ease-in-out;
}

.navbar-nav li a:hover::after {
	width: 0;
	z-index: -1;
}

.menu-item-has-children.active > a i {
	transform: translateY(-2px) rotate(180deg);
	transition: transform 0.3s ease-in-out;
}

.menu-item-has-children > a i {
	font-size: 16px;
	padding-left: 5px;
	transition: transform 0.3s ease-in-out;
}

/* Set the default color for menu items */
.navbar-nav > li > a {
	color: var(--slight-gray);
  }
  
  /* Set the color for the current menu item */
  .navbar-nav .current-menu-item a{
	color: #fff;
  }
  
  .cta-button {
	background-color: var(--red);
	color: #fff;
	padding: 12px 32px;
	border-radius: 6px;
	white-space: nowrap;
	margin-right:10px;
	border: none;
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;

  }

  .cta-button a{
	text-decoration: none;
	color: #fff;
	transition: all 0.3s ease-in-out;
  }
  
  .cta-button a:hover{
	text-decoration: none;
	color: #000;
	transition: all 0.3s ease-in-out;
  }

  .cta-button:hover {
	background-color: var(--highlight-color);
	color: #000;
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  
  .cta-button-2nd {
	background-color: transparent;
	color: var(--highlight-color);
	padding: 12px 32px;
	border-radius: 6px;
	white-space: nowrap;
	margin-right: 10px;
	border: 2px solid var(--highlight-color);
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
	margin-bottom: 10px;
	max-width: 250px;
}

.cta-button-2nd a{
	text-decoration: none;
	color: var(--highlight-color);
	transition: all 0.3s ease-in-out;
}

.cta-button-2nd:hover {
	background-color: var(--background-darkened);
	color: var(--red);
	border-color: var(--red);
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.cta-button-2nd:hover a {
	color: var(--red);
	transition: all 0.3s ease-in-out;
}

.cta-button-3rd {
	background-color: transparent;
	color: var(--red);
	padding: 12px 32px;
	border-radius: 6px;
	white-space: nowrap;
	margin-right: 10px;
	border: 2px solid var(--red);
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
	margin-bottom: 10px;
	max-width: 250px;
}

.cta-button-3rd a{
	text-decoration: none;
	color: var(--red);
	transition: all 0.3s ease-in-out;
}

.cta-button-3rd:hover {
	background-color: var(--background-darkened);
	color: var(--highlight-color);
	border-color: var(--highlight-color);
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.cta-button-3rd:hover a {
	color: var(--highlight-color);
	transition: all 0.3s ease-in-out;
}

div#particles-js {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.2;
  }


  #home-landing h1 {
	font-size: 5rem;
  }

  @media (max-width: 768px) {
	#home-landing h1 {
	  font-size: 2rem;
	}
  }


  #home-landing h1 span{
	color: var(--highlight-color);
  }
  

  .single-case-study-image {
	overflow: hidden;
	position: relative;
	height: 0;
	padding-bottom: 35.71%; /* 10/28 * 100 */
	margin-bottom: 2em;

  }
  
  .single-case-study-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
  }
  
  .single-case-study-image:hover img {
	transform: scale(1.05);
  }
  
#single-case-study h1,
#single-case-study h2,
#single-case-study h3,
#single-case-study h4,
#single-case-study h5{
	color: var(--highlight-color);
}

#single-case-study ul li::before {
    content: "•";
    margin-right: 10px;
    color: var(--highlight-color);
}

#case-study-gallery {
	overflow: hidden;
  }

.cropped-img
 {
	aspect-ratio: 4/3;
	width: 100%;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
}

.galleryimg-container{
	overflow: hidden;
}

.galleryimg-container:hover .cropped-img{
	transform: scale(1.05);
	transition: all 0.3s ease-in-out;
}

  #case-study-gallery .row > div:hover img {
	transform: scale(1.05);
  }
  #case-study-gallery .row > div img {
	transition: transform 0.3s ease-in-out;
	position: relative;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
  }

  #case-study-gallery .galleryimg-container{
	overflow: hidden;
  }


#single-page h1,
#single-page h2,
#single-page h3,
#single-page h4,
#single-page h5{
	color: var(--highlight-color);
}

#single-page-content ul li::before {
    content: "•";
    margin-right: 10px;
    color: var(--highlight-color);
}

.contact-map{
	filter: grayscale(1) invert(1) brightness(1.5);
}

#featured-image-link img{
	aspect-ratio: 2/1;
	object-fit: cover;
}

ul.latest-posts{
	list-style: none;
	margin: 0;
	padding: 0;
  }
  
  ul.latest-posts li {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 10px;
  }
  
  ul.latest-posts li a {
	color: var(--red);
	text-decoration: none;
	transition: all 0.2s ease;
  }
  
  ul.latest-posts li:hover a{
	color: var(--highlight-color);
	transition: all 0.2s ease;
  }

  ul.latest-posts li small {
	color: var(--slight-gray);
  }
  
  .box.post-popup a:has(img) {
	  border: 2px solid var(--background-gray);
  }

  .latest-posts li::before {
	display: none;
  }

  #single-case-study ol li::before {
	content: counter(list-item, decimal) ". ";
	margin-right: 10px;
	color: var(--highlight-color);
  }
  
  #single-case-study ol {
	counter-reset: list-item;
  }
  
  #single-case-study ol li{
	padding-bottom: 25px;
  }

  #single-case-study strong{
	color: var(--highlight-color);
  }

 
  
  @media(max-width: 768px){
	.post-thumbnail{
		min-height: 200px;
	}
  }

  #blog h3 a {
	text-decoration: none;
	color: var(--highlight-color);
	transition: all 0.3s ease-in-out;
  }
  
  #blog .blog-container:hover h3 a{
	color: var(--red);
  }
  
  #blog p {
	display: inline-block;
	margin: 0;
  }
  
  #blog p.blog-date {
	color: var(--slight-gray);
  }
  
  #blog .post-thumbnail {
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
	padding: 0;
  }
  
  #blog .post-thumbnail a {
	display: block;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: all 0.3s ease-in-out;
  }

  #blog .blog-container:hover .post-thumbnail a {
	transform: scale(1.05);
  }
  
  #blog .blog-container:hover .post-thumbnail::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	box-shadow: inset 0 0 20px 20px rgba(0, 0, 0, 0.5);
	opacity: 1;
	transition: opacity 0.5s;
}

#blog .blog-container .post-thumbnail::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}


  .blog-container{
	margin: 25px 0 25px 0; 
  }
   
  .pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px 0;
  }
  
  .page-numbers {
	display: inline-block;
	padding: 8px 16px;
	margin-right: 10px;
	border: 1px solid var(--highlight-color);
	color: var(--highlight-color);
	text-decoration: none;
	transition: all 0.2s ease-in-out;

  }
  
  .page-numbers:hover {
	background-color: var(--highlight-color);
	color: white;
	transition: all 0.2s ease-in-out;

  }
  
  .current {
	background-color: var(--highlight-color);
	color: white;
	border-color: var(--highlight-color);
  }
  
  .reading-time{
	color: var(--slight-gray);
  }

/* 
================================================================================
6b. Top nav drop down
================================================================================
*/

.navbar-nav .menu-item-has-children > a.collapsed::after {
	transform: rotate(0deg);
}
.navbar-nav .menu-item-has-children > a:not(.collapsed)::after {
	transform: rotate(180deg);
}
.navbar-nav .sub-menu {
	background-color: rgba(0, 0, 0, 0.5);
	border: none;
	box-shadow: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
	position: absolute;
	z-index: 9999;
	top: 100%;
	padding: 0 20px 0 20px;
}
.navbar-nav .menu-item-has-children:hover > .sub-menu,
.navbar-nav .sub-menu:hover {
	opacity: 1;
	visibility: visible;
}
.navbar-nav .sub-menu li {
	padding: 0;
}
.navbar-nav .sub-menu a {
	color: #fff;
	display: block;
	padding: 10px;
}
.navbar-nav .sub-menu:before {
	content: '';
	position: absolute;
	top: -10px;
	left: 50%;
	margin-left: -10px;
	border-bottom: 10px solid rgba(0, 0, 0, 0.5);
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
}

.navbar-nav .sub-menu li a::before {
	bottom: 12px; /* adjust this value as needed */
}



/* 
================================================================================
7. Contact Form
================================================================================
*/

/* Form Container */
.wpcf7-form {
	display: flex;
	flex-direction: column;
	max-width: 600px;
	margin: 0 auto;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 40px;
	border-radius: 10px;
}

/* Form Input Fields */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
	background-color: transparent;
	border: none;
	border-bottom: 1px solid white;
	color: white;
	margin-bottom: 20px;
	padding: 10px;
	width: 100%;
	font-size: 18px;
	line-height: 24px;
}

/* Form Input Icons */
.wpcf7-form span.wpcf7-form-control-wrap i {
	color: white;
}

/* Form Input Focus */
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
	outline: none;
	border-bottom: 1px solid #fff;
}

/* Form Submit Button */
.wpcf7-form input[type="submit"] {
	background-color: transparent;
	border: 2px solid var(--highlight-color);
	border-radius: 10px;
	color: var(--highlight-color);
	cursor: pointer;
	font-size: 18px;
	font-weight: bold;
	margin-top: 20px;
	padding: 12px 40px;
	transition: all 0.3s ease;
}

.wpcf7-form input[type="submit"]:hover {
	background-color: var(--red);
	border: 2px solid var(--red);
	color: var(--background-darkened);
}

/* Validation Messages */
.wpcf7-not-valid-tip,
.wpcf7-response-output {
	background-color: #FF5252;
	border-radius: 5px;
	color: white;
	font-size: 14px;
	margin-top: 10px;
	padding: 10px;
	text-align: center;
}

.wpcf7-mail-sent-ok {
	background-color: #69F0AE;
}

/* Media Queries */
@media screen and (max-width: 600px) {
	.wpcf7-form {
		padding: 20px;
	}

	.wpcf7-form input[type="submit"] {
		padding: 12px 20px;
	}
}

.wpcf7-not-valid-tip:before,
.wpcf7-response-output:before {
	color: white;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    background: #46b450;
}

.wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
	margin-right: 20px;
	position: relative;
}
  
.wpcf7-form-control.wpcf7-radio input[type="radio"]:checked+span.wpcf7-list-item-label::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 00%;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: red;
}
  
.wpcf7-form-control.wpcf7-radio input[type="radio"] {
	opacity: 0;
	position: absolute;
	left: -9999px;
}
  
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label {
	cursor: pointer;
	padding-left: 20px;
	font-size: 16px;
}
  
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label::before {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid var(--bs-gray-300);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
  

.form-check-input{
	--bs-form-check-bg: unset !important;
	border: unset !important;
}

@media screen and (min-width: 992px) {
	.wpcf7-form-control.wpcf7-radio {
	  display: grid;
	  grid-template-columns: repeat(2, 1fr);
	  grid-column-gap: 10px;
	  margin-top: 10px;
	}
	.wpcf7-form-control.wpcf7-radio label {
	  display: flex;
	  align-items: center;
	}
	.wpcf7-form-control.wpcf7-radio input[type="radio"]:checked + label::before {
	  content: "";
	  display: inline-block;
	  width: 12px;
	  height: 12px;
	  margin-right: 5px;
	  border-radius: 50%;
	  background-color: var(--red);
	}
  }
  
  @media screen and (max-width: 991px) {
	.wpcf7-form-control.wpcf7-radio {
	  display: block;
	  margin-top: 10px;
	}
	.wpcf7-form-control.wpcf7-radio label {
	  display: block;
	  margin-bottom: 5px;
	}
  }


  ::-webkit-input-placeholder { /* WebKit browsers */
	color: #ffffff6e !important;
	opacity: 1;
	}
	:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color: #ffffff6e !important;
	opacity: 1;
	}
	::-moz-placeholder { /* Mozilla Firefox 19+ */
	color: #ffffff6e !important;
	opacity: 1;
	}
	:-ms-input-placeholder { /* Internet Explorer 10+ */
	color: #ffffff6e !important;
	opacity: 1;
	}
  

#home-contact h3, #home-contact .h3,
#about-contact h3, #about-contact .h3{
	color: var(--highlight-color);
}
/* 
================================================================================
8. Main
================================================================================
*/
main {
	min-height: 100vh;
	color: white;
	padding-top: 150px;
}

.page-home-page main{
	padding-top: 0;
}

.hero{
	object-fit: cover;
	overflow: hidden;
	height: 100%;
	width: auto;
}

.hero-section {
	position: relative;
	height: 100vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
    align-content: center;
    flex-wrap: wrap;
  }
  
  .hero-content {
	position: absolute;
	top: 50%;
	right: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 960px;
	padding: 0 30px;
  }



  .bottom-left-hero {
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: 80%;
	overflow: hidden;
	border-top-right-radius: 100%;
	mask-image: radial-gradient(circle at 100% 0%, transparent 50%, black 100%);
	-webkit-mask-image: radial-gradient(circle at 100% 0%, transparent 50%, black 100%); /* for Safari */
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5); /* for Safari */
  }
  
  
.top-right-hero {
	position: absolute;
	top: 0;
	right: 0;
	max-width: 80%;
	overflow: hidden;
	border-bottom-left-radius: 100%;
	mask-image: radial-gradient(circle at 0% 100%, transparent 50%, black 100%);
	-webkit-mask-image: radial-gradient(circle at 0% 100%, transparent 50%, black 100%); /* for Safari */
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5); /* for Safari */
  }

.bottom-left-hero img,
.top-right-hero img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  /* opacity: 0.5; */
}
  
/*
Sections start
*/
  
#home-landing {
	position: relative;
	overflow: hidden;
  }

#case-studies{
	position: relative;
	background: var(--background-darkened);
	padding: 3em 0 3em 0;
}

#excellence{
	position: relative;
	background: var(--background-gray);
	padding: 3em 0 3em 0;
}

#excellence .container-fluid{
	z-index: 2;
	position: inherit;
}

#excellence h2{
	font-size: 4rem;
	text-align: center;
	padding: 3rem 0 3rem 0;
}

@media (max-width: 768px){
	#excellence h2{
		font-size: 2rem;
	}
}

#excellence .features{
	padding: 3em 0 3em 0; 
}
.excellence-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
  }
  
  .excellence-bg img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	opacity: 0.2;
  }
  

#excellence .icon1,
#excellence .icon2,
#excellence .icon3
{
	padding-right: 5px;
}

#excellence .icon1 i::after,
#excellence .icon2 i::after,
#excellence .icon3 i::after {
	content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
	border-radius: 50%;
    z-index: 1;
}
#excellence .icon1 i,
#excellence .icon2 i,
#excellence .icon3 i {
    position: relative;
    aspect-ratio: 1/1;
    padding: 10px;
    border-radius: 50%;
    margin: 5px;
}

#excellence .icon1 i {
	color: #EA7579;
}

#excellence .icon2 i {
	color: #4BB38B;
}
#excellence .icon3 i {
	color: #FABD50;
}

#excellence .icon1 i::after {
    background: linear-gradient(90deg, #FF7D7D, #2C2E59);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), black calc(100% - 1px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 2px), black calc(100% - 1px));
}

#excellence .icon2 i::after {
    background: linear-gradient(90deg, #4DB88D, #2C2E59);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), black calc(100% - 1px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 2px), black calc(100% - 1px));
}

#excellence .icon3 i::after {
    background: linear-gradient(90deg, #B8A74D, #2C2E59);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), black calc(100% - 1px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 2px), black calc(100% - 1px));
}


#excellence .icon1 i::after {
	animation: rotate 10s linear forwards infinite;
}
  
#excellence .icon2 i::after {
	animation: rotate 9s linear forwards infinite;
}

#excellence .icon3 i::after {
	animation: rotate 11s linear forwards infinite;
}
  @keyframes rotate {
	from {
	  transform: rotate(0deg);
	}
	to {
	  transform: rotate(360deg);
	}
  }
  
.case-study-box {
    border: 1px solid var(--highlight-color);
    border-radius: 25px;
    background-color: var(--background-darkened);
    padding: 16px;
    box-sizing: border-box;
    max-width: 100%;
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.case-study-box {
    overflow: hidden;
}

.case-study-image{
	overflow: hidden;
	border-radius: 12px;
	position: relative;

}

.case-study-image img {
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    transition: transform 0.5s;
}

#newest-case-study:hover .case-study-image img,
.case-study-box:hover .case-study-image img {
    transform: scale(1.1);
}

  .product-image::before,
  .case-study-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	border-radius: 12px;
	box-shadow: inset 0 0 20px 20px rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity 0.5s;
  }

  .product-card:hover .product-image::before,
  #newest-case-study:hover .case-study-image::before,
  .case-study-box:hover .case-study-image::before {
	opacity: 1;
  }

.case-study-title {
    color: var(--highlight-color);
	width: 100%;
}

.case-study-tagline {
    color: var(--highlight-color);
	width: 100%;
}

.case-study-excerpt {
    color: var(--slight-gray);
    margin-bottom: 16px;
}

.client-images img:hover,
.client-images img:focus {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

.client-images img{
	transition: transform 0.3s ease-in-out;
}

.client-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
}

@media(max-width: 768px){
	.client-images {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 20px;
	}
}

#top-brands{
	background-color: var(--background-gray);
}

#top-brands p{
	color: var(--slight-gray);
}
  
#who-are-we {
    position: relative;
	padding: 3rem 0 3rem 0;

}

#who-are-we:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(260deg, rgba(15,15,15,1) 0%, rgba(15,15,15,1) 45%, rgba(0,0,0,0) 100%);
	z-index: -1; 
  }

#home-contact {
	padding: 3rem 0 3rem 0;
	background: var(--background-gray);
}

@media (max-width: 768px){
	.contact-map{
	width: 100%;
	height: auto;
	aspect-ratio: 4/3;
	padding-top: 3rem;
	}
}
.background-structure {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    filter: grayscale(1);
    height: 120%;
    object-fit: cover;
    transform: translateX(-20vh);
}

@media(max-width: 768px){
	.background-structure{
	opacity: 0.3;
	}
}
  

/* About Us Start */

#about-contact
{
	background: var(--background-gray);
}

.intro-section,
#about-intro{
	margin-top: -150px;
	padding-top: 150px;
	padding-bottom: 100px;
	background-position: center;
    background-size: cover;
	position: relative;
}

#about-info{
	padding: 3em 0 3em 0;
}

#about-intro h2 span {
	color: var(--highlight-color);
  }

.page-about-us #about-info .container .row order-md-1,
.page-about-us #about-info .container .row .col-md-6{
	background-size: cover;
    background-position: center center;
}

@media (max-width: 768px){
	.page-about-us #about-info .container .row .order-md-1,
	.page-about-us #about-info .container .row .col-12{
	min-height: 250px;
	}
}

#all-case-studies {
	background-color: var(--background-gray);
}

.case-study-box {
	height: 100%;
}

.top-bottom-padding{
	padding: 3em 0 3em 0;
}

#newest-case-study h3 span{
	color: var(--red);
}

.case-study-content{
	display: flex;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
}

/* Product Start */
.product-card {
    border: 1px solid var(--red);
    border-radius: 25px;
    background-color: var(--background-darkened);
    padding: 16px;
    box-sizing: border-box;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: 100%;
}


  .products-image {
	display: inline-block;
	width: 100%;
	margin-bottom: 20px;
	border-radius: 10px;
	overflow: hidden;
  }
  
  .products-image-img {
	display: block;
	width: 100%;
	height: auto;
	transition: all 0.2s ease-in-out;
	border-radius: 10px;
	aspect-ratio: 2/1;
    object-fit: cover;
  }
  
  .products-image:hover .products-image-img {
	transform: scale(1.05);
	overflow: hidden;
  }
  
  

.product-image img {
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.product-image {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    aspect-ratio: 4/3;
    height: 0;
    padding-bottom: 75%; /* 4:3 aspect ratio */
}



.product-image:hover .product-image img{
	transform: scale(1.1);
}

.product-card-title {
    color: var(--red);
    width: 100%;
	    text-overflow: ellipsis;
    overflow: hidden;
}

.product-card-body p{
	color: var(--slight-gray);
}

.product-card-body p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}


.product-card-body{
	overflow: hidden;
	display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.product-card-img-top::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	border-radius: 12px;
	box-shadow: inset 0 0 20px 20px rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity 0.5s;
  }

  
/* 
================================================================================
9. Swiper & Gallery
================================================================================
*/

  
.swiper-container {
    overflow: hidden;
    height: 300px;
    position: relative;
  }
  .swiper-slide {
    width: 150px;
    height: 150px;
    overflow: hidden;
  }
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .swiper-button-prev {
    left: 10px;
  }
  .swiper-button-next {
    right: 10px;
  }

  
  .mfp-figure {
	height: 100%;
  }
  
  .mfp-img {
	max-height: 100%;
  }
  
  @media (max-width: 768px) {
	.gallery-item {
	  flex: 0 0 calc(50% - 10px);
	}
  }

  .swiper-button-next, .swiper-button-prev{
	color: white !important;
  }
  
  
  
 /* 
================================================================================
10. Off Canvas/Mobile Menu
================================================================================
*/ 
.navbar-toggler .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    margin-bottom: 4px;
    position: relative;
    background-color: #fff;
    border-radius: 1px;
}

.offcanvas-header{
	justify-content: flex-end !important;
	padding: 1.5em !important;
}

#sidebar-menu {
	background-color: var(--background-darkened);
  }
  
  .list-sidebar {
	padding: 0;
	margin: 0;
	list-style: none;
	overflow-y: auto;
	max-height: calc(100vh - 145px); /* adjust this value as needed */
  }
  
  .list-sidebar li {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .list-sidebar li a {
	display: block;
	padding: 0.5rem 1rem;
	color: #fff;
	font-weight: 400;
	transition: all 0.2s;
	text-decoration: none;
  }
  
  .list-sidebar li a:hover,
  .list-sidebar li.current-menu-item > a {
	background-color: rgba(255, 255, 255, 0.1);
	font-weight: 600;
  }
  


  .list-sidebar .sub-menu {
	display: block;
	list-style: none;
	margin: 0;
	padding-left: 1rem;
  }
  
  .list-sidebar .sub-menu li {
	border-top: none;
  }
  
  .list-sidebar .sub-menu li a {
	padding: 0.5rem 0;
	font-weight: 400;
  }
  
  .list-sidebar .sub-menu li a:hover,
  .list-sidebar .sub-menu li.current-menu-item > a {
	background-color: transparent;
	font-weight: 600;
  }
  

  .offcanvas-body {
    flex-grow: 1;
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
	flex-direction: column;
    justify-content: space-between;
}

.btn-close-white {
    --bs-icon-color: #fff;
}

.list-sidebar ul,
.list-sidebar ui,
.list-sidebar ol{
	list-style: none;
	margin: 0;
	padding: 0;
}

.sidebar-footer{
	color: var(--slight-gray);
}

/* 
================================================================================
999. Home Card (Sample Content)
================================================================================
*/

.home-card {
	width: 100vw;
	height: 100vh;
	background: #000;
	color: white;
	display: flex;
	align-items:center;
	justify-content:center;
	position: sticky;
	top: 0;
}

.home-card .bg-img {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.5) blur(0);
	transition: all 0.3s ease-in-out;
}

.img-left {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.5) blur(0);
	transition: all 0.3s ease-in-out;
	z-index: 2;
}

.img-right {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.5) blur(0);
	transition: all 0.3s ease-in-out;
	z-index: 3;
}

.float-away-left {
	transform: translateX(-100%);
}

.float-away-right {
	transform: translateX(100%);
}



.home-card-content {
	position: absolute;
	z-index: 4;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: column;
	padding: 10px;
}

.zoomable-image {
	transition: transform 0.5s ease-in-out;
}

.zoomable-image.scale {
	transform: scale(1.1);
}

.grecaptcha-badge { 
    visibility: hidden;
}

