

* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none;
  /* visibility: hidden;
        opacity: 1; */
}

body {
  font-family: "Overpass", sans-serif;
  line-height: 1.5;
  color: #333;
  background-image: url("https://www.cesped.org.pe/wp-content/uploads/2021/05/s0.jpg");
  background-size:     cover;                     
  background-repeat:   no-repeat;
  background-position: center center; 
}

p {
  margin-bottom: 1rem;
}

#wrapper {
 
  align-items: center;
  height: auto;
  max-width: 80rem;
  margin: 0 auto;
  
}

.tabs {
  width: 100%;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
}

.tab-control {
  display: inline-block;
  border-bottom: 2px solid transparent;
  font-size: 1.25rem;
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab-control:hover {
  color: #ed601e;
}

.tab-content {
  border-top: 1px solid #ed601e;
  padding: 1rem;
}

.tab-panel {
  display: none;
}

/* Magic style */
input[type="radio"]:checked + .tab-control {
  font-weight: 600;
  color: #ed601e;
  border-bottom-color:#ed601e;
}

#tab-1:checked ~ .tab-content > #tab-panel-1 {
  display: block;
}

#tab-2:checked ~ .tab-content > #tab-panel-2 {
  display: block;
}

#tab-3:checked ~ .tab-content > #tab-panel-3 {
  display: block;
}

.container-sm{
   background-color:white;
 
}
.container-sm h4{
  margin:auto;
  vertical-align:middle;
}


