/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    padding-top: 69px;
    /* space for fixed navbar */
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navigation wrapper */
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 40px;
    height: 40px;
}

/* Navigation content */
.nav-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4f46e5;
}

.divider {
    width: 1px;
    height: 1.5rem;
    background-color: #e5e7eb;
}

/* Social icons */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #6b7280;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #4f46e5;
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #374151;
    transition: all 0.3s ease;
}

/* Mobile styles */
@media (max-width: 768px) {
    .nav-content {
        position: fixed;
        top: 64px;
        right: -100%;
        bottom: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .menu-open .nav-content {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1.125rem;
    }

    .divider {
        width: 100%;
        height: 1px;
        margin: 1rem 0;
    }

    .social-links {
        gap: 1.5rem;
    }

    .mobile-menu-button {
        display: flex;
    }

    .menu-open .mobile-menu-button span:first-child {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-open .mobile-menu-button span:nth-child(2) {
        opacity: 0;
    }

    .menu-open .mobile-menu-button span:last-child {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Slideshow */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    /* aspect-ratio: 16 / 9; Optional: keeps a fixed ratio */
}


.mySlides {
    display: none;
    width: 100%;
    height: 50%;
}

/* .mySlides img {
    width: 100px;
    height: 500px;
} */
.mySlides img {
    width: 100%;
    height: auto;
    object-fit: fill;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0 3px 3px 0;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Dots */
.dot {
    height: 15px;
    width: 15px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

.mySlides {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.mySlides.active {
    display: block;
    opacity: 1;
    position: relative;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.mySlides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease, transform 1s ease;
    z-index: 0;
}

.mySlides img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.mySlides.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.mySlides {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.mySlides img {
    width: 100%;
    height: auto;
}

.mySlides.active {
    display: block;
    opacity: 1;
    position: relative;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background-color: #4f46e5;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.mySlides img {
    width: 100%;
    display: block;
}

.dot-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background-color: #ffffff;
}

.dot-container {
    backdrop-filter: blur(4px);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
}

/* #about {
    padding: 1rem 0;
    text-align: center;
} */

.slideshow-container {
    position: relative;
    width: 100vw;
    /* Full viewport width */
    height: 60vh;
    /* Full viewport height */
    overflow: hidden;
}

.mySlides {
    display: none;
    width: 100%;
    height: 100%;
}

.mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fills area, maintains aspect ratio, crops overflow */
    display: block;
}

/* Optional: If you want to preserve full image without cropping, use this instead */
/* .mySlides img {
  object-fit: contain;
  background: #000;  // Helps avoid white padding on sides
} */

/* Dots inside and centered */
.dot-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 6px 12px;
    border-radius: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: white;
}

/* Arrows (optional styling) */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    transition: 0.3s;
    user-select: none;
    z-index: 10;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}


@media (max-width: 768px) {
    .slideshow-container {
        aspect-ratio: 4 / 3;
    }
}

/* Slideshow */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    /* aspect-ratio: 16 / 9; Optional: keeps a fixed ratio */
}


.mySlides {
    display: none;
    width: 100%;
    /* height: 50%; */
}

/* .mySlides img {
    width: 100px;
    height: 500px;
} */
.mySlides img {
    width: 100%;
    height: auto;
    object-fit: fill;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0 3px 3px 0;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Dots */
.dot {
    height: 15px;
    width: 15px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

.mySlides {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.mySlides.active {
    display: block;
    opacity: 1;
    position: relative;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.mySlides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease, transform 1s ease;
    z-index: 0;
}

.mySlides img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.mySlides.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.mySlides {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.mySlides img {
    width: 100%;
    height: auto;
}

.mySlides.active {
    display: block;
    opacity: 1;
    position: relative;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background-color: #4f46e5;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.mySlides img {
    width: 100%;
    display: block;
}

.dot-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background-color: #ffffff;
}

.dot-container {
    backdrop-filter: blur(4px);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
}

#about {
    padding: 2rem 1rem;
    text-align: center;
    width: 100%;
    background-image: url(./Images/l69.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

#about img {
    filter: blur(10px);
    -webkit-filter: blur(10px);
}

#about .container {
    max-width: 800px;
    margin: 0 auto;
    /* background-color: rgba(0, 0, 0, 0.5); */
    /* Optional: improves readability on image */
    padding: 1rem;
    /* border-radius: 8px; */
}

#about h2 {
    font-size: 10rem;
    margin-bottom: 1rem;
    /* background-color: rgb(0, 0, 0); */
    /* Fallback color */
    /* background-color: rgba(0, 0, 0, 0.4); */
    /* Black w/opacity/see-through */
}

#about p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #about h2 {
        font-size: 1.5rem;
    }

    #about p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    #about {
        padding: 1.5rem 1rem;
        flex-direction: column;
    }

    #about h2 {
        font-size: 1.3rem;
    }

    #about p {
        font-size: 0.9rem;
    }
}

