/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Mulish:ital,wght@0,700;1,300&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
  font-family: 'Poppins', sans-serif; 
  background: #f6eff6;
}

a{
  
  color: black;
}


.tabs__content h4 a{
  position: absolute;
  color: black;
  left: 93%;
}

.tabs__content h4 a:hover{
  background: #b77fb7;
  border-radius: 5px;

}

.tabs__content h6 a{
  font-size: 16px;
  position: absolute;
  top: 15px;
  color: black;
  
}

.tabs__content h6 a:hover{
  background: #b77fb7;
  border-radius: 5px;

}

.tabs__content h7 a{
  font-size: 16px;
  font-weight: 500;
  position: absolute;
  top: 40px;
  color: black;
}

.tabs__content h7 a:hover{
  background: #b77fb7;
  border-radius: 5px;

}

.tabs {
  display: flex;
  flex-direction: column;
  max-width: 95%;
  width: 100%;
}

.tabs__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ecc9ec;
  box-shadow: 0px 4px 5px rgba(0,0,0,.1);
  border-radius: 30px;
  padding: 7px 5px;
  margin-bottom: 40px;
}

.tabs__toggle {
  margin: 0 5px;
  padding: 7px 25px;
  background: #ecc9ec;
  border-radius: 20px;
  cursor: pointer;
  transition: .5s;
}

.tabs__name {
  font-weight: 500;
  font-size: 13px;
  color: #484848;
}

.tabs__body {
  background: #ecc9ec;
  box-shadow: 0px 4px 5px rgba(0,0,0,.1);
  border-radius: 25px;
  padding: 30px;
  position: relative;
  top: -10px;
}

.tabs__title {
  font-weight: 600;
  font-size: 44px;
  color: black;
  font-family: 'Lobster', cursive;
  margin-bottom: 30px;
  text-align: center;
}

.tabs__title img {
  width: 10%;
  border-radius: 10px;
}

.tabs__tit {
  position: relative;
  top: 70px;
  font-weight: 600;
  font-size: 44px;
  color: black;
  font-family: 'Lobster', cursive;
  margin-bottom: 20px;
  text-align: center;
}

.am,  
.li,    
.vd,
.el,
.po,
.en,
.ene,
.car,
.rit,
.qui,
.me{
  font-weight: 500;
  font-size: 18px;
}

.tabs__text {
  font-size: 17px;
  line-height: 1.8;
  color: ;
  text-align: justify;
}

.tabs__content {
  display: none;
}

.tabs__toggle.is-active {
  background: #d3b1d3;
}

.tabs__toggle.is-active .tabs__name {
  color: #fff;
}

.tabs__content.is-active {
  display: block;
}