/*------------------------------------------------------------------------------------------------------
* Project       :                                        
* Design By     :  
* Version       :  1.0
*------------------------------------------------------------------------------------------------------- 
NOTE: This is the main stylesheet of the template, This file contains the styling for the actual Template
------------------------------------------------------------------------------------------------------*/ 

/*-------------------------------------------------------------------------------------------------------
1. Root Code Variables
-------------------------------------------------------------------------------------------------------*/ 
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
    /* Main color */
    --primary-color: #8da6d6; 
    --secondary-color : #F7B103;

    /* text color */
    --white-color:#FFFFFF; 
    --black-color:#000000;
    --text-color:#FFFFFF;
    --text-color2:#424242;
    --text-color3: #f15d47;
	--body-bg-color:#ffffff; 

    /* Fonts */
    --title-fonts: "Open Sans", sans-serif;
    --title-fonts2: "Lora", serif;
    --body-fonts: "Open Sans", sans-serif;


    /* transition */
    --transition: all 300ms ease;

    /* gradient */
    --gradient-color: radial-gradient(circle, rgba(190,37,27,1) 6%, rgba(190,37,27,0) 62%);

    /* box-shadow */
    --box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1); 

    /* extra color */
    --extra-color-one: #f7d4a8; 
    --extra-color-2: #f1f1f1; 
}


/*-------------------------------------------------------------------------------------------------------
2. Reset
-------------------------------------------------------------------------------------------------------*/

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    font-size: 100%;
    line-height: inherit;
}


/*-------------------------------------------------------------------------------------------------------
3. Global Settings
-------------------------------------------------------------------------------------------------------*/

body {
    font-family: var(--body-fonts);
    font-size: 14px;
    font-weight: normal; 
    background: var(--body-bg-color);
    color: var(--black-color);
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

a {
    color: var(--black-color);
    position: relative;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}
a:hover {
    color: inherit;
}

p {
    margin: 0;
}

button {
    outline: none !important;
    cursor: pointer;
}

button:focus,
button:active {
    outline: none;
}

button,
a:hover,
a:focus,
a:visited,
a:active,
button:active {
    text-decoration: none;
    outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family:var(--title-fonts);  
	font-weight:normal;
    line-height:initial; 
    margin-top:0;
    margin-bottom:15px; 
	letter-spacing: 0.5px;
	color: var(--black-color);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color:inherit;
}

h1 {
	font-size:62px;	
}

h2 {
	font-size:40px;	
}

h3 {
	font-size:32px;	
}

h4 {
	font-size: 22px;
}

h5 {
	font-size:20px;	
}

h6 {
	font-size:18px;
}

input,
select,
button {
    font-family: var(--body-fonts);
}

textarea {
    overflow: hidden;
    resize: none;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

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

iframe {
    border: none !important;
    display: block;
    width: 100%;
}

::-webkit-input-placeholder {
    color: inherit;
}

::-moz-input-placeholder {
    color: inherit;
}

::-ms-input-placeholder {
    color: inherit;
}

 
div,
section{
    position: relative;
} 

main {
    position: relative;
    width: 100%;
    display: block; 
}



/*-------------------------------------------------
>>> Helper Class
-------------------------------------------------*/

/* # color */ 
.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color);
}
 
.bg-primary {
    background-color:var(--primary-color) !important;
}  

.bg-secondary {
    background-color:var(--secondary-color) !important;
} 

.white-color {
    color: var(--white-color);
}

.black-color {
    color: var(--black-color);
}  

.text-color{
    color: var(--text-color);
}

.text-color3{
    color: var(--text-color3);
}
 

/* -------------------------------------------------
>> button 
------------------------------------------------- */

.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 14px 30px;
    height: 50px;
    text-align: center;
    background: var(--primary-color);
    color: var(--black-color);
    overflow: hidden;
    border: 1px solid var(--primary-color); 
    border-radius: 10px;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition); 
}

.btn-style-one:hover {  
    background-color: var(--primary-color);
} 

.btn-style-border{
    background-color: transparent;
    color: var(--white-color);
} 
.border-white{
    border-color: var(--white-color);
}
.btn-style-one.border-white:hover{
    border-color: var(--primary-color) !important;
}

/*-------------------------------------------------
>> Default Form Style
-------------------------------------------------*/

.default-form {
    position: relative;
}

.default-form .form-group {
    position: relative;
    margin-bottom: 15px;
}

.default-form .field-inner {
    position: relative;
    display: block;
}

.with-icon svg {
    position: absolute;
    right: 11px;
    top: 38px;
    width: 20px;
}

