@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
html, body {
    overflow-x: hidden;
}
body{
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}
/*body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bgpro.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;  Push it to the background 
}*/
#font-1{
    font-family: "Oswald", sans-serif;
    font-family: "Dancing Script", cursive;
}
ul{
    margin: 0;
    padding: 0;
}

/* Loader full screen */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #f0f0ed;
    top: 0;
    left: 0;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px;
    transition: opacity 1s ease;
}

/* Center circle */
.loader-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-circle {
    position: relative;
    border: 1px solid #ac3b49;
    border-radius: 50%;
    padding-top: 55px;
    width: 130px;
    height: 130px;
    color: #ac3b49;
    font-family: 'Helvetica', sans-serif;
    font-size: 13px;
    text-align: center;
}
.loader-circle img{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    transform: translate(-50%, -50%);
    text-align: center;
}
/* Bottom progress */
.loader-bottom {
    width: 100%;
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.progress-line-wrapper {
    width: 100%;
    height: 2px;
    background: #e7778d; /* Grey background for unloaded part */
    position: relative;
    overflow: hidden;
}

.progress-line {
    height: 2px;
    width: 0%;
    background: #ac3b49; /* White progress color */
    position: absolute;
    left: 0;
    top: 0;
    transition: width 0.3s ease;
}

.progress-percentage {
    color: #ac3b49;
    font-size: 60px;
    position: absolute;
    bottom: -15%;
    right: -15%;
    font-family: 'Helvetica', sans-serif;
}

/*------OVERLAY-----*/

.menu-button-hse {
    font-size: 16px;
    cursor: pointer;
    z-index: 1;
    text-transform: capitalize;
}

.menu-button-hse i{
    width: 30px;
    height: 30px;
    border: 1px solid #000000;
    border-radius: 50%;
    text-align: center;
    padding-top: 5px;
}
.overlay-hse {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1500;
    pointer-events: none;
}

.slice-hse {
    flex: 1;
    background-color: rgba(240, 240, 237, 0.9);
    transform: translateX(100%);
    transition: transform 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-hse.open .slice-hse:nth-child(1) {
    transition-delay: 0s;
    transform: translateX(0);
}
.overlay-hse.open .slice-hse:nth-child(2) {
    transition-delay: 0.15s;
    transform: translateX(0);
}
.overlay-hse.open .slice-hse:nth-child(3) {
    transition-delay: 0.3s;
    transform: translateX(0);
}

.overlay-hse.close .slice-hse:nth-child(1) {
    transition-delay: 0.3s;
    transform: translateX(100%);
}
.overlay-hse.close .slice-hse:nth-child(2) {
    transition-delay: 0.15s;
    transform: translateX(100%);
}
.overlay-hse.close .slice-hse:nth-child(3) {
    transition-delay: 0s;
    transform: translateX(100%);
}

.closebtn-hse {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 25px;
    color: #ac3b49;
    cursor: pointer;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.overlay-hse.open ~ .closebtn-hse {
    opacity: 1;
    pointer-events: auto;
}

.overlay-new {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-image: url(../img/bgpro.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1600;
    display: none;
    pointer-events: none;
}

.overlay-new.open {
    display: block;
    pointer-events: auto;
}

.new-content {
    position: absolute;
    top: 10%;
    left: 2%;
    color: #000000;
    text-transform: uppercase;
}
.new-content h2{
    font-size: 50px;
    font-weight: 400;
    color: #ac3b49;
}
.new-content ul li{
    list-style: none;
    font-size: 5rem;
    overflow: hidden;
}
._2a0DR{
    width: 40px;
    position: relative;
    top: -5px;
    left: -50%;
    transition: 0.5s;
    /*fill: #000000 !important;*/
}
.new-content ul li a{
    text-decoration: none;
    transition: transform 0.3s ease;
    color: #ac3b49 !important;
    font-weight: 400;
}
.new-content ul li:hover ._2a0DR{
    left: 0;
}
.new-content ul li a:hover{

}
@media only screen and (min-width: 0px) and (max-width: 995px){
    .navbar-toggler {
        display: none !important;
    }
}


/*--------OVERLAY END------*/
.dg-open-btn {
    font-size: 16px;
    cursor: pointer;
    border: none;
    background: transparent;
    margin-right: 5px;
}

.dg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 50%;
    background-image: url(../img/bgpro.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.dg-overlay.dg-active {
    transform: translateX(0);
}

.dg-overlay-content {
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
}
.dg-overlay-content h2{
    font-size: 30px;
    color: #ac3b49 !important;
}
.dg-overlay-content ul li{
    list-style: none;
}
.dg-overlay-content ul li a{
    font-size: 25px;
    font-weight: 400;
    color: #ac3b49 !important;
    text-decoration: none;
    transition: 0.5s;
}
.dg-overlay-content ul li a:hover{
    color: #000000 !important;
}

.dg-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    background: none;
    color: #ac3b49;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .dg-overlay-content {
        width: 100%;
        padding: 20px;
    }
    .dg-overlay {
        width: 100%;
    }
}
.cust-pic img{
    width: 100px;
}








section {
    height: 120vh;
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 15px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 100%;
    justify-content: center;
}

.gallery img {
    width: 300px;
    height: auto;
    object-fit: cover;
    transform: translateY(100%);
    opacity: 0;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .gallery img {
        width: 100px;
        height: 150px;
    }
}

.spacer {
    height: 150vh;
}







.accordion-content {
    display: none;
    padding: 5px;
}
.accordion-content a{
    text-decoration: none;
    color: #d86d81 !important;
    display: block;
}

.accordion-header {
    background: transparent;
    /*padding: 10px;*/
    cursor: pointer;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 25px;
    font-weight: 400;
    color: #ac3b49 !important;
    text-decoration: none;
    transition: 0.5s;
}

.accordion-item.active .accordion-content {
    display: block;
}

.toggle-icon {
    float: right;
    font-weight: bold;
}



/*<!---------HEADER START--------->*/
.navbar-brand1{
    text-align: center;
}
.navbar-brand img{
    width: 70px;
    margin-right: 45px !important;
}
/*.bg-navi{
    background: #1a1a1a;
}*/
.nac-d{
    position: relative;
    z-index: 99999;
}
.nav-link{
    text-transform: capitalize !important;
    color: #000000 !Important;
    font-size: 16px !important;
    padding: 0 !important;
    margin-right: 40px !important;
    font-weight: 400 !important;
}
.nav-link:hover{
    color: #d86d81 !Important;
}
.extra-div{
    position: relative;
    width: 100%;
}
.extra-div{
    position: absolute;
}
.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    background: #141414;
    overflow-y: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
}
.search-div{
    color: #ffffff;
    transition: 0.5s;
    font-size: 14px;
}
.ad-12{
    display: inline-block;
}
/*.search-div:hover{
    color: #3daddf;
}*/
.overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}
.overlay input[type=text] {
    padding: 15px;
    font-size: 17px;
    border: none;
    font-family: 'Oswald', sans-serif;
    border-bottom: 1px solid #ffffff;
    float: left;
    width: 80%;
    background: transparent;
    color: #ffffff;
}
.overlay input::placeholder{
    color: #ffffff;
}
.overlay input[type=text]:focus{
    border: none !important;
}


/*.overlay input[type=text]:hover {
    background: #f1f1f1;
}*/



.overlay button {
    float: left;
    width: 20%;
    padding: 15px;
    background: transparent;
    font-size: 26px;
    color: #ffffff;
    border: none;
    cursor: pointer;
    height: 58px;
    transition: 0.5s;
}

.hvr-underline-from-left:before{
    height: 2px !important;
    background: #d86d81 !important;
}
.overlay-content {

    position: relative;

    top: 46%;

    width: 80%;

    text-align: center;

    margin-top: 30px;

    margin: auto;

}
/*.overlay button:hover {

    background: #a1387a;

}*/
.hvr-underline-from-center:before{
    height: 2px !important;
    background: #ffffff !important;
}
.bg-top{
    width: 100%;
    background: #000000;
}
.top-social ul li{
    list-style: none;
    display: inline-block;
    padding-left: 15px;
}
.top-social ul li a{
    display: block;
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    transition: 0.5s;
}
.top-social ul li a:hover{
    color: #d86d81;
}
.newsSlide p{
    font-size: 17px;
    color: #ffffff;
    padding: 0;
    margin: 0;
    text-align: center;
}
.top-contact{
    float: right;
    padding-right: 15px;
}

.top-contact ul li{
    list-style: none;
    color: #ffffff;
    display: inline-block;
    font-size: 17px;
    font-weight: 200;
}
.top-contact ul li a{
    color: #ffffff;
    text-decoration: none;
    transition: 0.5s;
}
.top-contact ul li a:hover{
    color: #d86d81;
}

/*<!---------HEADER End--------->*/
/*===============
BANNER
==============*/
.banner-div img{
    width: 100%;
}
.carousel-item {
    transition: transform 1s ease-in-out;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    transition: opacity 0s 1s;
}
.carousel-caption {
    right: inherit;
    top: 30%;
    left: 9% !important;
}
.carousel-caption h5{
    font-family: 'Oswald', sans-serif;
    font-size: 5vw;
    text-align: left;
    color: #d86d81;
    text-transform: uppercase;
}
.carousel-caption p{
    font-family: "Dancing Script", cursive;
    font-size: 1.7vw;
    text-align: left;
    /*text-transform: uppercase;*/
}
.carousel-caption button{
    border: none;
    color: #ffffff;
    border: 2px solid #ffffff;
    background-color: transparent;
    text-transform: uppercase;
    padding: 1px 11px 2px 11px;
    transition: 0.5s;
    float: left;
}
.carousel-caption button:hover{
    background-color: #ffffff;
    color: #000000;
}
.carousel-control-next, .carousel-control-prev{
    top: 45%;
    width: 50px;
    height: 50px;
    background: #000000;
    border-radius: 50%;
    opacity: 0;
    transition: 0.5s;
}
.carousel-indicators li{
    background-color: #ff6501;
}
.banner-div:hover .carousel-control-next{
    opacity: 1;
    right: 2%;
}
.banner-div:hover .carousel-control-prev{
    opacity: 1;
    left: 2%;
}
.carousel-control-prev:hover{
    background: #d86d81;
}
.carousel-control-next:hover{
    background: #d86d81;
}

/*======BANNER END======*/
/*<!------------BODY START---------------->*/
.cus-p{
    padding: 0;
}

.bg0img{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    color: transparent;
    image-rendering: pixelated;
    z-index: 1;
}

.bgmain{
    position: relative;
    width: 100%;
    height: 100vh;
}

.bgmain h1{
    font-size: 20px;
    position: absolute;
    bottom: 25px;
    left: 50%;
    width: 100%;
    transform: translate(-50%,-50%);
    text-align: center;
    z-index: 2;
}


.hero-img{
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 44%;
}
/*.hero-img img{
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}*/

.slider-container {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider1 {
    display: flex;
    flex-direction: column;
    height: 400%; /* 100% for each slide, total of 4 slides */
    transition: transform 0.5s ease;
}

.slide1 {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3498db;
    color: white;
    font-size: 2rem;
    text-align: center;
}
.bg-pro{
    position: relative;
    overflow: hidden;
    background-color: white;
}

.bg-pro {
    background-attachment: fixed;
    background-image: url(../img/bgpro.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 999; /* Push it to the background */
}
.left-head h2{

    font-size: 22px;
    font-weight: bold;
}


.pro-img{
    position: relative;
    width: 100%;
}
.pro-data{
    margin-top: 8rem;
}
.pro-img img{
    float: right;
}
.pro-img h1{
    font-size: 60px;
    font-weight: 400;
}
.pro-img p{
    font-size: 13px;
    font-weight: 400;
}
.pro-img button{
    border: 1px solid #ac3b49;
    background: transparent;
    padding: 14px 45px;
    color: #ac3b49;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.5s;
}
.pro-img button:hover{
    background: #ac3b49;
    color: #ffffff;
    box-shadow: 0 12px 15px -6px rgb(0 0 0 / 30%);
}
.cus-mar{
    margin-top: 100px;
}
.cus-area{
    position: relative;
}
.cus-area img{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center it */
    z-index: 0;; /* Make sure it's above backgrounds */
}
.your-section1 {
    background-image: url(../img/banner-01.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}
.your-section2 {
    background-image: url(../img/banner-02.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}
.your-section3 {
    background-image: url(../img/banner-03.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}
.your-section4 {
    background-image: url(../img/banner-04.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}
.section-texts {
    position: relative;
    width: 100%;
    height: 100vh;
}
.section-texts h3{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(216, 109, 129, 0.8);
    color: #ffffff;
    padding: 10px;
    display: inline-block;
}

@media (max-width: 768px) {
    .your-section1 {
       background-image: url(../img/j1.jpg);
    }
    .your-section2 {
        background-image: url(../img/j3.jpg);
    }
    .your-section3 {
        background-image: url(../img/j2.jpg);
    }
    .your-section4 {
        background-image: url(../img/j4.jpg);
    }
}

.textp-sec{
    display: flex;
    /*    position: relative;
        width: 100%;*/
}
.textp-sec h2{
    background: #d86d81;
    display: inline;
    padding: 10px 20px;
    color: #ffffff;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 30px;
}





/*GALLER*/

/* Section container */
#scroll-zoom-section {
    position: relative;
    height: 500vh;
    /*background: black;*/
}

/* Video Background */
#scroll-zoom-section video {
    position: fixed;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.video-area video{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    object-fit: cover;
}
.video-area1 video{
    /*    position: fixed;
        top: 0;
        left: 0;*/
    width: 100%;
    height: 100vh;
    z-index: -2;
    object-fit: cover;
    margin-bottom: -7px;
}
/* The circle element */
.circle-container {
    position: fixed;
    width: min(50vw, 500px);
    height: min(50vw, 500px);
    border-radius: 50%;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    background: #f0f0ed;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    will-change: transform, opacity;
    box-shadow: 0px 0px 11px -1px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 11px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 11px -1px rgba(0,0,0,0.75);
}

.image-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.circle-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transform: scale(0.1);
    transform-origin: center center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}


/*GALLERY END*/
.fmain{
    text-align: center;
}
.fmain h4{
    text-decoration: none;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 20px;
}
.fmain h5{
    text-decoration: none;
    color: #d86d81;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.pro-anchor{
    text-decoration: none;
}

/*<!------------BODY END---------------->*/

/* Mobile: Show .show-mobile, hide .show-desktop */
@media (max-width: 575.98px) {
    .show-mobile {
        display: block !important;
    }
    .show-desktop {
        display: none !important;
    }
}

/* Desktop: Show .show-desktop, hide .show-mobile */
@media (min-width: 576px) {
    .show-mobile {
        display: none !important;
    }
    .show-desktop {
        display: block !important;
    }
}


/*<!------------FOOTER START---------------->*/
.st0{
    fill: #d86d81 !important;
}
.bg-sub{
    background-image: url(../img/bgsub.jpg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
.sub-area{
    width: 100%;
    text-align: center;
}
.sub-area h4{
    font-size: 24px;
    font-family: Toxi;
    color: #0b2e34;
    text-transform: uppercase;
}
.sub-area h5{
    font-size: 16px;
    color: #0b2e34;
    text-transform: capitalize;
    font-weight: 300;
}
.sub-area input{
    background: transparent;
    border: none;
    border-bottom: 1px solid #0b2e34;
    width: 50%;
    margin-top: 25px;
    font-size: 14px;
    padding: 10px 10px 10px 0;
}
.sub-area button{
    background: transparent;
    border: none;
    border-bottom: 1px solid #333333;
    margin-top: 25px;
    font-size: 16px;
    color: #0b2e34;
    text-transform: uppercase;
    padding: 0 0 9px 0;
    margin-left: -5px;
    font-weight: bold;
    transition: 0.5s;
}
.sub-area button:hover{
    color: #ff5400;
}
.bg-footer{
    width: 100%;
    background: #000000;
}
.btm-log img{
    width: 150px;
}
.btm-log a{
    display: contents;
}
.footer-links ul li{
    list-style: none;
    margin-top: 8px;
    position: relative;
}
.footer-links ul li a{
    color: #848484;
    font-size: 14px;
    display: block;
    text-decoration: none;
    transition: 0.5s;
    text-transform: capitalize;
}
.footer-links ul li a:hover{
    color: #d86d81;
}
.footer-links svg{
    width: 20px;
}
.links-pos{
    position: absolute;
    top: 1px;
    left: 35px;
}
.cop-right p{
    font-size: 14px;
    color: #ffffff;
    text-align: center;
}
.cop-right p a{
    color: #ff5400 !important;
}
.cop-right p span{
    font-weight: bold;
}

.footer-social ul li{
    list-style: none;
    display: inline-block;
    margin-right: 7px;
}
.footer-social ul li a{
    width: 30px;
    height: 30px;
    background: #ffffff;
    display: block;
    font-size: 16px;
    text-align: center;
    padding-top: 4px;
    color: #d86d81;
    transition: 0.5s;
}
.st22{
    fill: #d86d81;
    transition: 0.5s;
}
.footer-social ul li a svg{
    position: relative;
    top: -2px;
}
.footer-social ul li a:hover{
    background: #d86d81;
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 12px 15px -6px rgb(0 0 0 / 30%);
}
.footer-social ul li a:hover .st22{
    fill: #ffffff;
}
.tik-area{
    position: relative;
    top: 2px;
}
.divider-line1{
    width: 100%;
    border-top: 1px solid #323232;
}


/*<!------------FOOTER END---------------->*/





.whats-but{
    background-color: #25d366;
    color: #ffffff;
    border: none;
    padding: 10px 22px 10px 22px;
    font-size: 16px;
    transition: 0.5s;
    width: 100%;
}
.whats-but i{
    padding: 0 7px 0 0;
    font-size: 20px;
    position: relative;
    top: 1px;
}
.whats-but:hover{
    box-shadow: 0px 10px 5px 0px rgba(44,51,69,0.75);
    -webkit-box-shadow: 0px 10px 5px 0px rgba(44,51,69,0.75);
    -moz-box-shadow: 0px 10px 5px 0px rgba(44,51,69,0.75);
}































.prodetails{

}
.des-bor{
    border-top: 1px solid #d86d81;
    border-bottom: 1px solid #d86d81;
}
.prodetails p{
    font-size: 19px;
    font-weight: 300;
    color: #141414;
    margin-top: 20px;
}
.prodetails h4{
    text-transform: uppercase;
    font-size: 30px;
    background: #d86d81;
    display: inline-block;
    padding: 5px;
    margin: 0;
    color: #ffffff;
}
.btn-inq{
    width: 80% !important;
    padding: 10px 22px 10px 22px !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
}


.sr-slider {
    width: 100%;
    text-align: center;
    position: relative;
}
.sr-slides {
    display: none;
    font-size: 18px;
    padding: 10px;
    font-weight: 300;
    /*    background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
}
.sr-dots {
    margin-top: 15px;
}
.sr-dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #d86d81;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.sr-active {
    background-color: #ac3b49;
}
.sr-slides span{
    background: #eee;
}

/*------

  sitemap

------------------*/
.map{
    margin-bottom: -5px;
}
.sitemap_cate{

    margin:0px 0 20px 0;
    padding:0px;
}

.sitemap_cate h4{

    margin:0px 0 10px 0;
    padding:0px 0 5px 0;

    font-size:16px;
    color:#554a72;
    text-transform:uppercase;
    font-weight:bold;

    border-bottom:solid 1px #ccc;
}

.sitemap_cate p{

    margin:0px 0 0px 0;
    padding:0px 0 0px 0;

    font-size:15px;
    color:#171717;
}

.sitemap_cate p:hover{

    color:#8773c3;
    text-decoration:none;
}

.sitem_menu{

    margin:0px 0 15px 0;
    padding:0px;
    text-align:center
}

.sitem_menu ul{

    margin:0px;
    padding:0px;
    color: #171717;
}

.sitem_menu ul li{

    margin:0px 10px;
    padding:0px;
    list-style:none;
    display:inline-block;
}

.sitem_menu ul li a{

    margin:0px;
    padding:0px;

    font-size:16px;
    color:#8773c3;
    text-transform:capitalize;
}

.sitem_menu ul li a:hover{

    color:#171717;
    text-decoration:none;
}

/*======================

















/*------------

CUSTOM

----------*/
.mails-icon{
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 70px;
    right: 30px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 999;
}
/*.mails-icon:before{
    content: 'Send mail';
    position: absolute;
    font-size: 12px;
    background: #333;
    color: #ffffff;
    padding: 5px;
    width: auto;
    top: -44px;
    left: -12px;
    opacity: 0;
    border-radius: 3px;
    transition: 0.5s;
}
.mails-icon:hover:before{
    opacity: 1;
}*/



.whatsapp-icon{
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 30px;
    right: 30px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 999;
}
/*.whatsapp-icon:before{
    content: 'Chat on WhatsApp';
    position: absolute;
    font-size: 12px;
    background: #333;
    color: #ffffff;
    padding: 5px;
    width: auto;
    top: -44px;
    left: -12px;
    opacity: 0;
    border-radius: 3px;
    transition: 0.5s;
}
.whatsapp-icon:hover:before{
    opacity: 1;
}*/
.dropdown-submenu {

    position: relative;

}



.dropdown-submenu a::after {

    transform: rotate(-90deg);

    position: absolute;

    right: 6px;

    top: .8em;

}

.dropdown-item{
    font-size: 14px;
    text-transform: capitalize;
    background: #ffffff !important;
    /*font-weight: 700;*/
    color: #616161;
    padding: 12px 24px 12px 16px !important;
    box-shadow: 0 0 3px rgba(0,0,0,0.15);
    transition: 0.5s;
}

.dropdown-menu{

    background: none;

    top: 90%;

    padding: 0;

    z-index: 9999 !important;
    border: none !important;
    padding-top: 10px;

}

.dropdown-item:hover{

    color: #ffffff !important;

    background: #d86d81 !important;

}

.dropdown-submenu .dropdown-menu {

    top: -3px;

    left: 100%;

    margin-left: .1rem;

    margin-right: .1rem;

}

.dropdown:hover>.dropdown-menu {

    display: block;

}

.navbar-nav li:hover > ul.dropdown-menu {

    display: block;

}

.dropdown>.dropdown-toggle:active {

    pointer-events: none;

}

.hammad-sub-li{

    position: relative;

    top: 1px;
    left: -2px;

}



#fixedbar{

    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height:auto;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 25%, rgba(77,72,72,0.5) 100%);

    z-index:99999;
    padding:5px 0;
}

#fixedbar:after,#fixedbar:before{

    display:block
}

.fix-logo {

    width: 50px;

}

.hvr-underline-reveal:before{

    background: #f9200b !important;

}

/* change navbar-brand color */

.navbar a.navbar-brand {

    color: white;

}

/* change navbar-brand color on hover */

.navbar a.navbar-brand:hover {

    color: green;

}

/*  change navbar li colors, also active one but not disabled one */

.navbar ul.navbar-nav li.nav-item a.nav-link {

    color: white;

}

/* change navbar-toggler inside lines color (stroke) */

.navbar-light span.navbar-toggler-icon {

    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='black' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");

    color: black;

}
.navbar-light .navbar-toggler{
    border-color: black;
}

/* change hamburger button border color */

button.navbar-toggler.navbar-toggler-right {

    border-color: black;

}

/* change navbar background on collapse */

@media (max-width: 768px) {

    nav.navbar {

    }



}

.hvr-bounce-to-bottom:before{

    background: #1c1e1b !important;

    color: #ffffff !important;

}

.hvr-bounce-to-bottom:hover .nav-link{

    color: #ffffff !important;

}

center{
    width: 50%;
    background-image: url(../img/not.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 404px;
    color: #171717;

    margin: 0 auto;

}

.contactform-bg{

    background: #ffffff;

    padding: 10px;

}



/* width */

::-webkit-scrollbar {

    width: 5px;

}



/* Track */

::-webkit-scrollbar-track {

    background: #f1f1f1;

}



/* Handle */

::-webkit-scrollbar-thumb {

    background: #d86d81;

}



/* Handle on hover */

::-webkit-scrollbar-thumb:hover {

    background: #555;

}





/*----------------------*/







/*Footer Area Ends*/



/*======================

ABOUT PAGE STARTS HERE

======================*/
.ab-banner{
    position: relative;
    z-index: 9;
}
.ab-banner img{

    width: 100%;

}
.page-header1 ul li{
    list-style: none;
    color: #333333;
    font-size: 45px;
    text-transform: uppercase;
    font-weight: 300;
    text-align: center;
}
.page-header1 ul li a{

}
.page-header{
    background-color: #f4f4f4;
    padding: 14px 13px 14px;
    text-align: left;
    padding-top: 10px;
    padding-bottom: 10px;

}

.page-header ul li{

    list-style: none;

    display: inline-block;

    color: #0d0d0d !important;


    font-size: 14px;

    text-transform: uppercase;

}

.page-header ul li a{


    cursor: pointer;

    text-decoration: none !important;

    color: #d86d81 !important;
    transition: 0.5s;

}
.page-header ul li i{
    color: #0d0d0d !important;
}

.page-header ul li a:hover{

    color: #141414 !important;

}





.company-p p{

    /*width: 75%;*/

    font-size: 14px;


    color: #141414;

}


.ab-top{
    position: relative;
    width: 100%;
}

.ab-top img{
    width: 100%;
}
.ab-top h1{
    position: absolute;
    font-size: 30px;
    font-weight: 400;
    text-transform: capitalize;
    top: 20%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}
.ab-text {
    text-align: center;
}
.ab-text h2{
    font-size: 25px;
    font-weight: 500;
    text-transform: capitalize;
}
.ab-text p{
    font-size: 16px;
    font-weight: 400;
}


.ab-text1 {
    
}
.ab-text1 h2{
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
}
.ab-text1 p{
    font-size: 14px;
    font-weight: 400;
}
.ab-text1 img{
    width: 100%;
}
.ab-text1 p a{
    color: inherit !important;
}

/*======================

ABOUT PAGE END HERE

======================*/





/*======================

INQUUIRY PAGE STARTS

======================*/

.hammadinput{

    width: 100%;

    padding: 10px 15px;


    background-color: transparent;

    border: 1px solid #909090;

    margin-top: 10px;

    color: gray !important;

    border-radius: 0px;

}

.hm-height{

    height: 200px;

}

.hammadinput:focus{

    box-shadow:2px 2px 10px #ccc
}

.tus_contsbmt{

    margin:0px;
    padding: 18px 10px !important;
    background-color:#0d0d0d;
    color:#ffffff;
    text-align:center;
    text-transform:capitalize;
    font-size:14px;
    border:none;
    transition:0.6s;
    /*border-left:solid 4px #141414;*/
}

.tus_contsbmt:hover{

    background-color:#d86d81;
    color:#ffffff;
    text-decoration:none;
}



/*======================

INQUIRY PAGE END HERE

======================*/



/*Gallery*/



.gallery1 {
    width: 100%;
    overflow: hidden;
}

.gallery1 a{

    text-decoration: none;



    font-size: 15px;

    color: #141414;

}







.gallery1 img {

    width: 100%;
    transition: 0.5s;
    /*border-radius: 50%;*/

}



.desc1 {
    text-align: center;

}

/*Gallery*/



/*======================

CONTACT PAGE END HERE

======================*/


.contact-links{
    width: 100%;
    /*text-align: center;*/
}
.contact-links ul li{

    list-style: none;

    margin: 10px;

    color: #141414;
    display: inline-block;

}

.contact-links ul li a{



    font-size: 14px;
    text-decoration: none;
    position: relative;
    top: -18px;
    color: #141414;
    text-transform: capitalize;

}

.contact-links ul li i{

    width: 50px;

    height: 50px;

    background-color: #d86d81;

    border-radius: 50%;

    margin: 0 16px 0 0;

    font-size: 20px;

    color: #ffffff;

    padding-top: 15px;

    text-align: center;

    position: relative;

    top: -17px;

}

.contact-links p{
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
}







/*======================

CONTACT PAGE END HERE

======================*/





/*======================

PRODUCTS PAGE END HERE

======================*/
.slide-con{
    position: relative;
}
.hs-sidebar {
    position: fixed;
    top: 0;
    left: -255px;
    width: 250px;
    height: 100%;
    background-color: #ffffff;
    color: #fff;
    transition: left 0.3s ease;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 99999;
    padding: 10px;
    overflow: scroll;
}

.hs-sidebar.open {
    left: 0;
}



.hs-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #444;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
}

.hs-close-btn:hover {
    background-color: #575757;
}

.hs-toggle-btn {
    position: absolute;
    top: 20%;
    left: -58px;
    width: auto;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    transform-origin: center;
    transition: transform 0.3s ease;
    display: flex;
    z-index: 999;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
    text-transform: uppercase;
    transition: 0.5s;
}
.hs-toggle-btn:hover{
    background-color: #d86d81
}





/*-------------SLIDE END----*/



#main #faq .card {

    border: none;

    border-radius: 0px;

}



#main #faq .card .card-header {

    border: 0;

    border-top: 1px solid #eee;
    margin-top: 15px;
    padding: 0;
    background: none;

}



#main #faq .card .card-header .btn-header-link {

    color: #fff;

    display: block;

    text-align: left;

    background: transparent;

    color: #141414;

    border-radius: 0px;

    text-transform: capitalize;
    padding: 9px 10px 9px 0px;
}



#main #faq .card .card-header .btn-header-link:after {

    content: "\f068";

    font-family: FontAwesome;

    font-weight: 900;

    float: right;

}



#main #faq .card .card-header .btn-header-link.collapsed {

    background: transparent;

    color: #141414;

}

