
.mywrapper {
  max-width: 50rem;
  width: 100%;
  margin: 0 auto;
}
.mytabs {
  position: relative;
  margin: 3rem 0;
  background: #e2e3e4;
  height: 14.75rem;
}
.mytabs::before,
.mytabs::after {
  content: "";
  display: table;
}t
.mytabs::after {
  clear: both;
}
.tab {
  float: right;
}
.tab-switch {
  display: none;
}
.tab-label {
  position: relative;
  display: block;
  line-height: 2.75em;
  height: 3em;
  padding: 0 1.618em;
  background: #ed1c24;
  border-right: 0.125rem solid #000000;
  color: #fff;
  cursor: pointer;
  top: 0;
  transition: all 0.25s;
}
.tab-label:hover {
  top: -0.25rem;
  transition: top 0.25s;
}
.tab-content {
  height: 12rem;
  position: absolute;
  z-index: 1;
  top: 2.75em;
  left: 0;
  padding: 1.618rem;
  color: #2c3e50;
  border-bottom: 0.25rem solid #e2e3e4;
  opacity: 0;
  transition: all 0.35s;
  width: -webkit-fill-available;
}
.tab-switch:checked + .tab-label {
  background: #034694;
  color: #10110f;
  border-bottom: 0;
  border-right: 0.125rem solid #fff;
  transition: all 0.35s;
  z-index: 1;
  top: -0.0625rem;
}
.tab-switch:checked + label + .tab-content {
  z-index: 2;
  opacity: 1;
  transition: all 0.35s;
}

.icons-wrapper {
  display: flex;
  justify-content: space-between; /* Adjust this property based on your preference */
}

.icon-item {
  text-align: center; /* Center-align the text and icon within each item */
  margin-bottom: 10px; /* Add some bottom margin for spacing between items */
}

.icon-item a {
  text-decoration: none; /* Remove underlines from links */
  color: #333; /* Set the color for the text */
  display: block; /* Make the link a block-level element */
}

.icon-item i {
  display: block; /* Ensure the icon is on its own line */
  margin-top: 5px; /* Add some top margin for spacing between text and icon */
}