.container {
	display: grid;
	grid-template-columns: 4fr 6fr 1fr;
	grid-template-rows: auto auto auto;
}

.col {
	
}
.txtcont {
	display: grid;
	grid-template-columns: 1fr 1fr 	1fr;
	grid-template-rows: auto auto auto;
}
.txtcol {
	
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 25px;
  border-radius: 5px;
  background: #000000;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #FFFFFF;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #FFFFFF;
  cursor: pointer;
}

.a {
	font-family:"Times New Roman";
	font-size: 1rem;
}

.h2 {
	text-align: center;
}