#main #faq .card .card-header .btn-header-link.collapsed:after {

    content: "\f067";

}



#main #faq .card .collapsing {

    background: rgb(255,255,255,0.80);

    line-height: 30px;

}



#main #faq .card .collapse {



    border: 0;

}



#main #faq .card .collapse {

    background: rgb(255,255,255,0.80);

    line-height: 30px;

    color: #222;

}
.confirm-email{
    position: fixed;
    bottom: 3%;
    z-index: 99999;
    right: 0;
}
#main h4{
    color: #333333;
    font-size: 20px;
    margin: 0;
    text-transform: uppercase;

}
.lin-left{
    width: 60px;
    border-top: 4px solid #eee;
}

#main h4 i{

    margin: 0 10px 0 0;

}
.hammadli ul{
    border-left: 1px solid #eee;
}
.hammadli ul li{
    list-style: none;

}
.hammadli ul li a {
    font-size: 14px;
    text-decoration: none;
    text-transform: capitalize;
    color: #333333 !important;
    background: none !important;
    padding: 3px 14px 3px 14px;
    display: block;
    transition: 0.5s;
}
.hammadli ul{
    margin: 0;
}
.hammadli ul li a:hover{
    color: #d86d81 !important;
}

/*======================

PRODUCTS PAGE END HERE

======================*/

