@charset "utf-8";
/* CSS Document */

/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
/* bootstrap icon */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

/*html, body {
	width: 100%;
	overflow-x: hidden;
} */

:root {
  --color-sky: #01A89E;
  --color-orange: #F05A22;
}

* {
    text-decoration: none !important;
    outline: none !important;
}

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    background: #fff;
    letter-spacing: 0.4px;
    overflow-x: hidden;
    color: #000;
}

img {
    width: auto;
    max-width: 100%;
    height: auto;
    border: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

ol {
    list-style: decimal inside;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: 20px;
    color: #0d141e;
    line-height: 30px;
    font-family: "Raleway", sans-serif;
}

p {
    margin: 0;
    padding: 0;
    color: #212121;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
}

b,
strong {
    font-weight: 600;
}

blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

a,
a:hover,
a:visited {
    color: #21a108;
}

/* ::selection 
{
    background: #21a108;
    color: #fff;
}
::-moz-selection 
{
    background: #21a108;
    color: #fff;
} */
a:focus,
p:focus,
div:focus,
input:focus,
textarea:focus,
submit:focus,
button:focus {
    outline: none;
}


/***************
page scrool
**************/
.scrollup {
    right: 15px;
    position: fixed;
    border-radius: 200px;
    bottom: -80px;
    width: 45px;
    height: 45px;
    z-index: 9999;
    background: var(--color-sky);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    text-align: center;
    color: #FFF;
    padding: 10px;
}

.scrollup.active {
    bottom: 92px;
    right: 15px;
}

/* .scrollup:hover {
    background-color: rgba(37, 37, 37, 0.7);
} */

/***************
page scrool
***************/

/********HAMBURGER ICON***********/
.hamburger {
    padding: 0px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 1;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: var(--color-orange);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/** Spring **/
.hamburger--spring .hamburger-inner {
    top: 2px;
    transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
    transition-delay: 0.22s;
    background-color: transparent;
}

.hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/** Spring **/

/********HAMBURGER ICON***********/

.topmines {
    top: -100px;
}

.nav-active {
    position: fixed;
    top: 0 !important;
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    width: 100%;
    background: var(--color-orange);
    box-shadow: 0 0 5px #d9d9d9;
}

.nav-active .logo {
    margin-top: 0;
    position: relative;
    z-index: 99;
    width: 150px;
    flex: 0 0 150px;
}

.nav-active .menu-part {
    align-items: center;
}



/*******************************
********NAV BAR*****************
*****************************/
#pull {
    display: none;
}

.nav>ul>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: auto;
    height: auto;
    margin: 0px 50px 0px 0px;
}

.nav>ul>li:last-child,
.nav>ul>li:only-child {
    margin: 0;
}
 

.nav>ul>li:hover::before,
.nav>ul>li.current-menu-item::before,
.nav>ul>li.current-menu-parent::before,
.nav>ul>li.current-menu-ancestor::before {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
}

