.content-part3 {
    width: 100%;
    height: 900px;
    /* border: 5px solid red; */
    font-size: 2rem;
    position: relative;
    display: flex;
    gap: 20px;
    background-color: rgb(247, 247, 247);
    z-index: 0;
}

.tabinput {
    display: none;
}


.tabinput:checked + label + .tab-content {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.input-box {
    display: contents;

}

.bar-bg {
    width: calc(100% - 2*var(--main-block-padding));
    height: 60px;
    position: absolute;
    background-color: white;
    top: 10px;
    z-index: -1;
    border-radius: 6px;
}

.tab-label {
    font-size: 1rem;
    height: 60px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
    color: rgb(108, 108, 108);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.tabinput:checked + label {
    border-bottom: 2px solid black;
    color: rgb(7, 7, 7);
    
}

.first-label {
    margin-left: 40px;
}

.tab-content {
    width: calc(100% - 2*var(--main-block-padding));
    height: 600px;
    /* border: 2px solid green; */
    position: absolute;
    bottom: 200px;
    /* display: flex;
    justify-content: center; */
    background-color: white;
    opacity: 0;
    
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 80px;
}

.tab-content-left {
    height: 100%;
    width: 40%;
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tab-content-right {
    height: 100%;
    width: 60%;
    /* border: 2px solid red; */
    overflow: hidden;
}

.tab-content-right > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
    object-position: left;
}

.tab-content-left > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tab-content-left > div > span:nth-child(1) {
    font-size: 3rem;
    font-weight: 300;
    
}

.tab-content-left > div > span:nth-child(2) {
    font-size: 1rem;
    
}

.tab-content-left > div > span:nth-child(3) {
    font-size: 3rem;
    white-space: pre-line;
    font-weight: 500;
}

.tab-content-left > div > span:nth-child(4) {
    font-size: 1.2rem;
    
}

.tab-content-left > div:last-child{
    display: flex;
    flex-direction: row;
    
    
}

.tab-content-left > div:last-child > div {
   height: 40px;
   width: 100px;
   border: 1px solid black;
   border-radius: 4px;
}

.tab-content-left > div:last-child > div:first-child{
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-self: center;
    font-weight: 600;
}

.tab-content-left > div:last-child > div:last-child{
    font-size: 0.7rem;
    display: flex;
    gap: 10px;
    padding: 6px;
    justify-content: space-between;
    background-color: black;
    color: white;
} 

.tab-content-left > div:last-child > div:last-child > div:first-child {
    display: flex;
   flex-direction: column;
}

.tab-content-left > div:last-child > div:last-child > div:first-child > span:last-child {
    opacity: 0.3;
}

.tab-content-left > div:last-child > div:last-child > img {
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    filter: grayscale(100%);
    border-radius: 2px;
}