/*CATALOG*/
.catlog{
    text-align: center;
}
.catlog img{
    width: 100%;
    border: 5px solid #d9d9d9;
    transition: 0.5s;
}
.catlog h5{
    /*font-family: 'Kalam', cursive;*/
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}
.mdlbutton{
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    background: transparent;
    padding: 7px 48px;
    font-size: 14px;
    border: 2px solid #262626;
    color: #262626;
    transition: 0.5s;

}
.mdlbutton:hover{
    background: #d86d81 !important;
    border-color: #d86d81;
    color: #ffffff !important;
    box-shadow: 0px 10px 5px 0px rgba(44,51,69,0.75);
    -webkit-box-shadow: 0px 10px 5px 0px rgba(44,51,69,0.75);
    -moz-box-shadow: 0px 10px 5px 0px rgba(44,51,69,0.75);
}
.catlog:hover img{

    border-color: #d86d81;
    box-shadow: 0px 10px 6px -3px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 10px 6px -3px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 10px 6px -3px rgba(0,0,0,0.75);
}

.modal-header{
    background: #d86d81;
}
.modal-footer{
    background: #ffffff;
}
.modal-title{
    color: #ffffff;
    text-transform: uppercase;
}
.job-title h2{
    text-transform: uppercase;
    text-align: center;
    color: #1d191a;
}
.job-title h2 span{
    color: #d86d81
}
.linebar{
    width: 90px;
    border-top: 5px solid #d86d81;

}





