:root {
    --color-gray: #333333;
    --color-yellow: #E6FF00;
    --color-blue: #1E2D4F;
    --color-orange: #EF5B1E;
    --color-light-orange: rgba(239, 91, 30, 0.9);
    --color-lightgray: #E5E5E5;
    --color-theme: #00824A;
    --color-darkgreen: #008F51;
    --color-darkdarkgreen: #035733;

    --color-white: #FFF;
    --color-black: #000;

    --margin-normal: 1rem;
    --margin-large: 2rem;
    --margin-40: 2.3rem;
    --padding-normal: 10px;

    --line-height-normal: 1.5;

    --font-size-normal: 1rem;
    --font-size-middle: 1.25rem;
    --font-size-large: 1.5rem;

    --small: .5rem;
    --normal: 1rem;
    --middle: 1.5rem;
    --large: 2rem;

    --bg: #f6f6f9;
    --bg-line: #FC7317;
    --bg-blue: #2A2963;

    --border-radius: .5rem;

}
.w-full {
    width: 100%;
}
.background-white {
    background-color: var(--color-white);
}
.self-response-width {
    width: calc(100% - calc(100% - 80rem));
}
.marginRight25 {
    margin-right: .5rem !important;
}
.form-box .input-box input {
    max-width: 35rem;
}
.padding-lr-normal {
    padding: 0;
}
.margin-bottom-48 {
    margin-bottom: 3rem;
}
.padding-10 {
    padding: 0 10px;
}
.margin-bottom-normal {
    margin-bottom: var(--margin-normal);
}

@media (max-width: 768px) {
    .self-response-width {
        width: 100%;
    }
    .center-box {
        box-sizing: border-box;
    }
    .padding-lr-normal {
        padding: 0 var(--padding-normal);
    }
}
/* top banner */
.top-banner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    height: auto;
}
.top-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 768px) {
    .top-banner {
        height: auto;
    }
    .top-banner img {
        aspect-ratio: 790 / 989;
    }
}

.header-container {
    width: 100%;
    margin-top: var(--margin-normal);
}

.margin-top-40 {
    margin-top: var(--margin-40);
}
.margin-bottom-40 {
    margin-bottom: var(--margin-40);
}
.margin-top-normal {
    margin-top: var(--margin-normal);
}
.margin-bottom-normal {
    margin-bottom: var(--margin-normal);
}

.line-title {
    font-weight: bold;
    font-size: 2rem;
    color: var(--color-gray);
    position: relative;
    padding-left: var(--normal);
    margin: var(--middle) 0;
}

.urban-landmark .line-title {
    color: white;
    line-height: 1.5;
}

.line-title::after {
    content: "";
    width: 4px;
    height: calc(100% - 1rem);
    background: var(--bg-line);
    position: absolute;
    left: 0;
    top: .6rem;
}
.urban-landmark .line-title::after {
    background: white;
}

.background-gray {
    background-color: var(--bg);
}

/* Part 1 start */
.intro-box {
    line-height: var(--line-height-normal);
    color: var(--color-gray);
    padding-bottom: var(--large);
}
@media (max-width: 768px) {
    .intro-box {
        padding-top: var(--middle);
    }
}
/* Part 1 end */

/* Part 2 start */
.key-highlights {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    counter-reset: num-order;
    list-style: none;
    margin: 0;
    padding: 1rem 0 3rem 0;
}
@media (max-width: 768px) {
    .key-highlights {
        grid-template-columns: 1fr;
    }
}
.key-highlights li {
    counter-increment: num-order;
    width: inherit;
    background: #FFFFFF;
    box-shadow: 0 3px 6px 1px rgba(0,0,0,0.16);
    border-radius: 8px;
    padding: var(--middle);
    padding-left: 4rem;
    font-weight: bold;
    font-size: 1rem;
    color: var(--color-gray);
    text-align: left;
    box-sizing: border-box;
    line-height: var(--line-height-normal);
    position: relative;
    transition: all .3s ease-in-out;
}

