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

 @import url('https://fonts.googleapis.com/css2?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&family=Space+Grotesk:wght@300..700&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');
/*  font-family: "IBM Plex Sans", sans-serif; */

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

@font-face {
  font-family: Photograph_Signature;
  src: url(../fonts/Photograph_Signature.ttf);
}




:root {
  --bg-blue: #0176B7;
}


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

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

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: "Poppins", sans-serif;
}

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

b,
strong {
    font-weight: 600;
}

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

a,
a:hover,
a:visited {
    color: #FAC9CD;
}

/* ::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: rgb(0, 0, 0);
    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: #000;
    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: #ffffff;
    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 44px 0px 0px;
}

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

/* .nav>ul>li::before {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    content: " ";
    width: 20px;
    height: 3px;
    background: #000;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    margin: 0 auto;
    left: 0;
    right: 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: 30px 0px;
    color: #292929;
    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: #000;
}

.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: 12px;
    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: flex-end;
}

.top-nav 
{
    position: relative;
    background: #FAC9CD;
    border-bottom: 2px solid #FFF;
}

 



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


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

.top-bar {
    position: relative;
    background: #381E00;
    padding: 10px 0;
}

.top-bar p  
{
    color: #FFF;
}
 
 

.logo 
{
    width: 230px;
}

.arrow-icon {
    position: absolute;
    top: 29px;
    right: -20px;
}

.arrow-icon i 
{
    font-size: 18px !important;
}


.top-bar .info-details ul li {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.top-bar .info-details ul li a {
    color: #2f0909;
    font-size: 14px;
}

.top-bar .info-details ul span {
    width: 33px;
    height: 33px;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #75bf33;
    margin-right: 10px;
}


.top-social li a {
    width: 33px;
    height: 45px;
    background: #cedec0;
    color: #577b37;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

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

 

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

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


.right-head ul li 
{
    font-weight: bold;
    margin-right: 10px;
    font-size: 25px;
}

.right-head ul li:last-child 
{
    margin-right: 0;
}


.content-ship span 
{
    text-transform: uppercase;
    font-size: 16px;
}

.content-ship p  
{
    font-size: 17px;
}


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

.banner-content 
{
    position: absolute;
    left: 0;
    right: 0;
    top: 30%;
    text-align: center;
}

.banner-content h1 
{
    font-family: Photograph_Signature;
    font-size: 120px; 
    line-height: 140px;
}

.banner-content h2 
{
    color: #381E00;
    font-size: 50px; 
    line-height: 60px;
    font-weight: bold;
}







 .pro-area 
 {
    padding: 10px;
 }

 .pro-image {
    border-radius: 10px;
    overflow: hidden;
}

.product-slider .slick-prev, .product-slider .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: #000;
    border: 1px solid #2d2d2d;
    outline: none;
    background: transparent;
    border-radius: 50%;
    z-index: 9999;
}

.product-slider .slick-prev:before {
    content: '\F284';
    font-family: bootstrap-icons !important;
    color: #000;
}

.product-slider .slick-next:before {
    content: '\F285';
    font-family: bootstrap-icons !important;
    color: #000;
}

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

.product-slider .slick-next {
    right: -50px;
}

.love-pro-img 
{
    background: #F5F1F2;
}

.pro-content-area  {
    padding: 15px;
    
}

 .list-love-product
 {
    margin: 10px 15px; 
    border-radius: 15px; 
    overflow: hidden;
    box-shadow: 0 3px 5px #e7e7e7;
 }

.pro-content-area h4 a 
{
    font-size: 18px; 
    font-weight: 500; 
    margin-bottom: 0px;
    text-transform: uppercase; 
	color: #000 !important; 
}

.pro-content-area p  
{
    color: #000; 
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 14px;
}

a.cart-btn 
{
    background: #FAC9CD;
    padding: 10px 15px;
    color: #000;
    text-transform: capitalize;
    border-radius: 5px;
    margin-top: 5px;
    display: inline-block;
    font-weight: 600;
}


.loved-product-slider .slick-prev, .loved-product-slider .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: #000;
    border: 1px solid #2d2d2d;
    outline: none;
    background: transparent;
    border-radius: 50%;
    z-index: 9999;
}

.loved-product-slider .slick-prev:before {
    content: '\F284';
    font-family: bootstrap-icons !important;
    color: #000;
}

.loved-product-slider .slick-next:before {
    content: '\F285';
    font-family: bootstrap-icons !important;
    color: #000;
}

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

.loved-product-slider .slick-next {
    right: -50px;
}

.heading {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
}

.testimonial-sec 
{
    padding: 80px 0;
}

.content-testimo 
{
    position: relative;
}

.content-testimo::before
{
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    background: url(../images/quotes.png) no-repeat;
    width: 70px;
    height: 70px;
}

.content-testimo p  
{
    color: #000;
    line-height: 30px;
    font-weight: 300;
}

.content-testimo img 
{
    width: auto !important;
}

.client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.client-image img 
{
    object-fit: cover;
	height: 100%; 
	width: 100% !important; 
}

.content-testimo {
    padding: 0 20px 20px;
    margin: 0 10px;
    background: #f5f5f5;
	border-radius: 15px; 
	overflow: hidden; 
}


.testimonial-slide .slick-prev, .testimonial-slide .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: #000;
    border: 1px solid #2d2d2d;
    outline: none;
    background: transparent;
    border-radius: 50%;
    z-index: 9999;
}

.testimonial-slide .slick-prev:before {
    content: '\F284';
    font-family: bootstrap-icons !important;
    color: #000;
}

.testimonial-slide .slick-next:before {
    content: '\F285';
    font-family: bootstrap-icons !important;
    color: #000;
}

.testimonial-slide .slick-prev
 {
    left: -50px;
}

.testimonial-slide .slick-next {
    right: -50px;
}

.blog-list 
{
    background: url(../images/blog-bg.jpg) no-repeat center; 
    background-size: cover;
    padding: 60px 0;
}

.date 
{
    position: absolute; 
    background: #3F3030;
    padding: 10px 15px; 
    color: #FFF;
    left: 5px;
    top: 50px;
}

.blog-image 
{
    border: 5px solid #FFF;
}

.blog-list-part h4 
{
    text-transform: uppercase;
    font-size: 22px; 
    font-weight: bold;
    line-height: 35px;
}

.blog-list-part p  
{
    font-size: 15px;
}

.blog-list-part a 
{
    text-transform: uppercase; 
    color: #000 !important;
    font-weight: 600;
}



footer 
{
    background: #4C2E36;
    padding-top: 50px;
}

.footer-holder p 
{
    color: #FFF;
    font-family: "IBM Plex Sans", sans-serif;
}

.footer-holder ul li 
{
    line-height: 35px;
}

.footer-holder ul li a 
{
    color: #FFF;
    font-family: "IBM Plex Sans", sans-serif;
}

.footer-holder h4 
{
    font-size: 20px; 
    color: #FFF;
    font-family: "IBM Plex Sans", sans-serif;
}

.copy-right 
{
    background: #3A242A;
    padding: 10px 0;
}

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

.foot-social li a 
{
    width: 40px;
    height: 40px;
    display: inline-block;
    margin-right: 10px;
}

.foot-social li:last-child a 
{
    margin-right: 0;
}

/*********/ 

