
svg {
    width: 100%;
    height: 100vh;
}
.tabs {
    /* position: relative; */
    /* padding: 20px;   */
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.76);
    /* width: 80%; */
    height: 500px;
    overflow: hidden;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.281);
    /* border: 1px solid rgba(187, 187, 255, 0.322); */
    /* border-radius: 20px; */
    
}

.tabs .tab-header {
    padding: 1rem;
    display: flex;  
    justify-content: space-around; 
}

.tabs .tab-header img {
    width: 5rem;
    vertical-align:middle;
    padding-bottom: .5rem;
}

.tabs .tab-header > div {
    display: flex;
    color: rgba(0, 0, 0, 0.513);
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    /* position: relative; */
    width: auto;
    text-align: center;
    padding: 1rem;
    z-index: 1;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
}

.tabs .tab-header > div.active {
    /* border-radius: 40px; */
    color: #000000;
    border-bottom: 4px solid #fec108;
    /* transform: scale(.95); */
    transition: transform .3s ease-out;
}

.tabs .tab-body {
    position: relative;
    padding: 1rem;
    height: calc(100%-50px);
}

.tabs .tab-body h1 {
    font-size: 1.5rem;
    text-align: center;
    color: rgb(0, 0, 0);
    padding-bottom: 20px;
}

.tabs .tab-body p {
    font-size: 1rem;
    text-align: left;
    color: #000000;
}

.tabs .tab-body div {
    opacity: 0;
    position: absolute;
    top: 20rem;
    left: 10%;
    transition: all .3s ease-in;
}

.tabs .tab-body div.active {
    opacity: 1;
    top: 2rem;
    left: 10%;
}

.description {
    /* width: 100%; */
    display: flex;
    padding: 1rem;
    align-items: center;
    gap: 2rem;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.281);
}

@media (max-width: 768px) {
    .tab-header div img {display: none;}

  }

  @media (max-width: 458px) {
    .tab-header {font-size: .8em;}

  }