.default-form .form-group input[type="text"],
.default-form .form-group input[type="email"],
.default-form .form-group input[type="password"],
.default-form .form-group input[type="date"],
.default-form .form-group input[type="tel"],
.default-form .form-group input[type="url"],
.default-form .form-group input[type="file"],
.default-form .form-group input[type="number"],
.default-form .form-group textarea,
.default-form .form-group select {
    position: relative;
    display: block;
    height: 42px;
    width: 100%;
    padding: 6px 10px;
    color: var(--white-color);
    background-color: var(--white-color);
    border: 1px solid var(--white-color); 
    border-radius: 0;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.default-form .form-group textarea {
    height: 130px;
    resize: none;
}

.contact-form .form-group input[type="submit"],
.contact-form .form-group button {
    display: inline-block;
}

.default-form .form-group input[type="text"]:focus,
.default-form .form-group input[type="email"]:focus,
.default-form .form-group input[type="password"]:focus,
.default-form .form-group input[type="tel"]:focus,
.default-form .form-group input[type="url"]:focus,
.default-form .form-group input[type="file"]:focus,
.default-form .form-group input[type="number"]:focus,
.default-form .form-group textarea:focus,
.default-form .form-group select:focus {
    border-color: var(--primary-color);
}

.default-form label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: 600;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.default-form .form-group select {
    cursor: pointer;
}

.default-form .form-group select option {
    padding-left: 20px;
    text-indent: 20px;
    cursor: pointer;
}

.default-form .form-group .datepicker {
    cursor: pointer;
}

.default-form ::-webkit-input-placeholder {
    color: var(--black-opacity);
}

.default-form ::-moz-input-placeholder {
    color: var(--black-opacity);
}

.default-form ::-ms-input-placeholder {
    color: var(--black-opacity);
}

.default-form .field-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}  

/*-------------------------------------------------
>>  section-title 
-------------------------------------------------*/
.section-title {
    margin-bottom: 50px;
} 
.section-title .title {
    font-size: 46px;
    line-height: 56px;
    margin-bottom: 10px; 
    font-weight: bold; 
    font-family: var(--title-fonts2); 
} 

/*-------------------------------------------------
>>  background-image
-------------------------------------------------*/
.background-image{ 
    background-position:center center;
    background-repeat:no-repeat;
    background-size:cover; 
	width:100%; 
	position:absolute;
    left:0;
    bottom: 70px;  
} 
.background-image.background-after::after{
	content:"";
	width:100%;
    height:100%;
	position:absolute;
    left:0;
    top:0;  
	background-color: var(--black-color);
    opacity: 0.95;
}

/*-------------------------------------------------
>>  pagination
-------------------------------------------------*/
.pagination nav .page-list {
    padding-left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
}
.pagination nav .page-list li .page-numbers {
    position: relative;
    display: block;
    padding: 0;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    margin: 0 5px;
    color: var(--white-color);
    background-color: transparent;
    font-weight: 600;
}
.pagination nav .page-list li .page-numbers.current {
    background-color: var(--primary-color); 
}
.pagination nav .page-list li .page-numbers.next {
    width: auto;
} 

/*-------------------------------------------------
>>  banner-video-area
-------------------------------------------------*/  
.banner-video-area video {
    height: 98%;
    width: 100%;
    position: absolute;
    object-fit: cover;
    opacity: 0.8;
} 
.banner-video-area image {
    height: 98%;
    width: 100%;
    position: absolute;
    object-fit: cover;
    opacity: 0.8;
} 
.banner-video-title {
    padding: 444px 0 80px 0;
    /* padding: 0px 0 0px 0; */
}
.banner-video-title:after {
    content: '';
    background: linear-gradient(180deg, rgba(0, 196, 204, 0) 0%, rgba(255, 255, 255, 1) 100%);
    height: 130px;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.banner-video-title h1{ 
    font-weight: 600;
    color: var(--white-color);
    text-align: center;
    line-height: 62px !important;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.6);
    font-size: 92px;
    font-family: var(--title-fonts2);
}
.banner-video-title h1 .of-text{
    font-size: 32px ;
}
.banner-video-title h1 .genius-text{
    margin-left: 150px;
    display: block;
}