@media (min-width: 769px) {
    .key-highlights li:hover {
        scale: 1.01;
    }
}

.key-highlights li::before {
    content: counter(num-order);
    background: var(--bg-blue);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
}
/* Part 2 end */

/* Part 3 start */
.swiper-iccf-video {
    width: 100%;
    padding-top: var(--large);
}
.swiper-iccf-video img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius);
}
.swiper-iccf-pagination {
    height: 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.video-wrap-button::after {
    background-repeat: no-repeat;
    background-image: url(../../images/common/video/play_btn.png);
    background-position: center center;
    background-size: 5rem 5rem;
    content: "";
    width: 5rem;
    height: 5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background: #2A2963;
    width: 36px;
    height: 15px;
}

@media (max-width: 768px) {
    .mdt-pagination .swiper-pagination .swiper-pagination-bullet-active,
    .swiper-iccf-pagination .swiper-pagination .swiper-pagination-bullet-active
    {
        background: #2A2963;
        width: 36px;
        height: 15px;
    }
}
/* Part 3 end */

/* Part 4 start */
.live-streaming {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 25rem;
    gap: 1.5rem;
    padding-bottom: 3rem;
}
.live-streaming-content {
    padding: 1rem 2rem 2rem;
}
@media (max-width: 768px) {
    .live-streaming {
        grid-template-columns: 1fr;
    }
    .live-streaming-content {
        padding: 1rem;
    }
}
.live-title {
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.5rem;
}
.live-streaming-content iframe {
    width: 100%;
    border-radius: 5px;
}
.schedule-list {
    padding: 1rem 1rem;
}
@media (max-width: 768px) {
    .schedule-list {
        display: none;
    }
    .live-streaming-content iframe {
        max-height: 20rem;
        width: 100%;
    }
}
.schedule-list dl {
    position: relative;
    padding-left: 1rem;
}
.schedule-list dl::before {
    content: "";
    width: 2px;
    height: 100%;
    background: var(--bg-line);
    position: absolute;
    left: 0;
    top: 0;
}
.schedule-list .schedule-time {
    font-size: 1rem;
    color: #666666;
    position: relative;
}
.schedule-list .schedule-time::before {
    content: "";
    width: 0.875rem;
    height: 0.875rem;
    background: var(--bg-line);
    border-radius: 50%;
    position: absolute;
    left: -1.4rem;
    top: 55%;
    transform: translateY(-50%);

    animation: pulse-glow-orange 2s ease-in-out infinite;
}

@keyframes pulse-glow-orange {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(252, 115, 23, 0.5);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(252, 115, 23, 0);
    }
}

.schedule-list .schedule-title {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-gray);
    margin-bottom: .5rem;
}
.live-title {
    font-size: 1.25rem;
    position: relative;
    padding-left: 2rem;
}
@media (max-width: 768px) {
    .live-title {
        padding-left: 2.5rem;
    }
}
.live-title::after {
    content: "";
    width: 2rem;
    height: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url("../../images/topic/asean-seventh/liver.svg") no-repeat center center;
}
.chat-button {
    background: #2A2963;
    border-radius: 2rem;
    width: max-content;
    font-weight: bold;
    font-size: 1rem;
    color: #FFFFFF;
    padding: 0.875rem 2rem;
}
@media (max-width: 768px) {
    .chat-button {
        width: 100%;
    }
}
.liver-button-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
}
/* Part 4 end */

