* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 }

body {
    background-color: black;
    color: #f0f0f0;
    margin: 0 auto;
    font-family: 'Montserrat';
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}
*::-webkit-scrollbar {
    display: none;
}

.title {
    position: relative;
    width: 100%;
    padding: 100px 0 0;
    margin: 0 auto;
    background-color: #0f0f0f;
}

.title .detail {
    width: 100%;
    font-size: 16vw;
    font-family: Oswald;
    color: #272727;
    position: relative;
    line-height: 1.2;
}

.title .top {
    width: 85%;
    margin: 0 auto;
    position: relative;
}

.title .bottom {
    display: flex;
    margin-top: 7%;
    margin-left: 7.5%;
    width: 85%;
    justify-content: space-between;
    padding-bottom: 90px;
    gap: 50px;
}

.title .leftside {
    font-size: 60px;
    font-weight: bold;
    width: 720px;
    min-width: 430px;;
    text-transform: uppercase;
}

.title .bottom .rightside {
    font-size: 17px;
    min-width: 600px;
    max-width: 750px;
    line-height: 30px;
}

.title .rightside .btn {
    margin-top: 50px;
}

.title .rightside .btn, .stages .rightside .btn {
    color: white;
    background-color: #D40000;
    border: none;
    padding: 13px 40px;
    border-radius: 7px;
    font-weight: bold;
    font-size: 16px;
}

.services {
    width: 100%;
    height: 100%;
}

.service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 5vw;
    padding-inline: 3vw;
}

.second {
    background-color: #0f0f0f;
}

.third {
    background-color: #1e1e1e;
}

.service img {
    width: 100%;
    min-width: 300px;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: block;
}

.service .leftside {
    text-align: center;
    width: 30%;
}

.service .leftside .name {
    font-size: clamp(24px, 2.5vw, 40px);
    font-weight: 700;
}
.mainside .text {
    font-size: clamp(16px, 1.3vw, 30px);
}

.mainside {
    text-align: center;
    width: 100%;
    padding-left: 4vw;
    padding-right: 2vw;
}

.service .rightside {
    width: 40%;
}

@media screen and (max-width: 1200px) {
    .title .bottom {
        gap: 0;
        flex-direction: column;
    }

    .title .leftside {
        font-size: 38px;
        width: auto;
        min-width: 300px;
    }

    .title .bottom .rightside {
        min-width: 300px;
        max-width: 100%;
    }
}

@media screen and (max-width: 1000px) {

    .service {
        flex-direction: column;
        gap: 4vw;
        padding: 7.5%;
    }

    .service img {
        width: 100%;
        min-width: 250px;
        aspect-ratio: 5 / 3;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        display: block;
    }

    .service .leftside {
        text-align: start;
        width: 100%;
    }

    .service .leftside .name {
        font-size: 30px;
        font-weight: 700;
    }
    .service .mainside .text {
        font-size: clamp(16px, 1.3vw, 30px);
    }

    .service .mainside {
        text-align: start;
        width: 100%;
        padding-inline: 0px;
    }

    .service .rightside {
        width: 60%;
    }
}

@media screen and (max-width: 700px) {

    .title .rightside {
        min-width: 0px !important;
    }

    .title .leftside {
        font-size: 35px;
    }
}