/*---------

   Basket

-------------------*/

.yourCart{

    width:100%;
    text-align:left;
    color: #707070;
    text-transform:uppercase;
    padding:20px;
    background:#eeeeee;
    font-weight:bold;
    font-size:18px;
    border-radius:3px 3px 0 0;
}

.cartProduct{

    border:1px solid #eeeeee;
    border-top:none;
    background-color:#fff
}

.cartProduct:last-child{

    margin-bottom:20px;
    margin-top:15px;
}

.cartPdctImage{

    width:100%;
    height:200px;
    text-align:center;
    position:relative
}

.cartPdctImage > img{

    max-height:100%;
    max-width:100%;
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    padding:15px;
    border:solid 1px #ccc
}

.cartPdctName{

    padding:20px 0 0;
    color:#333;
    font-size:14px;
    text-transform:capitalize
}

.cartPdctArt{

    padding:5px 0 0;
    color:#333;
    font-size:14px;
}

.cartPdctSize{

    padding:5px 0 10px;
    color:#333
}

.cartQuantity{

    width:60px;

    font-weight:bold;
    color:#333
}

.cartSubmit{

    margin:10px 0;
    background:#0d0d0d;

    border:none;
    padding:7px 20px;
    font-size:14px;
    color:#fff
}

.cartRemove{

    margin:10px 0;
    text-decoration: none;
    background:#d86d81;
    transition: 0.5s;
    border:none;
    padding:7px 20px;

    font-size:14px;
    color:#fff;
    display:inline-block
}

