*, *::before, *::after {
    box-sizing: border-box;
}

.gallery_image_tab {
    padding: 40px 0;
    box-sizing: border-box;
}

.gallery_image-title {
    margin-bottom: 32px;
    text-align: center;
}

.gallery_image_heading {
    max-width: 100%;
    width: 100%;
    position: relative;
}

.gallery_image_tab .feedback-section__buttons-container {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    max-width: 100%;
    width: 100%;
    margin: 20px 0 0 0;
    min-height: 40px;
}

.gallery_image_tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: max-content;
    margin: 0 auto 20px;
    padding: 8px 12px;
    border-radius: 40px;
}

.gallery_image_tab-link {
    background-color: transparent;
    padding: 8px 16px;
    border: none;
    border-radius: 40px;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 20px;
    font-weight: 600!important;
    line-height: 120%;
}

.gallery_image_tab-link:hover {
    /*background-image: linear-gradient(to top right, #FF0C86 0%, #FF7454 100%);*/
    background: #DFEDFF;
    font-weight: 600;
}

.gallery_image_tab-light .gallery_image_tab-link.active:hover {
    color: #fff;
}

.gallery_image_tab-link.active {
    /*background-image: linear-gradient(to top right, #FF0C86 0%, #FF7454 100%);*/
    background: #4C83F3;
}

.gallery_image_tab-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    /*     gap: 33px; */
    gap: 0;
}

.gallery_image_tab-content > div {
    display: flex;
    flex-direction: row;
    gap: 0;
}

.gallery_image_tab_card {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    /*     max-width: 23.27%; */
    width: 100%;
    min-height: 320px;
    padding: 12px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.gallery_image_tab_card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 6px;
    max-width: 100%;
    width: 100%;
    min-height: 104px;
    padding: 12px;
    border-radius: 12px;
    text-align: left;
}

.gallery_image_tab_card-content p {
    margin: 0;
    font-size: 20px;
    line-height: 120%;
    font-weight: 600;
}

.gallery_image_tab_card-content span {
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
}
.gallery_image_tab_card-content a {
    display: flex;
    align-items: center;
    align-self: flex-end;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s;
}
.gallery_image_tab_card-content a span {
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    color: #FF1084!important;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
}
.gallery_image_tab_card:hover .gallery_image_tab_card-content a span {
    opacity: 1;
    visibility: visible;
}
.gallery_image_tab_card-content a:hover span {
    color: #FF1084!important;
}
.gallery_image_tab_card-content a:hover svg path {
    stroke: #FF1084!important;
}
.gallery_image_tab_card.active {
    display: flex;
}

.gallery_image_tab-light {
    background-color: #ffffff;
}
.gallery_image_tab-light .gallery_image_tab-link {
    color: #282828;
}
.gallery_image_tab-light .gallery_image-title {
    color: #282828;
}
.gallery_image_tab-light .gallery_image_tab_card {
    background: #EDEDED;
    background-size: cover;
    background-position: center;
}
.gallery_image_tab-light .gallery_image_tabs {
    /*background: #f9f9f9;*/
    /*border: 1px solid #f9f9f9;*/
    box-shadow: 0px 2px 12px 0px #4C83F326;
    border: 1px solid;
    border-image-source: linear-gradient(180deg, rgba(76, 131, 243, 0) 14.86%, rgba(76, 131, 243, 0.15) 96.96%);
}
.gallery_image_tab-light .gallery_image_tab_card-content {
    background: #fff;
}
.gallery_image_tab-light .gallery_image_tab_card-content p {
    color: #3E3E3E;
}
.gallery_image_tab-light .gallery_image_tab_card-content span {
    color: #3E3E3E;
}

.gallery_image_tab_card * {
    transition: all 0.3s;
}

.gallery_image_tab-light .gallery_image_tab-link.active {
    color: #fff;
}

.gallery_image_tab-light .gallery_image_tab-link:hover {
    color: #1A1A1A;
}


.gallery_image_tab-dark {
    background: #121212;
}
.gallery_image_tab-dark .gallery_image-title {
    color: #CCCCCC;
}
.gallery_image_tab-dark .gallery_image_tab-link {
    color: #fff;
}
.gallery_image_tab-dark .gallery_image_tab_card {
    background: #252525;
}
.gallery_image_tab-dark .gallery_image_tabs {
    /*background: #1C1C1C;*/
    /*border: 1px solid #1C1C1C;*/
    box-shadow: 0px 2px 12px 0px #4C83F326;
    border: 1px solid;
    border-image-source: linear-gradient(180deg, rgba(76, 131, 243, 0) 14.86%, rgba(76, 131, 243, 0.15) 96.96%);
}
.gallery_image_tab-dark .gallery_image_tab-link {
    color: #CCCCCC;
}
.gallery_image_tab-dark .gallery_image_tab_card-content {
    background: #121212;
}
.gallery_image_tab-dark .gallery_image_tab_card-content p {
    color: #CCCCCC;
}
.gallery_image_tab-dark .gallery_image_tab_card-content span {
    color: #CCCCCC;
}

.gallery_image_tab .container {
    max-width: 1266px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    line-height: 120%;
}

.gallery_image__prev,
.gallery_image__next {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding: 12px;
    background: #F1F7FF;
    border-radius: 12px;
    width: 40px;
    height: 40px;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gallery_image__prev svg path,
.gallery_image__next svg path {
    fill: #FF3E71;
}

.gallery_image_tab .swiper-button-disabled svg path {
    fill: #FF3E7180;
}

@media (max-width: 991px) {
    .gallery_image_tabs {
        min-width: auto;
    }
    .gallery_image_tab_card {
        max-width: 45%;
    }
}

@media screen and (max-width: 900px) {
    .gallery_image-title {
        margin-bottom: 32px;
    }
    .gallery_image_tab {
        padding: 40px 0 40px;
    }
    .gallery_image_tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 12px;
        max-width: fit-content;
        width: 100%;
        margin-bottom: 12px;
        padding: 9px 12px;
    }
    .gallery_image_tab_card {
        max-width: 100%;
    }
    .gallery_image_tab-link {
        padding: 8px 16px;
        font-size: 17px;
        line-height: 17px;
    }
    .gallery_image_tab {
        position: relative;
    }
    .gallery_image_heading {
        max-width: 100%;
        width: 100%;
        position: static;
    }
    .gallery_image_heading .feedback-section__buttons-container {
        margin: 0;
        position: absolute;
        right: 20px;
        top: auto;
        bottom: 20px;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .gallery_image_tab_card {
        min-height: 260px;
    }
    .gallery_image_tab .container {
        padding: 0 20px;
    }
    .gallery_image_tab_card-content p {
        font-size: 17px;
        line-height: 21px;
    }
    .gallery_image_tab_card-content span {
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 600px) {
    .gallery_image_tabs {
        gap: 20px 12px;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .gallery_image_tab-link {
        line-height: 21px;
    }
}

.gallery_image_tab_card-content .gallery_image_tab_card-conte--title {
    margin-bottom: 4px;
    display: block;
}

.gallery_image-title.section-title{
    font-size: 36px;
    font-weight: 600;
    line-height: 43.2px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #1A1A1A;
}