/*-------------------------------------------------
>>  collections-area
-------------------------------------------------*/ 
.collections-list {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-gap: 20px;
    text-align: center;
    padding: 10px 0;
}
.collections-list .single-collections {
    /* background-color: #f9f9f9; */
    border-radius: 25px;
    border: 1px dashed transparent;
    margin: auto;
}
.collections-list .single-collections .single-collections-icon {
    overflow: hidden;
    height: 192px;
    width: 192px;
    position: relative;
    margin-bottom: 15px;
    border-radius: 25px;
    box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.30);
}
.collections-list .single-collections .single-collections-icon img{
    transition: var(--transition);
    position: absolute;
    height: auto;
    width: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.collections-list .single-collections .single-collections-content h4{
    font-size: 16px;
}
.collections-list .single-collections:hover{
    /* border-color:  var(--primary-color); */
}
.collections-list .single-collections:hover .single-collections-icon img{
    transform: scale(1.1);
} 


.collections-area .single-collections {
    /* background-color: #f9f9f9; */
    border-radius: 25px;
    border: 1px dashed transparent;
    margin: auto;
}
.collections-area .single-collections .single-collections-icon {
    overflow: hidden;
    height: 192px;
    width: 192px;
    position: relative;
    margin-bottom: 15px;
    border-radius: 25px;
    box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.30);
}
.collections-area .single-collections .single-collections-icon img{
    transition: var(--transition);
    position: absolute;
    height: auto;
    width: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.collections-area .single-collections .single-collections-content h4{
    font-size: 16px;
}
.collections-area .single-collections:hover{
    /* border-color:  var(--primary-color); */
}
.collections-area .single-collections:hover .single-collections-icon img{
    transform: scale(1.1);
} 

/*-------------------------------------------------
>>  banner-video-area
-------------------------------------------------*/
.design-led-area{
    background-color: var(--extra-color-one);
}
.design-led-wapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
.design-led-image {
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
} 
.design-led-image a {
    height: 100%;
    width: 100%;
    display: inline-block;
}
.design-led-image a:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(217, 217, 217, 0) 13.02%, rgba(0, 0, 0, 0.51) 42.5%, rgba(0, 0, 0, 0.63) 70%, #000000 100%);    
    background-repeat: no-repeat;
    background-position: center center;
    transition: all 0.4s ease-in-out;
    opacity: 0.7;
}
.design-led-image img{
    width: 100%;
    transition: var(--transition);
}  
.design-led-item:hover .design-led-image img {
    transform: scale(1.1);
    transition: var(--transition);
} 
.design-led-icon {
    height: 120px;
    width: 120px;
    top: -50px;
    left: 0;
    right: 0;
    margin: auto;
}
.rounded-text {
    text-transform: uppercase;
    color: var(--white-color);
    font-weight: 700;
    position: absolute;
    z-index: 2;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    top: 55px;
    left: 58px;
    margin: 0 auto;
} 
.rounded-text svg { 
    overflow: visible; 
}
.rounded-text path {
    fill: none;
    stroke: transparent;
}
.rounded-text textpath {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    fill: var(--white-color);
}
 
 
.design-led-icon img { 
    border-radius: 100px;
    margin: auto;
    outline: 2px dashed var(--primary-color);
    outline-offset: 4px;
    width: 120px;
    height: 120px;
}

/*-------------------------------------------------
>>  banner-video-area
-------------------------------------------------*/  
.category-thumb {
    position: relative;
    transition: .3s;
    border-radius: 25px;
    overflow: hidden;
}
.category-thumb::before {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    z-index: 2;
}

.category-thumb::after {
    background: rgba(255, 255, 255, 0.6);
    bottom: 50%;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    opacity: 1;
    pointer-events: none;
}

.category-thumb:hover::before {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 900ms linear;
}

.category-thumb:hover::after {
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all 900ms linear;
} 

.category-thumb img {
    transition: .3s;
    width: 100%;
} 

.category-area .container {
    max-width: 1420px;
}
.single-category-wapper{
    --grid-layout: 'big-view-1 big-view-1 small1';
    display: grid;
    gap: 20px;
    grid-template-areas: var(--grid-layout);
     /* grid-auto-columns: minmax(0, 1fr); */    
}
.single-category .category-thumb {
    height: 100%;
}
.single-category .category-thumb a {
    display: block;
    height: 100%;
    width: 100%;
}
.single-category .category-thumb a img {
    width: 100%;
    height: 100%;
}

/*-------------------------------------------------
>>  testimonials-area
-------------------------------------------------*/  
.scrolling-ticker-box {
    position: relative;
    overflow: hidden;
    user-select: none;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
}
.scrolling-ticker-box .scrolling-content {
    flex-shrink: 0;
    /* min-width: 100%; */
    display: -webkit-flex;
    display: -moz-flex;
    display: flex; 
    animation: scroll 50s linear infinite;
    gap: 80px;
    margin-right: 80px;
}
.scrolling-ticker-box:hover .scrolling-content {
    animation-play-state: paused;
}
@keyframes scroll {
    from { 
        transform: translateX(0); 
    }
    to {
        transform: translateX(calc(-100% - 30px));
    }
}
.testimonials-item{
    background-color: var(--white-color);
    padding: 15px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 350px;
    box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.07);
    margin: 70px 0 20px 0;
}
.scrolling-content .testimonials-item:nth-child(even) {
    transform: rotate(5deg);
}
.scrolling-content .testimonials-item:nth-child(odd) {
    transform: rotate(-5deg);
}

.testimonials-item .testimonials-content{
    flex: 1;
}
.testimonials-item .testimonials-content h4{
    font-size: 18px !important;
    font-weight: 600;
    margin-bottom: 10px;
}

.scrolling-content .testimonials-item:after {
    content: "";
    height: 80px;
    width: 140px;
    position: absolute;
    background: url(../../assets/images/testimonials/pin.png) no-repeat;
    top: -70px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
    opacity: 0.5;
}

