html {
    scroll-behavior: smooth
}

.xlp.container {
    overflow: hidden;
    background: #fff;
    position: relative;
}

.xlp h3 {
    font-size: 30px;
}

.xlp h4 {
    font-size: 23px;
}

.xlp h5{
    font-size: 20px;
}

.xlp h6{
    font-size: 18px;
}

.xlp .link {
    color: #000;
    text-decoration: none;
}

.xlp .nobr {
    white-space: nowrap;
}

.xlp section {
    padding: 0;
    margin: 0;
    /* overflow-y: overlay; */
}

.xlp .bg-white{
    color: #000;
    padding: 125px 0;
}

.xlp .bg-dark{
    background: #080808;
    color: #fff;
    position: relative;
}

.xlp .bg-dark:before{
    content: url("../img/section-dark-before.png");
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.xlp .bg-dark:after{
    content: url("../img/section-dark-after.png");
    position: absolute;
    bottom: -119px;
    left: 50%;
    transform: translateX(-50%);
}

.xlp .text-dark {
    color: #000 !important;
}

.xlp .text-pink{
    color: #fa0064;
}

.xlp img{
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.xlp .vendor-logo{
    height: 65px;
    position: absolute;
    top: 50px;
    left: 50px;
    z-index: 5;
    transition: all 300ms ease-in-out;
}

.xlp .start {
    height: 670px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #151515 url("../img/start-bg.jpg") no-repeat top center;
    position: relative;
    z-index: 0;
    color: #fff;
    overflow: hidden;
}

.xlp .start:after{
    content: url("../img/smoke-effect.png"); 
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    animation: smoke 10s infinite;
}

@keyframes smoke{
    0% {
        transform: translateX(0) scale(1.2);
    }
    25% {
        transform: translateX(-30px) scale(1.2);
    }
    75% {
        transform: translateX(30px) scale(1.2);
    }
    100% {
        transform: translateX(0) scale(1.2);
    }
}

.xlp .start .text{
    z-index: 5;
}

.xlp .start .text h4{
    font-size: 30px;
}

.xlp .start .text h3{
    font-size: 38px;
}

.xlp .start .owl-carousel{
    z-index: 4;
}

/* products */

.xlp .products {
    position: relative;
    z-index: 2;
}

.xlp .products.bg-white .photo {
    height: 640px;
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 0;
    background: url("../img/rawr-light.png") no-repeat center center;
    background-size: contain;
}

.xlp .products.bg-dark .photo {
    height: 640px;
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 0;
    background: url("../img/rawr-dark.png") no-repeat center center;
    background-size: contain;
}

.xlp .products .photo:before{
}

.xlp .products .desc {
    padding: 55px;
}
.xlp .products .desc p {
    padding: 25px 0;
}

.xlp .products .photo img {
    max-width: 420px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.xlp .products .desc table tr td {
    font-weight: 300;
    width: 45%;
}

.xlp .products .desc table tr td:nth-child(2) {
    font-weight: 600;
    width: 50%;
}

.xlp .products hr {
    background: none;
    border-top: none;
    border-bottom: 2px dashed #DBDBDB;
}

.xlp .products .ul{
    padding: 0;
}

.xlp .products ul li{
    list-style-type: none;
    position: relative;
    line-height: 1.5;
}

.xlp .products ul li:before{
    content: url("../img/custom-bullet.png");
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -40px;
}

.xlp .products .price{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.xlp .products .price .btn{
    margin-left: 30px;
}

.xlp .credit{
    font-size: 18px;
    color: rgb(90, 90, 90);
}

.xlp .disclaimer{
    color: #717171;
}

.xlp .btn.btn-white-o{
    border: 1px solid #fff;
}

.xlp .coupon .icon-steps{
    height: 45px;
}

.xlp .coupon .coupon-code{
    font-family: Consolas,monaco,monospace !important;
    cursor: text;
    font-size: 18px;
}

/* bg-pink */

.xlp .bg-pink{
    margin-top: -200px;
    background: url("../img/bg-pink.png") no-repeat center center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 100%;
    height: 250px;
    position: relative;
    z-index: 4;
}

/* owl carousel */

.xlp .owl-carousel {
    display: block;
    margin-top: 50px;
}

.xlp .owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.xlp .owl-carousel .owl-dots {
    padding: 10px 0 10px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%);
}

.xlp .owl-carousel .owl-nav .owl-prev,
.xlp .owl-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 100%;
    color: #fff;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-in-out;
    font-weight: normal;
}

.xlp .owl-carousel .owl-nav .owl-prev:hover,
.xlp .owl-carousel .owl-nav .owl-next:hover {
    color: #fa0064;
    border: 2px solid #fa0064;
}

.xlp .owl-carousel .owl-nav .owl-prev:focus,
.xlp .owl-carousel .owl-nav .owl-prev:active,
.xlp .owl-carousel .owl-nav .owl-next:focus,
.xlp .owl-carousel .owl-nav .owl-next:active {
    outline: none;
    box-shadow: none;
}

.xlp .owl-carousel .owl-nav .owl-prev {
    left: -30px;
    position: absolute;
}

.xlp .owl-carousel .owl-nav .owl-next {
    right: -30px;
    position: absolute;
}

.xlp .owl-carusel .owl-dots {
    margin: 30px 0;
}

.xlp .owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border: 2px solid rgba(0, 0, 0, .5);
    border-radius: 100%;
    margin: 0 2.5px;
    transition: all 250ms ease-in-out;
}

.xlp .owl-carousel .owl-dots .owl-dot.active {
    background: rgba(0, 0, 0, .5);
    border: 2px solid rgba(0, 0, 0, .5);
}

.xlp .owl-carousel .owl-dots .owl-dot:focus,
.xlp .owl-carousel .owl-dots .owl-dot:active {
    outline: none;
    box-shadow: none;
}

.xlp .owl-carousel .owl-nav {
    z-index: 2;
}

.xlp .owl-carousel .owl-item {
    transition: all 300ms ease-in-out;
}

.xlp .start .owl-carousel .owl-item img{
    max-height: 420px;
    width: auto;
    margin: 0 auto;
}

@media (max-width: 768px){
    .xlp .vendor-logo{
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
    }
    .xlp .start{
        height: 720px;
        background-position: 85%;
        text-align: center;
    }
    
    .xlp .owl-carousel{
        margin-top: 0;
        padding-bottom: 40px;
    }

    .xlp .owl-carousel .owl-dots{
        bottom: 10px;
    }

    .xlp .start .owl-carousel .owl-item img{
        max-height: 300px;
    }
}