:root {
    --size-max-width: 1200px;
    --size-navbar-height: 70px;
    --size-banner-margin: 12px;
    --size-banner-height: 650px;
    --size-quote-margin: 75px;
    --size-form-height: 0px;
    --size-section-padding-topbottom: 60px;
    --color-dark-blue: #0A4B85;
    --color-light-blue: #5887b1;
    --color-light-blue2: #abd8ff;
    --color-lighter-blue: rgb(8, 43, 66);
    --color-white: #eeeeee;
    --color-white-hover: #cccccc;
    --color-whatsapp-button: #097C15;
    --color-black: #111111;
    --color-black-hover: #333333;
    --color-orange: #F09A3D;
}

@font-face {
    font-family: lato;
    font-display: swap;
    src: url("../font/Lato-Regular.ttf");
}

@font-face {
    font-family: lato-bold;
    font-display: swap;
    src: url("../font/Lato-Bold.ttf");
}

@font-face {
    font-family: lato-light;
    font-display: swap;
    src: url("../font/Lato-light.ttf");
}

html,
body {
    font-size: 12px;
    --font-size-title: 3rem;
}

a {
    text-decoration: none;
}

.pmt-black-link {
    color: var(--color-black);
}

a:visited,
a:active {
    color: var(--color-white);
}

a:hover {
    color: var(--color-white-hover);
}

ul {
    list-style: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: lato;
    transition: all .375s ease;
}



.pmt-section {
    display: grid;
    align-items: center;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--size-section-padding-topbottom) 30px;
}

.pmt-section-banner {
    background-color: var(--color-dark-blue);
    padding-top: var(--size-navbar-height);
}

.pmt-wrapper-banner {}

.pmt-container-banner {
    width: 100%;
    max-height: 800px;
    overflow: auto;
}

.pmt-item-banner {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 40%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
    color: var(--color-white);
}

.pmt-content-banner {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    display: grid;
    gap: 10px;

}

.pmt-container-banner .owl-dots {
    position: absolute;
    bottom: 20px;
    /* Atur jarak dots dari bawah */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    width: 100%;
}


.pmt-wrapper {
    display: grid;
    margin: 0 auto;
    max-width: var(--size-max-width);
    width: 100%;
    z-index: 80;
    position: relative;
}

.pmt-wrapper.coverage {
    grid-template-columns: 0.3fr 1fr;
}

.pmt-wrapper.customer,
.pmt-wrapper.result {
    grid-template-columns: 0.4fr 1fr;
}

.pmt-wrapper.result {
    gap: 30px;
}

.pmt-section.navbar {
    padding: 0px 20px;
    position: fixed;
    max-height: var(--size-navbar-height);
    color: var(--color-white);
    min-height: var(--size-navbar-height);
    background-color: var(--color-dark-blue);
    z-index: 100;
    font-size: 1.5rem;
}

.pmt-wrapper.navbar {
    width: 100%;
    grid-template-columns: 1fr 14fr 1fr;
    align-items: center;
    justify-content: left;
}

.pmt-navbar-padma-logo {
    width: 65px;
    height: 65px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    justify-self: left;
}

.pmt-navbar-trigger {
    display: none;
}

.pmt-navbar-button-container {
    display: flex;
    margin-left: 10px;
    align-items: center;
    padding: 15px 0;
    gap: 30px;
}

.pmt-navbar-button {
    white-space: nowrap;
    color: var(--color-white);
    position: relative;
}

.pmt-navbar-button::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: var(--color-white-hover);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.pmt-navbar-button:hover::before {
    opacity: 1;
}

.pmt-navbar-button.product-container {
    position: relative;
}

.pmt-navbar-product {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    justify-self: center;
    color: var(--color-white);
}

.pmt-navbar-dropdown-icon {
    display: block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    background-image: url("../image/down.webp");
}

.pmt-navbar-product-dropdown-container {
    display: none;
}

.pmt-navbar-product:hover~.pmt-navbar-product-dropdown-container,
.pmt-navbar-product-dropdown-container:hover {
    position: absolute;
    display: block;
    background-color: var(--color-dark-blue);
    margin: 0;
    padding: 30px 30px 20px;
    left: -30px;
}

.pmt-navbar-product-dropdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pmt-navbar-product-dropdown-item a {
    color: var(--color-white);
}

.pmt-navbar-product-dropdown-item a:hover {
    color: var(--color-orange);
}

.pmt-section.banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../image/about.webp");
    padding: 15%;
    position: relative;
    color: var(--color-white);
}

.pmt-banner-title {
    text-align: center;
}

.pmt-banner-padma-logo {
    max-width: 150px;
    max-height: 150px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    justify-self: center;
}