/*-------------------------------------------------
>>  promise-area
-------------------------------------------------*/ 
.promise-area{
    background-color: var(--extra-color-2);
}
.promise-wapper{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;    
}
.promise-item{
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.promise-item .promise-icon {
    height: 100px;
    width: 100px;
    /* background-color: var(--primary-color); */
    /* border-radius: 100px; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px auto;
}

.promise-item .promise-icon img {
    width: 90px;
}

.promise-item .promise-content p{
    color: var(--black-color);
    font-weight: 600;
}

/*-------------------------------------------------
>>  banner-video-area
-------------------------------------------------*/  
.video-area:after {
    content: '';
    height: 50%;
    width: 100%;
    background-color: var(--extra-color-one);
    position: absolute;
    top: 0;
    z-index: -1;
}
.video-wapper video{
    width: 100%;
    border-radius: 25px;
}
.gold-mine-mobile{
    display: none;
}

/*-------------------------------------------------
>>  reels-area
-------------------------------------------------*/  
.reels-items p {
    margin-bottom: 5px;
    opacity: 0.5;
}
.reels-items video {
    width: 100%;
    border-radius: 25px;
}

.reels-slider .owl-nav,
.reels-slider .owl-dots {
    display: none;
}
/*-------------------------------------------------
>>  news-area
-------------------------------------------------*/  
.news-wapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;  
}
.news-item .news-image{
    margin-bottom: 15px;
}
.news-item .news-image img{
    border-radius: 25px;
}
.news-item .news-content h4{
    font-size: 16px !important;
    font-weight: 600;
    margin-bottom: 20px;
}

/*-------------------------------------------------
>>  got-back area
-------------------------------------------------*/ 
.got-back-area{
    background-color: var(--extra-color-2);
}
.got-back-item {
    max-width: 350px;
}

/*-------------------------------------------------
>>  gift-area
-------------------------------------------------*/ 
.gift-area{
    background-color: var(--primary-color);
    z-index: 1;
}
.gift-area::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border: 1px dashed var(--white-color);
    height: calc(100% - 20px);
    width: calc(100% - 20px);
    margin: auto;
    right: 0;
    bottom: 0;
    z-index: -1;
} 

.gift-area .section-title h2{
    font-size: 42px;
    color: var(--white-color);
}

.gift-wapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    text-align: center;
}

.gift-item {
    width: 150px;
    height: 150px;
    margin: 0 auto;
}
.gift-item img {
    position: absolute;
    width: 150px;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0.5;
}
.gift-item:hover img{
    opacity: 1;
}
.gift-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 160px;
}

.gift-content span{ 
    color: var(--black-color);
    font-weight: 600;
}
.gift-content h6{
    font-size: 42px !important;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--black-color);
}

/*-------------------------------------------------
>>  trending-area
-------------------------------------------------*/ 
.trending-wapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
.trending-item .trending-image{
    margin-bottom: 15px;
    width: 100%;
    transition: var(--transition);
    overflow: hidden;
    border-radius: 25px;
}
.trending-item .trending-image img{
    border-radius: 25px;
    transition: var(--transition);
} 
  
.trending-item:hover .trending-image img {
    transform: scale(1.1);
    transition: var(--transition);
} 

.trending-item .trending-content h4{
    font-size: 16px !important;
    font-weight: 600;
    margin-bottom: 20px;
}


/*-------------------------------------------------
>>  gallery area
-------------------------------------------------*/ 
.gallery-area .container {
    max-width: 1600px;
}
.gallery-area .row {
    --bs-gutter-x: 10px;
  }
.gallery-one-single {
    position: relative;
    display: block; 
}
.gallery-one-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
    height: 100%;
} 
.gallery-one-img a{
    display: block;
    height: 100%;
}
.gallery-one-img a::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black-color);
    opacity: 0;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}
.gallery-one-single:hover .gallery-one-img a::before {
    opacity: .40;
} 
.gallery-one-img img {
    width: 100%;
    border-radius: 20px;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
    height: 100%;
}
.gallery-one-single:hover .gallery-one-img img {
    transform: scale(1.05) rotate(0deg);
}

.gallery-one-wapper {
    --grid-layout: 'big-view-1 big-view-1 small1 small11 small111' 'big-view-1 big-view-1 small2 small22 small222' 'small3 small33 small333 big-view-2 big-view-2' 'small4 small44 small444 big-view-2 big-view-2' 'big-view-3 big-view-3 small5 small55 small555' 'big-view-3 big-view-3 small6 small66 small666';
    display: grid;
    gap: 20px; 
    grid-template-areas: var(--grid-layout);
    grid-auto-columns: minmax(0, 1fr);
}


/*-------------------------------------------------
>>  footer area
-------------------------------------------------*/ 
.footer{
    background-color: var(--black-color);
}
.footer h4{
    font-size: 16px !important;
    color: var(--white-color);
    font-weight: 600;
}
.footer a,.footer p, 
.footer span{
    color: var(--white-color);
}
.footer-links a {
    margin: 5px 0;
    display: inline-block;
    opacity: 0.5;
}
.footer-links a:hover {
    opacity: 1;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-top-wapper {
    border-bottom: 1px solid #ffffff26;
    padding-bottom: 30px;
}
.footer-top-content ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 20px;
    font-size: 14px;
    opacity: 0.5;
}
.footer-center{
    margin-bottom: 30px;
}
.footer-bottom {
    border-top: 1px solid #ffffff26;
    padding: 29px 0 15px 0; 
}


