/* home tabs */
.custom__tabs {
    display: flex;
    flex-direction: column;
    gap: 70px;
}
.custom__tabs.mob {
    display: none;
}
.custom__tabs_top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.custom__tabs_top .tab__name {
    position: relative;
    padding: 35px;
    background-color: #FFFFFF1A;
    backdrop-filter: blur(5px);
    border-radius: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: .35s;
}
.custom__tabs_top .tab__name::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    border: 1px solid #fff;
    pointer-events: none;
    mask-image: linear-gradient(-35deg, black 1%, rgba(0, 0, 0, .25) 4%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .25) 96%, black 99%);
}
.custom__tabs_top .tab__name.active, .custom__tabs_top .tab__name:hover {
    background-color: #FFFFFF33;
}
.tab__content {
    display: none;
    align-items: center;
    gap: 80px;
}
.tab__content.with__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}
.tab__content .img {
    width: 600px;
    max-width: 50%;
    object-fit: cover;
    border-radius: 15px;
}
.tab__content .list_img {
    width: 625px;
    max-width: 50%;
    flex-shrink: 0;
    margin-left: -25px;
}
.tab__content:not(.with__list) .list_img .img {
    max-width: 100%;
}
.tab__content .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.tab__content .content .title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1.29;
    color: #fff;
}
.tab__content .content .text {
    margin-top: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.8);
    max-width: 498px;
}
.new__tabs .tab__content .content .text {
    max-width: unset;
}
.tab__content .content .text > *:last-child {
    margin-bottom: 0;
}
.tab__content .content .btn {
    margin-top: 40px;
    padding: 10px 31px;
    border: 1px solid #fff;
    border-radius: 80px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
    color: #fff;
    transition: .35s;
}
.tab__content .content .btn:hover {
    background-color: #fff;
    color: #334155;
}
.tab__content.with__list .list_img {
    width: calc(100% + 25px);
    max-width: unset;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
}
.tab__content.with__list .list_img .list {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 625px;
    max-width: 50%;
}
.tab__content.with__list .list_img .list .list__item {
    position: relative;
    display: flex;
    gap: 20px;
    padding: 15px 30px 15px 25px;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: .35s;
}
.tab__content.with__list .list_img .list .list__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    border: 1px solid #fff;
    pointer-events: none;
    mask-image: linear-gradient(-35deg, black 1%, rgba(0, 0, 0, .25) 4%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .25) 96%, black 99%);
    opacity: 0;
    transition: .35s;
}
.tab__content.with__list .list_img .list .list__item.active {
    background-color: #FFFFFF1A;
    border-radius: 20px;
    padding: 25px 30px 30px 25px;
}
.tab__content.with__list .list_img .list .list__item.active::before {
    opacity: 1;
}
.tab__content.with__list .list_img .list .list__item.prev {
    border-width: 0;
}
.tab__content.with__list .list_img .list .list__item .num {
    color: #fff;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.25;
    flex-shrink: 0;
}
.tab__content.with__list .list_img .list .list__item .li__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.tab__content.with__list .list_img .list .list__item .title {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.25;
    color: #fff;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.tab__content.with__list .list_img .list .list__item .title:after {
    content: '+';
    flex-shrink: 0;
}
.tab__content.with__list .list_img .list .list__item.active .title:after {
    content: '-';
    flex-shrink: 0;
}
.tab__content.with__list .list_img .list .list__item .text {
    display: none;
    padding-top: 15px;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.39;
    color: #fff;
}
.tab__content.with__list .list_img .list .list__item .text > *:last-child {
    margin-bottom: 0;
}
@media(max-width:1079px) {
.tab__content.with__list .list_img {
    gap: 24px;
}
}
@media(max-width:899px) {
.custom__tabs {
    gap: 40px;
}
.custom__tabs_top {
    gap: 12px;
}
.custom__tabs_top .tab__name {
    font-size: 20px;
    padding: 30px 20px;
}
.tab__content {
    flex-direction: column;
    gap: 40px;
}
.tab__content .img {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 315 / 175;
}
.tab__content:not(.with__list) .content {
    max-width: 600px;
}
.tab__content.with__list .list_img {
    width: 100%;
    flex-direction: column-reverse;
    align-items: center;
    margin-left: 0;
}
.tab__content.with__list .list_img .list {
    width: 560px;
    max-width: 100%;
}
}
@media(max-width:599px) {
.custom__tabs.mob {
    display: block;
}
.custom__tabs:not(.mob) {
    display: none;
}
.custom__tabs {
    overflow: hidden;
}
.custom__tabs_nav .prev, 
.custom__tabs_nav .next {
    padding: 10px;
}
.custom__tabs_nav .prev {
    margin-left: -10px;
}
.custom__tabs_nav .next {
    margin-right: -10px;
}
.custom__tabs_nav .prev svg, 
.custom__tabs_nav .next svg {
    display: block;
}
.custom__tabs_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}
.custom__tabs_nav .slide__name {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
    text-align: center;
    color: #fff;
}
.custom__tabs_nav .slide__name .item {
    display: none;
}
.custom__tabs_nav .slide__name .item.active {
    display: block;
}
.custom__tabs_dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 30px;
}
.custom__tabs_dots .swiper-pagination-bullet {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 !important;
    background: rgba(217, 217, 217, 0.2);
    opacity: 1;
}
.custom__tabs_dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
}
.custom__tabs .swiper-slide,
.custom__tabs .swiper-slide .content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.custom__tabs .swiper-slide .content {
    gap: 0;
}
.custom__tabs .swiper-slide:not(.swiper-slide-active) {
    opacity: 0 !important;
}
.custom__tabs .swiper-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 315/227;
    object-fit: cover;
    border-radius: 15px;
}
.custom__tabs .swiper-slide .content .title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 129%;
    color: #fff;
}
.custom__tabs .swiper-slide .content .text {
    margin-top: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 178%;
    color: rgba(255, 255, 255, 0.8);
}
.custom__tabs .swiper-slide .content .text > *:last-child {
    margin-bottom: 0;
}
.custom__tabs .swiper-slide .content .btn {
    margin-top: 28px;
    padding: 12px;
    width: 201px;
    border: 1px solid #fff;
    border-radius: 30px;
    background-color: transparent;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 135%;
    text-align: center;
    color: #fff;
    align-self: center;
}
.custom__tabs.new__mob {
    width: calc(100% + 78px);
    margin-left: -39px;
    margin-right: -39px;
}
.custom__tabs.new__mob .custom__tabs_nav {
    padding-left: 39px;
    padding-right: 39px;
}
.custom__tabs.new__mob .swiper-slide {
    padding-left: 39px;
    padding-right: 39px;
}
.custom__tabs.new__mob .swiper-slide .list {
    margin-left: -39px;
    margin-right: -39px;
}
.custom__tabs.new__mob .swiper-slide .list .list__item {
    padding: 20px 39px 30px;
    display: flex;
    gap: 12px;
    font-family: "Poppins", sans-serif;
    position: relative;
    margin-top: -1px;
    transition: .35s;
}
.custom__tabs.new__mob .swiper-slide .list .list__item.active {
    background-color: #111;
    padding: 20px 39px 40px;
}
.custom__tabs.new__mob .swiper-slide .list .list__item:before {
    content: '';
    position: absolute;
    left: 39px;
    bottom: 0;
    width: calc(100% - 78px);
    height: 1px;
    background-color: #363636;
    transition: .35s;
}
.custom__tabs.new__mob .swiper-slide .list .list__item.active:before,
.custom__tabs.new__mob .swiper-slide .list .list__item.prev:before {
    opacity: 0;
}
.custom__tabs.new__mob .swiper-slide .list .list__item .num {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
}
.custom__tabs.new__mob .swiper-slide .list .list__item .li__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.custom__tabs.new__mob .swiper-slide .list .list__item .title {
    font-weight: 400;
    font-size: 25px;
    line-height: 1.16;
    color: #fff;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.custom__tabs.new__mob .swiper-slide .list .list__item.active .title, 
.custom__tabs.new__mob .swiper-slide .list .list__item.active .num {
    font-weight: 600;
}
.custom__tabs.new__mob .swiper-slide .list .list__item .title:after {
    content: '+';
    flex-shrink: 0;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.25;
}
.custom__tabs.new__mob .swiper-slide .list .list__item.active .title:after {
    content: '-';
    flex-shrink: 0;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.25;
}
.custom__tabs.new__mob .swiper-slide .list .list__item .text {
    display: none;
    padding-top: 6px;
    font-weight: 300;
    font-size: 14px;
    line-height: 157%;
    color: rgba(255, 255, 255, 0.8);
}
.custom__tabs.new__mob .swiper-slide .list .list__item .text > *:last-child {
    margin-bottom: 0;
}
}