
:root{
	--black: #1B1722;
	--white: #F0F0F0;
	--box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

*{
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	margin: 0; padding: 0;
	box-sizing: border-box;
	outline: none;
	border: none;
	text-decoration: none;
	text-transform: capitalize;
	transition: .2s linear;
}

body{
	font-family: 'Quicksand', sans-serif;
	background-color: #fff;
}

.navbar{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.4rem 7%;
	background-color: rgba(206, 206, 206, 0.8);
	border-bottom: 1px solid #90c4c4;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

.navbar .navbar-logo{
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	padding-right: 100px;
	color: black;
}

.navbar img{
	width: 9rem;
	margin-left: -4rem;
	margin-bottom: 2rem -2rem;
}


.navbar .navbar-nav a{
	color: #000;
	display: inline-block;
	font-size: 1rem; 
	margin: 0 1rem;
}

.navbar .navbar-nav a:hover{
	color: burlywood;
}

.navbar .navbar-nav a::after{
	content: '';
	display: block;
	padding-bottom: 0.5rem;
	border-bottom: 0.1rem var(--black);
	transform: scaleX(0);
	transition: 0.2s linear;
}

.navbar navbar-nav a:hover::after{
	transform: scaleX(0.5);
}	

.navbar #toggler{
	display: none;
}

.navbar .fa-bars{
	font-size: 3rem;
	color: #333;
	border-radius: .5rem;
	padding: .5rem 1.5rem;
	cursor: pointer;
	border: .1rem solid rgba(0, 0, o, .3);
	display: none;
}

.hero{
	min-height: 100vh;
	display: flex;
	align-items: center;
	background-image: url(../garmen/img/44.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}



.hero .content{
	padding: 1.4rem 7%;
	max-width: 60rem;
}

.hero .content h3{
	font-size: 2.5em;
	color: black;
	text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
	line-height: 1.2;
}

.hero .content p{
	font-size: 1.6rem;
	margin-top: 1rem;
	line-height: 1.4;
	text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}

.hero .content .cta{
	margin-top: 1rem;
	display: inline-block;
	padding: 1rem 3rem;
	font-size: 1.4rem;
	color: #fff;
	background-color: #272727;
	border-radius: 0.5rem;
}

.hero .content .cta:hover{
	color: burlywood;
}

.about{
	padding: 7rem 7% 1.4rem;
}

.about h2{
	text-align: center;
	font-size: 2.6rem;
	margin-bottom: 3rem;
}

h2{
	text-align: center;
	font-size: 2.6rem;
}

h2 span{
	color: burlywood;
}


.about .roa{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
	gap: 2rem;
	margin-top: 1rem;
}
.about .roa .rows{
	width: 100%;
	height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}   

.about .roa .rows .slider1{
    position: relative;
    width: 400px;
    height: 700px;
    transform-style: preserve-3d;
    animation: rotate 30s linear infinite;
}

@keyframes rotate{
    0%{
        transform: perspective(1000px) rotateY(0deg);
    }

    100%{
        transform: perspective(1000px) rotateY(360deg);
    }
}

.about .roa .rows span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--i)*20deg)) translateZ(1000px);
}

.about .roa .rows span img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    transition: 2s;
}

.slider1 span:hover img{
    transform: translateY(-50px) scale(1.2);
}

.about .roa .content{
	text-align: justify;
	width: 85%;
	font-size: 1.4rem;
	line-height: 5%;
	margin-top: 1rem;
	text-shadow: 2px 2px 4px rgba(1, 1, 3, 0.5);
}

.about .roa .content h3{
	font-size: 1.8rem;
	margin-bottom: 1rem;
}

.about .roa .content p{
	margin-bottom: 0.8rem;
	font-size: 1.5rem;
	font-weight: 100;
	line-height: 1.6;
}

.about .content .ttt{
	display: inline-block;
	margin-top: 1rem;
	display: inline-block;
	padding: 1rem 1rem;
	font-size: 1.4rem;
	color: #fff;
	background-color: #272727;
	border-radius: 0.5rem;
}

.about .product-icons .ttt:hover{
	color: burlywood;
}

.kosong{
	padding: 5rem;
}