.breadcrumb-area{
    margin: 10px 0 10px 0;
}
#breadcrumb {
    font-size: 10px;
    line-height: 16px;
    text-transform: uppercase;
    font-family: Muli, Arial, sans-serif;
    letter-spacing: 2px;
}
#breadcrumb ul {
    height: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    gap: 10px; 
}
#breadcrumb li, #breadcrumb ul {
    padding: 0;
    margin: 0;
    list-style: none;
    list-style-image: none;
}
.browse-page #breadcrumb a {
    color: #9b9b9b;
}
#breadcrumb li:after {
    content: "/";
    padding-left: 4px;
}
#breadcrumb li:last-child span {
    color: #272b65;
    text-decoration: none;
    cursor: default;
}
#breadcrumb li:last-child:after {
    display: none
}


/*-------------------------------------------------
>>  store area
-------------------------------------------------*/ 
.store-area {
    padding: 220px 0 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.store-search {
    box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.07);
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    top: 50px;
}
.store-search input[type="search"] {
    width: 100%;
    height: 52px;
    padding: 15px;
    border-radius: 70px;
    border: 1px solid #d3d3d3;
}
.store-search-form a {
    position: absolute;
    top: 2px;
    bottom: 0;
    right: 18px;
    margin: inherit;
    height: 90%;
    display: flex;
    align-items: center;
    background: #fff;
}

.store-map-area{
    padding: 100px 0 ;
}

.store-city-wapper {
    display: flex;
    /* align-items: center; */
    gap: 10px;
    margin-bottom: 20px;
}
.store-city-list {
    display: inline-block !important;
    white-space: nowrap !important;
    overflow-y: hidden;
    overflow-x: scroll;
    width: 100%;
    padding-bottom: 5px;
}
.store-city-list .store-city-item a.active {
    background-color: #d3d3d3;
    color: #000;
}
.store-city-list .store-city-item {
    display: inline-block;
    position: relative;
    margin: 0 5px 0 0;
}

.store-city-list::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
  
/* Track */
.store-city-list::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #f1f1f1;
    border-radius: 5px;
}

/* Handle */
.store-city-list::-webkit-scrollbar-thumb {
    background: #d3d3d3;
    border-radius: 10px;
}

.store-city-list .store-city-item a {
    padding: 4px 10px 4px 10px;
    text-align: center;
    color: #666;
    border: 1px solid #d3d3d3;
    border-radius: 50px;
    max-width: 100%;
    display: inline-flex;
    font-size: 12px;
    font-weight: 500;
}

.map-view{
    height: 100%;
}
.map-view iframe{
    height: 100%;
}
.map-item:hover {
    box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.07);
}
.map-item {
    display: grid;
    grid-template-columns: 1fr 450px;
    grid-gap: 30px;
    background-color: #fff;
    border:1px solid #ececec;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.map-content {
    padding: 20px 0;
}
.map-content h2{
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}
.map-content p{
    margin-bottom: 5px;
}
.map-content .button-wapper .btn-style-one {
    background-color: #f05d4d;
    border: none;
    border-radius: 5px;
    color: #fff;
}


/*-------------------------------------------------
>>  shipping-return-area
-------------------------------------------------*/ 
.shipping-return-area{
    padding: 20px 0 80px 0;
}
ul.ul-list{
    padding-left: 20px;
}
ul.ul-list > li {
    list-style-type: decimal;
}
ul.ul-list > li > ul   {
    padding-left: 20px;
}

ul.ul-list > li > ul > li {
    list-style-type: circle;
}

/*-------------------------------------------------
>>  cart-area
-------------------------------------------------*/ 
.cart-area{
    padding: 30px 0 80px 0;
}
.step-style-list{
    display: flex;
    justify-content: space-between;
}
.step-style-item{
    text-align: center;
}
.step-style-list:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 92%;
    background-color: rgb(0 0 0 / 43%);
    top: 23px;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 30px;
}
.step-style-item span {
    height: 18px;
    width: 18px;
    display: inline-block;
    border: 2px solid rgb(0 0 0 / 43%);
    background-color: #fff;
    border-radius: 100px;
    z-index: 2;
    position: relative;
}
.step-style-item p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}
.step-style-item.active span{
    border-color:#59ac59;
}
.step-style-item.active p{
    color:#59ac59;
}


.order-left{
    margin-right: 50px;
}
.order-summary {
    background-color: #f9f9f9;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.order-summary-item {
    display: flex; 
    flex-direction: column;
}
.order-summary-list {
    border-bottom: 1px dashed #d3d3d3;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
}
.order-summary .button-wapper{
    margin-top: 20px;
}
.order-summary .button-wapper a {
    /* background-color: var(--); */
    color: #fff;
    border: none;
    border-radius: 5px;
    width: 100%;
}

.order-summary .button-wapper button {
    background-color: #f15d47;
    color: #fff;
    border: none;
    border-radius: 5px;
    width: 100%;
}

.apply-voucher{
    display: flex;
    align-items: center;
    gap: 10px;
}
.apply-voucher svg {
    width: 18px;
    height: 18px;
    fill: #f15d47;
}
.cart-box {
    margin-bottom: 30px;
    background-color: #f9f9f9;
}
 
