body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f0f0f;
  color: white;
}

header {
  text-align: center;
  padding: 40px 20px;
}

header h1 {
  margin: 0;
  font-size: 32px;
}

header p {
  opacity: 0.7;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 20px 40px 60px;
}

.card {
  background: #1b1b1b;
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.card h3 {
  margin: 10px 0;
}

.img-comp-container {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  user-select: none;
}

.img-comp-img {
  position: absolute;
  width: 100%;
  height: 100%;
  
}

.img-comp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

.img-comp-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: inset(0 50% 0 0);
}

/* SLIDER */
.img-comp-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #00d4ff;
  cursor: ew-resize;
  z-index: 10;
}

.img-comp-slider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  background: #00d4ff;
  border-radius: 50%;
  border: 2px solid white;
}
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.desc {
  margin-top: 10px;
  padding: 10px;
  background: #111;
  border-radius: 10px;
}

.desc h4 {
  margin: 0 0 8px;
  font-size: 14px;
  color: #00d4ff;
}

.desc p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.85;
}

/* MOBILE */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600);	

h1 {
  color: #00d4ff;
  text-align: center;
  font-weight: 300;
}

#slider {
  position: relative;
  overflow: hidden;
  margin: 20px auto 0 auto;
  border-radius: 4px;
}

#slider ul {
  position: relative;
  margin: 0;
  padding: 0;
  height: 200px;
  list-style: none;
}

#slider ul li {
  position: relative;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 500px;
  height: 500px;
  background: #ccc;
  text-align: center;
  line-height: 300px;
}

a.control_prev, a.control_next {
  position: absolute;
  top: 50%;
  z-index: 999;
  display: block;
  padding: 4% 3%;
  width: auto;
  height: auto;
  background: #2a2a2a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  opacity: 0.8;
  cursor: pointer;
}

a.control_prev:hover, a.control_next:hover {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
}

a.control_prev {
  border-radius: 0 2px 2px 0;
}

a.control_next {
  right: 0;
  border-radius: 2px 0 0 2px;
}

.slider_option {
  position: relative;
  margin: 10px auto;
  width: 160px;
  font-size: 18px;
}

#slider ul li img {

   width: 100%;
   height: 100%;
   object-fit: cover;

}