@media screen and (min-width: 1200px) {
    
    .carousel-container {
        position: relative;
        width: 100%;
        max-width: 800px;
        margin: 20px auto;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        aspect-ratio: 16/9;
        margin-bottom: 60px;
        background-color: #666666;
    }

    .carousel {
        display: flex;
        width: 100%;
        height: 100%;
        transition: transform 0.5s ease-in-out;
    }

    .slide {
        min-width: 100%;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        box-sizing: border-box;
    }

    .slide img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .controls {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 2;
    }

    .radio-btn {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        border: none;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .radio-btn.active {
        background-color: rgb(255, 255, 255);
    }

    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.7);
        border: none;
        border-radius: 50%;
        font-size: 1.2rem;
        color: #333;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
    }

    .nav-btn:hover {
        background-color: rgba(255, 255, 255, 0.9);
    }

    .prev {
        left: 15px;
    }

    .next {
        right: 15px;
    }

    .describes {
        display: flex;
        width: 70%;
        margin: auto;
        gap: 10%;
    }

    .describe {
        color: white;
        text-align: center;
        transition: transform 0.3s ease-in-out;
        width: 33%;
    }

    .describe:hover {
        transform: scale(1.2);
        text-shadow: 2px 2px 2px dimgray;
    }

    .describe h3 {
        margin-bottom: 0;
    }

    .describe p {
        margin-top: 10px;
    }

    .services {
        text-align: center;
        color: rgb(245, 245, 245);
        background-color: rgb(63, 80, 91);
        padding: 20px;
        clip-path: polygon(0 5%, 20% 0%, 100% 5%, 100% 100%, 0 100%);
        padding-top: 20px;
    }

    .service-row {
        display: flex;
        justify-content: center;
        gap: 10%;
    }

    .service {
        width: 30%;
        text-align: left;
    }

    .service img {
        float: left;
        width: 50px;
        height: auto;
        margin: auto;
        margin-right: 10px;
    }

    .service h3 {
        margin-bottom: 5px;
    }

    .service p {
        margin-top: 5px;
        color: rgb(169, 169, 169);
    }

    .service-content {
        display: block;
        overflow: hidden;
    }

}

@media screen and (min-width: 769px) and (max-width: 1199px) {

    .carousel-container {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 20px auto;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        aspect-ratio: 16/9;
        margin-bottom: 60px;
        background-color: #666666;
    }

    .carousel {
        display: flex;
        width: 100%;
        height: 100%;
        transition: transform 0.5s ease-in-out;
    }

    .slide {
        min-width: 100%;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px;
        box-sizing: border-box;
    }

    .slide img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .controls {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 2;
    }

    .radio-btn {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        border: none;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .radio-btn.active {
        background-color: rgb(255, 255, 255);
    }

    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 38px;
        height: 38px;
        background-color: rgba(255, 255, 255, 0.8);
        border: none;
        border-radius: 50%;
        font-size: 1.1rem;
        color: #333;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
    }

    .prev {
        left: 12px;
    }

    .next {
        right: 12px;
    }

    .describes {
        display: flex;
        width: 80%;
        margin: auto;
        gap: 8%;
    }

    .describe {
        color: white;
        text-align: center;
        transition: transform 0.3s ease-in-out;
        width: 30%;
    }

    .describe:hover {
        transform: scale(1.1);
        text-shadow: 2px 2px 2px dimgray;
    }

    .describe h3 {
        margin-bottom: 0;
    }

    .describe p {
        margin-top: 10px;
    }

    .services {
        text-align: center;
        color: rgb(245, 245, 245);
        background-color: rgb(63, 80, 91);
        padding: 16px;
        clip-path: polygon(0 4%, 20% 0, 100% 4%, 100% 100%, 0 100%);
        padding-top: 16px;
    }

    .service-row {
        display: flex;
        justify-content: center;
        gap: 8%;
        flex-wrap: wrap;
    }

    .service {
        width: 40%;
        text-align: left;
        margin-bottom: 20px;
    }

    .service img {
        float: left;
        width: 50px;
        height: auto;
        margin: auto;
        margin-right: 12px;
    }

    .service h3 {
        margin-bottom: 5px;
    }

    .service p {
        margin-top: 5px;
        color: rgb(169, 169, 169);
    }

    .service-content {
        display: block;
        overflow: hidden;
    }
}

@media screen and (max-width: 768px) {

    .carousel-container {
        position: relative;
        width: 100%;
        margin: 20px auto;
        overflow: hidden;
        border-radius: 10px;
        aspect-ratio: 16/9;
        margin-bottom: 60px;
        background-color: #666666;
    }

    .carousel {
        display: flex;
        width: 100%;
        height: 100%;
        transition: transform 0.5s ease-in-out;
    }

    .slide {
        min-width: 100%;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        padding: 5px;
    }

    .slide img {
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .controls {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 2;
    }

    .radio-btn {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgb(255, 255, 255, 0.5);
        border: none;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .radio-btn.active {
        background-color: rgb(255, 255, 255);
    }

    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 35px;
        height: 35px;
        background-color: rgba(255, 255, 255, 0.9);
        border: none;
        border-radius: 50%;
        font-size: 1rem;
        color: #333;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .describes {
        width: 70%;
        margin: auto;
    }

    .describe {
        color: rgb(255, 255, 255);
        text-align: center;
        width: 95%;
    }

    .describe h3 {
        margin-bottom: 0;
    }

    .describe p {
        margin-top: 10px;
    }

    .services {
        text-align: center;
        color: rgb(245, 245, 245);
        background-color: rgb(63, 80, 91);
        padding: 10px;
        clip-path: polygon(0 1%, 20% 0, 100% 1%, 100% 100%, 0 100%);
        padding-top: 10px;
    }

    .service {
        width: 90%;
        text-align: left;
    }

    .service img {
        float: left;
        width: 50px;
        height: auto;
        margin: auto;
        margin-right: 15px;
    }

    .service h3 {
        margin-bottom: 5px;
    }

    .service p {
        margin-top: 5px;
        color: rgb(169, 169, 169);
    }

    .service-content {
        display: block;
        overflow: hidden;
    }

}

.describe h3 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.describe p {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.service h3 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.service p {
    font-family: Arial, Helvetica, sans-serif;
}