.cartRemove:hover{

    color:#fff;
    text-decoration:none;
    background-color:#141414;
}

.cartPdctPrice{

    padding:20px;
    text-align:right ;
    color:#fa5400
}

.summery{

    background: #191919;
    ;
    margin-bottom:40px;
}

.summeryTxt{

    padding:20px;
    color:#fff;
    font-size:18px;
}

.summeryTotal{

    padding:20px;
    color:#fff;
    font-size:16px;
    border-bottom:gray 1px solid;
    border-top:gray 1px solid;
    text-transform:uppercase
}

.summeryTotal > span{

    float:right
}

.summeryOr{

    color:#fff;
    font-size:16px;
    text-align:center
}

.cartSend{

    padding:15px 30px;
    text-align:center
}

.cartSend > a{
    padding:10px;
    color:#fff;
    font-size:14px;
    text-transform:uppercase;
    background:#d86d81;
    transition: 0.5s;
    display:block;
    border-radius:0px;
    font-weight:bold;
    text-decoration:none
}

.cartSend > a:hover{

    background:#fff;
    text-decoration:none;
    color:#d86d81;
}

.cartAddMore{

    padding:15px 30px;
    text-align:center
}

.cartAddMore > a{

    padding:10px;
    color:#ffffff;
    font-size:14px;
    text-transform:uppercase;
    background:#d86d81;
    transition: 0.5s;
    display:block;
    border-radius:0px;
    font-weight:bold;
    text-decoration:none
}

