@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    list-style: none;
    text-decoration: none;
}

body {
    padding-top: 80px;
    overflow-x: hidden;
}

.service_container {
    width: 100vw;
}

.service_container .service_hero_container {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    overflow: hidden;
}

.service_container .service_hero_container .service_title_part {
    position: absolute;
    z-index: 3;
    top: 40%;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    width: 40%;
    height: 40%;
    padding: 0 0 0 10rem;
    background: #008080;
    border-radius: 0 50px 50px 0;


}

.service_container .service_hero_container .service_title_part .service_line_1 {
    font-size: 1.75rem;
    color: #fff;

}

.service_container .service_hero_container .service_title_part a {
    margin-top: 0.5rem;
}

.service_container .service_hero_container .service_title_part a button {
    cursor: pointer;
    background-color: #F4A300;
    border-radius: 10px;
    padding: 10px;
    font-weight: 600;
    font-size: 1rem;
    color: #008080;
    border: none;
    transition: 0.5s;
}

.service_container .service_hero_container .service_title_part a button:hover {
    box-shadow: 2px 2px 10px #ffffff;
}


.service_container .service_hero_container .service_image_part {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service_image_part img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.service_info {
    width: 100%;
    padding: 2rem 10rem;
}

.service_info h2 {
    font-size: 1.75rem;
    padding-left: 1rem;
    background: #008080;
    color: #F4A300;
    margin: 0 0 1rem 0;
    border-radius: 10px;
}

.service_info p {
    font-size: 1rem;
}

.service_info h3 {
    font-size: 1.5rem;
    padding-left: 1rem;
    background: linear-gradient(to right, #008080, transparent);
    color: #F4A300;
    margin: 1rem 0 1rem 0;
    border-radius: 10px 0 0 10px;
}

.service_portfolio {
    width: 100%;
    padding: 2rem 10rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}



.service_portfolio .portfolio_item {
    margin: 1rem 0;
    width: 48%;
    height: 50vh;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 5px 5px 38px #ababab,
        -5px -5px 38px #ababab;
}

.service_portfolio .portfolio_item img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.5s;

}

.service_portfolio .portfolio_item img:hover {
    transform: scale(1.1);
}

.preview_picture {
    display: none;
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    top: 0;
    left: 0;
    z-index: 10;
    height: 100%;
    width: 100%;
    overflow: hidden;
    padding: 3rem 10rem;
}

.preview_picture span {
    padding: 5px;
    height: 20px;
    width: 20px;
    background: #008080;
    border-radius: 50%;
    float: right;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview_picture img {
    height: 80vh;
    width: 100%;
}


@media (max-width: 991px) {

    .service_container .service_hero_container {
        height: 50vh;
    }

    .service_container .service_hero_container .service_title_part {
        width: 80%;
        height: 30%;
        border-radius: 0 15px 15px 0;
        padding: 0 0 0 1rem;
    }

    .service_container .service_hero_container .service_title_part .service_line_1 {
        font-size: 1rem;
        color: #fff;
    }

    .service_container .service_hero_container .service_title_part .service_line_1 span {
        font-size: 1.1rem;
        color: #F4A300;
        font-weight: bold;
    }

    .service_container .service_hero_container .service_title_part a {
        margin-top: 0.25rem;
    }

    .service_container .service_hero_container .service_title_part a button {
        font-size: 0.5rem;
    }

    .service_info {
        width: 100%;
        padding: 2rem 1rem;
    }

    .service_info h2 {
        font-size: 1.5rem;
        background: linear-gradient(to right, #008080, transparent);
    }

    .service_info p {
        font-size: 1rem;
    }

    .service_info h3 {
        font-size: 1.25rem;
        background: linear-gradient(to right, #008080, transparent);
    }

    .service_portfolio {
        padding: 2rem 1rem;
    }

    .service_portfolio .portfolio_item {
        width: 48%;
        height: 30vh;
    }

    .preview_picture {
        padding: 30% 1rem;
    }


    .preview_picture img {
        height: 40vh;
        width: 100%;
    }
}