@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
* {
    margin: 0;
    padding: 0;
}
.container {
    max-width: 100%;
    width:100%;
}
.custom-slider {
    display: flex;
    align-items: center;
}
.content-tabs {
    width: 50%;
    padding: 0px 30px 0px 130px;
}
.tab {
    margin-bottom: 50px;
}
.tab h3 {
    color: #B48437;
    font-size: 42px;
    line-height: 48px;
    border-left: 6px solid #B48437 !important;
    padding-left: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}
.description {
    display: none;
    font-size: 18px;
    margin-top: 10px;
    line-height: 22px;
    color: #646263;
    font-family: 'Poppins';
    margin-bottom: 0px !important;
}
.tab.active .description {
    display: block;
    animation: fadeUp 0.6s ease forwards;
}
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.image-slider .slide.active img {
    animation: fadeIn 1s ease forwards;
}
.slide img {
    object-fit: fill;
    max-width: 100%;
    width: 100%;
    height: 800px !important;
    display: block;    
}
.image-slider {
    width: 50%;
    position: relative;
}
.image-slider .slide {
    display: none;
    position: relative;
}
.image-slider .slide.active {
    display: block;
}
.index {
    position: absolute;
    bottom: 37px;
    right: 20px;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}
.image-slider .slide.active .index {
    font-size: 45px;
}
span.inner-span {
    position: absolute;
    left: -45px;
    top: -15px;
}
.slide{
    background-color: #646263 !important;
}