.pro-area a 
{
	color:#000; 
}



.woocommerce ul.products li.product, .woocommerce-page ul.products li.product 
{
	overflow: hidden;
    box-shadow: 0 3px 5px #e7e7e7;
	background: #f5f5f5; 
	text-align: center; 
	padding-bottom: 20px; 
}

.woocommerce-loop-product__title 
{
	font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
    text-transform: uppercase;
    color: #000 !important;
}

.woocommerce ul.products li.product .button 
{
	background: #FAC9CD;
    padding: 10px 15px;
    color: #000;
    text-transform: capitalize;
    border-radius: 5px;
    margin-top: 5px;
    display: inline-block;
    font-weight: 600;
}

.price 
{
	color: #000; 
	font-size: 16px; 
}

.woocommerce ul.products li.product .price del
{
	text-decoration: line-through !important;
}

.add-banner img 
{
	width: 100%; 
}

.woocommerce span.onsale {
    min-height: 20px;
    min-width: 70px;
    padding: 0 20px;
    font-size: 1em;
    font-weight: 700;
    position: absolute;
    text-align: center;
    line-height: 35px;
    top: -.5em;
    left: -.5em;
    margin: 0;
    border-radius: 0;
    background-color: #f9c9cd;
    color: #000000;
    font-size: 16px;
    z-index: 9;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 9px !important;
}