.cartAddMore > a:hover{

    background:#fff;
    text-decoration:none;
    color:#d86d81;
}

.summeryOr{
    color: #fff;
}

.cartBasketEmpty{


    padding:60px 20px ;
    color:#cf2d32;
    font-size:25px;
    background: #eeeeee;
    text-align:center;
    margin:20px 0 40px;
    width: 100%;
}

.tus_lefth h4{

    margin:10px 0 10px 0;
    padding:12px 15px;
    background-color:#b77e31;
    color:#fff;
    text-align:left;
    text-transform:uppercase;


    font-size:20px;
}

.tus_lefth h4 span{

    color:#cf2d32;
    margin-right:5px;
}

.cartQuantity{
    text-align: center;
}

.pro-detail h2{
    color: #ac3b49;
    text-transform: capitalize;
    font-size: 45px;
    font-weight: 300;
}

.pro-detail h4{

    font-size: 16px;


    font-weight: 500;


    color: #d86d81;
}

.pro-detail h4 span{

}
.pro-detail p{
    font-size: 19px;
    font-weight: 300;
    color: #141414;
    margin-top: 20px;
}

.pro-detail p span{

    font-size: 15px;


    color: #141414;

    font-weight: bold;

    border-color: #fff;

}

.pagination a{

    text-decoration: none;

    background: #1c1e1b;

    padding: 2px 9px 4px 9px;
    transition: 0.5s;
    color: #ffffff;

}