.nav>ul>li>a {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    height: auto;
    padding: 20px 0px;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav>ul>li:hover>a,
.nav>ul>li.current-menu-item>a,
.nav>ul>li.current-menu-parent>a,
.nav>ul>li.current-menu-ancestor>a {
    color: #fff;
}

.nav>ul>li>ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    width: 300px;
    height: auto;
    padding: 0px 0px 0px 0px;
    background: none;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav>ul>li:last-child>ul,
.nav>ul>li:nth-last-child(2)>ul {
    left: auto;
    right: 0;
}

.nav>ul>li:hover>ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.nav>ul>li>ul>li,
.nav>ul>li>ul>li>ul>li {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
}

.nav>ul>li>ul>li>a,
.nav>ul>li>ul>li>ul>li>a {
    display: block;
    width: auto;
    height: auto;
    padding: 2px 15px 1px 15px;
    background: rgba(11, 30, 48, 0.8);
    border-top: 1px #485665 solid;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    line-height: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav>ul>li:hover>ul>li>a,
.nav>ul>li:hover>ul>li>ul>li>a {
    padding: 9px 15px 10px 15px;
}

.nav>ul>li>ul>li:hover>a,
.nav>ul>li>ul>li.current-menu-item>a,
.nav>ul>li>ul>li.current-menu-parent>a,
.nav>ul>li>ul>li>ul>li:hover>a,
.nav>ul>li>ul>li>ul>li.current-menu-item>a,
.nav>ul>li>ul>li>ul>li.current-menu-parent>a {
    background: #199adb;
}

.nav>ul>li>ul>li>ul {
    position: absolute;
    top: 10%;
    left: 100%;
    z-index: 9999;
    width: 240px;
    height: auto;
    background: none;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav>ul>li:last-child>ul>li>ul,
.nav>ul>li:nth-last-child(2)>ul>li>ul {
    left: auto;
    right: 100%;
}

.nav>ul>li>ul>li:hover>ul {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.middle-conter {
    width: 100%;
    display: inline-block;
    vertical-align: top;

}


.nav {
    width: 100%;
    justify-content: center;
    background: var(--color-orange);
}

 
 



/*******************************
********NAV BAR*****************
*****************************/


/***************** Top Bar *****************/

header 
{
     border-top: 5px solid var(--color-sky);
}

.top-bar {
    position: relative;
   
}

.top-details ul li a  
{
    display: flex;
    align-items: center;
    margin-right: 20px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.top-details ul li:last-child a  
{
    margin-right: 0;
}

.top-details ul li a i  
{
    width: 46px;
    height: 46px;
    background: var(--color-sky);
    border-radius: 100px; 
    display: flex;
    align-items: center; 
    justify-content: center;
    color: #FFF;
    flex: 0 0 46px;
    margin-right: 15px;
    font-size: 20px;
}

.banner 
{
    border-radius: 20px;
}

.from-lower-area ul li 
{
    text-align: center;
}

.from-lower-area ul li p 
{
    color: #FFF;
    font-size: 18px; 
    font-weight: 600;
}
 

.side-contact 
{
    position: fixed; 
    right: 0;
    top: 30%;
    z-index: 999;
}

.side-contact a {
    margin-bottom: 15px;
    position: relative;
    right: -110px;
    transition: all .4s ease-in-out;
}


.side-contact a:hover 
{
    right: 0px;
}


.side-contact a img 
{
    margin-right: 15px;
}

.side-call {
    background: var(--color-orange);
    padding: 10px;
    width: 170px;
    border-radius: 30px 0 0 30px;
    color: #FFF !important;
    font-size: 16px;
}

.contact-whatsapp {
    background: #23AE01;
    padding: 10px;
    width: 170px;
    border-radius: 30px 0 0 30px;
    color: #FFF !important;
    font-size: 18px;
}

 
.banner .slick-list {
    padding: 0 !important;
}

.slick-slide img {
    width: 100%;
}

.menu-part {
    border-radius: 12px;
    overflow: hidden;
}

.banner-from {
    background: var(--color-sky);
    position: absolute;
    top: 50px;
    width: 600px;
    margin-left: auto;
    left: 50px;
    padding: 30px;
    border-radius: 20px;
}

.check-area 
{
    display: flex;
    align-items: flex-start;
}

.check-area input 
{
    display: flex;
    width: 16px;
    background: var(--color-orange);
}

.check-area label 
{
    color: #FFF;
}

.from-top-text h3 
{
    font-weight: 600;
    color: #FFF;
    font-size: 30px;
    margin-bottom: 15px;
}

.from-top-text p 
{
    color: #FFF;
}

/************ End Header ***************/

.banner-content {
    position: absolute;
    top: 10%;
    z-index: 99;
    display: none;
}

.banner-content h1 {
    font-size: 58px;
    line-height: 70px;
    color: #FFF;
    margin-bottom: 20px;
}
  
.banner-content strong
{
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    line-height: 60px;
    color: #FFF;
}



.about-sec 
{
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}
 

.icon-heading 
{
    color: var(--color-orange);
    display: block;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 800;
}

.heading-area h2  
{
    color: var(--color-sky);
    font-size: 35px;
    color: var(--color-sky);
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 20px;
}

.about-content p  
{
    font-size: 18px;
    line-height: 32px;
}

.readmore-btn 
{
    background: var(--color-orange);
    color: #FFF !important;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 10px; 
    display: inline-block;
}

.icon-list {
     
    justify-content: space-between;
}

.about-icon 
{
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid var(--color-orange);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 15px;
}

.icon-area p 
{
    font-weight: 600;
}

.what-we-work 
{
    background: var(--color-orange);
    padding: 60px 0;
}


.work-area 
{
    box-shadow: 0px 0px 30px 0px #00000026;
    border: 3px solid #FF7642; 
    background: #ED490D;
    opacity: 1;
    border-radius: 20px;
    border-width: 3px;
    padding: 20px 20px 30px;

}

.work-area ul li 
{
    color: #FFF;
    line-height: 30px;
    padding-left: 30px;
    position: relative;
}

.work-area ul li::before 
{
    content: '';
    position: absolute; 
    left: 0; 
    top: 0;
    background: #FFF;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    top: 10px;
}



.work-area img 
{
    margin-bottom: 10px;
}

.work-area h3 
{
    font-size: 24px;
    line-height: 28px;
    color: #FFF;
    margin-bottom: 20px;
}

.work-area p
{
    color: #FFF;
}

.work-slider .slick-dots li button 
{
    background: #FFF;
    border-radius: 50px;
    width: 15px;
    height: 15px;
}

.work-slider .slick-active button  
{
    background: var(--main-color) !important;
}

.work-slider .slick-dots 
{
    position: relative;
    top: 20px;
}

.work-slider .slick-active button {
    background: #FFF !important;
}

.work-slider .slick-dots li button:before 
{
    display: none;
}


.product-part 
{
    background: var(--color-sky);
    padding: 20px 15px;
    padding-right: 200px;
    width: 500px; 
    flex: 0 0 500px;
    height: 585px;
    border-radius: 10px;
}

.product-slider {
    width: 75%;
    margin: 0 !important;
    position: relative;
    left: -10%;
    top: 3px;
}

.product-slider img 
{
    width: 506px;
}

.counter-content {
    font-size: 60px;
    line-height: 75px;
    color: #FFF;
    font-weight: bold;
}

.counter-area p  
{
    color: #FFF;
    font-weight: 600;
    font-size: 18px;
}

.counter-area 
{
    background: var(--color-orange); 
    padding: 50px 0;
}



.client-testmonial 
{
    background: url(../images/testimonial-bg.png) no-repeat center;
    background-size: cover; 
    padding: 70px 0;
}

.testimo-content 
{
    border: 1px solid #D9D9D9; 
    border-radius: 30px; 
    padding: 20px; 
    color: #000;
    background: #FFF;
}

.testimo-content p  
{
    color: #000;
}

.client-description 
{
    position: relative;
}

.client-description::before
{
    content: '';
    position: absolute; 
    right: -10px; 
    background: url(../images/quotes.png) no-repeat right;
    width: 40px; 
    height: 40px; 
    background-size: cover;
}

 
.testimo-slider .slick-slide > div 
{
    margin: 0 15px;
}
 
.testimo-slider .slick-dots {
 
    bottom: -40px; 
}

.testimo-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 15px;
    height: 15px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #D9D9D9; 
    border-radius: 50px;
}


.testimo-slider .slick-dots li button:before 
{
    display: none;
}

.testimo-slider .slick-dots li.slick-active button 
{
    background: var(--color-orange);
}

.testimo-slider .slick-dots li {
    width: 10px;
    height: 10px;
}


.appoinment-area 
{
    background: var(--color-sky);
    padding: 60px 0;
}

.appoinment-heading strong 
{
    color: #FFF;
    font-weight: bold;
    line-height: 40px;
    font-size: 32px;
}

.appoinment-btn 
{
    display: inline-block;
    background: var(--color-orange); 
    color: #FFF !important;
    font-size: 18px;
    line-height: 28px;
    padding: 10px 30px;
    border-radius: 10px;
    border: 2px solid #FFF;
    font-weight: 600;
}






/* ******************************************** */
/******************* Gallery Start **************/
/* ******************************************** */

.gallery-area {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 80px 0px;
}

.gallery-area>.container-fluid .gallerys {
    margin-right: -15px;
    margin-left: -15px;
}

.gallery-holder {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 20px;
}

.gallery-holder img {
    width: 100%;
}

.gallery-holder>.holder {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
}

.gallery-holder>.holder .capson {
    background: rgba(8, 21, 52, 0.80);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-100%, 0px);
    transition: all 0.4s;
}

.gallery-holder:hover .holder .capson {
    transform: translate(0px, 0px);
}

.gallery-holder>.holder .capson .lightbox {
    position: relative;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    display: flex;
    color: #fff;
    transform: translate(-500%, 0px);
    transition: all 0.9s;
}

.gallery-holder:hover>.holder .capson .lightbox {
    transform: translate(0px, 0px);
}

.gallery-holder>.holder .capson .lightbox i {
    position: relative;
    z-index: 1;
}

.gallery-holder>.holder .capson .lightbox::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    left: 0px;
    top: 0px;
    transform: rotateZ(0deg);
    z-index: 0;
    transition: all 0.3s;

}

.gallery-holder>.holder .capson .lightbox:hover::after {
    background: #d2202d;
    transform: rotateZ(45deg);
}

.tab-center {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
}

.tab-center button {
    margin: 5px 1px;
    width: 165px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-transform: uppercase;
    border: none;
    font-weight: 500;
    font-size: 13px;
}

.tab-center button:first-child {
    background: #133d99;

}

.tab-center button:last-child {
    background: #d2202d;
}

/* ******************************************** */
/******************* Gallery End **************/
/* ******************************************** */


.product-slider .slick-prev {
    left: -308px;
}

.product-slider .slick-next {
    right: inherit;
    left: -250px;
}

.product-slider .slick-prev:before, .product-slider .slick-next:before {
    font-family: 'slick';
    font-size: 40px;
    line-height: 1;
    opacity: 1;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



.submit-btn 
{
    background: var(--color-orange);
    width: 100%;
    border: none;
    color: #FFF;
    padding: 10px 15px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 10px;
}

.banner-content ul {
    background: #ef582cf0;
    padding: 25px;
    border-radius: 12px;
}

.banner-content ul li 
{
    color: #FFF;
    line-height: 35px;
    padding-left: 30px;
    position: relative;
}

.banner-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: #FFF;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    top: 13px;
}

.faq-area {
    background: #f9f9f9;
    padding: 70px 0;
}

.faq-area .accordion-button:not(.collapsed) {
    color: inherit;
    background-color: inherit;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.faq-area .accordion-button {
    font-weight: 600;
    text-transform: capitalize;
}



/************ Footer ******************/ 
 
footer 
{
    background: #000 url(../images/footer-bg.png) no-repeat left;
    position: relative;
}

footer::after {
    content: '';
    position: absolute;
    right: 0;
    background: url(../images/bg21.png) no-repeat right;
    width: 600px;
    height: 100%;
    top: 0;
    bottom: 0;
}

.footer-info 
{
    border-bottom: 1px solid #636363;
}

.footer-info ul li 
{
    padding: 30px;
    border-right: 1px solid #636363;
    max-width: 350px;
    color: #FFF;
}

.footer-info ul li:last-child  
{
    border-right: none;
}

.footer-info ul li p   
{
    color: #FFF;
}

.footer-info ul li strong  
{
    color: var(--color-sky);
    margin-bottom: 5px;
    display: block;
}

.footer-info ul li i  
{
    color: #FFF; 
    font-size: 40px;
    margin-right: 20px;
}

.footer-holder h3 
{
    margin-bottom: 25px;
    color: var(--color-sky); 
    font-weight: 700;
    font-size: 25px;
}

.footer-holder ul li a
{
    color: #FFF; 
    line-height: 35px;
}

.footer-holder p 
{
    color: #FFF;
    line-height: 30px;
}

.submit-area 
{
    width: 100%;
    height: 50px;
    border-radius: 5px; 
    background: #FFF;

}

.submit-area input 
{
    font-weight: 600; 
    color: #000;
}


.foot-submit 
{
    background: var(--color-orange);
    border: none; 
    color: #FFF !important; 
    width: 250px;
}

.copy-right 
{
    border-top: 1px solid #636363; 
}

.copy-right  p 
{
    color: #FFF;
}

.work-round {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFF;
    border-radius: 50%;
    margin-bottom: 20px;
}


.inner-banner {
    padding: 150px 0;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center;
}

.inner-banner::before 
{
    content: '';
    position: absolute; 
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
/*     background: #0000008a; */
}


.inner-banner strong {
    color: #FFF;
    position: relative;
    z-index: 99;
    font-size: 45px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: "Playfair Display", serif;
}

.from-appoinment {
    position: relative !important;
    top: 0;
    width: 100%;
    left: 0;
}

.app-from h3 
{
	font-size: 30px; 
	font-weight: bold; 
	margin-bottom: 20px;
	
}

.app-from p  
{
	margin-bottom: 15px; 
	line-height: 28px;
}

.contact-from input[type="text"], .contact-from input[type="email"] {
  height: 55px;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 20px;
}

.heading-from 
{
	font-size: 35px;
    color: var(--color-sky);
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 20px;
}

.contact-from {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 0 5px #d1d1d1;
}

.product-holder 
{
	padding: 5px;
    background: #f5f5f5; 
	overflow: hidden; 
	border-radius: 15px; 
	padding-bottom: 20px; 
}

.content-product {
    text-align: center;
	margin-top: 10px; 
}

.content-product h4 {
    margin-bottom: 15px;
    text-transform: capitalize;
    font-weight: 700;
}

.content-product a 
{
	display: inline-block;
    background: var(--color-orange);
    color: #FFF !important;
    font-size: 18px;
    line-height: 28px;
    padding: 10px 30px;
    border-radius: 10px;
    border: 2px solid #FFF;
    font-weight: 600;
}

.app-from ul li 
{
	position: relative; 
	padding-left: 20px; 
	margin-bottom: 10px; 
}

.app-from ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #ef582c;
    border-radius: 50px;
}

.copy-right p a 
{
	position: relative; 
	z-index:9;
}

.product-slider .slick-slide 
{
	padding: 0 10px; 
}

.product-slider .slick-prev, .product-slider .slick-next 
{
	top: 60%; 
}