.inner-banner-shop 
{
	background: url(../images/inner-banner.jpg) no-repeat center; 
	background-size: cover; 
	padding: 100px 0
}

.shop-gap 
{
	padding: 60px 0; 
}

.woocommerce-Tabs-panel ol {
    list-style: auto;
    padding-left: 18px;
}

 

.entry-header h1 {
    text-transform: capitalize;
    font-weight: bold;
    font-size: 35px;
    margin-bottom: 15px;
    line-height: 40px;
}

.entry-content .woocommerce-form-login__submit 
{
	background: #FAC9CD !important;
    padding: 10px 15px !important;
    color: #000 !important;
    text-transform: capitalize !important;
    border-radius: 5px !important;
    margin-top: 5px;
    display: inline-block !important;
    font-weight: 600 !important;
}

.lost_password a 
{
	color: #000 !important; 
}

.right-head 
{
	position: relative; 
}

.drop-info li a
{
	padding: 30px 0px;
    color: #292929;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 25px;
    cursor: pointer;
}

ul.drop-info {
    position: absolute;
    bottom: -39px;
    background: #f5f5f5;
    padding: 10px 15px;
	display: none; 
}

 

.cart-num {
    width: 20px;
    height: 20px;
    position: absolute;
    background: #2d2d2d;
    border-radius: 50px;
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -10px;
    right: -10px;
}

.woocommerce a.added_to_cart 
{
	color: #958e09;
}

.wc-block-cart__submit-container a
{
	background: #FAC9CD;
    padding: 10px 15px;
    color: #000;
    text-transform: capitalize;
    border-radius: 5px;
    margin-top: 5px;
    display: inline-block;
    font-weight: 600;
}

.wc-block-components-button 
{
	background: #FAC9CD;
    padding: 10px 15px;
    color: #000;
    text-transform: capitalize;
    border-radius: 5px;
    margin-top: 5px;
    display: inline-block;
    font-weight: 600;
	border: none; 
}

a.wc-block-components-checkout-return-to-cart-button
{
	color: #000; 
	font-weight: 600; 
}

.woocommerce div.product form.cart .button 
{
	background: #FAC9CD;
	 padding: 10px 15px;
    color: #000;
    text-transform: capitalize;
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
	border: none; 
}

.woocommerce-product-details__short-description p, .woocommerce-Tabs-panel p  
{
	margin-bottom: 10px; 
}

.related h2 
{
	font-size: 28px; 
	font-weight: bold; 
	margin-bottom: 15px; 
	text-transform: capitalize; 
}

.woocommerce div.product div.images img {
    display: block;
    width: auto;
    height: auto;
    box-shadow: none;
    margin: 0 auto;
}

.woocommerce div.product div.images.woocommerce-product-gallery {
    position: relative;
    background: #f5f5f5;
}

.woocommerce div.product div.images .flex-control-thumbs {
    
    background: #efefef;
}

.woocommerce-product-gallery ol li 
{
	text-align: center; 
	border: 1px solid #000; 
}


.woocommerce-product-gallery ol li img  {
    margin: 0 auto !important;
}

.right-head li a 
{
	color: #000; 
}


header .dropdown-toggle::after  
{
	display: none; 
}

.search-drop .btn  
{
	box-shadow: none !important; 
}

.search-drop .btn i
{
	color: #000;
    font-size: 20px;
}

