

.tab_div {
  width: 100%;
  transform: translateZ(0);
}

.tabs_menu {
  /*   background-color:blue; */
  padding-top: 1%;
  width: 20%;
  float: left;
}

ul.tabs {
  padding: 0;
}

#tab1,
#tab2,
#tab3,
#tab4 {
  padding-top: 0%;
  padding-bottom: 20%;
  padding-left: 5%;
  padding-right: 5%;
  width: 100%;
}

ul.tabs li {
  list-style-type: none;
  font-family: Quicksand;
  border-right: 1px solid white;
  font-size: 15px;
  color: white;
  /*   transition: background-color 0.2s ease; */
}


/* ul.tabs li:hover {
  border-right: 2px solid #e1386c;
  background-color: rgba( 255, 155, 180, .9);
  font-weight: bold;
} */

#tab1_content,
#tab2_content,
#tab3_content,
#tab4_content {
  /*   background-color:red; */
  float: right;
  width: 70%;
  height: auto;
  padding-top: 5%;
}

p {
  font-family: poppins;
  font-size: 15px;
  color: rgb(0, 0, 0);
}


/* hover effect */

ul.tabs li {
  position: relative;
  padding: 5px 15px 15px 15px;
  cursor: pointer;
  background: #17171e;
  color: white;
  z-index: 0;
  margin-right: -60px;
}

ul.tabs li:before {
  content: " ";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e9212e;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .5s ease-out;
}

ul.tabs li:hover:before {
  transform: scaleX(1);
}



@media only screen and (max-width: 600px) {
  .tabs_menu {
  /* background-color: blue; */
  padding-top: 1%;
  width: 82%;
  float: left;
}
}