.pagination a:hover{

    color: #ffffff;

    background: #d86d81;

}

.submit-inq h3{

    color: #141414;

    font-size: 15px;



}

.submit-inq h3 i{

    background: green;

    color: #ffffff;

    padding: 3px 8px 3px 8px;

    border-radius: 6px;

}
.basket-span{
    position: relative;
}
.basket-span ul li{
    list-style: none;
    display: inline-block;
    margin-right: 13px;
}
.basket-span ul li a{
    color: #000000;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    display: block;
}
.basket-span ul li a span{
    width: 22px !important;
    height: 22px !important;
    background: #3e3e3e;
    display: inline-block;
    text-align: center;
    font-size: 10px;
    position: relative;
    top: -5px;
    padding-top: 2px;
    margin-left: 6px;
    color: #ffffff;
}
.search-icon{
    position: relative;
    top: -5px;
}
/*---------

   Basket

-------------------*/


/*---------

   DETAILS PAGE

-------------------*/
.single-p-gallery h2{
    font-size: 45px;
    text-transform: uppercase;
    font-weight: 300;
    text-align: center;
}

.scroll-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
}

.scroll-gallery {
    display: flex;
    animation: scroll-left 20s linear infinite;
}

.scroll-gallery img {
    width: 33.3333%;
    height: auto;
    object-fit: cover;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}




.bg-bar{
    width: 100%;
    background: #d86d81;
    text-align: center
}
.bg-bar h4{
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
}


/*---------

   DETAILS PAGE

-------------------*/



@media (max-width: 768px) {
    .navbar-brand img{
        width: 50px;
    }
    center{
        width: 100%;
    }
    .hero-img{
        width: 100%;
    }
    .new-content ul li{
        font-size: 2rem;
    }
    ._2a0DR{
        width: 21px;
        top: -1px;
    }
    .progress-percentage{
       right: inherit;
       left: 50%;
       transform: translate(-50%, -50%);
       text-align: center;
    }
    .dg-open-btn{
        position: absolute;
        right: 50px;
    }
    .pro-img h1{
        font-size: 30px;
    }
    .pro-data{
        margin-top: 3rem;
    }
    .cus-mar{
        margin-top: 50px;
    }
    .video-area1 video{
        height: 100%;
    }
    .prodetails h4{
        font-size: 20px;
    }
    .prodetails p{
        font-size: 16px;
    }
    .pro-detail p{
        font-size: 16px;
    }
    .pro-detail h2{
        font-size: 30px;
    }
    .sr-slides{
        font-size: 16px;
    }

}
@media only screen and (min-width: 280px) and (max-width: 600px){
    .navbar-brand img{
        width: 50px;
    }
    center{
        width: 100%;
    }
    .hero-img{
        width: 100%;
    }
    .new-content ul li{
        font-size: 2rem;
    }
    ._2a0DR{
        width: 21px;
        top: -1px;
    }
    .progress-percentage{
       right: inherit;
       left: 50%;
       transform: translate(-50%, -50%);
       text-align: center;
    }
    .dg-open-btn{
        position: absolute;
        right: 50px;
    }
    .pro-img h1{
        font-size: 30px;
    }
    .pro-data{
        margin-top: 3rem;
    }
    .cus-mar{
        margin-top: 50px;
    }
    .video-area1 video{
        height: 100%;
    }
    .prodetails h4{
        font-size: 20px;
    }
    .prodetails p{
        font-size: 16px;
    }
    .pro-detail p{
        font-size: 16px;
    }
    .pro-detail h2{
        font-size: 30px;
    }
    .sr-slides{
        font-size: 16px;
    }

}

