/* ---HEADER--- */

header .desktop_header {
    position: relative;
}

@media (max-width: 996px) {
    header .mobile_header {
        position: relative;
    }
}

/* ---SERVICES SECTION--- */

.service_text {
    padding: 5% 0;
    display: flex;
    flex-direction: column;
    gap: 2vw;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service_text .cta_service {
    color: #ff9f29;
    font-size: 20px;
    font-weight: 600;
}

.service_section .section-div h2{
    font-size: 2vw;
}

.service_section .section-div ul>li{
    font-size: 14px;
}

.services_section .services_item {
    display: grid;
    grid-template-columns: 40% 60%;
    margin-bottom: 80px;
}

.services_section .media_service {
    display: flex;
    align-items: center;
}

.services_section .info_service {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 50px;
}

.services_section .info_service h2 {
    font-size: 25px;
}

.services_section .info_service span {
    color: black;
}

.services_section .info_service a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-weight: 600;
    width: 200px;
    height: 40px;
    border: 2px solid black;
    margin-top: 5px;
    transform: skewX(-15deg);
    background: linear-gradient(to right, var(--orange) 50%, transparent 50%);
    background-size: 200%;
    background-position: 100%;
}

.services_section .info_service a:hover {
    color: white;
    border: 2px solid var(--orange);
    background-position: 0;
}


@media (max-width: 996px) {
    .services_section {
        padding: 20% 10%;
    }

    .services_section .services_item {
        grid-template-columns: 100%;
        margin-bottom: 80px;
    }

    .services_section .info_service {
        margin: 20px 0 0 0;
    }
}


/* ---BANNER SECTION--- */

.banner_section {
    position: relative;
    height: 100vh;
}

.banner_section .bg_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.banner_section .orange_filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff7e22;
    mix-blend-mode: multiply;
    z-index: -1;
    clip-path: polygon(0 35%, 50% 55%, 100% 35%, 100% 100%, 0 100%);
}

.banner_section .banner_box,
.banner_section .banner_title {
    height: 100%;
}

.banner_section .banner_title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner_section .banner_title h1 {
    color: white;
    font-size: 60px;
    text-align: center;
    font-style: italic;
    text-shadow: 3px 3px 5px black;
}

@media (max-width: 996px) {
    .banner_section {
        height: 40vh;
    }

    .banner_section .orange_filter {
        clip-path: polygon(0 40%, 50% 55%, 100% 40%, 100% 100%, 0 100%);
    }

    .banner_section .banner_title h1 {
        font-size: 35px;
    }
}


/* ---SERVICES SECTION--- */

.service_section {
    padding: 5% 10%;
}

.service_section .contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5% 0%;
}

.service_section .service_text h2{
    font-size: 2vw;
}

.service_section .contact p{
    color: var(--orange);
    font-weight: 700;
    font-size: 16px;
}

.service_section .contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--orange);
    font-weight: 600;
    width: 200px;
    height: 40px;
    border: 2px solid var(--orange);
    margin-top: 5px;
    transform: skewX(-15deg);
    background: linear-gradient(to right, var(--orange) 50%, transparent 50%);
    background-size: 200%;
    background-position: 100%;
}

.service_section .contact a:hover {
    color: black;
    background-position: 0;
}

.service_section .service_box {
    display: grid;
    grid-template-columns: 60% 40%;
    padding-bottom: 5%;
}

.service_section .service_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 15%;
}

.service_section .services_media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service_section .service_info ul li{
    list-style-position: inside;
    font-size: 16px;
}

.service_section .service_info ul ::marker {
    color: var(--orange);
}

.service_section .service_info li {
    margin: 5px 0;
}

.service_section .service_info hr {
    width: 100%;
    height: 5px;
    margin: 20px 0;
    border: 0;
    border-radius: 5px;
    background: var(--orange);
}

@media (max-width: 996px) {
    .service_section .service_text h2{
        font-size: 5vw;
    }
    .service_section .section-div h2{
        font-size: 4vw;
    }
    .service_section .section-div ul>li{
        font-size: 3vw;
    }
}

/* Ubitation code */
.location_box{
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
    padding-top: 1.5vw;
}

.info_location{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.desc_location{
    display: flex;
    width: 70%;
    flex-direction: column;
    align-items: center;
}

.desc_location ul li{
    list-style-position: inside;
    font-size: 16px;
}

.location_box .map_box{
    display: flex;
    justify-content: center;
    gap: 10%;
    padding-bottom: 5%;
}

.location_box .map{
    display: flex;
}

.location_box .info_map{
    display: flex;
    flex-direction: column;
    width: 35%;
    gap: 8%;
    background-color: var(--orange);
    padding: 5% 5% 0 5%;
}

.location_box .info_map h4,
.location_box .info_map span{
    color: black;
    font-weight: 600;
    font-size: 14px;
}

.location_box .info_map a,
.location_box .info_map p{
    text-decoration: none;
    font-weight: 500;
}

.location_box .info_map a{
    color: white;
}

.location_box .info_map p{
    color: white;
    font-size: 14px;
}

.map_box .map iframe{
    border-radius: 0 5% 5% 0%;
    border: none;
}

@media (max-width: 996px) {
    .service_section {
        padding: 10%;
    }

    .service_section .contact p{
        font-size: 4vw;
    }

    .service_section .service_box {
        grid-template-columns: 100%
    }

    .service_section .service_info {
        margin-right: 0;
        margin-bottom: 3vw;
    }

    .service_section .service_info p {
        text-align: justify;
        font-size: 16px;
    }

    .service_section .service_info hr {
        height: 3px;
    }

    .service_section .services_media img {
        width: 80%;
    }
    /* location mobile */
    .location_box {
        padding: 5% 0;
    }
    .info_location{
        text-align: center;
    }
    .location_box .map_box {
        flex-direction: column;
        gap: 4.5vw;
    }
    .location_box .info_map {
        width: 100%;
        text-align: center;
    }
    .location_box .map {
        flex-direction: column-reverse;
    }
    .map_box .map iframe{
        width: 100%;
        border-radius: 0;
    }
}