.cart-items {
    background-color: #f9f9f9;
    /* margin-bottom: 20px; */
    border-radius: 5px;
    display: flex;
    /* border: 1px solid #d3d3d34f; */
    overflow: hidden;
}
 
/* .cart-items:nth-last-child(1) {
    margin-bottom: 0;  
}  */
.cart-image img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.cart-content {
    flex: 1;
    padding: 25px;
}

.cart-title {
    display: flex;
    justify-content: space-between;
}
.cart-meta{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    /* margin-top: 20px; */
}
.cart-meta-item {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #fff;
    padding: 10px;
}
.cart-meta-item select {
    flex: 1;
}
.cart-wappers .button-wapper {
    margin-top: 17px;
    display: flex;
    gap: 10px;
}
.cart-wappers .button-wapper a {
    background-color: rgb(241 93 71 / 8%);
    padding: 8px 20px;
    border-radius: 5px;
}
.cart-wappers .button-wapper a:hover {
    background-color: rgb(241 93 71 / 100%);
    color: var(--white-color);
}
.cart-box > .cart-meta, .cart-box > .button-wapper {
    display: none;
}

.ob-your-details {
    background-color: #f9f9f9;
    padding: 25px;
    margin-bottom: 20px;
}
.od-payment-content{
    display: none;
}
.od-payment-content.active{
    display: block;
}

.od-payment-mode {
    background-color: #f9f9f9;
    display: flex; 
}
.od-payment-tabs {
    width: 220px;
}
.od-payment-tabs li a {
    padding: 15px 20px;
    display: inline-block;
    width: 100%;
    background-color: rgb(141 166 214 / 11%);
    border-left: 2px solid transparent;
    font-size: 14px;
    font-weight: 600;
}
.od-payment-tabs li a.od-payment-active { 
    background-color: rgb(241 93 71 / 5%);
    border-color: #f15d47;
}
.od-payment-tabs-data {
    flex: 1;
    padding: 25px;
}
.od-payment-content-item h6 {
    font-weight: 600;
    border-bottom: 1px solid #d3d3d3;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.od-payment-content-item p {
    margin-bottom: 20px;
}
.od-payment-content-item .button-wapper a {
    background-color: #f15d47;
    color: #fff;
    border: none;
    border-radius: 5px;
    width: 100%;
}
.order-left-booking, .order-left-payment,
.bookcart {
    display: none;
}
.order-left-booking, .order-left-payment,
.paymentcart {
    display: none;
}

/*-------------------------------------------------
>>  company details
-------------------------------------------------*/ 

.company-details-area{            
    /* padding: 70px 0; */
    background-color: var(--primary-color);
}
.company-details-area .footer-col{            
    padding: 0 15px;
}
.company-details-area .footer-col h4{
    font-size: 25px;            
    text-transform: capitalize;
    margin-bottom: 23px;
    font-weight: 900;
    position: relative;
    color: var(--white-color) !important;
}       
.company-details-area .footer-col ul li:not(:last-child){
    margin-bottom: 6px;
}
.company-details-area .footer-col ul li a{
    font-size: 19px;
    text-transform: capitalize;            
    text-decoration: none;
    font-weight: 500;            
    display: block;
    transition: all 0.3s ease;
    color: var(--white-color) !important;
}
.company-details-area .footer-col ul li a:hover{            
    padding-left: 8px;
}
.company-details-area .footer-col .social-links a{
    display: inline-block;
    font-size: large;
    margin:0 10px 10px 0;
    text-align: center;
}
/* .company-details-area .footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(156, 150, 231, 0.2);
    margin:0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;            
    transition: all 0.5s ease;
} */
/* .company-details-area .footer-col .social-links a:hover{
    color: #24262b;
    background-color: #8da6d6;
} */

.company-details-area .calliconsize{
    display: flex;
    text-align: center;
    margin-top: 20px;        
}
.company-details-area .calliconsize i{

    font-size: 28px;
}

.company-details-area .social-btns{
    display: flex;
    flex-wrap: wrap;
}
.company-details-area .social-btns .flex {
    display: flex;
    align-items: center;
    justify-content: center;
}        
.company-details-area .social-btns i{
    /* width: 20%; */
    text-align: center;
    font-size: 28px;
    margin-right: 8px;
}
.company-details-area .social-btns .big-txt{
    font-size: 17px;
    text-transform: capitalize;
}
.company-details-area .social-btns .app-btn{
    /* width: 45%; */
    max-width: 160px;
    color: #fff;
    margin: 20px 10px;
    text-align: left;
    border-radius: 5px;
    text-decoration: none;
    font-family: "Lucida Grande", sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    background-color: #101010;
    padding: 10px 15px;
}

.company-details-area .social-btns .app-blu{
    background-color: #101010;
    transition: background-color 0.25s linear;
}

.search-lists {
    position: absolute;
    top: 50px;
    z-index: 2;
    background: #fff;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.07);
}
.search-lists a {
    display: block; 
    margin: 15px;
}

