@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Text&display=swap');
html{
  scroll-behavior: smooth;
}

body{
  font-family: 'Red Hat Text', sans-serif;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  display: none;
}

a:hover {
  text-decoration: none;
}
/*NavBar*/
.bg-nav{
  background-color: white;
}
.navbar-brand{
  margin-right:25px;
  margin-left:25px;
}
.nav-link{
  font-size: 20px;
  font-weight:600;
}
@media screen and (max-width: 575px){
  .navbar-brand{
    margin-right:5px;
    margin-left:-10px;
  }
}
#hamburger {
  cursor: pointer;
  width:24px;
  height:24px;
}

.bar {
  display: block;
  border-radius:5rem;
  width:100%;
  height:18%;
  margin-top:22%;
  
  background: #f5821f;
  
  transition:0.25s;
  -webkit-transition:0.25s;
  
-webkit-user-select: none;
  -moz-user-select: none;    
  -ms-user-select: none;      
  user-select: none;          
}

.bar:nth-child(1) {
  position:relative;
  left:25%;
  width:75%;
}

.bar:nth-child(2) {
}

.bar:nth-child(3) {
  width:75%;
}

.animate .bar{
  margin-top:23%;
}
.animate .bar:nth-child(1) {
  width:100%;
  left:0;
  transform:translateY(9.6px) rotate(135deg);
}

.animate .bar:nth-child(2) {
  opacity: 0;
}

.animate .bar:nth-child(3) {
  width:100%;
  transform:translateY(-9.6px) rotate(-135deg);
}
.navbar-toggler{
  border: none;
}
.navbar-light .navbar-toggler {
  border: none;
}
button {
  border: none;
}
button:focus {
    outline: none;
}

* {
	box-sizing: border-box;
}

body {
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
	margin: 0;
}

body::-webkit-scrollbar {
	display: none;
}

.productbox{
	margin: 20px;
	border-radius: 28px;
	background: white;
}

.colDiv{
	margin-top: 5px;
	margin-bottom: 5px;
}



/* The grid: Four equal columns that floats next to each other */
.column2 {
	float: left;
	width: 25%;
	padding: 10px;
}

/* Style the images inside the grid */
.column2 img {
	opacity: 0.8; 
	cursor: pointer; 
}

.column2 img:hover {
	opacity: 1;
}

/* Clear floats after the columns */
.row2:after {
	content: "";
	display: table;
	clear: both;
}

/* The expanding image container */
.container2 {
	position: relative;
	margin: 10px;
}

/* Expanding image text */
#imgtext {
	position: absolute;
	bottom: 5px;
	left: 5px;
	color: white;
	font-size: 20px;
}

#expandedImg{
	width: 100%;
}

.bottomImg{
	width: 100%;
}

.productLink{
	position: absolute;
	top: 50%;
	left: 90%;
	display: none;
}

.enquireLink{
	color: #fff;
	/*border-radius: 50px;*/
	background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
	min-width: 175px;
	font-size: 1.2rem;
	padding: 1rem;
	margin-left: 1rem;
	text-decoration: none;
}

.ProductDescription{
	max-width: 100%;
	min-width: 100%;
	margin-top: 35px;
	display: inline-block;
}

.columns{
	border: 1px solid silver;
	padding: 1rem;
	padding-left: 2rem;
	width: 100%;
}

@media (min-width: 1520px){
	.productLink{
		display: inline-block;
	}
	.ProductDescription{
		max-width: 80%;
		min-width: 80%;
	}
}

.topHeading{
	margin-top: 35px;
}

.ProductName{
	margin-top: 35px;
	display: block;
}

/*Card*/
.content-wrapper {
  margin: 0 auto;
  max-width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: left;
  padding-bottom: 0.5rem;
}

.news-card {
  border: 0px solid aqua;
  margin: 0.5rem;
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 250px;
  max-width: 100%;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}

@media (max-width: 1180px){
	.news-card{
	  min-width: 200px;
	}
}

.sizesOption{
	max-width: 400px;
	background-color: blue;
	display: block;
}

#firstLabel{
	cursor: pointer;
	min-width: 48%;
	background-color: lightgreen;
	display: inline-block;
	float: left;
	padding: 0.5rem;
	text-align: center;
}
#secondLabel{
	cursor: pointer;
	min-width: 48%;
	background-color: lightgray;
	display: inline-block;
	float: right;
	padding: 0.5rem;
	text-align: center;
}

svg{
	margin-top: -200px;
}

/*Footer*/
.footer {
  /*padding: 10px 0 0 0;*/
  background-color: #192531;
  color: #ffffff; 
  margin-top: -10px;
}
.footer > .container {
  padding-bottom: 3rem;
  padding-top: 1rem;
  max-width: 90%;
}
.footer .footer-item {
  margin-top: 10px;
  margin-bottom: 10px;
}
.footer .footer-item .footer-title {
  font-size: 24px;
  font-weight: 600;
  padding: 5px 0; 
}
.footer .footer-item .footer-title:after {
  content: '';
  display: block;
  width: 35px;
  /*border-bottom: 1px solid #f5821f;*/
  margin-top: 10px;
}
.footer .footer-item .footer-sosmed {
  margin-top: 10px;
  display: inline-block;
}
.footer .footer-item .footer-sosmed a .item {
  color: #ffffff;
  display: table-cell;
  vertical-align: middle;
  margin: 0 14px;
  width: 40px;
  height: 40px;
  text-align: center;
  background-color: #1C222A; }
.footer .footer-item .footer-sosmed a .item:hover {
  /*background-color: #f5821f;*/
  background: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
}
.footer .footer-item .footer-sosmed a .item .fa {
  font-size: 16px;
}
.footer .footer-item .list {
  margin: 0;
  padding: 0;
}
.footer .footer-item .list li {
  list-style: none;
  margin: 14px 0;
}
.footer .footer-item .list li a {
  color: #ced8e3;
}
.footer .footer-item .list li a:hover {
   color: #fff;
}
.footer .fcopy {
  padding: 10px 0;
  color: #999999;
  font-size: 14px;
  background-color: #1C222A;
}
@media screen and (max-width: 767px){
    svg{
      display:none;
  }
}
.ftex{
  text-align: center;
}