.pmt-banner-title.company {
    margin: var(--size-banner-margin) 0;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.pmt-banner-title.slogan {
    margin: var(--size-banner-margin) 0;
    font-size: 5rem;
    width: 50%;
    justify-self: center;
    text-transform: capitalize;
}

.pmt-banner-link:hover {
    color: var(--color-white-hover);

}

.pmt-banner-link {
    margin-top: var(--size-banner-margin);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background-color: var(--color-orange);
    width: 190px;
    height: 50px;
    border-radius: 25px;
    justify-self: center;
    font-size: 1.5rem;
    color: var(--color-white);
    font-weight: bold;
}

.pmt-banner-link p {
    letter-spacing: 0.1rem;
}

.pmt-icon {
    font-size: 1.7rem;
    font-weight: 1000;
}



.pmt-banner-whatsapp-logo {
    display: block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    background-image: url("../image/whatsapp.webp");
}

.pmt-section.about {
    position: relative;
    color: var(--color-white);
    background-color: var(--color-dark-blue);
}

.pmt-section.about-overlay {
    position: absolute;
    background-image: url("../image/bgs_aboutus.png");
    opacity: 0.3;
    padding: 9%;
}

.pmt-about-title {
    margin-bottom: 12px;
    text-align: center;
}

.pmt-about-caption {
    font-size: 3.5rem;
    margin: 20px 0;
}

.pmt-about-text-container {
    display: grid;
    gap: 20px;
}

.pmt-about-text {
    font-size: 1.5rem;
}

.pmt-about-container {
    display: grid;
    text-align: center;
    column-gap: 100px;
}

.pmt-section.coverage {
    background-image: url("../image/bg_coverage_service.png");
    background-size: 60%;
    background-position: left bottom;
    background-repeat: no-repeat;

}

.pmt-section.coverage-blue {
    background-image: url("../image/bg_coverage_service_blue.png");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;

}

.pmt-coverage-container.header {
    display: grid;
    gap: 10px;
}

.pmt-coverage-title {
    font-size: 4rem;
}

.pmt-coverage-title.white {
    color: var(--color-white);
}

.pmt-coverage-title-map {
    display: flex;
    gap: 30px;
    justify-self: end;
    width: 75%;
    align-items: center;
}

.pmt-coverage-title-bar {
    display: block;
    height: 5px;
    width: 100px;
    color: var(--color-black);
    background-color: var(--color-black);
    border-radius: 10px;
}

.pmt-coverage-title-bar.white {
    color: var(--color-white);
    background-color: var(--color-white);
}

.pmt-coverage-title-text {
    font-size: 1.7rem;
}

.pmt-coverage-title-text.white {
    color: var(--color-white);
}

.pmt-coverage-container-city {
    display: grid;
    gap: 10px 60px;
}

.pmt-coverage-container-city.white {
    color: var(--color-white);
}

.pmt-coverage-city {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pmt-coverage-symbol {
    display: block;
    width: 25px;
    height: 25px;
    mask-image: url("../image/coverage-icon.webp");
    mask-size: contain;
    mask-repeat: no-repeat;
}

.pmt-coverage-city-name {
    font-size: 1.4rem;
}

.pmt-coverage-container-map {
    display: grid;
    align-items: center;
    justify-content: center;
}

.pmt-coverage-map {
    padding: 50px 20px 0px;
    width: 100%;
}

.pmt-section.customer {
    background-image: url("../image/bgs_customer.png");

}

.pmt-customer-container.header {
    text-align: center;
    display: grid;
}

.pmt-arrow-container {
    display: flex;
    gap: 5px;
}

.pmt-image-arrow {
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.pmt-customer-container.portfolio {
    margin-top: 50px;
    justify-content: center;
}

.pmt-customer-portfolio-item {
    display: grid;
    margin: auto auto;
    align-items: center;
    min-height: 200px;
    max-width: 200px;
    padding: 0px 10px;
}

.pmt-customer-portfolio-item-image {
    width: 100%;
}

.pmt-customer-title {
    font-size: 3rem;
}

.pmt-customer-title.customer {
    text-align: left;
    font-size: 3rem;
}

.pmt-customer-text {
    font-size: 1.5rem;
    text-align: justify;
}

.pmt-section.result {
    background-color: var(--color-lighter-blue);
}

.pmt-result-container.header {
    color: var(--color-white);
    text-align: justify;
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.pmt-contact-container.contact {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
}

.pmt-contact-description-container {
    display: grid;
    gap: 20px;
    grid-template-columns: 0.1fr 2fr;
}

.pmt-contact-description-bar {
    display: block;
    height: 5px;
    width: 50px;
    background-color: var(--color-white);
    border-radius: 10px;
    margin-top: 10px;
}

.pmt-section.brochure {
    background-color: var(--color-dark-blue);
    background-image: linear-gradient(to right, var(--color-dark-blue), var(--color-light-blue));
}

.pmt-brochure-container {
    display: grid;
    grid-template-columns: 1fr 1fr;

}

.pmt-brochure-title {
    font-size: 4rem;
    color: var(--color-white);
}

.pmt-brochure-content {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.pmt-brochure-content-description {
    display: grid;
    grid-template-columns: 0.1fr 1fr;
    gap: 30px;
    font-size: 1.8rem;
    color: var(--color-white);
}



.pmt-brochure-content-description-text {
    font-size: 1.7rem;

}

.pmt-brochure-content-description-bar {
    height: 5px;
    width: 50px;
    background-color: var(--color-white);
    border-radius: 10px;
    margin-top: 10px;
}

.pmt-brochur-content-download-container {
    grid-row: 2;
    grid-column: 2;
}

.pmt-brochure-content-download {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 50px 0px 50px 80px;
    ;
}

.pmt-brochure-content-download.popup {
    margin: 0px;
    justify-content: center;
}

.pmt-brochure-content-download-text:hover {
    color: var(--color-white-hover);
    cursor: pointer;
}

.pmt-brochure-content-download-text {
    color: var(--color-white);
    font-size: 2.5rem;
    text-decoration: underline;
}


.pmt-brochure-content-download-text.popup {
    color: var(--color-dark-blue);
}

.pmt-brochure-content-download-text.product {
    font-size: 2rem;
}

.pmt-download-image {
    height: 50px;
    width: 50px;
}


.pmt-contact-description-text {
    font-size: 1.7rem;
}

.pmt-result-title {
    font-size: 3.5rem;
}

.pmt-result-description {
    font-size: 2rem;
}

.pmt-result-container.example {
    margin-top: 50px;
}

.pmt-result-item {
    margin: 0px 20px;
    height: 400px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.pmt-result-item-image {
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
    min-width: 100%;
    height: 100%;
    border-radius: 10px;
}

.pmt-result-item-caption {
    display: grid;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    font-size: 1.5rem;
    position: absolute;
    height: 60px;
    width: 100%;
    bottom: 0;
    background-color: rgba(8, 43, 66, 0.75);
    opacity: 0;
}

.pmt-result-item:hover .pmt-result-item-caption {
    opacity: 1;
}

.pmt-section.form {
    color: var(--color-black);
    padding-top: calc(var(--size-section-padding-topbottom) + var(--size-navbar-height));
    background-image: url("../image/bg_services_page.png");
    background-position: top;
    background-repeat: no-repeat;
}

.pmt-form-container.first {
    display: grid;
    grid-template: 1fr / 1fr 1fr;
}

.pmt-form-container.second {
    display: grid;
}

.pmt-form-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: calc(var(--size-section-padding-topbottom) - 20px);
}

.pmt-form-item {
    margin: 10px;
}

.pmt-form-item-name {
    padding: 10px;
}

.pmt-form-item-content {
    width: 100%;
    border: 1px solid grey;
    padding: 10px;
    border-radius: 20px;
}

.pmt-form-item-content.email,
.pmt-form-item-content.detail {
    width: 100%;
}

.pmt-form-item-label.deadline {
    padding: 10px 10px 0px;
    color: grey;
}

.pmt-form-item-content.detail,
.pmt-form-item-content.deadline {
    display: flex;
    flex-direction: column;
}

.pmt-form-container.last {
    display: flex;
    justify-content: flex-end;
    padding: 0px 10px;
}

.pmt-form-item.hp {
    display: none;
}

.pmt-form-item-content-submit {
    margin-top: 20px;
    display: flex;
    width: 100px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 5px 0px;
    background-color: var(--color-orange);
    color: var(--color-white);
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
}

.pmt-section.contact {
    background-image: url("../image/bgs_contact.webp");
    color: var(--color-white);
    align-items: flex-start;
    padding: 60px 10px 30px;
}

.pmt-section.contact.contactpage {
    min-height: calc(100vh - 100px - var(--size-form-height));
}

.pmt-contact-container.header {
    text-align: center;
}

.pmt-contact-container.detail {
    display: grid;
    grid-template: auto / 1fr 1fr;
    margin-top: 40px;
    gap: 40px;
}

.pmt-contact-item {
    padding: 10px 0px;
}

.pmt-contact-item.location {
    display: grid;
    gap: 7px;
}

.pmt-contact-title {
    font-size: 3rem;
}

.pmt-contact-location,
.pmt-contact-phone,
.pmt-contact-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
}

.pmt-contact-location-title,
.pmt-contact-phone-title,
.pmt-contact-email-title {
    word-break: break-all;
    font-size: 1.5rem;
}

.pmt-contact-location-title {
    font-weight: bold;
}

.pmt-contact-location-logo {
    display: block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    background-image: url("../image/loc.webp");
}

.pmt-contact-phone-logo {
    display: block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    background-image: url("../image/whatsapp.webp");
}

.pmt-contact-email-logo {
    display: block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    background-image: url("../image/email.webp");
}

.pmt-contact-location-detail {
    padding-left: 40px;
    font-size: 1.5rem;
    text-align: justify;
}

.pmt-popup-overlay {
    display: grid;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
    z-index: 2000;
}

.pmt-popup-container {
    display: grid;
    gap: 20px;
    width: 30%;
    background-color: var(--color-white);
    padding: 30px;
    margin: 0 auto;
}

.pmt-popup-message {
    font-size: 1.5rem;
    text-align: center;
}

.pmt-popup-close {
    display: grid;
    align-items: center;
    justify-content: center;
    background-color: red;
    width: 75px;
    height: 40px;
    border-radius: 20px;
    color: var(--color-white);
    justify-self: center;
    font-size: 1.2rem;
    cursor: pointer;
}

.pmt-section.about-detail {
    padding-top: var(--size-navbar-height);
    align-items: flex-start;
}

.pmt-wrapper.about-intro {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    padding: 3% 2%;
}

.pmt-wrapper.about-innovation {
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    padding: 3% 2%;
}

.pmt-about-intro-container {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 10px;
}

.pmt-about-intro-title {
    font-size: 3rem;
    font-family: lato-bold;
    text-transform: uppercase;
}

.pmt-about-intro-description {
    font-size: 2rem;
}

.pmt-about-innovation-container {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    gap: 30px;
}

.pmt-about-innovation-title {
    font-size: 3.5rem;
    font-weight: bold;
    grid-column: 1/ span 2;
    text-transform: capitalize;
}

.pmt-about-innovation-description {
    font-size: 2rem;
}

.pmt-about-innovation-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    border-radius: 10px;
}

.pmt-section.about-title {
    padding: 70px 30px 0 30px;
}

.pmt-section.about-detail {
    padding: 0 30px;
}

.pmt-section.about-intro {
    padding: 0 30px;
}

.pmt-section.about-innovation {
    padding: 30px 30px 0 30px;
}


.pmt-wrapper.about-title {
    /* background-image: url("../image/bg_services_page.png"); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    padding-bottom: 20%;
    position: relative;
    /* padding-top: calc(var(--size-section-padding-topbottom) + var(--size-navbar-height));
    align-items: flex-start;
    min-height: calc(100vh - 100px); */
}

.pmt-about-inovation-container {
    display: grid;
    gap: 30px;
    text-align: center;
}

.pmt-about-title-wrapper {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 20%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* .pmt-wrapper.about-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-lighter-blue);
    opacity: 0.5;
    z-index: 1;
} */

.pmt-about-title-container {
    display: flex;
    align-items: center;
    /* Tengah secara vertikal */
    justify-content: center;
    /* Tengah secara horizontal */
    height: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: left;
    /* Untuk memastikan teks rata tengah */

}

.pmt-about-title-content {
    font-size: 4rem;
    color: white;
}

.pmt-about-detail-container.header {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    color: var(--color-white);
    justify-content: center;
    align-items: center;
    padding-bottom: 30%;
}

.pmt-about-detail-title {
    display: grid;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

.pmt-about-detail-container.content {
    font-size: 2rem;
}

.pmt-section.product-list,
.pmt-section.product-detail {
    background-color: var(--color-dark-blue);
    background-image: url("../image/bg_product_page.webp");
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    color: var(--color-white);
    padding-top: calc(var(--size-section-padding-topbottom) + var(--size-navbar-height));
    align-items: flex-start;
    min-height: calc(100vh - 100px);
}


.pmt-product-list-container.header {
    display: grid;
    justify-content: center;
}

.pmt-product-list-title {
    font-size: 3rem;
    margin-bottom: calc(var(--size-section-padding-topbottom));
}

.pmt-product-list-container.example {
    display: grid;
    gap: 40px;
}

.pmt-product-list-item {
    display: grid;
    /* grid-template: 1.5fr / 5fr 7fr; */
    grid-template-columns: 2fr 1fr;
}

.pmt-product-list-item-header {
    display: grid;
    grid-template: auto auto / 1fr;
    gap: 20px;
}

.pmt-product-list-item-header-title {
    display: grid;
    justify-self: left;
}

.pmt-product-list-item-series {
    font-size: 3rem;
}

.pmt-product-list-item-name.title {
    font-size: 2rem;
}

.pmt-product-list-item-name.sub-title {
    font-size: 2.2rem;
    font-weight: normal;
}

.pmt-product-list-header-image-container {
    display: grid;
}

.pmt-product-list-header-image {
    justify-self: center;
    width: 75%;
}

.pmt-product-list-item-name.title {
    margin-bottom: 20px;
}

.pmt-product-list-item-text-container {
    display: grid;
    grid-template-columns: 0.1fr 1fr;
    gap: 10px;
}

.pmt-product-list-item-text {
    font-size: 1.5rem;
    /* padding: 10px 0px 10px 60px; */
    text-align: justify;
}

.pmt-product-list-item-text-bar {
    height: 5px;
    width: 60px;
    border-radius: 5px;
    background-color: var(--color-white);
    margin-top: 10px;
}

.pmt-product-list-item-button {
    margin-top: 20px;
    display: flex;
    width: 120px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 5px 0px;
    background-color: var(--color-orange);
    color: var(--color-white);
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    background-color: var(--color-orange);
    margin-top: 50px;
}

.pmt-service-list-item-button {
    display: flex;
    align-items: center;
    height: 40px;
    width: 120px;
    gap: 3px;
    justify-content: center;
    border-radius: 20px;
    padding: 0px 0px 0px 17px;
    background-color: #016454;
    margin-top: 20px;
    color: var(--color-white);
}


.pmt-product-list-item-button-text,
.pmt-service-list-item-button-text {
    font-size: 1.2rem;
}

.pmt-product-list-item-button-symbol,
.pmt-service-list-item-button-symbol {
    display: block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    background-image: url("../image/next.webp");
}

.pmt-product-detail-container {
    padding: 20px 0px;
}

.pmt-product-detail-container.header {
    display: grid;
    grid-template: 1fr / 5fr 7fr;
    padding: 0px 0px 20px;
}

.pmt-product-detail-container.service {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-items: center;
}

.pmt-product-detail-header-container {
    display: grid;
    grid-template-columns: 0.1fr 1fr;
    gap: 10px;
}

.pmt-product-detail-header-container.service {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pmt-product-detail-header-bar {
    display: block;
    height: 5px;
    width: 50px;
    color: var(--color-white);
    background-color: var(--color-white);
    border-radius: 10px;
    margin-top: 10px;
}

.pmt-product-detail-header.title {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.pmt-product-detail-header.image {
    display: block;
    width: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 60%;
}

.pmt-product-detail-header.subtitle {
    font-size: 2.7rem;
    font-weight: normal;
    margin-bottom: 20px;
}

.pmt-product-detail-header.text {
    font-size: 1.5rem;
    text-align: justify;
}

.pmt-product-detail-header.text-service {
    font-size: 2rem;
}

.pmt-product-detail-header.title-service {
    font-size: 3rem;
    font-weight: bold;
}

.pmt-product-detail-diagram-container {
    display: grid;
    justify-content: center;
    align-items: center;
    margin-right: 60px;
}

.pmt-product-detail-diagram-image {
    margin: 0 auto;
    max-width: 540px;
    width: 100%;
}

.pmt-product-detail-container.menu {
    display: flex;
    align-items: center;
    gap: 50px;
    overflow: auto;
}

.pmt-product-detail-menu-item {
    font-size: 2rem;
    position: relative;
    white-space: nowrap;
    color: var(--color-white);
}

.pmt-product-detail-menu-item::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: var(--color-white-hover);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.pmt-product-detail-menu-item:hover::before {
    opacity: 1;
}


/* .pmt-product-detail-menu-item:hover {
    font-weight: bold;
} */

.pmt-product-detail-line {
    border-color: var(--color-light-blue);
    margin: 20px 0 20px;
}

.pmt-product-detail-container.description {
    display: grid;
    grid-template: 1fr / 1fr 2fr;
}

.pmt-product-detail-description-container {
    display: flex;
    flex-direction: column;
}



.pmt-product-detail-description.title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.pmt-product-detail-description.subtitle {
    font-size: 2.5rem;
    font-weight: normal;
}

.pmt-product-detail-description.image-container {
    display: grid;
    justify-content: center;
}

.pmt-product-detail-description.image {
    margin-top: 20px;
    width: 100%;
    max-width: 600px;
}

.pmt-product-detail-description.caption {
    font-size: 2.5rem;
    text-align: center;
    margin: 30px 0px 30px;
}

.pmt-product-detail-description-text-container {
    display: grid;
    grid-template-columns: 0.1fr 1fr;
    gap: 10px;
}

.pmt-product-detail-description-text-bar {
    display: block;
    height: 5px;
    width: 50px;
    color: var(--color-white);
    background-color: var(--color-white);
    border-radius: 10px;
    margin-top: 10px;
}

.pmt-product-detail-description.text {
    font-size: 1.5rem;
    text-align: justify;
}

.pmt-product-detail-description-download {}

.pmt-product-detail-feature-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.pmt-product-detail-feature-item {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 30px;
}

.pmt-product-detail-feature-title {
    font-size: 2rem;
    grid-column: 1 / span 2;
}

.pmt-product-detail-feature-image {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 85%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;

}

.pmt-product-detail-feature-description {
    font-size: 1.5rem;
}

.pmt-product-detail-result-container {
    display: grid;
    gap: 10px;
    padding-top: 60px;
}

.pmt-product-detail-result-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pmt-product-detail-result-title-text {
    font-size: 2rem;
}

.pmt-product-detail-result-title-arrow {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.pmt-product-detail-result-title-arrow-left,
.pmt-product-detail-result-title-arrow-right {
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.pmt-product-detail-result-image-container {
    /* display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; */
}

.pmt-placehollder {
    font-size: 1rem;
    font-weight: bold;

}

.pmt-product-detail-result-margin {
    margin: 0 10px;
}

.pmt-product-detail-result-image {
    display: grid;
    align-items: end;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 10px;
}

.pmt-product-detail-result-image-text {
    position: absolute;
    font-size: 2rem;
    padding: 15px;
    background-color: rgb(0, 0, 0, 0.5);
    width: 100%;
    border-radius: 0px 0px 10px 10px;

}

.pmt-product-detail-video {
    width: 100%;
    min-height: 500px;
}

.pmt-wrapper.service-list {
    gap: 90px;
}

.pmt-section.service-list {
    background-image: url("../image/bg_services_page.webp");
    background-position: 0% var(--size-navbar-height);
    background-repeat: no-repeat;
    background-size: 100%;
    padding-top: calc(var(--size-section-padding-topbottom) + var(--size-navbar-height));
    align-items: flex-start;
    min-height: calc(100vh - 100px);
}

.pmt-service-list-container.header {
    display: grid;
    justify-content: center;
    gap: 30px;
}

.pmt-service-list-title {
    font-size: 3rem;
    color: var(--color-dark-blue);
    margin: 0px;
    text-align: center;
}

.pmt-service-list-subtitle {
    color: var(--color-black);
    font-size: 4.5rem;
    text-align: center;
}

.pmt-service-list-text-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pmt-service-list-container.example {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}


.pmt-service-list-item {
    display: grid;
    cursor: pointer;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.pmt-service-list-item:hover {
    background-color: var(--color-white);
}

.card {
    background: white;
    width: 320px;
    padding: 40px 20px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.image-wrapper {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

/* .pmt-service-list-item:nth-child(odd)>.pmt-service-list-text-container {
    order: 1;
}

.pmt-service-list-item:nth-child(even)>.pmt-service-list-text-container {
    order: -1;
}

.pmt-service-list-item:nth-child(odd)>.pmt-service-list-image {
    justify-self: left;
    padding: 0px 60px 0px 0px;
}

.pmt-service-list-item:nth-child(even)>.pmt-service-list-image {
    justify-self: right;
    padding: 0px 0px 0px 60px;
} */

.pmt-service-list-image-container {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -123px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.pmt-service-list-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}


.pmt-service-list-type-title {
    font-size: 3rem;
}

.pmt-service-list-text {
    font-size: 2rem;
    text-align: justify;
}

.pmt-section.footer {
    color: var(--color-white);
    min-height: 100px;
    padding: 0px;
    border-top: 1px solid var(--color-light-blue);
}

.pmt-wrapper.footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.pmt-footer-container {
    display: flex;
    align-items: center;
}

.pmt-footer-container.left {
    justify-content: flex-start;
    gap: 20px;
}

.pmt-footer-container.right {
    justify-content: flex-end;
    gap: 20px;
}

.pmt-footer-title.company {
    font-family: 'Times New Roman', Times, sans-serif;
    font-size: 1.5rem;
}

.pmt-footer-title.copyright {
    font-size: 1.5rem;
}

.pmt-footer-title.caption {
    font-size: 1.1rem;
}

.pmt-footer-button-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pmt-footer-button-divider {
    display: block;
    height: 15px;
    width: 1px;
    background-color: var(--color-white);
}

.pmt-footer-padma-logo {
    width: 60px;
    height: 60px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    justify-self: center;
}

.pmt-footer-button {
    white-space: nowrap;
    font-size: 1.5rem;
    color: var(--color-white);
}

.pmt-bullet-wysiwyg {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

/* SMALL DESKTOP */
@media screen and (max-width: 1100px) {
    .pmt-banner-title.company {
        font-size: 1rem;
    }

    .pmt-item-banner {
        padding-bottom: 63%;
        background-size: cover;
    }

    .pmt-banner-link {
        width: 150px;
        height: 30px;
        font-size: 1rem;
    }

    .pmt-icon {
        font-size: 1rem;
    }

    .pmt-about-caption {
        font-size: 4rem;
    }

    .pmt-about-text {
        font-size: 1.3rem;
    }

    .pmt-customer-portfolio-item {
        min-height: 250px;
        max-width: 250px;
    }

    .pmt-coverage-container-city {
        gap: 8px 20px;
    }

    .pmt-section.coverage {
        background-position: left bottom;
    }

    .pmt-coverage-title {
        font-size: 3rem;
    }

    .pmt-brochure-title {
        font-size: 3rem;

    }

    .pmt-section.customer {
        padding: 20px 30px;
    }

    .pmt-product-detail-feature-item {
        gap: 10px;
    }

    .pmt-section.service-list {
        align-items: center;
        min-height: 0;
    }

    .pmt-section.coverage-blue {
        padding: 30px 30px;
    }


}

/* TABLET*/
@media screen and (max-width: 855px) {
    .pmt-banner-title.slogan {
        font-size: 4rem;
    }

    .pmt-item-banner {
        padding-bottom: 80%;
    }

    .pmt-banner-title.company {
        font-size: 0.8rem;
    }

    .pmt-about-container {
        grid-template: auto / 1fr;
        gap: 40px;
    }

    /* .pmt-coverage-container.header {
        grid-template: 1fr 2fr / 1fr;
        gap: 40px;
        justify-content: center;
    } */


    /* .pmt-coverage-container-city {
        grid-template: auto / 1fr 1fr 1fr;
        justify-self: center;
        gap: 10px 60px;
    } */

    .pmt-coverage-title {
        font-size: 2.5rem;
    }

    .pmt-coverage-symbol {
        width: 20px;
        height: 20px;
    }

    .pmt-coverage-city-name {
        font-size: 1.2rem;
    }

    .pmt-coverage-title-text {
        font-size: 1.7rem;
    }

    .pmt-coverage-container-map {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 50px;
    }

    .pmt-coverage-title-map {
        width: 85%;
    }

    .pmt-coverage-map {
        padding: 0px;
    }

    .pmt-brochure-title {
        font-size: 2.5rem;
    }

    .pmt-customer-title.customer {
        font-size: 2.5rem;

    }

    .pmt-result-title {
        font-size: 2.5rem;
    }

    .pmt-result-description {
        font-size: 1.5rem;
    }

    .pmt-brochure-content-description {
        gap: 20px;
        font-size: 1.5rem;
    }

    .pmt-navbar-trigger {
        background-image: url("../image/menu-icon.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: block;
        width: 30px;
        height: 30px;
    }

    .pmt-navbar-button-container {
        position: fixed;
        display: flex;
        flex-direction: column;
        background-color: rgba(22, 28, 74);
        width: 50%;
        right: 0;
        top: var(--size-navbar-height);
        height: 100vh;
        margin: 0;
        padding: 10px;
        align-items: flex-end;
        transform: translate3d(100%, 0, 0);
    }

    .pmt-navbar-dropdown-icon {
        display: none;
    }

    .pmt-navbar-button-container.expanded {
        transform: translate3d(0, 0, 0);
    }

    .pmt-navbar-product:hover~.pmt-navbar-product-dropdown-container,
    .pmt-navbar-product-dropdown-container:hover {
        display: none;
    }

    .pmt-popup-container {
        width: 40%;
    }

    .pmt-product-list-item {
        display: grid;
        grid-template: auto auto / 1fr;
    }

    .pmt-product-list-item-text {
        padding: 10px 0px;
    }

    .pmt-product-list-header-image-container {
        margin-bottom: 20px;
    }

    .pmt-product-list-header-image {
        margin: 0 auto;
        left: 0;
    }

    .pmt-service-list-item {
        grid-template: auto auto / 1fr;
        gap: 20px;
    }

    .pmt-service-list-item:nth-child(n+0)>.pmt-service-list-image {
        width: 60%;
        justify-self: center;
        padding: 0;
    }

    .pmt-service-list-item:nth-child(n+0)>.pmt-service-list-text-container {
        order: 1;
    }

    .pmt-service-list-text-container {
        position: relative;
    }

    .pmt-service-list-image {
        position: absolute;
        aspect-ratio: 3 / 2;
        width: 100%;
        height: auto;
    }

    .pmt-product-detail-container.header {
        grid-template: auto / 1fr;
        padding: 0px 0px 20px;
        gap: 20px;
    }

    .pmt-product-detail-diagram-container {
        margin-right: 0px;
        order: 3;
    }

    .pmt-product-detail-header.text {
        padding: 10px 0px;
    }

    .pmt-product-detail-container.description {
        grid-template: auto / 1fr;
    }

    .pmt-product-detail-description.text {
        padding: 10px 0px;
    }

    .pmt-product-detail-container.feature {
        grid-template: auto / 1fr;
    }

    .pmt-product-detail-benefit-item-container {
        grid-template: auto / 1fr;
    }

    .pmt-section.coverage-blue {
        background-size: cover;
    }

    .pmt-service-list-subtitle {
        font-size: 3.5rem;
    }

    .pmt-service-list-item {
        grid-template: 1fr / 1fr;
    }

    .pmt-service-list-container.example {
        display: flex;
    }

    .pmt-service-list-type-title {
        font-size: 2rem;
    }

    .pmt-service-list-text {
        font-size: 1rem;
    }

    .pmt-section.service-list {
        background-size: 100%;
        background-position: center;
    }

    .pmt-service-list-title {
        font-size: 2rem;
    }

    .pmt-service-list-subtitle {
        font-size: 2.5rem;
    }

    .pmt-about-title-content {
        font-size: 3rem;
    }

    .pmt-about-intro-description {
        font-size: 1.5rem;
    }

    .pmt-about-intro-title {
        font-size: 2rem;
    }

    .pmt-about-detail-title {
        font-size: 1.6rem;

    }

    .pmt-about-detail-container.content {
        font-size: 1.3rem;
    }

    .pmt-about-innovation-title {
        font-size: 2.5rem;
    }

    .pmt-about-innovation-description {

        font-size: 1.5rem;
    }



}

/* MOBILE PHONE*/
@media screen and (max-width: 540px) {
    .pmt-section.banner {
        padding: 25% 0%;
    }

    .pmt-item-banner {
        padding-bottom: 160%;
    }

    .pmt-banner-title.slogan {
        font-size: 3rem;
    }

    .pmt-customer-portfolio-item {
        max-width: 175px;
        min-height: 200px;
    }

    .pmt-wrapper.coverage {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .pmt-coverage-title {
        text-align: center;
    }

    .pmt-coverage-title-map {
        width: 100%;
    }

    .pmt-coverage-title-text {
        font-size: 1.4rem;
    }

    .pmt-brochure-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pmt-brochure-content-download-text {
        font-size: 2rem;
    }

    .pmt-download-image {
        height: 30px;
        width: 30px;
    }

    .pmt-wrapper.customer,
    .pmt-wrapper.result {
        grid-template-columns: 1fr;
    }

    .pmt-customer-title.customer {
        font-size: 1.5rem;
    }

    .pmt-customer-container.header {
        grid-template-columns: 1fr 0.3fr;
    }

    .pmt-image-arrow {
        width: 30px;
        height: 30px;
    }

    .pmt-arrow-container {
        justify-content: flex-end
    }

    .pmt-coverage-container-city {
        gap: 10px 20px;
    }

    .pmt-coverage-map {
        padding: 0px;
    }

    .pmt-contact-container.detail {
        grid-template: auto / 1fr;
        gap: 20px;
    }

    .pmt-popup-container {
        width: 50%;
    }

    .pmt-product-list-header-image {
        width: 90%;
    }

    .pmt-section.footer {
        padding: 20px 50px;
    }

    .pmt-wrapper.footer {
        flex-direction: column-reverse;
        justify-content: center;
        gap: 20px;
    }

    .pmt-footer-container.left {
        justify-content: center;
    }

    .pmt-footer-container.right {
        justify-content: center;
    }

    .pmt-contact-description-container {
        grid-template-columns: 1fr;
    }

    .pmt-contact-container.contact {
        gap: 10px;
    }

    .pmt-contact-description-text {
        font-size: 1.4rem;
    }

    .pmt-service-list-item:nth-child(n+0)>.pmt-service-list-image {
        width: 75%;
    }

    .pmt-product-list-item-text {
        font-size: 1rem;
    }

    .pmt-product-detail-feature-item {
        grid-template-columns: 1fr;
    }

    .pmt-product-detail-feature-title {
        grid-column: 1;

    }

    .pmt-service-list-container.example {
        flex-direction: column;
    }

    .pmt-about-title-content {
        font-size: 2rem;
    }

    .pmt-about-intro-container {
        grid-template-columns: 1fr;
    }

    .pmt-about-detail-title {
        font-size: 1.4rem;
    }

    .pmt-about-detail-container.content {
        font-size: 1.2rem;
    }

    .pmt-about-innovation-container {
        grid-template-columns: 1fr;
    }

    .pmt-about-innovation-title {
        grid-column: 1;
        grid-row: 1;
    }

    .pmt-about-innovation-image {
        background-size: cover;
        grid-row: 2;
        padding-bottom: 100%;
    }

    .pmt-brochure-content-download-text.product {
        font-size: 1.5rem;
    }

    .pmt-product-detail-container.service {
        grid-template-columns: 1fr;
    }

}


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

    .pmt-customer-portfolio-item {
        min-height: 200px;
        max-width: 300px;
    }

    .pmt-coverage-container-city {
        grid-template: auto / 1fr 1fr;
        justify-self: center;
        gap: 10px 60px;
    }

    .pmt-form-container.first {
        display: grid;
        grid-template: 1fr 1fr / 1fr;
    }

    .pmt-form-container.second {
        display: grid;
        grid-template: 1fr / 1fr;
    }


    .pmt-popup-container {
        width: 60%;
    }

    .pmt-footer-container.left {
        text-align: center;
    }

    .pmt-footer-title.company {
        margin-bottom: 10px;
    }

    .pmt-service-list-item:nth-child(n+0)>.pmt-service-list-image {
        width: 90%;
    }
}


@media screen and (max-width: 390px) {
    .pmt-coverage-container-city {
        gap: 10px 20px;
    }
}