*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	line-height: 1.5;
	letter-spacing: 2px;
	overflow-x: hidden;
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Orbitron", sans-serif;
	font-optical-sizing: auto;
	font-size: 2rem;
	font-style: normal;
}

p, button, li, a {
	font-family: "Quicksand", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.centerContent {
	display: flex;
	align-items: center;
	justify-content: center;
}

:root {
	--green: #179A7A;
	--orange: #f5833d;
}

.topbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 10vh;
    align-items: center;
    z-index: 5;
    color: black;
}

.topbar ul {
    width: 80%;
    display: flex;
    justify-content: space-evenly;
    list-style: none;
}

nav {
    position: absolute;
    z-index: 3;
    background-color: var(--orange);
    width: max-content;
    border-radius: 50px;
    left: 50%;
    margin-top: 5vh;
}

nav ul {
    display: flex;
    justify-content: space-evenly;
}

nav ul li {
    padding: 20px 40px;
    list-style: none;
    color: white;
    cursor: pointer;
}

/* Menu Button */
.menu-button {
    visibility: hidden;
    width: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 25px;
}

.bar {
    height: 3px;
    background-color: var(--colorThree);
}

/* Menu Items */
.menu-items {
    position: fixed;
    top: 0;
    left: -100%;
    width: max-content;
    height: 100%;
    background-color: var(--colorOne);
    box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: left 0.3s ease;
}

.menu-items a {
    padding: 15px 20px;
    margin: 0 20px;
    text-decoration: none;
    color: var(--colorTwo);
    font-size: 18px;
}

/* Show menu */
.menu-items.active {
    left: 0;
}

.hero {
    background-image: url("./images/pipes.jpeg");
    height: 100vh;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero h2 {
	color: var(--green);
}

.shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.7;
    z-index: 0;
}

.hero div {
    width: 50%;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 40px;
}

button {
    width: max-content;
    margin: auto;
    padding: 10px 15px;
    border-radius: 50px;
    border: none;
    background-color: var(--orange);
    color: white;
    cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}

.products-container {
    margin-top: 20vh;
}

.product-list {
    display: flex;
    gap: 20px;
    margin: 20px;
    flex-wrap: wrap;
}


/*=========================================================================================================*/

.wrap h3 {
	text-align: center;
	color: white;
	overflow: visible;
}
.callToActionP{
    position: relative;
	font-size: max(10pt, 2.5vmin);
	line-height: 1.4;
	color: white;
    margin-bottom: 2.5rem;
    margin: auto;
}

.wrap {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	min-width: 300px; 
    width: 85vmin;
	height: 65vmin;
	margin: 2rem auto;
	transition: 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
}

.overlay {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	padding: 1rem 0.75rem;
	background: var(--green);
	transition: 0.4s ease-in-out;
	z-index: 1;
}

.overlay button {
	display: none;
}
.overlay-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 20vmin;
	height: 100%;
	padding: 0.5rem 0 0 0.5rem;
	border: 3px solid;
	border-image: linear-gradient(
			to bottom,
			#aea724 5%,
			forestgreen 35% 65%,
			#aea724 95%
		)
		0 0 0 100%;
	transition: 0.3s ease-in-out 0.2s;
	z-index: 1;
	overflow: visible;
}
.image-content {
	position: absolute;
	top: 0;
	right: 0;
	width: 60vmin;
	height: 100%;
	overflow-y: hidden;
	transition: 0.3s ease-in-out;
	/* border: 1px solid green; */
}

.image-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Black overlay with 50% opacity */
  }

.inset {
	max-width: 50%;
	margin: 0.25em 1em 1em 0;
	border-radius: 0.25em;
	float: left;
}

.dots {
	position: absolute;
	bottom: 1rem;
	right: 2rem;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	width: 55px;
	height: 4vmin;
	transition: 0.3s ease-in-out 0.3s;
}
.dot {
	width: 14px;
	height: 14px;
	background: var(--orange);
	border-radius: 50%;
	transition: 0.3s ease-in-out 0.3s;
}

.text {
	position: absolute;
	top: 0;
	right: 0;
	width: 60vmin;
	height: 100%;
	padding: 3vmin 4vmin;
	background: #fff;
	box-shadow: inset 1px 1px 15px 0 rgba(0 0 0 / 0.4);
	overflow-y: scroll;
}

