@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
:root {
    --color-primary: #0077be;
    --color-text: #222222;
    --color-bg: #d4effe;
    --color-white: #fff;
    --gradient-text: linear-gradient(
        90.15deg,
        #0077be 0.94%,
        #552383 35%,
        #0077be 60.81%,
        #552383 100.04%
    );
    --gradient-bg: linear-gradient(180deg, #0077be 0%, #552383 100%);
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --shadow-primary: 0 4px 10px rgba(30, 58, 138, 0.3); // primary rangga mos;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    filter: grayscale(var(--grayscale));
    font-size: calc(16px * var(--font-scale));
}

body {
    overflow-x: hidden;
    font-family: "Open Sans", sans-serif;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (max-width: 1536px) {
    .container {
        max-width: 1280px;
    }
}
@media (max-width: 1280px) {
    .container {
        max-width: 1024px;
    }
}
@media (max-width: 1024px) {
    .container {
        max-width: 768px;
    }
}
@media (max-width: 768px) {
    .container {
        max-width: 640px;
    }
}
@media (max-width: 640px) {
    .container {
        padding: 0 16px;
        max-width: 450px;
    }
}
@media (max-width: 450px) {
    .container {
        max-width: 100%;
    }
}

button {
    background-color: transparent;
    border: none;
    outline: none;
    font-family: var(--font-inter);
    cursor: pointer;
}

a {
    font-weight: 400;
    font-size: var(--font-base);
    line-height: var(--font-lg);
    color: var(--color-text);
}

*::-webkit-scrollbar {
    width: 8px;
    background: var(--color-light);
    border-radius: 2px;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    border-radius: 2px;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    height: auto;
}

.swiper-button-prev {
    left: 25px;
}
.swiper-button-next {
    right: 25px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
    background-color: var(--color-white);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s linear;
}
@media (max-width: 1024px) {
    .swiper-button-prev::after,
    .swiper-button-next::after {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }
}

.swiper-button-prev:hover::after {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.swiper-button-next:hover::after {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.swiper-pagination .swiper-pagination-bullet {
    background-color: transparent;
    opacity: 0.6;
    width: 25px;
    height: 10px;
    border-radius: 10px;
    border: 1px solid var(--color-white);
    background-color: var(--color-white);
}
.swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.help__title {
    font-weight: 700;
    font-size: 100px;
    line-height: 140px;
    color: var(--color-bg);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
@media (max-width: 1024px) {
    .help__title {
        font-size: 80px;
        line-height: 110px;
    }
}
@media (max-width: 768px) {
    .help__title {
        font-size: 60px;
        line-height: 80px;
    }
}
@media (max-width: 640px) {
    .help__title {
        font-size: 36px;
        line-height: 40px;
    }
}

.help-info {
    margin-top: 33px;
}
@media (max-width: 1024px) {
    .help-info {
        margin-top: 24px;
    }
}
@media (max-width: 768px) {
    .help-info {
        margin-top: 18px;
    }
}
.help-info__text {
    margin-top: 16px;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color: var(--color-primary);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
@media (max-width: 1024px) {
    .help-info__text {
        font-size: 16px;
        margin-top: 12px;
    }
}
@media (max-width: 768px) {
    .help-info__text {
        font-weight: 600;
        font-size: 14px;
        line-height: 14px;
        margin-top: 6px;
    }
}
.help-info__text-muted {
    font-weight: 400;
    display: block;
}

.help-list {
    margin-top: 33px;
}
@media (max-width: 1024px) {
    .help-list {
        margin-top: 24px;
    }
}
@media (max-width: 768px) {
    .help-list {
        margin-top: 18px;
    }
}
.help-list__title {
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
    color: var(--color-primary);
    letter-spacing: 0.8;
    text-transform: uppercase;
}
@media (max-width: 1024px) {
    .help-list__title {
        font-size: 36px;
        line-height: 36px;
    }
}
@media (max-width: 768px) {
    .help-list__title {
        font-size: 24px;
        line-height: 24px;
    }
}
@media (max-width: 640px) {
    .help-list__title {
        font-size: 18px;
        line-height: 18px;
    }
}
.help-list__bg {
    margin-top: 104px;
    background-color: var(--color-bg);
    padding-bottom: 60px;
}
.help-list__row {
    position: relative;
    bottom: 71px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 768px) {
    .help-list__row {
        bottom: 40px;
    }
}
@media (max-width: 1280px) {
    .help-list__row {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1024px) {
    .help-list__row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .help-list__row {
        grid-template-columns: 1fr;
    }
}
.help-list__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 13px;
}
.help-list__desc {
    font-weight: 700;
    font-size: 30px;
    line-height: 35px;
    color: var(--color-text);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}
@media (max-width: 1024px) {
    .help-list__desc {
        font-size: 24px;
        line-height: 24px;
    }
}
@media (max-width: 768px) {
    .help-list__desc {
        font-size: 18px;
        line-height: 18px;
    }
}
@media (max-width: 640px) {
    .help-list__desc {
        font-size: 16px;
        line-height: 16px;
    }
}
.help-list__desc p {
    margin-top: 18px;
}
.help-list__desc p:first-child {
    margin-top: 0;
}

.top-card {
    width: 284px;
    height: 284px;
    background: var(--gradient-bg);
    padding: 18px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
}
@media (max-width: 1024px) {
    .top-card {
        width: 100%;
    }
}
.top-card__image {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.top-card__desc {
    margin-top: 8px;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    color: var(--color-white);
    text-align: center;
    letter-spacing: -1px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bottom-card {
    background-color: var(--color-white);
    padding: 30px 15px;
    border-radius: 16px;
}
.bottom-card__item {
    margin-top: 4px;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    color: var(--color-text);
    letter-spacing: -1px;
    position: relative;
    padding-left: 12px;
}
.bottom-card__item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-text);
}
.bottom-card__icon {
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.detail {
    padding: 60px 0;
    background-color: var(--color-bg);
}
@media (max-width: 1024px) {
    .detail {
        padding: 40px 0;
    }
}

.detail-main__row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: var(--shadow-lg);
    border-radius: 24px;
    background-color: var(--color-white);
}
@media (max-width: 768px) {
    .detail-main__row {
        flex-direction: column;
    }
}

.detail-images {
    flex: 1;
    max-width: 40%;
    padding: 24px;
    border-right: 1px solid var(--color-bg);
}
@media (max-width: 1024px) {
    .detail-images {
        max-width: 45%;
        padding: 12px;
    }
}
@media (max-width: 768px) {
    .detail-images {
        max-width: 100%;
        border-right: none;
    }
}
.detail-images__swiper .swiper-slide {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 16;
}
.detail-images__swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.detail-images__swiper2 {
    margin-top: 20px;
}
.detail-images__swiper2 .swiper-slide {
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0.6;
}
.detail-images__swiper2 .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
    border: 1px solid var(--color-bg);
}
.detail-images__swiper2 .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.detail-info {
    padding: 24px;
    flex: 1;
}
@media (max-width: 1024px) {
    .detail-info {
        padding: 12px;
    }
}
.detail-info__name {
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    color: var(--color-primary);
}
@media (max-width: 1024px) {
    .detail-info__name {
        font-size: 28px;
        line-height: 32px;
    }
}
.detail-info__row {
    margin-top: 20px;
}
@media (max-width: 1280px) {
    .detail-info__row {
        margin-top: 12px;
    }
}
.detail-info__key {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #888;
}
.detail-info__value {
    margin-top: 12px;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    color: var(--color-text);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 1280px) {
    .detail-info__value {
        -webkit-line-clamp: 3;
        margin-top: 6px;
    }
}
@media (max-width: 1024px) {
    .detail-info__value {
        font-size: 16px;
        line-height: 16px;
    }
}
.detail-info__status {
    padding: 8px 20px;
    display: inline-block;
    border-radius: 50px;
}
.detail-info__status--good {
    background-color: #d1f7d6;
    color: #157a23;
}
.detail-info__footer {
    margin-top: 24px;
}
@media (max-width: 1024px) {
    .detail-info__footer {
        margin-top: 15px;
    }
}
.detail-info__contact {
    background: var(--gradient-bg);
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: var(--color-white);
    display: inline-block;
}

.detail-video {
    padding: 60px 0;
}
@media (max-width: 1024px) {
    .detail-video {
        padding: 40px 0;
    }
}
.detail-video__head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.detail-video__controls {
    display: none;
}
@media (max-width: 768px) {
    .detail-video__controls {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }
    .detail-video__controls .detail-video-prev,
    .detail-video__controls .detail-video-next {
        display: block;
        position: relative;
        top: 0;
        left: 0;
        width: 40px;
        height: 40px;
    }
    .detail-video__controls .detail-video-prev::after,
    .detail-video__controls .detail-video-next::after {
        width: 40px;
        height: 40px;
        top: 0;
    }
}
.detail-video__title {
    font-weight: 700;
    font-size: 30px;
    line-height: 32px;
    color: var(--color-text);
}
.detail-video__swiper {
    margin-top: 20px;
    width: 100%;
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
@media (max-width: 768px) {
    .detail-video__swiper .detail-video-prev,
    .detail-video__swiper .detail-video-next {
        display: none;
    }
}
.detail-video__swiper iframe {
    width: 100%;
    height: 100%;
    min-height: 60vh;
}
@media (max-width: 1280px) {
    .detail-video__swiper iframe {
        min-height: 50vh;
    }
}
@media (max-width: 768px) {
    .detail-video__swiper iframe {
        aspect-ratio: 16/9;
    }
} /*# sourceMappingURL=style.css.map */

.detail-info__phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-info__phone span {
    filter: blur(5px);
    transition: all 0.4s linear;
}

.detail-info__phone.show span {
    filter: blur(0);
}

.detail-info__phone svg {
    width: 20px;
    height: 20px;
}

.animals-page .page-heading {
    font-size: 10vw;
    color: #0077be25;
    font-weight: bold;
    margin: 0;
}

@media (min-width: 1200px) {
    .animals-page .page-heading {
        font-size: 140px;
    }
}
