header {
    height: 7.7rem;
    position: relative;
    background-image: url("/images/header.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.container > .title {
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #0000005d;
    width: 97%;
    height: 100%;
    padding-left: 2rem;
}
.container > .title > p {
    font-size: 2.6rem;
    white-space: pre-line;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 30%;
    width: 100%;
    line-height: 36px;
    /* height: 2.5rem; */
}
.container > .title > p::first-letter {
    text-transform: uppercase;
}
.container > .title > span {
    font-size: 1.5rem;
    font-style: italic;
}
.action-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}
.search {
    background: #fff;
    padding: 0.4rem 0.7rem;
    display: grid;
    grid-template-columns: 1fr 1rem;
    align-items: center;
    gap: 1rem;
    border-radius: 0.8rem;
    width: 17rem;
    border: 1px solid #c9c9c9;
}
.search > input {
    outline: none;
    border: none;
    opacity: 0.6;
}
.search > input::placeholder {
    font-family: "Source Sans 3", sans-serif;
    font-weight: 500;
}
.search > button {
    border: none;
    background: #fff;
    cursor: pointer;
    position: absolute;
    right: 88px;
    top: 8px;
}
nav > ul {
    display: flex;
    color: #fff;
    align-items: center;
    gap: 5rem;
    font-size: 14px;
}
nav > ul > li {
    cursor: pointer;
}
a {
    color: #fff;
    font-weight: 500;
}
.hamburger {
    display: none;
}

.showMenu {
    display: block !important;
}

@media screen and (max-width: 786px) {
    .bgImagesChange {
        position: relative;
    }
    .action-section {
        background-color: rgb(255, 255, 255);
        left: 0;
        top: 60px;
        width: 92%;
        -webkit-width: 100%;
        max-width: 100%;
        transform: none;
        display: none;
        z-index: 99;
        padding: 1rem;
        box-shadow: 0px 23px 55px -11px #ccc;
    }
    .container > .title {
        background-color: #00000000;
    }
    .container > .title > p {
        font-size: 20px;
    }
    nav > ul {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: start;
    }
    nav > ul > li > a {
        color: black;
        font-weight: 700;
    }
    .hamburger {
        display: block;
        width: 32px;
        height: 32px;
        position: absolute;
        left: 16px;
    }
    .container img {
        width: 100%;
        height: 3.5rem;
    }

    .container > .title {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding-left: 0rem;
    }
    header {
        height: 4rem;
    }
    .search {
        width: 94%;
        margin-bottom: 1rem;
    }
    .search > button {
        /* right: 45px; */
        right: 30px;
        top: 23px;
    }
    .product-details > .product-title {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: start;
    }
    .product-title {
        line-height: 1.4rem;
    }
    .container > .title > p {
        width: 70%;
        font-size: 1rem;
    }
    .container > .title > span {
        font-size: 0.8rem;
    }
    .headTitleWrap {
        display: flex;
        flex-direction: column;
        width: 64%;
    }
    .invisible {
        visibility: visible !important;
    }
}
@media screen and (min-width: 1400px) {
    .search > button {
        right: 150px;
        top: 16px;
    }
    nav > ul {
        gap: 9.5rem;
    }
    header {
        height: 10rem;
    }
    .action-section {
        transform: translate(-50%, -40%);
        gap: 2rem;
    }
    .search {
        padding: 0.8rem 1rem;
        gap: 1rem;
        width: 20rem;
        border: 2px solid #c9c9c9;
    }
    .search > input {
        font-size: 1rem;
    }
    nav > ul > li {
        font-size: 1rem;
    }
}