#footer {
    width: 100%;
    height: 60vh;
}

.endfooter {
    width: 100%;
    height: auto;
}

.slideshow-container {
    position: relative;
    width: 100vw;
    /* Full viewport width */
    height: 60vh;
    /* Full viewport height */
    overflow: hidden;
}

.mySlides {
    display: none;
    width: 100%;
    height: 100%;
}

.mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fills area, maintains aspect ratio, crops overflow */
    display: block;
}

/* Optional: If you want to preserve full image without cropping, use this instead */
/* .mySlides img {
  object-fit: contain;
  background: #000;  // Helps avoid white padding on sides
} */

/* Dots inside and centered */
.dot-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 6px 12px;
    border-radius: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: white;
}

/* Arrows (optional styling) */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    transition: 0.3s;
    user-select: none;
    z-index: 10;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}


@media (max-width: 768px) {
    .slideshow-container {
        aspect-ratio: 4 / 3;
    }
}

.carousel img {
    width: 70px;
    max-height: 70px;
    border-radius: 50%;
    margin-right: 1rem;
    overflow: hidden;
}

.carousel-inner {
    padding: 1rem;
}

@media screen and (min-width: 576px) {
    .carousel-inner {
        display: flex;
        width: 90%;
        margin-inline: auto;
        padding: 1em 0;
        overflow: hidden;
    }

    .carousel-item {
        display: block;
        margin-right: 0;
        flex: 0 0 calc(100% / 2);
    }
}

@media screen and (min-width: 768px) {
    .carousel-item {
        display: block;
        margin-right: 0;
        flex: 0 0 calc(100% / 3);
    }
}

.carousel .card {
    margin: 0 0.5em;
    border: 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
    height: 3rem;
    background-color: grey;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.red td {
    background-color: #333333;
    font-size: 28px;
    font-weight: bold;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}

.babyred {
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    width: 250px;
    height: 250px;
    background-color: #717171;
    color: white;
    justify-content: center;
}

#about {
    position: relative;
    padding: 2rem 1rem;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    overflow: hidden;
    /* Prevent blur overflow */
    min-height: 50vh;
    /* Use min-height instead of fixed vh for better responsiveness */
}

/* Background image with blur */
#about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url(./Images/l69.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    z-index: 0;
    transform: scale(1.1);
    /* Prevent edges from showing blur cut-off */
}

/* Content container */
#about .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    /* Optional: improves text readability */
    border-radius: 8px;
}

#about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

#about p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Responsive design */
@media (max-width: 768px) {
    #about h2 {
        font-size: 1.5rem;
    }

    #about p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    #about {
        padding: 1.5rem 1rem;
        flex-direction: column;
    }

    #about h2 {
        font-size: 2rem;
    }

    #about p {
        font-size: 0.9rem;
    }
}

.responsive-cell-block {
    min-height: 75px;
}

.text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 25px;
    height: 50%;
    width: 100%;
}

img {
    object-fit: cover;
}

.responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
}

.responsive-container-block.bg {
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 1320px;
    margin: 50px 0 50px 0;
}