/* Part 5 start */
.mdt-container .swiper-container {
    box-sizing: border-box;
    padding: 5px;
}
.mdt-container .swiper-slide:hover {
    transform: translate(0, 1px);
}
.mdt-container {
    width: 100%;
    position: relative;
}
.mdt-wrap-item {
    height: max-content;
    background: #FFFFFF;
    box-shadow: -2px 1px 4px 0 rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
    box-sizing: border-box;
    padding-bottom: 1rem;
    &:hover {
        &:after {
            content: "";
            width: 8rem;
            height: 0.125rem;
            background: #2A2963;
            position: absolute;
            bottom: 0;
            left: calc((100% - 8rem) / 2);
        }
    }
}
.mdt-wrap-item dl dt.image {
    background: var(--color-white);
    border-radius: .5rem;
}
.mdt-wrap-item dl dt.image img {
    width: 100%;
    height: 20rem;
    object-fit: contain;
    border-radius: 0.5rem;
}
@media (max-width: 768px) {
    .mdt-wrap-item dl dt.image img {
        height: 12rem;
    }
    .font-size-1 {
        font-size: 1rem;
    }
}
.mdt-wrap-item dl dd {
    padding: .5rem .5rem 0 1rem;
    box-sizing: border-box;
}
.mdt-wrap-item dl dd.doctor-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-gray);
}
.mdt-wrap-item dl dd.tag-list {
    padding: 0 1rem 0 1rem;
    box-sizing: border-box;
}
.mdt-wrap-item dl dd.tag-list span {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #FC7317;
    box-sizing: border-box;
    padding: 0.3125rem 0;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.mdt-wrap-item dl dd.intro {
    font-size: 1rem;
    font-weight: 400;
    color: #666666;
    min-height: 6rem;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-height: 1.5;
}

.mdt-pagination {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mdt-container .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: url("../../images/home/arrow/left@2x.png");
    width: 1.375rem;
    height: 4.125rem;
    background-size: 1.375rem 4.125rem;
    left: -40px;
}
.mdt-container .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    width: 1.375rem;
    height: 4.125rem;
    background-size: 1.375rem 4.125rem;
    background-image: url("../../images/home/arrow/right@2x.png");
    right: -40px;
}
.mdt-guest-list {
    width: 100%;
    font-size: 1rem;
    color: #333333;
    line-height: 1.5;
    text-align: left;
    padding-bottom: 3rem;
}
.mdt-guest-list li {
    list-style: none;
    position: relative;
    padding-left: 1rem;
}
.mdt-guest-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    background: var(--bg-line);
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .mdt-guest-list li {
        margin-bottom: 5px;
    }
    .mdt-guest-list li::before {
        top: 8px;
        transform: translateY(0);
    }
}

/* part 5 end */

/* part 6 start */
.paragraph {
    color: var(--color-gray);
    line-height: 1.5;
    text-align: left;
}
.modern-hospital-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    width: 100%;
    margin-top: 2rem;
    padding-bottom: 3rem;
}
.hospital-content .hospital-advantage {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 768px) {
    .modern-hospital-container {
        grid-template-columns: 1fr;
    }
    .hospital-content .hospital-advantage {
        grid-template-columns: 1fr;
    }
}
.hospital-content .hospital-advantage dl {
    background: #ededf2;
    box-shadow: 0 2px 6px 1px rgba(0,0,0,0.16);
    border-radius: 8px;
    color: var(--color-gray);
    box-sizing: border-box;
    padding: 1.5rem;
    transition: all .3s ease-in-out;
}
@media (min-width: 769px) {
    .hospital-content .hospital-advantage dl:hover {
        transform: scale(1.03);
    }
}
.hospital-advantage dt {
    color: #2A2963;
    font-size: 2rem;
    font-weight: bold;
}
.hospital-advantage dd {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.5;
}

.hospital-service {
    width: 100%;
    font-size: 1rem;
    color: #333333;
    text-align: left;
    padding-bottom: 3rem;
    padding-top: 1rem;
}
@media (max-width: 768px) {
    .hospital-service {
        padding-bottom: 1rem;
    }
}
.hospital-service li {
    list-style: none;
    position: relative;
    padding-left: 1rem;
    margin-top: 1rem;
    line-height: 1.5;
}
.hospital-service li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
    /*top: 50%;*/
    background: var(--bg-line);
    /*transform: translateY(-50%);*/
}
.hospital-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* part 6 end */