.search-drop .dropdown-menu 
{
	width: 300px; 
}

.inner-banner 
{
	background: url(../images/inner-banner.jpg) no-repeat center; 
	background-size: cover; 
	padding: 80px 0; 
}

.inner-banner h1 
{
	font-size: 35px; 
	color: #000; 
	font-weight: bold; 
}

.details-contact {
    height: 100%;
    padding: 20px;
    border-radius: 15px;
/*     background: #f9c9cd; */
}
.heading-contact {
    font-size: 30px;
    font-weight: 600;
    color: #000;
/*     background: #2d2d2d; */
/*     padding: 15px; */
/*     text-align: center; */
/*     border-radius: 15px; */
}

.foot-description b {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.foot-description p {
    color: #000;
    font-size: 16px;
}

.round-icon {
    background: #000000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    margin-right: 15px;
    color: #FFF;
}

.contact-from-area 
{
	padding: 80px 0; 
}

.contact-form {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 15px;
}
 
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form select {
    height: 55px;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 20px;
}

.submit-btn {
    background: #FAC9CD;
    padding: 10px 20px;
    color: #000;
    display: inline-block;
    font-weight: 600;
    border: none;
    width: 200px;
    text-transform: uppercase;
}

.contact-form .form-control:focus {
    box-shadow: none;
}

.about-section  
{
	padding: 80px 0; 
}

.defoult-text h1
{
	font-size: 35px; 
	line-height: 40px; 
	font-weight: bold; 
	margin-bottom: 30px; 
	text-transform: capitalize; 
}

.defoult-text h2 
{
	font-size: 30px; 
	font-weight: bold; 
	margin-bottom: 20px; 
	text-transform: capitalize; 
}

.defoult-text img 
{
	margin-bottom: 15px; 
	width: 100%; 
}

.defoult-text h3 
{
	font-size: 26px; 
	font-weight: bold; 
	margin-bottom: 20px; 
	text-transform: capitalize; 
}

.defoult-text h4 
{
	font-size: 22px; 
	font-weight: bold; 
	margin-bottom: 20px; 
	text-transform: capitalize; 
}


.defoult-text p  
{
	margin-bottom: 15px; 
	line-height: 28px; 
}

.blog-details 
{
	padding: 80px 0; 
}

.defoult-text ul li 
{
	line-height: 28px;
	position: relative;
	padding-left: 20px;
	margin-bottom: 10px; 
}

.defoult-text ol li 
{
	line-height: 28px;
	position: relative;
	margin-bottom: 10px; 
}

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

.video-scroll 
{
	background:#f5f5f5; 
	padding: 80px 0; 
}

.video-slider .slick-slide {
    margin: 0 10px;
    background: #000;
}


.video-slider .slick-prev, .video-slider .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: #000;
    border: 1px solid #2d2d2d;
    outline: none;
    background: transparent;
    border-radius: 50%;
    z-index: 9999;
}

.video-slider .slick-prev:before {
    content: '\F284';
    font-family: bootstrap-icons !important;
    color: #000;
}

.video-slider .slick-next:before {
    content: '\F285';
    font-family: bootstrap-icons !important;
    color: #000;
}

.video-slider .slick-prev
 {
    left: -50px;
}

.video-slider .slick-next {
    right: -50px;
}

.search-page 
{
	padding: 80px 0; 
}

.video-slider .slick-slide video 
{
	object-fit: cover; 
}

.entry-summary ol 
{
	margin: 10px 0; 
}

.entry-summary ol li 
{
	line-height: 28px;
	position: relative;
	margin-bottom: 10px; 
}

.entry-summary .price {
    color: #f9c9cd !important;
    font-size: 26px !important;
    line-height: 40px;
	margin-bottom: 10px; 
	font-weight: 500; 
}

.faq-area .accordion-button:focus 
{
	box-shadow: none; 
}

.faq-area .accordion-button:not(.collapsed) {
    color: #000000;
    background-color: #f9c9cd;
    box-shadow: none;
}