.text-blk.title {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 36px;
    line-height: 45px;
    font-weight: 900;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin: 0 0 15px 0;
}

* {
    font-family: Nunito, sans-serif;
}

.text-blk.desc {
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    height: auto;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
    max-width: 750px;
}

.responsive-container-block.blocks {
    width: 100%;
    min-height: 0px;
    justify-content: space-between;
    max-width: 1320px;
}

.responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content {
    width: 30%;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.text-blk.info-block {
    width: 85%;
    height: auto;
    font-size: 18px;
    line-height: 30px;
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
    margin: 30px 0 30px 0;
}

.responsive-container-block.person {
    width: 90%;
    min-height: 0px;
    height: auto;
    margin-top: 0px;
    margin-right: 31.25px;
    margin-bottom: 20px;
    margin-left: 31.25px;
}

.responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.icon-block {
    width: 22%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.text-block {
    width: 78%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.text-blk.name {
    font-size: 18px;
    line-height: 20px;
    font-weight: 900;
    height: auto;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 10px;
}

.text-blk.desig {
    line-height: 16px;
    height: auto;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

.profile-img {
    width: 60px;
    height: 60px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
}

.responsive-container-block.big-container {
    justify-content: center;
    padding: 0 50px 0 50px;
}

@media (max-width: 1024px) {
    .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content {
        width: 47%;
    }

    .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content.bottom {
        margin-top: 5%;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 25%;
    }

    .text-blk.desc {
        width: 70%;
    }

    .responsive-container-block.person {
        margin-top: 5%;
        margin-right: 31.25px;
        margin-bottom: 0px;
        margin-left: 31.25px;
    }

    .text-blk.title {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }

    .responsive-container-block.person {
        margin-top: 21.9375px;
        margin-right: 31.25px;
        margin-bottom: 20px;
        margin-left: 31.25px;
    }

    .text-blk.info-block {
        margin-top: 30px;
        margin-right: 0px;
        margin-bottom: 25px;
        margin-left: 0px;
    }
}

@media (max-width: 768px) {
    .responsive-container-block.person {
        margin-top: 0px;
        margin-right: 31.25px;
        margin-bottom: 0px;
        margin-left: 31.25px;
    }

    .text-blk.info-block {
        height: 50%;
        font-size: 17px;
    }

    .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content {
        width: 100%;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 5%;
        margin-left: 0px;
    }

    .text-blk.desc {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 80px;
        margin-left: 0px;
        width: 85%;
        font-size: 17px;
    }

    .text-blk.title {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        font-size: 30px;
    }

    .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content.bottom {
        width: 100%;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }

    .responsive-container-block.blocks {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }

    .responsive-container-block.bg {
        flex-wrap: nowrap;
    }

    .responsive-container-block.person {
        margin-top: 0px;
        margin-right: 31.25px;
        margin-bottom: 20px;
        margin-left: 31.25px;
    }

    .text-blk.info-block {
        margin-top: 30px;
        margin-right: 0px;
        margin-bottom: 30px;
        margin-left: 0px;
    }

    .text-blk.desc {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 30px;
        margin-left: 0px;
    }

    .text-blk.desig {
        font-size: 15px;
    }

    .text-blk.name {
        font-size: 17px;
    }
}

@media (max-width: 500px) {
    .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content {
        width: 100%;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 8%;
        margin-left: 0px;
    }

    .text-blk.desc {
        width: 90%;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        font-size: 16px;
        line-height: 24px;
    }

    .text-blk.title {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        font-size: 26px;
    }

    .text-blk.info-block {
        margin-top: 30px;
        margin-right: 0px;
        margin-bottom: 50px;
        margin-left: 0px;
        font-size: 16px;
        line-height: 26px;
        margin: 30px 0 20px 0;
    }

    .text-blk.desc {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 30px;
        margin-left: 0px;
    }

    .responsive-container-block.big-container {
        padding: 0 30px 0 30px;
    }

    .text-blk.name {
        font-size: 17px;
    }

    .text-blk.desig {
        font-size: 15px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

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

body {
    margin: 0;
}

.wk-desk-1 {
    width: 8.333333%;
}

.wk-desk-2 {
    width: 16.666667%;
}

.wk-desk-3 {
    width: 25%;
}

.wk-desk-4 {
    width: 33.333333%;
}

.wk-desk-5 {
    width: 41.666667%;
}

.wk-desk-6 {
    width: 50%;
}

.wk-desk-7 {
    width: 58.333333%;
}

.wk-desk-8 {
    width: 66.666667%;
}

.wk-desk-9 {
    width: 75%;
}

.wk-desk-10 {
    width: 83.333333%;
}

.wk-desk-11 {
    width: 91.666667%;
}

.wk-desk-12 {
    width: 100%;
}

@media (max-width: 1024px) {
    .wk-ipadp-1 {
        width: 8.333333%;
    }

    .wk-ipadp-2 {
        width: 16.666667%;
    }

    .wk-ipadp-3 {
        width: 25%;
    }

    .wk-ipadp-4 {
        width: 33.333333%;
    }

    .wk-ipadp-5 {
        width: 41.666667%;
    }

    .wk-ipadp-6 {
        width: 50%;
    }

    .wk-ipadp-7 {
        width: 58.333333%;
    }

    .wk-ipadp-8 {
        width: 66.666667%;
    }

    .wk-ipadp-9 {
        width: 75%;
    }

    .wk-ipadp-10 {
        width: 83.333333%;
    }

    .wk-ipadp-11 {
        width: 91.666667%;
    }

    .wk-ipadp-12 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .wk-tab-1 {
        width: 8.333333%;
    }

    .wk-tab-2 {
        width: 16.666667%;
    }

    .wk-tab-3 {
        width: 25%;
    }

    .wk-tab-4 {
        width: 33.333333%;
    }

    .wk-tab-5 {
        width: 41.666667%;
    }

    .wk-tab-6 {
        width: 50%;
    }

    .wk-tab-7 {
        width: 58.333333%;
    }

    .wk-tab-8 {
        width: 66.666667%;
    }

    .wk-tab-9 {
        width: 75%;
    }

    .wk-tab-10 {
        width: 83.333333%;
    }

    .wk-tab-11 {
        width: 91.666667%;
    }

    .wk-tab-12 {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .wk-mobile-1 {
        width: 8.333333%;
    }

    .wk-mobile-2 {
        width: 16.666667%;
    }

    .wk-mobile-3 {
        width: 25%;
    }

    .wk-mobile-4 {
        width: 33.333333%;
    }

    .wk-mobile-5 {
        width: 41.666667%;
    }

    .wk-mobile-6 {
        width: 50%;
    }

    .wk-mobile-7 {
        width: 58.333333%;
    }

    .wk-mobile-8 {
        width: 66.666667%;
    }

    .wk-mobile-9 {
        width: 75%;
    }

    .wk-mobile-10 {
        width: 83.333333%;
    }

    .wk-mobile-11 {
        width: 91.666667%;
    }

    .wk-mobile-12 {
        width: 100%;
    }
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    padding: 20px;
}

.map-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

#map {
    flex: 2;
    min-width: 300px;
}

.contact-info {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 10px;
}

iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.contact-info a {
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.contact-info img {
    width: 20px;
    height: 20px;
    color: black;
}

/* Responsive: Stack on smaller screens */
@media (max-width: 768px) {
    .map-container {
        flex-direction: column;
    }

    iframe {
        height: 300px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    /* ✅ Stacks Cycleworld and MIR vertically */
    line-height: 1.2;
}

.brand-name {
    font-family: 'Arial';
    font-size: 17px;
    font-style: italic;
    color: red;
}

.sub-brand {
    font-family: 'Arial';
    font-size: 9px;
    font-weight: bold;
    color: #333;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    padding-top: 69px;
    /* space for fixed navbar */
}

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 40px;
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4f46e5;
}

.divider {
    width: 1px;
    height: 1.5rem;
    background-color: #e5e7eb;
}

/* Social icons */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #6b7280;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #4f46e5;
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #374151;
    transition: all 0.3s ease;
}

/* Mobile styles */
@media (max-width: 768px) {
    .nav-content {
        position: fixed;
        top: 64px;
        right: -100%;
        bottom: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .menu-open .nav-content {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1.125rem;
    }

    .divider {
        width: 100%;
        height: 1px;
        margin: 1rem 0;
    }

    .social-links {
        gap: 1.5rem;
    }

    .mobile-menu-button {
        display: flex;
    }

    .menu-open .mobile-menu-button span:first-child {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-open .mobile-menu-button span:nth-child(2) {
        opacity: 0;
    }

    .menu-open .mobile-menu-button span:last-child {
        transform: translateY(-9px) rotate(-45deg);
    }
}


* {
    font-family: Nunito, sans-serif;
}

.text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 25px;
}

.responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
}

.responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
    background-image: url("https://workik-widget-assets.s3.amazonaws.com/widget-assets/images/bb29.png");
    background-position-x: initial;
    background-position-y: initial;
    background-size: cover;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: initial;
    /* background-repeat-x: no-repeat; */
    /* background-repeat-y: no-repeat; */
}

.responsive-container-block.Container {
    max-width: 800px;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    margin-top: 150px;
    margin-right: auto;
    margin-bottom: 150px;
    margin-left: auto;
    background-color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.text-blk.heading {
    font-size: 36px;
    line-height: 45px;
    font-weight: 800;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
}

.text-blk.subHeading {
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 60px;
    margin-left: 0px;
}

.socialIcon {
    width: 33px;
    height: 33px;
}

.social-icons-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.social-icon {
    margin: 0 50px 0 50px;
}

.social-icon:hover {
    cursor: pointer;
}

@media (max-width: 768px) {
    .text-blk.heading {
        font-size: 55px;
        line-height: 65px;
    }

    .text-blk.subHeading {
        font-size: 18px;
        line-height: 24px;
    }

    .socialIcon {
        width: 20px;
        height: 20px;
    }

    .text-blk.subHeading {
        line-height: 27px;
    }

    .text-blk.heading {
        font-size: 32px;
        line-height: 40px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 20px;
        margin-left: 0px;
    }

    .social-icon {
        margin: 0 25px 0 25px;
    }
}

@media (max-width: 500px) {
    .responsive-container-block.bigContainer {
        padding-top: 10px;
        padding-right: 20px;
        padding-bottom: 10px;
        padding-left: 20px;
    }

    .text-blk.heading {
        font-size: 45px;
        line-height: 55px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 20px;
        margin-left: 0px;
    }

    .text-blk.subHeading {
        font-size: 14px;
        line-height: 22px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 30px;
        margin-left: 0px;
    }

    .social-icons-container {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .text-blk.subHeading {
        font-size: 16px;
        line-height: 23px;
    }

    .text-blk.heading {
        font-size: 26px;
        line-height: 30px;
    }

    .social-icon {
        margin: 0 20px 0 20px;
    }
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    padding: 20px;
}

.map-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    padding-top: 1rem;
}

#map {
    flex: 2;
    min-width: 300px;
}

.contact-info {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 10px;
}

iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.contact-info a {
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.contact-info img {
    width: 20px;
    height: 20px;
    color: black;
}

/* Responsive: Stack on smaller screens */
@media (max-width: 768px) {
    .map-container {
        flex-direction: column;
    }

    iframe {
        height: 300px;
    }
}

.gallery_1 * {
    font-family: Nunito, sans-serif;
}

.gallery_1 .text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    line-height: 25px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

.gallery_1 img {
    object-fit: cover;
}

.gallery_1 .responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
}

.gallery_1 .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
}

.gallery_1 .responsive-container-block.Container {
    max-width: 1320px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    margin-top: 50px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery_1 .text-blk.heading {
    font-size: 36px;
    line-height: 45px;
    font-weight: 600;
    color: #242424;
    text-align: center;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
}

.gallery_1 .text-blk.subHeading {
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    max-width: 750px;
    color: #a3a3a3;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
}

.gallery_1 .responsive-container-block.imgContainer {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    min-height: auto;
    height: 720px;
    position: relative;
}

.gallery_1 .overlay {
    position: fixed;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgba(71, 69, 69, 0.7);
    height: 100%;
    width: 100%;
    max-height: 100%;
    top: 0px;
    left: 0px;
    z-index: 100;
    display: none;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}

.gallery_1 .overlay-inner {
    top: 50%;
    right: 0px;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: white;
    max-width: 700px;
    width: 100%;
    padding-top: 35px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    opacity: 1;
}

.gallery_1 .close {
    position: absolute;
    top: 9px;
    right: 15px;
    background-image: none;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: initial;
    outline-color: initial;
    outline-style: initial;
    outline-width: 0px;
    color: #474545;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: initial;
    border-right-style: initial;
    border-bottom-style: initial;
    border-left-style: initial;
    border-top-color: initial;
    border-right-color: initial;
    border-bottom-color: initial;
    border-left-color: initial;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery_1 .overlay-inner img {
    height: auto;
    width: 100%;
    transform: none;
}

.gallery_1 .close:hover {
    cursor: pointer;
}

.gallery_1 .project {
    position: absolute;
    width: 39.8%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

.gallery_1 .btn-box {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.gallery_1 .project:hover .btn-box {
    display: block;
}

.gallery_1 .btn {
    cursor: pointer;
}

.gallery_1 .smallImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery_1 .project.project1 {
    width: 39.8%;
    height: 66.67%;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

.gallery_1 .project.project2 {
    bottom: 0px;
    top: auto;
    right: auto;
    width: 59.75%;
    height: 32.6%;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

.gallery_1 .project.project3 {
    left: 40.2%;
    right: auto;
    bottom: auto;
    width: 19.4%;
    height: 32.98%;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

.gallery_1 .project.project4 {
    left: 40.2%;
    top: 33.7%;
    width: 19.5%;
    height: 32.98%;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

.gallery_1 .project.project5 {
    right: 0px;
    left: auto;
    bottom: auto;
    width: 39.8%;
    height: 32.6%;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

.gallery_1 .project.project6 {
    bottom: 0px;
    top: auto;
    left: auto;
    right: 0px;
    width: 39.8%;
    height: 66.67%;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

@media (max-width: 1024px) {
    .gallery_1 .responsive-container-block.imgContainer {
        height: 600px;
    }

    .gallery_1 .text-blk.subHeading {
        font-size: 18px;
        line-height: 27px;
    }
}

@media (max-width: 768px) {
    .gallery_1 .project.project5 {
        top: 520px;
        width: 100%;
        left: 0px;
        right: auto;
        bottom: auto;
        height: 200px;
    }

    .gallery_1 .responsive-container-block.imgContainer {
        height: 930px;
    }

    .gallery_1 .project.project1 {
        width: 64%;
        height: 300px;
    }

    .gallery_1 .project.project3 {
        left: auto;
        width: 35%;
        height: 145px;
        right: 0px;
    }

    .gallery_1 .project.project4 {
        left: auto;
        width: 35%;
        height: 145px;
        top: 155px;
        right: 0px;
    }

    .gallery_1 .project.project6 {
        height: 200px;
        width: 100%;
    }

    .gallery_1 .project.project2 {
        width: 100%;
        top: 310px;
        height: 200px;
    }

    .gallery_1 .project {
        width: 100%;
        padding-top: 10px;
        padding-right: 0px;
        padding-bottom: 10px;
        padding-left: 0px;
    }

    .gallery_1 .overlay-inner {
        width: 90%;
    }

    .gallery_1 .text-blk.subHeading {
        line-height: 25px;
        font-size: 17px;
        max-width: 600px;
    }

    .gallery_1 .text-blk.heading {
        font-size: 30px;
        line-height: 40px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 15px;
        margin-left: 0px;
    }
}

@media (max-width: 500px) {
    .gallery_1 .responsive-container-block.imgContainer {
        height: 890px;
    }

    .gallery_1 .responsive-container-block.bigContainer {
        padding-top: 10px;
        padding-right: 20px;
        padding-bottom: 10px;
        padding-left: 20px;
    }

    .gallery_1 .text-blk.heading {
        font-size: 30px;
        line-height: 35px;
    }

    .gallery_1 .text-blk.subHeading {
        font-size: 16px;
        line-height: 22px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 30px;
        margin-left: 0px;
    }

    .gallery_1 .project.project1 {
        height: 250px;
    }

    .gallery_1 .project.project3 {
        height: 123px;
    }

    .gallery_1 .project.project4 {
        height: 123px;
        top: 127px;
    }

    .gallery_1 .project.project2 {
        top: 260px;
    }

    .gallery_1 .project.project5 {
        top: 470px;
    }

    .gallery_1 .project.project6 {
        top: 680px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

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

body {
    margin: 0;
}

.wk-desk-1 {
    width: 8.333333%;
}

.wk-desk-2 {
    width: 16.666667%;
}

.wk-desk-3 {
    width: 25%;
}

.wk-desk-4 {
    width: 33.333333%;
}

.wk-desk-5 {
    width: 41.666667%;
}

.wk-desk-6 {
    width: 50%;
}

.wk-desk-7 {
    width: 58.333333%;
}

.wk-desk-8 {
    width: 66.666667%;
}

.wk-desk-9 {
    width: 75%;
}

.wk-desk-10 {
    width: 83.333333%;
}

.wk-desk-11 {
    width: 91.666667%;
}

.wk-desk-12 {
    width: 100%;
}

@media (max-width: 1024px) {
    .wk-ipadp-1 {
        width: 8.333333%;
    }

    .wk-ipadp-2 {
        width: 16.666667%;
    }

    .wk-ipadp-3 {
        width: 25%;
    }

    .wk-ipadp-4 {
        width: 33.333333%;
    }

    .wk-ipadp-5 {
        width: 41.666667%;
    }

    .wk-ipadp-6 {
        width: 50%;
    }

    .wk-ipadp-7 {
        width: 58.333333%;
    }

    .wk-ipadp-8 {
        width: 66.666667%;
    }

    .wk-ipadp-9 {
        width: 75%;
    }

    .wk-ipadp-10 {
        width: 83.333333%;
    }

    .wk-ipadp-11 {
        width: 91.666667%;
    }

    .wk-ipadp-12 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .wk-tab-1 {
        width: 8.333333%;
    }

    .wk-tab-2 {
        width: 16.666667%;
    }

    .wk-tab-3 {
        width: 25%;
    }

    .wk-tab-4 {
        width: 33.333333%;
    }

    .wk-tab-5 {
        width: 41.666667%;
    }

    .wk-tab-6 {
        width: 50%;
    }

    .wk-tab-7 {
        width: 58.333333%;
    }

    .wk-tab-8 {
        width: 66.666667%;
    }

    .wk-tab-9 {
        width: 75%;
    }

    .wk-tab-10 {
        width: 83.333333%;
    }

    .wk-tab-11 {
        width: 91.666667%;
    }

    .wk-tab-12 {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .wk-mobile-1 {
        width: 8.333333%;
    }

    .wk-mobile-2 {
        width: 16.666667%;
    }

    .wk-mobile-3 {
        width: 25%;
    }

    .wk-mobile-4 {
        width: 33.333333%;
    }

    .wk-mobile-5 {
        width: 41.666667%;
    }

    .wk-mobile-6 {
        width: 50%;
    }

    .wk-mobile-7 {
        width: 58.333333%;
    }

    .wk-mobile-8 {
        width: 66.666667%;
    }

    .wk-mobile-9 {
        width: 75%;
    }

    .wk-mobile-10 {
        width: 83.333333%;
    }

    .wk-mobile-11 {
        width: 91.666667%;
    }

    .wk-mobile-12 {
        width: 100%;
    }
}