.header_account_dropdown .dropdown-toggle {
    background: transparent;
    color: #000;
    border: none;
    height: auto;
    padding: 0;
}

.header_account_dropdown li {
    display: block;
    width: 100%;
}

/* .listing-image {
    position: relative;
    height: 290px;
    width: 290px;
}
.listing-image img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: auto;
    width: auto;
    max-width: 290px;
    max-height: 290px;
} */

.cart-image {
    width: 250px;
    height: 250px;
    position: relative;
    overflow: hidden;
    background: #d3d3d3;
}
.cart-image img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: auto !important;
    width: auto !important; 
} 

.ui-widget.ui-widget-content {
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 1rem 2rem #0000001a;
}
.ui-menu .ui-menu-item { 
    display: block;
}
.ui-menu .ui-menu-item-wrapper { 
    width: 100%;
    display: block;
    border: 1px solid #e9ecef !important;
    font-size: 14px; 
}
.ui-state-active, 
.ui-widget-content .ui-state-active, 
.ui-widget-header .ui-state-active, 
a.ui-button:active, 
.ui-button:active, 
.ui-button.ui-state-active:hover {
    
    border-color: #e9ecef !important;
    background: #e9ecef !important; 
    color: var(--primary-color) !important;
}

.browse-category-item a {
    position: relative;
    transition: .3s;
    border-radius: 25px;
    overflow: hidden;
    display: block;
}


/* .listing-image {
    height: 300px;
    width: 300px;
    overflow: hidden;
}
.listing-image  video {
    width: 100%;
    height: 100%; 
} */

.listing-image  video {
    /* display: inline-block; */
    width: 100%;
    height: 100%;
    /* vertical-align: middle; */
}

.details-wapper video{
    width: 100%;
    height: 100%;
}

.menu-details .menu-details-main{
    position: fixed;
    bottom: 10px;
    display: flex;
    justify-content: space-between;
    padding: 15px 30px; 
    width: 100%; 
    flex-wrap: wrap; 
}
.menu-details{
    display: none !important;
} 
.autocomplete-area {
    position: absolute;
    background: #fff;
    z-index: 9;
    width: 100%;
    top: 48px;
    min-width: 600px;
    left: -20%;
    right: 0;
    margin: 0 auto;
    box-shadow: 0 5px 20px #8f959a99; 
    border-radius: 10px;
    padding: 15px; 
    top: calc(100% + 10px);
    width: 0;
    opacity: 0;
    visibility: hidden;
}
.search_container.active .autocomplete-area, 
.search_container.show-mobile-click .autocomplete-area {
    opacity: 1;
    width: 100%;
    visibility: visible;
}
.autocomplete-heading h3 {
    padding: 0 0 0 25px;
    font-size: 18px;
    font-weight: bold;
}

.autocomplete-treding-search .autocomplete-heading h3 {
    background-size: 18px 18px;
    background-image: url("data:image/svg+xml,%3Csvg  xmlns='http://www.w3.org/2000/svg' height='500' viewBox='0 0 48 48' width='500' data-v-26850a1a=''%3E%3Cpath data-v-81e3da4c='' d='M32 12l4.59 4.59-9.76 9.75-8-8-14.83 14.83 2.83 2.83 12-12 8 8 12.58-12.59 4.59 4.59v-12z' data-v-26850a1a=''%3E%3C/path%3E%3Cpath data-v-81e3da4c='' d='M0 0h48v48h-48z' fill='none' data-v-26850a1a=''%3E%3C/path%3E%3C/svg%3E");
    background-position: left;
    background-repeat: no-repeat;
}
.autocomplete-recommended-search .autocomplete-heading h3{
    background-size: 18px 16px;
    background-image: url("data:image/svg+xml,%3Csvg data-v-29fde210='' width='24' height='24' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd'%3E%3Cpath data-v-29fde210='' d='M7.467 0c1.102.018 5.555 2.549 6.386 8.558.905-.889 1.409-3.664 1.147-4.843 3.952 2.969 6 6.781 6 11.034 0 5.094-3.43 9.251-8.963 9.251-5.728 0-9.037-3.753-9.037-8.276 0-6.26 5.052-7.62 4.467-15.724zm3.262 19.743c-.749.848-.368 1.945.763 2.045 1.035.093 1.759-.812 2.032-1.792.273-.978.09-2.02-.369-2.893-.998 1.515-1.52 1.64-2.426 2.64zm4.42 1.608c2.49-1.146 3.852-3.683 3.852-6.58 0-2.358-.94-4.977-2.5-7.04-.743 2.867-2.924 3.978-4.501 4.269.05-3.219-.318-6.153-2.602-8.438-.296 4.732-4.321 7.63-4.398 12.114-.029 1.511.514 3.203 1.73 4.415.491.489 1.054.871 1.664 1.16-.121-.608-.062-1.254.195-1.848.911-2.106 3.333-2.321 4.202-5.754.952.749 3.275 3.503 2.778 6.358-.082.469-.224.923-.42 1.344z'%3E%3C/path%3E%3C/svg%3E");
    background-position: left;
    background-repeat: no-repeat;
} 