/* Part 7 start */
.asean-skill {
    padding-top: 3rem;
}
.asean-skill .swiper-container {
    box-sizing: border-box;
    padding: 5px;
}
.asean-skill .swiper-wrapper {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-bottom: 1rem;
}
.asean-skill .swiper-wrapper .swiper-slide {
    height: 28rem;
    background: var(--color-white);
    box-shadow: -2px 1px 4px 0 rgba(0, 0, 0, 0.05);
    border-radius: .5rem;
    box-sizing: border-box;
    position: relative;
    pointer-events:none;
    transition: all .3s ease-in-out;
}
.asean-skill .swiper-wrapper .swiper-slide:hover {
    transform: translate(0, 3px);
}
.asean-skill .swiper-wrapper .swiper-slide:hover:after {
    content: "";
    width: 10rem;
    height: 0.125rem;
    background: var(--bg-line);
    position: absolute;
    bottom: 0;
    left: calc((100% - 10rem) / 2);
}

@media (max-width: 768px) {
    .asean-skill .swiper-wrapper .swiper-slide {
        height: 31rem;
    }
}
.asean-skill {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
}
.asean-skill img.video-cover {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    width: 100%;
    height: 14rem;
    object-fit: cover;
    object-position: top center;
}
.asean-skill .video-text dl dt {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333333;
    padding: 1rem 1rem .5rem 1rem;
    box-sizing: border-box;
}
.asean-skill .video-text dl dd.video-intro {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-gray);
    line-height: 1.5rem;
    padding: 0 1rem 0 1rem;
    box-sizing: border-box;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin-bottom: 0.75rem;
}
.asean-skill .video-more-link {
    width: 100%;
    text-align: right;
    box-sizing: border-box;
    padding-right: 1rem;
    padding-bottom: 1.5rem;
    pointer-events: auto;
    position: absolute;
    right: 0.625rem;
    bottom: 0;
}
.asean-skill .video-more-link button {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 1.125rem;
    background: none;
}
.asean-skill .video-more-link button:hover {
    cursor: pointer;
}
.asean-skill .more-skill {
    display: flex;
    width: 100%;
    justify-content: end;
    margin-top: 1rem;
}
.asean-skill-wrapper .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.br {
    display: none;
}
@media (max-width: 768px) {
    .br {
        display: block;
    }
}
/* Part 7 end*/

/* Part 8 start */
.background-blue {
    background: #203B7E;
}
.urban-landmark {
    width: 100%;
    box-sizing: border-box;
    padding: 1rem;
}
.urban-landmark-list {
    padding-bottom: 3rem;
    position: relative;
}
.urban-landmark-list img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.urban-landmark-list p {
    font-size: 1.25rem;
    color: white;
    text-align: center;
    margin-top: .5rem;
}
.urban-landmark-list .swiper-pagination .swiper-pagination-bullet-active {
    background: white;
    width: 36px;
}

@media (max-width: 768px) {
    .mdt-pagination .swiper-pagination .swiper-pagination-bullet-active,
    .swiper-iccf-pagination .swiper-pagination .swiper-pagination-bullet-active
    {
        background: white;
        width: 36px;
    }
}

.urban-landmark-pagination {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.urban-landmark-list .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: url("../../images/home/arrow/left@2x.png");
    width: 2rem;
    height: 4rem;
    background-size: 1.375rem 4.125rem;
    left: -40px;
}
.urban-landmark-list .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    width: 2rem;
    height: 4rem;
    background-size: 1.375rem 4.125rem;
    background-image: url("../../images/home/arrow/right@2x.png");
    right: -40px;
}
@media (max-width: 768px) {
    br {
        display: none;
    }
    .font-size-24 {
        font-size: 1.5rem;
    }
    span.break {
        display: block;
    }
}

/* Part 8 end */

