/*
Theme Name: Custom Rigid Boxes
Author: Developer
*/
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
	--main-color: #2c3e50;
	--heading-color: #2c3e50;
	--text-color: #2c3e50;
	--color-dark: #000;
	--accent: #0f826b;
	--a-c: #1abc9c;
	--main-family: "Space Grotesk", "Montserrat", sans-serif;
	--head-top-bg: #fcfbf7;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	background: #f5f5f5;
}
body {
	font-size: 16px;
	line-height: 22px;
	color: var(--text-color);
	font-family: var(--main-family);
	max-width: 1920px;
	margin: 0 auto;
	background-color: white;
	font-weight: 500;
}
body,
html {
	overflow-x: hidden;
	zoom: 100%;
}
h1 {
	font-weight: 700;
	font-size: 40px;
	line-height: 49px;
	letter-spacing: -1.5px;
	color: var(--heading-color);
}
h2 {
	font-weight: 700;
	font-size: 32px;
	line-height: 39px;
	letter-spacing: -1.5px;
	color: var(--heading-color);
}
h3 {
	font-weight: 700;
	font-size: 26px;
	letter-spacing: -1.5px;
	color: var(--heading-color);
}
h4 {
	font-weight: 700;
	font-size: 22px;
	letter-spacing: -1.5px;
	color: var(--heading-color);
}
a {
	text-decoration: none;
	color: var(--a-c);
}
.limit-width {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 20px;
}
.btn {
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
	padding: 16px 32px;
	border-radius: 6px;
	background: var(--main-color);
	color: white;
	display: inline-block;
	transition: 0.3s ease;
	border: 1px solid #0000;
	width: fit-content;
}
.btn:hover {
	background-color: var(--accent);
	text-decoration: none;
	color: white;
	border: 1px solid #0000;
}
.btn-white {
	background: #ffffff;
	color: var(--main-color);
}
.btn-stroke {
	background-color: #0000;
	color: var(--color-dark);
	border: 1px solid;
}
.btn-white:hover {
	background-color: #dfe1e6;
	text-decoration: none;
	color: var(--main-color);
}
.mb16 {
	margin-bottom: 16px;
}
.mb26 {
	margin-bottom: 26px;
}
.col {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 10px;
}
.grid-ff {
	display: grid;
	grid-template-columns: repeat(2, calc(50% - 10px));
	gap: 20px;
}
.centered {
	text-align: center;
}
.col.align-center {
	justify-content: center;
}
.mobile-only {
  display: none;
}
/* Header Start*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: white;
	z-index: 99999999999;
	box-shadow: 0 0 3px #0002;
}
.sub-header {
	background: var(--head-top-bg);
}
.sub-header-menu {
	display: flex;
	align-self: center;
	justify-content: start;
	list-style-type: none;
	padding: 12px 0;
	margin: 0;
}
.sub-header-menu .menu-item a {
	color: var(--heading-color);
	font-size: 12px;
	line-height: 15px;
	padding: 0px 15px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	display: block;
}
.sub-header-menu .menu-item a i {
	margin-right: 5px;
}
.main-header-wrap {
	display: grid;
	grid-template-columns:370px 1fr 189px;
	align-items: center;
	gap: 20px;
	padding: 15px;
	justify-items: end;
}
.request-quote a {
	padding: 10px 20px;
	border: 1px solid;
	color: var(--heading-color);
	border-radius: 6px;
}
.main-menu {
	list-style-type: none;
	display: flex;
	gap: 15px;
	align-items: center;
	margin: 0;
	padding:0;
}
.main-menu .menu-item a {
	color: var(--color-dark);
	padding: 0 12px;
	line-height: 42px;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
}
.main-item {
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 5px;
	color: var(--color-dark);
	padding: 0 12px;
	line-height: 42px;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
}
.main-item i {
	font-size: 14px;
	transition: transform .3s ease;
}
.drop-down-menu {
	position: absolute;
	grid-auto-flow: row;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;
	row-gap: 10px;
	padding: 30px;
	background-color: white;
	left: 50%;
	transform: translateX(-50%);
	transition: 0.3s ease;
	opacity: 0;
	visibility: hidden;
	display: none;
	width: 100%;
	z-index: 99;
}
.drop-down-menu .drop-menu-item {
	display: flex;
	padding: 12px 8px !important;
	border-radius: 3px;
	gap: 15px;
	align-items: center;
	transition: 0.3s ease;
	min-width: 250px;
}
.drop-down-menu .drop-menu-item img {
	width: 50px;
	height: 50px;
}
.drop-down-menu .drop-menu-item:hover {
	background-color: #0002;
}
.has-drop-down:hover .drop-down-menu {
	visibility: visible;
	opacity: 1;
	display: grid;
}
.navigation {
	z-index: 999;
}
.nav-toggle-buttons {
	display: none;
	width: 40px;
	height: 40px;
	place-items: center;
	border-radius: 5px;
	border: 1px solid;
}
.nav-toggle-buttons i {
	position: absolute;
	font-size: 18px;
}
.overlay-header {
	display: none;
}
/* HEADER END */

