:root {
    --color-1 : #bcd8f0;
    --color-2 : #E00031;
    --color-3 : #EF7291;
    --color-5 : #fcd6df;
    --color-4 : #FEFEFE;
    --text-shadow-1 : 0px 3px 5px rgba(0, 0, 0, 0.247);
    --text-shadow-2 : 0px 3px 5px rgba(0, 0, 0, 0.13);
    --box-shadow-1 : 0px 0px 20px rgba(48, 48, 48, 0.151);
}
body {
    background-color: var(--color-5);
    position: relative;
}
.icon-livechat-right {
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 99999999999;
}
/* .icon-livechat-right a:nth-child(2) img {
    width: 50px;
    display: block;
    filter: drop-shadow(0px 3px 5px rgba(43, 43, 43, 0.219));
    border-radius: 50%;
    animation: animLivechat 1.5s ease infinite;
    background-color: white;
    padding: 7px;
} */
.icon-livechat-left {
    position: fixed;
    bottom: 50px;
    left: 30px;
    z-index: 99999999999;
}
.icon-livechat-right a img {
    width: 50px;
    display: block;
    filter: drop-shadow(0px 3px 5px rgba(43, 43, 43, 0.219));
    border-radius: 50%;
    animation: animLivechat 1s ease infinite;
    /* margin: 15px 0; */
}
.icon-livechat-left a img {
    width: 50px;
    filter: drop-shadow(0px 3px 5px rgba(43, 43, 43, 0.219));
    border-radius: 50%;
    animation: animLivechat 1s ease infinite;
    background-color: white;
    padding: 7px;
}
@keyframes animLivechat {
    0% {
        box-shadow: 0px 0px 1px 0px rgba(32, 182, 18, 0);
    }
    25% {
        box-shadow: 0px 0px 1px 0px rgba(32, 182, 18, 0);
    }
    50% {

        box-shadow: 0px 0px 1px 20px rgba(32, 153, 21, 0.253);
    }
    75% {
        box-shadow: 0px 0px 1px 50px rgba(32, 182, 18, 0);
    }
    100% {
        box-shadow: 0px 0px 1px 0px rgba(32, 182, 18, 0);
    }
}
.header {
    max-width: 100vw;
    width: 100%;
    background-color: var(--color-4);
    box-shadow: 0px 10px 20px rgba(37, 37, 37, 0.192);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999999999999999999999999999999;
}
.navbar {
    width: 100%;
    padding: 10px;
}
.logo {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
}
.logo img {
    width: 200px;
    /* filter: drop-shadow(0px 4px 3px rgba(233, 39, 104, 0.411)); */
}
.menu-desktop {
    width: 100%;
    height: 100%;
}
.menu-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}
.menu-list li {
    list-style: none;
    padding: 7px 20px;
}
.menu-list li a {
    text-decoration: none;
    font-weight: 500;
    color: var(--color-2);
    text-shadow: var(--text-shadow-2);
}
.hero {
    max-width: 100vw;
    width: 100%;
    height: 660px;
}
.section-hero {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 660px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-slider {
    overflow: hidden;
    width: 100%;
    max-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-slider img {
    width: 100%;
    height: 100%;
}
/* .background-hero {
    background-color: rgb(235, 235, 235);
    opacity: 0.6;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
} */
.text-hero {
    /* border: 3px solid var(--color-1); */
    width: 50%;
    text-align: center;
    color: white;
    position: relative;
    z-index: 9999999999;
    padding: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    /* animation: animText 2s ease forwards; */
}
.text-hero h1 {
    font-size: 3.5em;
    color: var(--color-2);
    margin-bottom: 20px;
    text-shadow: 0px 4px 5px rgba(145, 15, 69, 0.384)
}
.text-hero p {
    font-size: 1.2em;
    text-shadow: 0px 4px 5px rgba(145, 15, 69, 0.384)
}
.product-skin {
    max-width: 100vw;
    width: 100%;
}
.menu-humb {
    border: 1px solid;
    display: none;
}
#carouselExampleInterval {
    margin-top: 130px;
}
@media (max-width: 548px) {
    .logo {
        width: 50%;
    }
    .logo a {
        margin: 0;
    }
    .logo a img {
        width: 100px;
    }
    .menu-humb {
        border: 1px solid;
        width: 55px;
        height: 70%;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        flex-direction: column;
        padding: 8px;
        border-radius: 5px;
    }
    .menu-humb span {
        width: 100%;
        height: 2px;
        background-color: #E00031;
        border-radius: 10px;
        transition: 0.3s;
    }
    .menu-humb span:first-child {
        width: 90%;
    }
    .menu-humb span:nth-child(2) {
        width: 50%;
    }
    .menu-humb:hover > span:first-child, .menu-humb:hover span:nth-child(2) {
        width: 100%;
    }
    #menu-desktop {
        display: none;
    }
    .text-hero {
        padding: 0px 10px;
        width: 100%;
    }
    .text-hero h1 {
        font-size: 2em;
    }
    #carouselExampleInterval {
        margin-top: 85px;
    }
}

