ul {
    list-style: none;
}

.tabs {
    width: 80%;
    height: 100px;
    margin: auto;
    margin-top: 50px;
    display: flex;
    align-items: center;
    /* background: #f7f3e9; */
    /* box-shadow: 10px 10px 19px #b7b8ba, -10px -10px 19px #cfd0d1; */
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 0;
    box-shadow: none;
    border: 1px solid #b3afaf;

}

.tabs li {
    background: #f7f3e9;
    /* box-shadow: 10px 10px 19px #b7b8ba, -10px -10px 19px #cfd0d1; */
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #262a2e;
    font-weight: 700;
   font-family: 'gilroy-regular';
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    cursor: pointer;
    border: 1px solid #e2d8c1;

}

.tabs li:hover {
    background: #f7f3e9;
    box-shadow: 10px 10px 19px #b7b8ba, -10px -10px 19px #cfd0d1;
    box-shadow: none;
    color: #ae715a;
    position: relative;
    z-index: 1;
    /* border-radius: 10px; */
    font-weight: 700;
    text-decoration: underline;

}

.active {
    background: #f7f3e9;
    /* box-shadow: 10px 10px 19px #b7b8ba, -10px -10px 19px #cfd0d1; */
    text-decoration: underline;
    box-shadow: none;
    color: #ae715a !important;
    position: relative;
    z-index: 1;
    font-weight: 600;
    /* border-radius: 10px; */
}

.contents {
    width: 80%;
    margin: auto;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.box {
    gap: 20px;
    /* background: linear-gradient(145deg, #1e2024, #23272b); */
    background: #f7f3e9;
    box-shadow: 3px 3px 6px #dcdcdc, -3px -3px 6px #e6e6e6;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 50px 30px;
    width: 100%;
    animation: moving 1s ease;
    -webkit-animation: moving 1s ease;
}

.box img {
    /* width: 50%; */
    width:30%;
    object-fit: contain;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.box h3 {
    color: #181818;
      font-family: 'gilroy-regular';
    font-size: 2rem;
    margin-bottom: 20px;
    padding-left: 25px;
}

.box p {
    color: #181818;
    /* opacity: .5; */
   font-family: 'gilroy-regular';
    font-size: 1rem;
}

.show {
    display: flex;
}

.hide {
    display: none;
}

@keyframes moving {
    from {
        transform: translateX(-50px);
        -webkit-transform: translateX(-50px);
        -moz-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
        -o-transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0px);
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .tabs {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }

    .tabs li {
        width: 100%; 
        height: 50px; 
        text-align: right; 
        display: flex; 
        justify-content: center;
        align-items: center; 
        box-sizing: border-box;
    }

    .show {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start; 
    }
    .box img{
        width: 60%;
        margin: auto;
    }
   
}

@media screen and (max-width:580px) {
    ol{
        padding-left: 10px;
    }
    .box img{
        width: 80%;
        margin: auto;
    }
    .box h3{
        padding-left: 0px;
        font-size: 1.5rem;
    }
}