/* Part 9 start */
.volunteer-labour-container {
    box-sizing: border-box;
    padding: 1rem;
    width: 100%;
}
.volunteer-labour {
    background: #e8ebf2;
    border-radius: 1rem;
    padding: 1.5rem 1rem;
}
.volunteer-labour .p1 {
    font-weight: bold;
    font-size: 1.25rem;
    color: var(--color-gray);
    line-height: 1.5;
    text-align: left;
}
.volunteer-labour .p1:first-child {
    margin-bottom: 1rem;
}
.volunteer-labour .p2 {
    border-radius: .5rem;
    background: white;
    padding: 1.2rem 1rem;
    margin: .5rem 0;
}
.volunteer-labour .p3 {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.5;
    margin-top: .5rem;
    text-align: center;
}
.volunteer-labour button {
    background: #2A2963;
    color: white;
    font-size: 1.125rem;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    font-weight: bold;
}
@media (max-width: 768px) {
    .volunteer-labour button {
        padding: 1rem;
        border-radius: 3rem;
    }
}
.volunteer-labour .button-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.labour-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 0.5rem 0 2rem;
}
@media (max-width: 768px) {
    .labour-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
.labour-list li {
    background: white;
    padding: 5rem 1rem 1rem;
    color: var(--color-gray);
    font-size: 1.25rem;
    border-radius: .5rem;
    position: relative;
    text-align: center;
    transition: all .3s ease-in-out;
}
@media (max-width: 768px) {
    .labour-list li {
        padding: 5rem .5rem .5rem;
    }
}
@media (min-width: 769px) {
    .labour-list li:hover {
        transform: scale(1.03);
    }
}

.labour-list li::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
}

.labour-list li.icon-1::before {
    background: url("../../images/topic/asean-seventh/icon_1.svg") no-repeat center center / contain;
}
.labour-list li.icon-2::before {
    background: url("../../images/topic/asean-seventh/icon_2.svg") no-repeat center center / contain;
}
.labour-list li.icon-3::before {
    background: url("../../images/topic/asean-seventh/icon_3.svg") no-repeat center center / contain;
}
.labour-list li.icon-4::before {
    background: url("../../images/topic/asean-seventh/icon_4.svg") no-repeat center center / contain;
}

/* Part 9 end */

/* Part 10 start */
.history-review {
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
}
.history-review header {
    margin-bottom: 1rem;
}
.review-list {
    padding-bottom: 3rem;
    position: relative;
}
.review-list img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.review-list p {
    font-size: 1rem;
    color: var(--color-gray);
    text-align: center;
    margin-top: .5rem;
}
.review-list-pagination {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .swiper-iccf-pagination .swiper-pagination-bullet-active,
    .mdt-pagination .swiper-pagination-bullet-active,
    .asean-skill-wrapper .swiper-pagination-bullet-active,
    .review-list-pagination .swiper-pagination-bullet-active
    {
        background: #2A2963 !important;
        width: 36px;
    }
}
/* Part 10 end */
.form-group .btn-active {
    cursor: pointer;
    background: linear-gradient(90deg, #203B7E 0, rgb(32 59 126 / 0.9) 100%) !important;
}
@media screen and (max-width: 768px) {
    form .mobile-box .form-group .btn-active {
        background: linear-gradient(90deg, #203B7E 0, rgb(32 59 126 / 0.9) 100%) !important;
    }
}
/* read more */
.more-button {
    width: 100%;
    padding: var(--margin-normal) 0 var(--margin-normal) var(--margin-normal);
    text-align: right;
    box-sizing: border-box;
}
.more-button a {
    color: var(--bg-blue);
    text-decoration: none;
    font-size: var(--font-size-normal);
    font-weight: bold;
}

.show-more {
    display: none;
}
/* image modal css */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
}
@media (max-width: 768px) {
  .modal-content {
      width: 100%;
  }
}
.modal-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0.5rem;
}
.swiper-slide:hover {
    transform: none !important;
}

.submit-button,
.animate-pulse-glow
{
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(42, 41, 99, 0.5);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(42, 41, 99, 0);
    }
}

button:hover {
    background: #151440;
}
img {
    transition: all .3s ease-in-out;
}
img.hover:hover {
    scale: 1.03;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 36px;
    height: 15px;
    border-radius: 30px;
}