<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.swiper {
    width: 100%;
    /* height: 300px; */
  }

  .swiper-slide {
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }

  .container-higlightss {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 0;
}

.container-higlightss .card {
    flex: 1;
    min-width: 250px;
    background-color: white;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    height: 220px;
}
.container-higlightss .card .card-body{
    padding: 20px;
}
.container-higlightss .card-title {
    margin-bottom: 15px;
}

.container-higlightss .card-title a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
    text-decoration: underline;
}

.container-higlightss .card-title a:hover {
    text-decoration: underline;
}

.container-higlightss .card-content {
    flex-grow: 1;
}

.container-higlightss .card-content p {
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.container-higlightss .highlight {
    font-weight: bold;
}

.container-higlightss .connect-us {
    background-color: #ffeb99;
}

.container-higlightss .connect-us-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

@media (max-width: 768px) {
    .container-higlightss {
        flex-direction: column;
    }
    
    .container-higlightss .card {
        width: 100%;
    }
}

.custom-card{
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin: 8px 0;
}
@media (max-width:768px) {
    .custom-card{
        flex-direction: column;
    }
}
.custom-card img{
    max-width: 20%;
    border-radius: 8px;
    display: block;
}
@media (max-width:768px) {
    .custom-card img{
        max-width: 100%;
        border-radius: 8px;
    }
}</pre></body></html>