@font-face {
    font-family: 'AlibabaPuHuiTi';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/AlibabaPuHuiTi-3-55-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'AlibabaPuHuiTi';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/AlibabaPuHuiTi-3-65-Medium.ttf') format('truetype');
}

body {
    font-family: 'AlibabaPuHuiTi', sans-serif;
    background-color: #d7005e;
    margin: 0;
    padding: 0;
}
.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.banner-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slides img {
    min-width: 100%;
    display: block;
    margin: 0;
    object-fit: cover;
}

img:not(.slides img) {
    display: block;
    margin: 10px auto;

    object-fit: cover;
}
.btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px auto;
    width: 90%;
}
.btn {
    padding: 5px 8px;
    border: 1px solid white;
    border-radius: 10px;
    color: white;
    background-color: #54b858;
    text-align: center;
    font-weight: bold;
}
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 95%;
    margin: 20px auto;
}
.contact {
    text-align: center;
    margin: 20px 0;
}

.contact a,
.contact a:link,
.contact a:visited,
.contact a:hover,
.contact a:active {
    color: black;
    text-decoration: none;
}
.phone {
    border: 1px solid green;
    padding: 0;
    margin: 20px auto;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone-label {
    color: white;
    font-size: 20px;
    padding: 5px 10px;
    background-color: green;
}

.phone-number a,
.phone-number a:link,
.phone-number a:visited,
.phone-number a:hover,
.phone-number a:active,
.phone-number {
    color: #d7005e;
    font-size: 20px;
    background-color: white;
    padding: 5px 10px;
    text-decoration: none;
}
.random-text {
    color: white;
    background-color: orange;
    padding: 10px;
    margin: 20px 0;
    text-align: center;
}
.random-text1 {
    color: white;
     font-size: 16px;
    margin: 10px 0;
    text-align: center;
}
.image-with-text {
    position: relative;
}
.image-text {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 25%;
    height: 50%;
    background-color: rgba(0,0,0,0.5);
    color: white;
    padding: 5px;
    overflow: hidden;
}