/* FOOTER START */
footer {
	border-top: 1px solid #f1f3f7;
}
.footer-wrap {
	padding: 0 20px;
}
.footer-row {
	display: flex;
	align-items: center;
	background: #fcfbf7;
	padding: 30px 40px;
	border-radius: 10px;
	margin-top: 20px;
}
.footer-heading {
	width: 100%;
	font-style: normal;
	font-weight: 700;
	font-size: 34px;
	line-height: 48px;
}
.footer-social-heading {
	padding-bottom: 12px;
}
.footer-social .social-icons {
	display: flex;
	align-items: center;
	gap: 20px;
}
.social-icons a i {
	font-size: 32px;
	color: var(--accent);
}
.footer-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 300px 260px;
	gap: 30px;
	padding: 50px 0;
	border-bottom: 1px solid #ccc;
}
.footer-menu {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.footer-menu-wrap.sp {
	padding: 15px;
	background: #f5f5f5;
	border-radius: 5px;
}
.footer-menu-title {
	font-style: normal;
	font-size: 15px;
	line-height: 21px;
	font-weight: 500;
	color: var(--text-color);
	margin-bottom: 10px;
	display: block;
}
.footer-menu li,
.footer-menu a {
	font-style: normal;
	font-weight: normal;
	font-size: 13px;
	line-height: 28px;
	padding-left: 0;
	color: var(--text-color);
}
.footer-menu li img {
	margin-top: 10px;
}
.footer-menu li .fsc {
	margin-left: 10px;
}
.footer-bottom {
	padding: 25px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.payment-methods {
	display: flex;
	align-items: center;
	gap: 10px;
}
.copyright-text {
	font-size: 12px;
	font-weight: 500;
	line-height: 20px;
	color: #6d758f;
}
.payment-methods {
	color: #989898;
}
/* Footer End */

/* Swiper Global Start */
.swiper-pagination-bullet {
	width: 40px !important;
	border-radius: 15px !important;
	height: 3px !important;
}
.swiper-pagination-bullet-active {
	background-color: var(--main-color) !important;
}
/* Swiper Global End */

@media (max-width: 1024px) {
	/* Header Start */
	.overlay-header {
		display: none;
		position: fixed;
		width: 100%;
		height: 100%;
		background-color: #0001;
		top: 0;
		left: 0;
		z-index: 998;
	}
  .main-header-wrap {
    grid-template-columns: 370px 1fr 180px;
  }
	.mobile-menu-opened .overlay-header {
		display: block;
	}
	.nav-toggle-buttons {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.fa-xmark {
		display: none !important;
	}
	.fa-bars {
		display: inline-block !important;
	}
	.has-drop-down:hover .drop-down-menu{
		visibility: hidden;
		opacity: 0;
	}
	.drop-down-menu {
		grid-template-columns: 1fr;
		padding: 15px 0;
	}
	.has-drop-down.active .drop-down-menu{
		opacity: 1;
		visibility: visible;
		display:grid;
	}
	.has-drop-down.active .main-item i{
		transform: rotate(180deg);
	}
	.drop-down-menu .menu-item-image-wrap {
		display: none;
	}
	.mobile-menu-opened .fa-bars {
		display: none !important;
	}
	.mobile-menu-opened .fa-xmark {
		display: inline-block !important;
	}
	.drop-down-menu .drop-menu-item{
		padding: 8px 30px !important;
	}
	.main-menu .menu-item a{
		line-height: 30px;
	}
	.navigation {
		position: fixed;
		background-color: #f6f6f6;
		left: -500px;
		top: 0;
		height: 100%;
		max-width: 270px;
		width: 270px;
		transition: 0.3s ease;
		overflow-y: scroll;
	}
	.mobile-menu-opened .navigation {
		left: 0;
	}
	.main-menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding-top: 20px;
		gap: 10px;
		width: 230px;
	}
	.main-menu .margin-left {
		margin-left: 0;
	}
	.main-menu .menu-item {
		border-bottom: 1px solid #c4c4c4;
		width: 100%;
	}
	.contact-details {
		order: 0;
		width: 100%;
		border-bottom: 1px solid #c4c4c4;
		padding: 10px 0 20px;
	}
	/* Header End */
	/* Footer Start */
	.footer-navigation {
		grid-template-columns: repeat(5, minmax(100px, 1fr));
	}
	/* Footer End */
}

@media (max-width: 767px) {
	/*GLOBAL Elements*/
	.hide-in-mobile {
		display: none;
	}
	.grid-ff{
		grid-template-columns:1fr;
	}
  .mobile-only {
    display: block;
  }

	/* Header Start */
	.sub-header {
		display: none;
	}
	.overlay-header {
		display: none;
	}
	.main-header-wrap {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.header-logo {
		order: 0;
		width: 80%;
	}
  .header-logo img {
    width: 100%;
    height: auto;
  }
	.mobile-searchbar {
		order: 2;
		width: 100%;
	}
	.nav-wrap {
		margin: auto 0 auto auto;
	}
	.searchbar {
		width: 100% !important;
	}
	header .request-quote {
		display: none;
	}

	/* Header End */

	/* Footer Start */

	.footer-heading {
		text-align: center;
		font-size: 30px;
		line-height: 40px;
	}
	.footer-navigation {
		grid-template-columns: 1fr;
		gap: 15px;
		border-radius: 3px;
		padding: 0;
		border: 0;
	}
	.footer-menu-wrap {
		padding: 10px;
		border-radius: 8px;
		background-color: #eee;
	}
	.footer-menu {
		display: none;
	}
	.active .footer-menu {
		display: block;
	}
	.footer-menu-title {
		line-height: 30px;
		padding: 10px;
		margin-bottom: 4px;
		border-radius: 3px;
		font-weight: 600;
		position: relative;
	}
	.footer-menu-title::after {
		position: absolute;
		right: 20px;
		top: 50%;
		translate: 0 -50%;
		content: "\f078";
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		-moz-osx-font-smoothing: grayscale;
		-webkit-font-smoothing: antialiased;
		display: var(--fa-display, inline-block);
		font-style: normal;
		font-variant: normal;
		line-height: 1;
		text-rendering: auto;
	}
	.active .footer-menu-title::after {
		rotate: 180deg;
	}
	.footer-row {
		flex-direction: column;
		padding: 0;
	}
	.footer-social {
		display: flex;
		align-items: center;
		gap: 10px;
		justify-content: center;
		margin: 15px 0;
	}
	.footer-social-heading {
		padding: 0;
	}
	.footer-menu li {
		line-height: 30px;
		padding: 10px;
		margin-bottom: 4px;
		border-radius: 3px;
	}
	.payment-methods {
		display: grid;
	}
	.footer-bottom {
		flex-direction: column-reverse;
		gap: 20px;
	}
}