.treding-search-box ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.treding-search-box ul li a {
    padding: 5px 10px;
    border: 1px solid #d3d3d3;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.treding-search-box ul li a:hover {
    background-color: var(--primary-color);
    color: var(--black-color);
    border-color: var(--primary-color);
}
.treding-search-box ul li a svg {
    transform: rotate(-180deg);
    width: 18px;
    height: 18px;
}


.search_container.show-mobile-click {
    position: fixed;
    z-index: 9;
    width: 100%;
    display: inline-flex;
    top: 0;
    left: 0;
    background: #fff;
    padding: 11px;
    gap: 10px;
} 
.search_container.show-mobile-click form {
    width: 100%;
}
.search-mobile-back {
    display: none;
}
.search_container.show-mobile-click .search-mobile-back {
    display: block;
}
.search-mobile-back a {
    height: 45px;
    width: 45px;
    border: 1px solid #d3d3d3;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.autocomplete-listing-area {
    overflow-x: auto;
    position: relative;
    padding: 10px;
}
.autocomplete-listing-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; 
    gap: 20px;
}
.autocomplete-listing-item .listing-list {
    flex: 38%;
    max-width: 100%;
    flex-shrink: 0;
}

.autocomplete-listing-item .listing-content h4 {
    font-size: 14px; 
}
.autocomplete-listing-item .main-price {
    font-size: 14px;
}

.autocomplete-listing-item .similar-items{
    /* max-width: 250px;
    min-width: 240px; */
    padding: 5px;
    flex: 38%;
    flex-shrink: 0;
    /* max-width: 100%; */
    
    width: 100%;
    max-width: 215px;
}

.type-search-wapper ul li a {
    display: inline-block;
    width: 100%;
    margin: 5px 0;
    font-size: 13px;
    font-weight: 600;
}
.type-search-wapper ul li:nth-child(1) a {
    margin-top: 0;
}
.type-search-wapper ul li a:hover {
    color: var(--primary-color);
}

@media only screen and (max-width:767px){
    .autocomplete-area {
        left: 0;
        min-width: auto;
        box-shadow: none;
        border-radius: 0;
        margin-left: 0;
        position: fixed;
        top: 68px;
        border-top: 1px solid #d3d3d3;
        height: calc(100% - 68px); 
        overflow: auto;
    }
    .autocomplete-listing-item { 
        flex-direction: row;
        flex-wrap: wrap; 
        justify-content: center;
        gap: 5px;
    } 
    .autocomplete-listing-item .listing-list {
        flex: 50%;
        max-width: 100%;
        flex-shrink: 0;
    }
    .autocomplete-listing-item .similar-items{
        /* max-width: 138px ;
        min-width: 135px ; */

        flex: 50%;
        flex-shrink: 0;
        max-width: 48%;
    }
    .autocomplete-listing-area{
        padding: 0;
    }
    .autocomplete-recommended-search{
        margin-bottom: 50px;
    }
}
.modal-logins .modal-header {
    background: var(--primary-color);
}
.modal-logins .modal-content {
    border: none;
    border-radius: 25px;
    height: 100%;
    overflow: auto;
}
.web-login-header {
    background: var(--primary-color);
    padding: 15px 20px;
}
.modal-logins button.btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
}
.web-login-content,
.web-login-otp-data  {
    padding: 25px;
}
.web-login input.form-control {
    height: 46px;
}
.signup-with-item {
    display: flex;
    gap: 20px;
}
.signup-with-item a {
    height: 46px;
    border: 1px solid #ced4da;
    line-height: 46px;
    padding: 0 20px;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.signup-with-item a.login-email{
    border-color: #c03828
}
.signup-with-item a.login-fb{
    border-color: #0866ff
}
.signup-with-item a.login-email:hover{
    background-color: #c03828;
    color: var(--white-color);
}
.signup-with-item a.login-email svg path{
    fill: #c03828;
}
.signup-with-item a.login-email:hover svg path{
    fill: #fff;
}
.signup-with-item a.login-fb:hover{
    background-color: #0866ff;
    color: var(--white-color);
}
.signup-with-item a.login-fb svg path{
    fill: #0866ff;
}
.signup-with-item a.login-fb:hover svg path{
    fill: #fff;
}
.signup-with-text p {
    position: relative;
    z-index: 1;
    opacity: 0.5;
}
.signup-with-text p:after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    background: #000;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}
.signup-with-text p span {
    background: #fff;
    padding: 0 14px;
    text-transform: uppercase;
} 
.input-otp {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
}
.input-otp .input {
    border-bottom: 1px solid #BEC4CA !important;
    border-radius: 0 !important;
    padding: 0 !important;
    text-align: center;
    font-size: 24px !important;
    width: 100%;
}

@media only screen and (max-width:576px){ 
    .modal-logins .modal-dialog {
        max-width: 100%;
        height: 100%;
        margin: 0;
    }
    .modal-logins .modal-content { 
        border-radius: 0; 
    }
    .signup-with-item { 
        flex-direction: column;
    }
}