#Products{
  margin-bottom: 75px;
  /* background-color: #a4ce48; */
}
#Products h1{
  text-align: center;
  padding: 20px 0 20px 0;
  font-size: 36pt;
  color: #862B0D;
}
#cards{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* margin-top: 50px; */
  position: relative;
}

#cards .card{
  width: 315px;
  height: 560px;
  border-radius: 10px;
  background-color: whitesmoke;
  margin: 20px;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: 0.25s;
}
#cards .card:hover{
  transform: scale(1.1);
}
#cards .card .product-icon{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-sizing: border-box;
  position: absolute;
  top: 125px;
  left: 108px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: -40px 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#cards .card .product-banner{
  position: relative;
  padding-bottom: 56.25%; /* Perbandingan aspek 16:9 untuk video */
  overflow: hidden;
}
#cards .card .product-banner iframe{
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#cards .card .product-description h1{
  margin: 0;
  padding: 0;
  font-family: 'Mansalva';
  font-size: 22pt;
  margin-top: 2em;
}

#cards .card .scratch-jr{
  background-image: url(../images/icon/scratchjr.png);
  border-bottom: 5px solid darkorange;
  border-right: 5px solid darkorange;
}
#cards .card .scratch{
  background-image: url(../images/icon/scratch.png);
  border-bottom: 5px solid darkorange;
  border-right: 5px solid darkorange;
}
#cards .card .ai{
  background-image: url(../images/icon/ai.png );
  border-bottom: 5px solid black;
  border-right: 5px solid black;
}
#cards .card .mit{
  background-image: url(../images//icon/mit.png);
  border-bottom: 5px solid #92267c;
  border-right: 5px solid #a4ce48;
}
#cards .card .python{
  background-image: url(../images/icon/python.png);
  border-bottom: 5px solid #326c9c;
  border-right: 5px solid #ffd742;
}
#cards .card .web{
  background-image: url(../images/icon/web.png);
  border-bottom: 5px solid #e45128;
  border-right: 5px solid #0873b9;
}
#cards .card .arduino{
  background-image: url(../images/icon/arduino.png);
  border-bottom: 5px solid #00979d;
  border-right: 5px solid #00979d;
}

#cards .card .product-description .tag-container{
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 5px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
#cards .card .product-description .tag-container small{
  padding: 0 5px;
  box-sizing: border-box;
  font-size: 8pt;
  color: black;
  /* font-weight: bold; */
}

#cards .card .product-description .tag-container .age{
  background-color: pink;
}
#cards .card .product-description .tag-container .code-base{
  background-color: lightgreen;
}
#cards .card .product-description .tag-container .end-product1{
  background-color: lightblue;
}
#cards .card .product-description .tag-container .end-product2{
  background-color: thistle;
}
#cards .card .product-description .tag-container .end-product3{
  background-color: mediumturquoise;
}


#cards .card p{
  width: 90%;
  margin: 2em auto 0 auto;
  font-size: 11pt;
  text-align: center;
}
#cards .card button{
  width: 200px;
  margin: auto;
  position: absolute;
  bottom: 20px;
  right: calc(50% - 100px);
  font-size: 14pt;
}


.button-62 {
  background: linear-gradient(to bottom right, #EF4765, #FF9A5A);
  border: 0;
  border-radius: 12px;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system,system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-size: 12px;
  font-weight: 500;
  outline: transparent;
  padding: 0.3rem;
  text-align: center;
  text-decoration: none;
  transition: box-shadow .2s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  width: 100px;
}

.button-62:not([disabled]):focus {
  box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem rgba(239, 71, 101, 0.5), .125rem .125rem 1rem rgba(255, 154, 90, 0.5);
}

.button-62:not([disabled]):hover {
  box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem rgba(239, 71, 101, 0.5), .125rem .125rem 1rem rgba(255, 154, 90, 0.5);
}



@media only screen and (max-width: 900px){
  #Products h1{
    font-size: 24pt;
  }
}