.product{
	padding: 2rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.product .row{
	margin-right: 20px;
	margin-left: 20px;
	margin-top: 20px;
}

.product .product-icons{
	display: flex;
	gap: 0.5rem;
}


.product .product-card{
	width: 100%;
	text-align: center;
	border: 2px solid  rgba(180, 180, 180, 0.8);
	border-radius: 30rem;
	padding: 1rem;
}

.product .product-card:hover{
	transition-duration: 700ms;
    box-shadow: 5px 5px rgb(139, 136, 136);
}

.product .product-img{
	padding: 1rem 0;
}

.product .product-img img{
	align-items: center;
	width: 70%;
	height: 70%;
}

.product .product-content h3{
	font-size: 1rem;
	color: #000;
}

.footer .box-container{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-top: 100px;
}

.footer .box-container .box{
  flex: 1 1 25rem;
}

.footer .box-container .box h3{
  color: #333;
  font-size: 2rem;
  padding: 1rem 3rem;
}

.footer .box-container .box a {
  display: block;
  color: #666;
  font-size: 1rem;
  padding: 1rem 3.5rem;
}

.footer .box-container .box a:hover{
  color: var(--blue);
  text-decoration: underline;
}

.footer .box-container .box-contact{
	display: flex;
}

.footer .box-container .box-contact h3{
  color: #333;
  font-size: 2rem;
  padding: 1rem 3rem;
}

.footer .box-container .box-contact a {
  display: block;
  color: #666;
  font-size: 1rem;
  padding: 1rem 3.5rem;
}

.footer .box-container .box-contact a:hover{
  color: var(--blue);
  text-decoration: underline;
}


.cp .footer {
	background-color: #fff;
	height: 10%;
	text-align: center;
	padding: 1.5rem;
	margin-top: 1.5rem;
	padding-top: 2rem;
	font-size: 1rem;
	color: #000;
	border-top: 1px solid  rgba(0, 0, 0, 0.1);
}

















/* RESPONSIVE */




@media (max-width: 1366px){
	html{
		font-size: 75%;
	}
}

@media screen and (max-width: 980px){
	html{
		font-size: 85%;
	}
	.navbar img{
		width: 6rem;
		margin-left: -2rem;
	}

	.navbar .navbar-logo{
		font-size: 1.4rem;
		font-weight: 700;
		margin-left: -3rem;
		color: black;
	}
}

@media screen and (max-width:890px){
	html{
		font-size: 65%;
	}

	.navbar .fa-bars{
		display: block;
	}


	.navbar .navbar-nav{
		position: absolute;
		top: 100%; left: 0; right: 0;
		background-color: var(--white);
		border-top: .1rem solid rgba(0, 0, 0,.1);
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	}

	.navbar #toggler:checked ~ .navbar-nav{
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}

	.navbar .navbar-nav a{
		margin: 1.5rem;
		padding: 1.5rem;
		background: #fff;
		border: .1rem solid rgba(0, 0, 0,.1);
		display: block;
	}

	.navbar .navbar-nav a::after{
		transform-origin: 0 0;
	}

	.navbar .navbar-nav a:hover::after{
		transform: scaleX(0.2);
	}

	.navbar img{
		width: 6rem;
		margin-left: -2rem;
	}

	.navbar .navbar-logo{
		font-size: 1.5rem;
		font-weight: 700;
		margin-left: -4rem;
		color: black;
	}
}

@media (max-width: 758px){
	html{
		font-size: 62.5%;
	}

	.navbar .fa-bars{
		display: block;
	}

	.navbar .navbar-nav{
		position: absolute;
		top: 100%; left: 0; right: 0;
		background-color: var(--white);
		border-top: .1rem solid rgba(0, 0, 0,.1);
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	}

	.navbar #toggler:checked ~ .navbar-nav{
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}

	.navbar .navbar-nav a{
		margin: 1.5rem;
		padding: 1.5rem;
		background: #fff;
		border: .1rem solid rgba(0, 0, 0,.1);
		display: block;
	}

	.navbar .navbar-nav a::after{
		transform-origin: 0 0;
	}

	.navbar .navbar-nav a:hover::after{
		transform: scaleX(0.2);
	}

	.about .roa{
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
		gap: 2rem;
		margin-top: 1rem;
	}
	.about .roa .rows{
		width: 100%;
		height: 50vh;
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
	}   
	


}

@media screen and (max-width: 450px){
	.slideshow-container {
		   max-width: 300px;
		   position: relative;
		   margin: auto;
   }

   .navbar img{
	width: 6rem;
	margin-left: -2rem;
}

.navbar .navbar-logo{
	font-size: 1.3rem;
	font-weight: 700;
	margin-left: -1.6rem;
	color: black;
}
}


@media screen and (max-width: 393px){
	html{
		font-size: 50%;
	}
	.slideshow-container {
		max-width: 200px;
		position: relative;
		margin: auto;
	}

	.navbar img{
		width: 6rem;
		margin-left: -2rem;
	}

	.navbar .navbar-logo{
		font-size: 1.5rem;
		font-weight: 700;
		margin-left: -1rem;
		color: black;
	}

}

@media screen and (max-width: 290px){
	html{
		font-size: 45%;
	}

	.navbar img{
		width: 6rem;
		margin-left: -2rem;
	}

	.navbar .navbar-logo{
		font-size: 1.3rem;
		font-weight: 700;
		margin-left: -1rem;
		color: black;
	}
}