@media only screen and (min-width: 360px) and (max-width: 640px){
    .navbar-brand img{
        width: 50px;
    }
    center{
        width: 100%;
    }
    .hero-img{
        width: 100%;
    }
    .new-content ul li{
        font-size: 2rem;
    }
    ._2a0DR{
        width: 21px;
        top: -1px;
    }
    .progress-percentage{
       right: inherit;
       left: 50%;
       transform: translate(-50%, -50%);
       text-align: center;
    }
    .dg-open-btn{
        position: absolute;
        right: 50px;
    }
    .pro-img h1{
        font-size: 30px;
    }
    .pro-data{
        margin-top: 3rem;
    }
    .cus-mar{
        margin-top: 50px;
    }
    .video-area1 video{
        height: 100%;
    }
    .prodetails h4{
        font-size: 20px;
    }
    .prodetails p{
        font-size: 16px;
    }
    .pro-detail p{
        font-size: 16px;
    }
    .pro-detail h2{
        font-size: 30px;
    }
    .sr-slides{
        font-size: 16px;
    }

}

@media only screen and (min-width: 320px) and (max-width: 568px){
    .navbar-brand img{
        width: 50px;
    }
    center{
        width: 100%;
    }
    .hero-img{
        width: 100%;
    }
    .new-content ul li{
        font-size: 2rem;
    }
    ._2a0DR{
        width: 21px;
        top: -1px;
    }
    .progress-percentage{
       right: inherit;
       left: 50%;
       transform: translate(-50%, -50%);
       text-align: center;
    }
    .dg-open-btn{
        position: absolute;
        right: 50px;
    }
    .pro-img h1{
        font-size: 30px;
    }
    .pro-data{
        margin-top: 3rem;
    }
    .cus-mar{
        margin-top: 50px;
    }
    .video-area1 video{
        height: 100%;
    }
    .prodetails h4{
        font-size: 20px;
    }
    .prodetails p{
        font-size: 16px;
    }
    .pro-detail p{
        font-size: 16px;
    }
    .pro-detail h2{
        font-size: 30px;
    }
    .sr-slides{
        font-size: 16px;
    }


}

@media only screen and (min-width: 280px) and (max-width: 653px){
    .navbar-brand img{
        width: 50px;
    }
    center{
        width: 100%;
    }
    .hero-img{
        width: 100%;
    }
    .new-content ul li{
        font-size: 2rem;
    }
    ._2a0DR{
        width: 21px;
        top: -1px;
    }
    .progress-percentage{
       right: inherit;
       left: 50%;
       transform: translate(-50%, -50%);
       text-align: center;
    }
    .dg-open-btn{
        position: absolute;
        right: 50px;
    }
    .pro-img h1{
        font-size: 30px;
    }
    .pro-data{
        margin-top: 3rem;
    }
    .cus-mar{
        margin-top: 50px;
    }
    .video-area1 video{
        height: 100%;
    }
    .prodetails h4{
        font-size: 20px;
    }
    .prodetails p{
        font-size: 16px;
    }
    .pro-detail p{
        font-size: 16px;
    }
    .pro-detail h2{
        font-size: 30px;
    }
    .sr-slides{
        font-size: 16px;
    }

}



/* iPad Pro (landscape) */
@media only screen 
and (min-device-width: 1024px) 
and (max-device-width: 1200px)
and (orientation: landscape)
and (-webkit-min-device-pixel-ratio: 2) {
    center{
        width: 100%;
    }
    .pname1{
        padding: 50px 0 50px 0;
    }
    .play-pic{
        padding-top: 20px;
    }
    /*    .foot-p{
            text-align: center;
        }
        .footer-bg button{
            position: inherit;
            margin-top: 20px
        }
        .footer-bg input{
            padding: 25px 35px 25px 35px;
        }*/
    .contact-links ul li{
        display: table;
    }

}
/* Tablets and iPads */
@media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1266px)
and (-webkit-min-device-pixel-ratio: 1) {
    center{
        width: 100%;
    }
    .pname1{
        padding: 50px 0 50px 0;
    }
    .play-pic{
        padding-top: 20px;
    }
    /*    .foot-p{
            text-align: center;
        }
        .footer-bg button{
            position: inherit;
            margin-top: 20px
        }
        .footer-bg input{
            padding: 25px 35px 25px 35px;
        }*/
    .contact-links ul li{
        display: table;
    }

}



.nav1 {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    user-select: none;

    & .btn1 {
        background-color: #d86d81;
        color: #ffffff;
        /*border: 2px solid rgba(0,0,0,0.6);*/
        margin: 0 0.25rem;
        padding: 0.75rem;
        border-radius: 50%;
        cursor: pointer;

        &:hover {
            background-color: rgba(255,255,255,0.3);
        }
    }
}

@media (width > 650px) and (width < 900px) {
    .content {
        & .title        { font-size: 1rem; }
        & .description1  { font-size: 0.7rem; }
        & button        { font-size: 0.7rem; }
    }
    .item1 {
        width: 160px;
        height: 270px;

        &:nth-child(3) { left: 50%; }
        &:nth-child(4) { left: calc(50% + 170px); }
        &:nth-child(5) { left: calc(50% + 340px); }
        &:nth-child(6) { left: calc(50% + 510px); opacity: 0; }
    }
}

@media (width < 650px) {
    .content1 {
        & .title        { font-size: 0.9rem; }
        & .description  { font-size: 0.65rem; }
        & button        { font-size: 0.7rem; }
    }
    .item1 {
        width: 130px;
        height: 220px;

        &:nth-child(3) { left: 50%; }
        &:nth-child(4) { left: calc(50% + 140px); }
        &:nth-child(5) { left: calc(50% + 280px); }
        &:nth-child(6) { left: calc(50% + 420px); opacity: 0; }
    }
}