

.svg_container {
  transition: all 0.2s ease-in-out;
  animation: minorJiggle 2.5s ease-in-out 0.5s infinite alternate;
}

@keyframes minorJiggle {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(20deg);
  }
}
.tabs_parent_container {
  color: #9e9e9e;
  max-width: 1400px;
  margin: auto;

}
.tabs_parent_container h3 {
  margin: 0;
  margin-bottom: 1rem;
}
.tabs_parent_container .tab_header {
  display: flex;
  width: 800px;
  margin:0 auto;
  margin-bottom: 1%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;

}
.tabs_parent_container .tab_header .tab_marker {

  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  transition: all 0.15s ease-in-out;
}
.tabs_parent_container .tab_header .tab {
  position: relative;
  flex-grow: 1;
  text-align: center;
}
.tabs_parent_container .tab_header input {
  position: absolute;
  left: 0;
  z-index: -1;
}
.tabs_parent_container .tab_header label {
  border: 1px solid #9e9e9e;
  display: block;
  padding:20px;
  background-color: #ffffff;
  cursor: pointer;
}
.tabs_parent_container .tab_header input:not(:checked) + label:hover {
  background-color: #1f74e6;
  color: #ffffff;
}
.tabs_parent_container .tab_header input:checked + label {
  background-color: #1f74e6;
  color: #ffffff;
}
.tabs_parent_container .tab_header .tab:nth-child(1) label {
  border-radius: 10px 0 0 10px;
}
.tabs_parent_container .tab_header .tab:nth-child(3) label {
  border-radius: 0 10px 10px 0;
}
.tabs_parent_container .tab_content {
  background-color: #ffffff;
    padding: 20px;
    color: #000000;
    line-height: 30px;
    font-size: 13px;
    border-radius: 20px;
    text-indent: 2em;
    width: 95%;
    margin: auto;
    display: none;
    box-shadow: 1px 2px 5px rgb(0 0 0 / 46%);
    position: relative;
    overflow: hidden;
}
.tabs_parent_container .tab_content.visible {
  display: block;
}
.tabs_parent_container .tab_content h3 {
  color: #555555;
  font-size: 3.5rem;
  position: absolute;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  left: 0;
  top: 0;
  margin-left: 1rem;
}