.banner-header{
    width: 100%;
    position: relative;
    padding: 180px 0 75px;
    background:transparent;
}
.banner-header::after{
    content:"";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(37, 37, 37, 0.9) 0%, rgba(72, 79, 73, 0.3) 85.89%);
}
.video,
.banner-image{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    z-index: 1;
}
.banner-image{
    -webkit-transition: opacity 1s ease-out;
    transition: opacity 1s ease-out;
}
.banner-image.hidden{
    opacity: 0;
}
.video{
    z-index: 0;
}
.banner-header .container{
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items:flex-end;
}
h1{
    font-weight: 800;
    font-size: 52px;
    line-height: 120%;    
    color: #fff;
}
.banner-content{
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 630px;
}
.banner-prev-contet p{
    font-weight: 400;
    font-size: 18px;
    line-height: initial;
    color: #fff;
}
.tab-item{
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    height: 0; 
    overflow: hidden;
    width: 0;
}
.tab-item._active{
    opacity: 1;
    visibility: visible;
    transition: all .3s ease;
    height: auto; 
    overflow: hidden;
    width: auto;
}
.tab{
    width: 100%;
    margin: 60px 0;
}
.tabs-button-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.tab-button{
    border: 1px solid rgba(72, 79, 73, 0.2);
    border-radius: 20px;
    padding: 10px 50px;
    font-weight: 500;
    font-size: 14px;
    color: #111;
    transition: all .3s ease;
    cursor:pointer;
}
.tab-button:hover,
.tab-button._active{
    transition: all .3s ease;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
    color: #fff;
    background: #536a56;
}
.tab-item{
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.item-top-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items:flex-start;
    gap: 30px;
}
.tab-image{
    width: max-content;
    height: max-content;
  
}
.tabs-content-wrapper{
    width: 100%;
    margin: 115px 0 0 0 ;
}
.item-content-top h2{
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #111;
    line-height: initial;
}
.item-content-top p{
    font-weight: 400;
font-size: 14px;
line-height: 120%;
color: #111;
}
.item-content-top{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.tab-bottom-content p:first-of-type {
    margin: 0 0 20px 0;
}
.tab-bottom-content p:last-of-type {
    margin:20px 0 0  0;
}
.tab-bottom-content{
    backdrop-filter: blur(4px);
    background: #fff;
    border: 1px solid rgba(72, 79, 73, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    flex-direction: row;
    gap: 30px;
}
.tab-bottom-content ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50%;
}
.tab-bottom-content ul:first-of-type li:first-of-type strong{
    font-weight: 700;
    font-size: 16px;
    color: #111;
    font-family: "Inter", sans-serif;
}
.tab-bottom-content ul:last-of-type li:first-of-type,
.tab-bottom-content ul:first-of-type li:last-of-type {
    font-weight: 400;
    font-size: 16px;
    color: #111;
    padding-left: 15px;
    position: relative;
}
.tab-bottom-content ul:last-of-type li:first-of-type::after,
.tab-bottom-content ul:first-of-type li:last-of-type::after {
    content:"";
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    background:#536a56;
    border-radius:100%;
}
.tab-bottom-content ul:last-of-type li:last-of-type strong{
    font-weight: 700;
    font-size: 16px;
    color: #111;
    font-family: "Inter", sans-serif;
}
@media screen and (max-width: 1100px){
    .tab-image{
        width: 100%;
        max-width: 500px;
    }
    .tabs-content-wrapper{
        margin: 60px 0 0 0;
    }
    .tab-item{
        gap: 60px;
    }
}
@media screen and (max-width: 992px) {
.banner-header,
.banner-header::after,
.video,
.banner-image{
    border-radius:0;
}
.banner-header .container{
    flex-direction: column;
    align-items:flex-start;
    gap: 40px;
}
.banner-header .button{
    margin-left: auto;
}
.banner-content{
    max-width: 100%;
    width: calc(100% - 265px);
}
.tab-image{
    max-width: 100%;
}
.item-top-wrapper{
    flex-direction: column;
}
.tabs-content-wrapper{
    margin: 40px 0 0 0;
}
.tab-item{
    gap: 40px;
}
.tab-button{
    cursor:initial;
}
}
@media screen and (max-width: 768px) {
    .banner-header{
        padding: 150px 0 50px;
    }
    .banner-content{
    width: 100%;
    }
    h1{
        font-size: 38px;
    }
    .banner-prev-contet p{
        font-size: 16px;
    }
    .tab-button {
        padding: 10px 21px;
    }
    .tab-bottom-content{
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }
    .tab-bottom-content ul{
        width: 100%;
    }
    .item-content-top h2{
        font-size: 22px;
    }
}
@media screen and (max-width: 500px) {
    .banner-header .button{
        max-width: 100%;
        width: 100%;
        align-items:center;
        justify-content: center;
    }
    .banner-prev-contet p{
        font-size: 14px;
    }
    .tab{
        margin: 40px 0;
    }
    .item-content-top{
        align-items:center;
        text-align: center;
        gap: 10px;
    }
    .tab-button{
        padding: 10px;
        font-size: 12px;
    }
}
@media screen and (max-width: 375px) {
    h1{
        font-size: 28px;
    }
    .tabs-content-wrapper{
        margin: 30px 0 0 0;
    }
    .tab-item{
        gap: 30px;
    }
    .tab-bottom-content ul:first-of-type li:first-of-type strong,
    .tab-bottom-content ul:last-of-type li:last-of-type strong{
        font-size: 14px;
    }
}