@media (max-width: 850px) {
    .logo {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    .logo img {
        width: 80px;
    }
    .text-hero h1 {
        font-size: 2em;
    }
}
.card-product-skin {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    object-fit: cover;
    position: relative;
    border-radius: 5px;
    box-shadow: var(--box-shadow-1);
}
.card-product-skin img {
    width: 100%;   
}
.text-card-skin {
    position: absolute;
    top: 0;
    padding: 15px;
    width: 70%;
    left: 0;
    color: white;
}
.text-card-skin h3 {
    font-weight: bold;
    color: rgb(48, 48, 48);
    font-size: 2em;
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.247);
}
.text-card-skin p {
    color: var(--color-4);
    text-shadow: var(--text-shadow-1);
    font-weight: 500;
}
.text-card-skin a {
    background-color: #E00031;
    padding: 10px 15px;
    border-radius: 4px;
    color: var(--color-4);
    text-decoration: none;
    box-shadow: 0px 3px 10px #e000316e;
}
.card-jumbo-skin {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    height: 450px;
}
.image-card-jumbo-skin {
    width: 50%;
    height: 450px;
    overflow: hidden;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-card-jumbo-skin img {
    width: 100%;
    min-height: 100%;
}
.text-card-jumbo-skin {
    padding: 15px 20px;
    width: 50%;
    background-color: white;
    display: flex;
    flex-direction: column;
}
.text-card-jumbo-skin h3 {
    color: var(--color-2);
    font-weight: bold;
    text-shadow: var(--text-shadow-1);
    text-transform: uppercase;
}
.text-card-jumbo-skin p {
    font-weight: 500;
    margin-top: 15px;
    color: rgb(145, 145, 145);
    text-shadow: var(--text-shadow-2);
    font-size: 0.9em;
    word-spacing: 0.3px;
    letter-spacing: 0.5px;
}
.text-card-jumbo-skin a {
    background-color: var(--color-2);
    color: var(--color-4);
    padding: 10px 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 3px;
    box-shadow: 0px 3px 10px #e000316e;
    width: 50%;
    text-align: center;
}
@media (max-width: 548px) {
    .card-jumbo-skin {
        flex-direction: column;
        height: max-content;
    }
    .image-card-jumbo-skin {
        width: 100%;
        height: 400px;
    }
    .image-card-jumbo-skin, .text-card-jumbo-skin {
        width: 100%;
        height: 400px;
    }
}
.about-me {
    background-color: var(--color-4);
    max-width: 100vw;
    width: 100%;
    overflow-x: hidden;
}
.text-about-me h2 {
    color: var(--color-2);
    font-weight: bold;
    font-size: 2.5em;
    margin-bottom: 25px;
    text-shadow: var(--text-shadow-1);
}
.text-about-me p {
    text-shadow: var(--text-shadow-2);
    font-size: 0.9em;
    word-spacing: 0.3px;
    letter-spacing: 0.5px;
    color: rgb(145, 145, 145);
    font-weight: 500;
}
.image-about-me {
    width: 100%;
    height: 100%;
    display: flex;
    max-height: 400px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    object-fit: cover;
    border-radius: 7px;
    position: relative;
    z-index: 9999;
    box-shadow: var(--box-shadow-1);
}
.image-about-me img {
    width: 100%;
}
.background-about {
    position: absolute;
    width: 70%;
    height: 100%;
    background-color: #EF7291;
    z-index: 1;
    top: 0;
    right: -100px;
}
.btn-submit-join {
    background-color: var(--color-2);
    color: var(--color-4);
    padding: 10px 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 3px;
    box-shadow: 0px 3px 10px #e000316e;
    text-align: center;
    border: none;
    width: 150px;
}
.footer {
    background-color: #bcd8f0;
    padding: 20px;
}
.logo-footer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    flex-direction: column;
}
.logo-footer img {
    width: 200px;
    margin-bottom: 10px;
    /* filter: drop-shadow(0px 4px 3px rgba(233, 39, 104, 0.301)); */
}
.logo-footer span {
    color: var(--color-4);
    font-size: 0.8em;
}
.menu-footer {
    height: 100%;
    padding: 10px;
}
.menu-footer li {
    list-style: none;
    margin: 10px;
}
.menu-footer li a {
    text-decoration: none;
    color: var(--color-4);
    font-weight: 500;
}
@media (max-width: 548px) {
    .logo-footer {
        align-items: center;
    }
    .menu-footer {
        width: 100%;
        text-align: left;
        padding: 0;
    }
}
@keyframes animText {
    0% {
        height: 0;
    }
    100% {
        height: 200px;
    }
}

.list-menu-mobile {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 0;
    z-index: 99999;
    background-color: var(--color-4);
    left: 0;
    padding-top: 79px;
    overflow: hidden;
}

.list-menu-mobile ul {
    width: 100%;
    height: 100%;
    padding: 0;
}

.list-menu-mobile ul li {
    padding: 15px 0px;
    padding-left: 20px;
}

.list-menu-mobile ul li a {
    color: var(--color-2);
    text-decoration: none;
    font-weight: 500;
}

.show {
    width: 75%;
    transition: width 0.5s ease 0s;
}

.close {
    width: 0%;
    transition: width 0.5s ease 0s;
}