.wrap:hover .overlay {
	transform: translateX(-60vmin);
}
.wrap:hover .image-content {
	width: 30vmin;
}
.wrap:hover .overlay-content {
	border: none;
	transition-delay: 0.2s;
	transform: translateX(60vmin);
}
.wrap:hover .dots {
	transform: translateX(1rem);
}
.wrap:hover .dots .dot {
	background: white;
}

/* Animations and timing delays */
.animate {
	animation-duration: 0.7s;
	animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
	animation-fill-mode: backwards;
}
/* Pop In */
.pop {
	animation-name: pop;
}
@keyframes pop {
	0% {
		opacity: 0;
		transform: scale(0.5, 0.5);
	}
	100% {
		opacity: 1;
		transform: scale(1, 1);
	}
}

/* Slide In */
.slide {
	animation-name: slide;
}
@keyframes slide {
	0% {
		opacity: 0;
		transform: translate(4em, 0);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

/* Slide Left */
.slide-left {
	animation-name: slide-left;
}
@keyframes slide-left {
	0% {
		opacity: 0;
		transform: translate(-40px, 0);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

.slide-up {
	animation-name: slide-up;
}
@keyframes slide-up {
	0% {
		opacity: 0;
		transform: translateY(3em);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.delay-1 {
	animation-delay: 0.3s;
}
.delay-2 {
	animation-delay: 0.6s;
}
.delay-3 {
	animation-delay: 0.9s;
}
.delay-4 {
	animation-delay: 1.2s;
}
.delay-5 {
	animation-delay: 1.5s;
}
.delay-6 {
	animation-delay: 1.8s;
}
.delay-7 {
	animation-delay: 2.1s;
}
.delay-8 {
	animation-delay: 2.4s;
}

table {
	position: relative;
	left: -10px;
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 10px;
	overflow: visible;
}

th, td {
    padding: 6px;
    text-align: center;
    border: 1px solid #dddddd;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.download-button {
	display: flex;
	justify-content: space-around;
}

/*=============================================================================================================================================*/

.resources-container {
	position: relative;
	width: 100%;
	height: auto;
	margin: 50px auto;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	flex-wrap: wrap;
	word-wrap: break-word;

}

.resources-container button {
	margin: 20px;
}

/*=============================================================================================================================================*/

.banner {
	width: 100%;
	height: 50vh;
	background-image: url("./images/pipes.jpeg");
	background-size: cover;
	color: white;	
}

.banner h1 {
	position: relative;
	z-index: 3;
	width: min-content;
	min-width: 300px;
	text-align: center;
	left: 20%;
	top: 50%;
	transform: translate(0, -50%);
}

.banner h1 span {
	color: var(--green);
}

.banner .shadow {
	height: 50vh;
	opacity: 0.7;
}

/*=================================================================================================================================================*/
.how-it-works {
	margin-top: 50px;
	position: relative;
	height: max-content;
}

.how-it-works-number {
	position: absolute;
	 width: 150px;
	 height: 150px;
	 background-color: var(--green);
	 border-radius: 50%;
	 font-size: 5rem;
	 opacity: 0.2;
	 color: white;
	 font-weight: 900;
}

.card1 .centerContent {
	flex-direction: column;
}

.how-it-works-items {
	position: relative;
	margin: 50px;
	overflow-y: visible;
}

.how-it-works-card {
	width: 100%;
	margin: 20px;
}

.how-it-works-card h3 {
	color: var(--orange);
	position: relative;
	left: 50%;
	transform: translate(-50%);
}

.headerIcon {
	font-size: 3rem;
	position: relative;
	left: 50%;
	transform: translate(-50%,0);
}

.rightArrow {
	border: 3px solid grey;
	border-radius: 50%;
	padding: 10px 30px;
	font-size: 2rem;
	color: grey;
}



/*==================================================================================================================================================*/

.contact_us_6 * {
	font-family: Nunito, sans-serif;
  }
  
  .contact_us_6 .text-blk {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	line-height: 25px;
  }
  
  .contact_us_6 .responsive-cell-block {
	min-height: 75px;
  }
  
  .contact_us_6 input:focus,
  .contact_us_6 textarea:focus {
	outline-color: initial;
	outline-style: none;
	outline-width: initial;
  }
  
  .contact_us_6 .container-block {
	min-height: 75px;
	width: 100%;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	display: block;
  }
  
  .contact_us_6 .responsive-container-block {
	min-height: 75px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 50px;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
  }
  
  .contact_us_6 .responsive-container-block.big-container {
	padding-top: 10px;
	padding-right: 30px;
	width: 35%;
	padding-bottom: 10px;
	padding-left: 30px;
	background-color: var(--green);
	position: absolute;
	height: 950px;
	right: 0px;
  }
  
  .contact_us_6 .responsive-container-block.container {
	position: relative;
	min-height: 75px;
	flex-direction: row;
	z-index: 2;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	padding-top: 0px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 30px;
	max-width: 1320px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
  }
  
  .contact_us_6 .container-block.form-wrapper {
	background-color: white;
	max-width: 450px;
	text-align: center;
	padding-top: 50px;
	padding-right: 40px;
	padding-bottom: 50px;
	padding-left: 40px;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
	border-bottom-left-radius: 6px;
	margin-top: 90px;
	margin-right: 0px;
	margin-bottom: 60px;
	margin-left: 0px;
  }
  
  .contact_us_6 .text-blk.contactus-head {
	font-size: 36px;
	line-height: 52px;
	font-weight: 900;
  }
  
  .contact_us_6 .text-blk.contactus-subhead {
	color: #9c9c9c;
	width: 300px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 50px;
	margin-left: auto;
	display: none;
  }
  
  .contact_us_6 .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12 {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 26px;
	margin-left: 0px;
	min-height: 50px;
  }
  
  .contact_us_6 .input {
	width: 100%;
	height: 50px;
	padding-top: 1px;
	padding-right: 15px;
	padding-bottom: 1px;
	padding-left: 15px;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #eeeeee;
	border-right-color: #eeeeee;
	border-bottom-color: #eeeeee;
	border-left-color: #eeeeee;
	border-image-source: initial;
	border-image-slice: initial;
	border-image-width: initial;
	border-image-outset: initial;
	border-image-repeat: initial;
	font-size: 16px;
	color: black;
  }
  
  .contact_us_6 .textinput {
	width: 98%;
	min-height: 150px;
	padding-top: 20px;
	padding-right: 15px;
	padding-bottom: 20px;
	padding-left: 15px;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #eeeeee;
	border-right-color: #eeeeee;
	border-bottom-color: #eeeeee;
	border-left-color: #eeeeee;
	border-image-source: initial;
	border-image-slice: initial;
	border-image-width: initial;
	border-image-outset: initial;
	border-image-repeat: initial;
	font-size: 16px;
  }
  
  .contact_us_6 .submit-btn {
	width: 98%;
	background-color: var(--green);
	height: 60px;
	font-size: 20px;
	font-weight: 700;
	color: white;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: outset;
	border-right-style: outset;
	border-bottom-style: outset;
	border-left-style: outset;
	border-top-color: #767676;
	border-right-color: #767676;
	border-bottom-color: #767676;
	border-left-color: #767676;
	border-image-source: initial;
	border-image-slice: initial;
	border-image-width: initial;
	border-image-outset: initial;
	border-image-repeat: initial;
	border-top-left-radius: 40px;
	border-top-right-radius: 40px;
	border-bottom-right-radius: 40px;
	border-bottom-left-radius: 40px;
  }
  
  .contact_us_6 .form-box {
	z-index: 2;
	margin-top: 0px;
	margin-right: 48px;
	margin-bottom: 0px;
	margin-left: 0px;
  }
  
  .contact_us_6 .text-blk.input-title {
	text-align: left;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	font-size: 14px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	color: #9c9c9c;
  }
  
  .contact_us_6 ::placeholder {
	color: #dadada;
  }
  
  .contact_us_6 .mob-text {
	display: block;
	text-align: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 25px;
	margin-left: 0px;
  }
  
  .contact_us_6 .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-12.wk-ipadp-12 {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
  }
  
  .contact_us_6 .text-blk.contactus-subhead.color {
	color: white;
  }
  
  .contact_us_6 .map-box {
	max-width: 800px;
	max-height: 520px;
	width: 100%;
	height: 520px;
	min-height: 300px;
	overflow-y: hidden;
  }
  
  .contact_us_6 .map-part {
	width: 100%;
	height: 100%;
  }
  
  .contact_us_6 .text-blk.map-contactus-head {
	font-weight: 900;
	font-size: 22px;
	line-height: 32px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	color: var(--green);
  }
  
  .contact_us_6 .text-blk.map-contactus-subhead {
	max-width: 300px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
  }
  
  .contact_us_6 .social-media-links.mob {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 30px;
	margin-left: 0px;
	width: 230px;
	display: flex;
	justify-content: flex-start;
  }
  
  .contact_us_6 .link-img {
	width: 30px;
	height: 30px;
	margin-top: 0px;
	margin-right: 25px;
	margin-bottom: 0px;
	margin-left: 0px;
  }
  
  .contact_us_6 .link-img.image-block {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
  }
  
  .contact_us_6 .social-icon-link {
	margin: 0 25px 0 0;
	padding: 0 0 0 0;
  }
  
  @media (max-width: 1024px) {
	.contact_us_6 .responsive-container-block.container {
	  justify-content: center;
	}
  
	.contact_us_6 .map-box {
	  position: absolute;
	  top: 0px;
	  max-height: 320px;
	}
  
	.contact_us_6 .map-box {
	  max-width: 100%;
	  width: 100%;
	}
  
	.contact_us_6 .responsive-container-block.container {
	  padding-top: 0px;
	  padding-right: 0px;
	  padding-bottom: 0px;
	  padding-left: 0px;
	}
  
	.contact_us_6 .map-part {
	  width: 100%;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	}
  
	.contact_us_6 .container-block.form-wrapper {
	  margin-top: 0px;
	  margin-right: 0px;
	  margin-bottom: 0px;
	  margin-left: 0px;
	}
  
	.contact_us_6 .mob-text {
	  display: block;
	}
  
	.contact_us_6 .form-box {
	  margin-top: 200px;
	  margin-right: 60px;
	  margin-bottom: 40px;
	  margin-left: 0px;
	}
  
	.contact_us_6 i {
	  margin-top: 0px;
	  margin-right: 0px;
	  margin-bottom: 0px;
	  margin-left: 0px;
	  display: flex;
	  justify-content: space-evenly;
	}
  
	.contact_us_6 .social-media-links .mob {
	  justify-content: space-evenly;
	  height: max-content;
	  overflow: visible;
	}
  
	.contact_us_6 .responsive-cell-block.wk-desk-7.wk-ipadp-12.wk-tab-12.wk-mobile-12 {
	  text-align: center;
	  display: flex;
	  justify-content: flex-end;
	  align-items: center;
	  flex-direction: row;
	}
  
	.contact_us_6 .text-blk.contactus-subhead {
	  display: block;
	}
  
	.contact_us_6 .mob-text {
	  text-align: center;
	  margin-top: 0px;
	  margin-right: 0px;
	  margin-bottom: 0px;
	  margin-left: 0px;
	}
  
	.contact_us_6 .responsive-container-block.container {
	  flex-wrap: wrap;
	}
  
	.contact_us_6 .form-box {
	  margin-top: 200px;
	  margin-right: 0px;
	  margin-bottom: 40px;
	  margin-left: 0px;
	}
  }
  
  @media (max-width: 768px) {
	.contact_us_6 .submit-btn {
	  width: 100%;
	}
  
	.contact_us_6 .input {
	  width: 100%;
	}
  
	.contact_us_6 .textinput {
	  width: 100%;
	}
  
	.contact_us_6 .container-block.form-wrapper {
	  margin-top: 80px;
	  margin-right: 0px;
	  margin-bottom: 0px;
	  margin-left: 0px;
	}
  
	.contact_us_6 .text-blk.input-title {
	  padding-top: 0px;
	  padding-right: 0px;
	  padding-bottom: 0px;
	  padding-left: 0px;
	}
  
	.contact_us_6 .form-box {
	  padding-top: 0px;
	  padding-right: 20px;
	  padding-bottom: 0px;
	  padding-left: 20px;
	}
  
	.contact_us_6 .container-block.form-wrapper {
	  padding-top: 50px;
	  padding-right: 15px;
	  padding-bottom: 50px;
	  padding-left: 15px;
	}
  
	.contact_us_6 .mob-text {
	  display: block;
	}
  
	.contact_us_6 .responsive-container-block.container {
	  padding-top: 0px;
	  padding-right: 0px;
	  padding-bottom: 0px;
	  padding-left: 0px;
	}
  
	.contact_us_6 .form-box {
	  margin-top: 200px;
	  margin-right: 0px;
	  margin-bottom: 0px;
	  margin-left: 0px;
	}
  
	.contact_us_6 .container-block.form-wrapper {
	  margin-top: 0px;
	  margin-right: 0px;
	  margin-bottom: 0px;
	  margin-left: 0px;
	}
  
	.contact_us_6 .form-box {
	  margin-top: 220px;
	  margin-right: 0px;
	  margin-bottom: 0px;
	  margin-left: 0px;
	}
  
	.contact_us_6 .form-box {
	  margin-top: 220px;
	  margin-right: 0px;
	  margin-bottom: 50px;
	  margin-left: 0px;
	}
  
	.contact_us_6 .text-blk.contactus-head {
	  font-size: 32px;
	  line-height: 40px;
	}
  }
  
  @media (max-width: 500px) {
	.contact_us_6 .container-block.form-wrapper {
	  padding-top: 50px;
	  padding-right: 15px;
	  padding-bottom: 50px;
	  padding-left: 15px;
	}
  
	.contact_us_6 .container-block.form-wrapper {
	  margin-top: 60px;
	  margin-right: 0px;
	  margin-bottom: 0px;
	  margin-left: 0px;
	}
  
	.contact_us_6 .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6 {
	  margin-top: 0px;
	  margin-right: 0px;
	  margin-bottom: 15px;
	  margin-left: 0px;
	}
  
	.contact_us_6 .responsive-container-block {
	  margin-top: 0px;
	  margin-right: 0px;
	  margin-bottom: 35px;
	  margin-left: 0px;
	}
  
	.contact_us_6 .text-blk.input-title {
	  font-size: 12px;
	}
  
	.contact_us_6 .text-blk.contactus-head {
	  font-size: 26px;
	  line-height: 35px;
	}
  
	.contact_us_6 .input {
	  height: 45px;
	}
  }

  @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

body {
  margin: 0;
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}


/*======================================================================================================================*/
@media only screen and (max-width: 1200px){
	.menu-button{
        display: block;
    }

	.topbar-details {
		visibility: hidden;
	}

	nav {
		display: none;
	}

	h1, h2, h3, h4, h5, h6 {
		font-size: 1rem;
	}

	.resources-container h3 {
		text-align: center;
	}

	.centerContent {
		display: flex;
		flex-wrap: wrap;
		word-wrap: break-word;
	}

	.rightArrow {
		transform: rotate(90deg);
		margin: 50px 0;
	}

	.banner h1 {
		text-align: center;
		margin: auto;
		left: 0%;
		top: 50%;
		transform: translate(0, -50%);
	}
}

@media only screen and (max-width: 500px){
	.wrap {
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		min-width: 300px; 
		width: 85vmin;
		height: max-content;
		margin: 2rem auto;
		transition: 0.3s ease-in-out;
		position: relative;
		overflow: hidden;
	}
	
	.overlay {
		position: relative;
		display: flex;
		flex-direction: column;
		width: 100%;
		height: 500px;
		padding: 1rem;
		background: var(--green);
		transition: 0.4s ease-in-out;
		z-index: 1;
	}
	
	.overlay button {
		display: block;
		width: max-content;
		font-size: small;
		
	}

	.overlay-content {
		width: 100%;
		height: 150px;
	}
	.image-content {
		position: relative;
		display: block;
		bottom: 0;
		right: 0;
		left: 0;
		width: 100%;
		height: 300px;
		overflow-y: hidden;
		transition: 0.3s ease-in-out;
		/* border: 1px solid green; */
	}
	
	.image-content::before {
		position: relative;
	  }
	
	.dots {
		bottom: 0.5rem;
	}

	.text {
		width: 100%;
	}
	
	.wrap:hover .overlay {
		transform: translateX(-120vmin);
	}
	
	table {
		position: relative;
		left: -10px;
		width: 100%;
		border-collapse: collapse;
		margin: 10px 0;
		font-size: 8px;
		overflow: visible;
	
	}
	
	th, td {
		padding: 2px;

	}
	
	th {
		background-color: #f2f2f2;
		font-weight:500;
		font-size: xx-small;
	}
	
	.download-button {
		display: flex;
		justify-content: space-around;
	}

	.hero div {
		width: 80%;
	}

	.hero div h2, h1 {
		font-size: 25px;
	}

	.open {
		transform: translateX(-120vmin);
	}
}
