 @import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
 
 @font-face {
        font-family: 'CustomFont';
        src: url({{ public_path('public/assets/web/fonts/AireBoldItalicStd.ttf') }}) format('truetype');
    }

.raleway-<uniquifier> {
  font-family: "Raleway", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

html{
	overflow-x: hidden;
}


body{
	margin:0;
	padding:0;
	overflow-x: hidden;
 font-family: 'Raleway', sans-serif;
	

}

*{
	outline:0;
	--theme-color:#d89976;
}

p{
     font-family: "Raleway", serif;
	font-size: 13px;
    margin-bottom: 10px;
    line-height: 20px;
    color: #52443c;
    font-weight: 500;

	
}

h1,h2,h3,h4,h5,h6{
    font-style:italic;
	margin-bottom:15px;
	font-weight:400;
	line-height:1.2;
	color:#222;
	 font-family: "Aire Bold Italic Std";
	text-transform:none;
	
	

}
h1{
	font-size:50px;
	
}
h2{
	font-size:56px;

	
}	

h3{
	font-size:40px;
	
	
}

h4{
	font-size:28px;
	
}
h5{
	font-size:22px;

	
}
h6{
	font-size:20px;

	
}
ul{
	list-style: none;
	padding:0;
	margin-bottom:0;
}
.inline-block li{
	display:inline-block;
}

img{
	height:auto;
	width:100%;
	object-fit:contain;
	transition:1.5s;
}
a{
	color:#222;
	cursor:pointer;
	font-size:14px;
	
	
}
a:hover{
	text-decoration: none;
	transition:.3s;
	color:#1077f5;

}
button{
	cursor:pointer;
}

button:focus{
	outline:0;
}
input.form-control:focus{
	border-color:#d7c2b9;
	box-shadow:0 0 0 0;
}
.container{
    max-width:1200px;
}
table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 20px;
      border:1px solid #ddd;
    }

    th, td {
      padding: 10px;
      text-align: left;
      border-bottom: 1px solid #ddd;
    }

    dt {
      font-weight: bold;
    }

    .col-4 {
      width: 33.33%;
      float: left;
    }

    .col-8 {
      width: 66.66%;
      float: left;
    }

    /* Clear floats after the columns */
    .clearfix::after {
      content: "";
      clear: both;
      display: table;
    }
table tr td:first-child {
  font-weight: 600;
  border-right:1px solid #ddd;
}
.mfp-image-holder .mfp-content{
    max-width:850px;
}

.mx-w-80{
    max-width:800px;
    margin:0 auto;
}
.small-icon{
    font-size:17px;
}
.title-icon{
    display:flex;
    align-items:center;
   
}
@media(max-width:768px){
    .title-icon{
        margin-bottom:20px;
    }
    .blog-details .post-author .author-caption{
        margin-top:20px;
    }
}


p.landingheading
{
        line-height: 60.6px;
    font-size: 53px;
    font-weight: 600;
}


/*==============
Buttons
=================*/
.btn-primary {
    padding: 15px 40px;
    background-color: inherit;
    text-transform: unset;
    border: 1px solid #d89976;
    transition: .3s;
    color: #d89976;
    text-transform: uppercase;
    font-size: 15px;
    text-align: center;
    border-radius: 30px;
}
.btn-primary.outline{
	background-color:transparent;
	border:1px solid #00000024;
	color:#000;
}
.btn-primary.outline:hover,
.btn-primary.outline:focus
{
	border-color:#fff;
	color:#fff;
}

.btn-primary:hover,
.btn-primary:focus{
	background-color:#d89976;
	color:#fff;
	border-color:#d89976;

}
.btn-secondary{
	padding:12px 25px;
	background-color:#000;
	text-transform: unset;
	transition:.3s;
	border:1px solid #000;
	color:#fff;
	box-shadow:none;
}
.btn-secondary:hover,
.btn-secondary:focus{
	background-color:transparent;
	color:#000;
	border-color:#000;
	

}
.btn-outlined{
	padding:10px 20px;
	border:2px solid #2198ef;
	text-transform: unset;
	transition:.3s;
	color:#2198ef;
	background-color:#fff;
	font-size:17px;
	box-shadow:none;
	border-radius: 2px;
}
.btn-small{
	padding:8px 15px;
	border-radius:50px;
	color:#fff;
	background-color:var(--theme-color);
	text-align:center;
}
.btn-small:hover,
.btn-small:focus{
	background-color:#000;
	color:#fff;
}







.slick-dots{
        position: absolute;
    bottom: 30px;
    z-index: 90;
}


.popup-close{
    position: absolute;
    right:5px;
    top: 5px;
    background:transparent;
    z-index:9999;
    width: 20px;
    height: 20px;
    cursor:pointer;
    font-size:35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  display:flex;
  justify-content:center;
  align-items:center;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  overflow-y: auto;
  z-index: 10000;
}
.contact-popup.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.form-container {
  background-color:#eee;
  border-radius:2px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width:500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 40px;
  color: #fff;
}
.form-container label{
    color:#000 !important;
}
.form-container input{
    border:1px solid #ddd;
}
.form-container button{
    padding:10px 20px;
    background-color:var(--theme-color);
    color:#fff;
    border:0;
    font-size:15px;
}
.close-button{
  background: none;
  color: #fff;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  border: solid 1px #fff;
}
.contact-popup:before {
  content: '';
  background-color: #fff;
  opacity: 0.25;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}


/*===============
 General Code
====================*/.s-gallery .slick-slider .slick-arrow
.lens-mobile{
    display:none !important;
}

.p-relative{
	position:relative;
}
.bg-theme{
	background-color:FFF1EB;
}
.bg-theme-light
{
	background-color:#FFF8F6;
}
.seperator{
	border:1px solid #eee;
	width:100%;
}

.primary-overlay{
	position:relative;
	z-index:1;
	overflow:hidden;
}
.primary-overlay:before{
	content:"";
	position:absolute;
	z-index:-1;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.6);
}
.primary-overlay.white:before{
	background-color:rgba(255, 255, 255, 0.4);
}
.section-title{
	max-width:700px;
	text-align:center;
	margin:0 auto;
	padding-bottom:30px;
	padding-top:100px;

}
.section-title.left{
	text-align:left;
	margin:0;
}

.section-title h3{
	font-size:56px;
	padding-bottom:10px;
}

.h1-footer .social-links a:hover,
.h1-footer .terms a:hover{
	color:#2198ef;
}

.inner-content{
	max-width:600px;
}
.arrow-img{
	max-width:50px;
	margin-left:15px;
}
.arrow-box span{
	font-size:14px;
}
.big-padding{
    padding:150px 0;
}
.theme-txt{
    color:var(--theme-color);
    font-weight:600;
    
}

/*---- subpage-banner -----*/

.subpage-banner h3{
    font-size:56px;
    margin-bottom:0;
    padding-top:0px;
}


/*-----Mobile Menu-----*/
.cart-icon{
	width:30px;
	height:30px;
}
#mySidenav {
      width: 350px;
      
      z-index: 1;
      top: 0;
      left: 0;
      background-color: #111;
      overflow-x: hidden;
      padding-top: 20px;
    }

    #mySidenav a {
      padding: 10px 8px 10px 32px;
      text-decoration: none;
      font-size: 18px;
      border-bottom:1px solid #333;
      color:var(--theme-color);
      display: block;
      transition: 0.3s;
    }

    #mySidenav a:hover {
      color: #f1f1f1;
    }

    #mySidenav .dropdown-btn {
      padding: 10px 20px 10px 32px;
      border-bottom:1px solid #333 !important;
      text-decoration: none;
      font-size: 18px;
      color:var(--theme-color);
      display: block;
      border:0;
      background: none;
      width: 100%;
      text-align: left;
      position:relative;
      cursor: pointer;
      outline: none;
      transition: 0.3s;
    }
    #mySidenav .dropdown-btn:after {
    		content: "\f0d7";
 	float:right;
  font-family:'Font Awesome 5 Free';
  color:var(--theme-color);
  z-index:9999;
  font-weight:800;
  transition: transform .25s linear;
  -webkit-transition: -webkit-transform .25s linear;


    }

    #mySidenav .dropdown-btn:hover {
      color: #f1f1f1;
    }

    .dropdown-container {
      display: none;
      background-color: #333;
      padding-left: 8px;
      max-height:300px;
      overflow-y:scroll;
    }

    .dropdown-content a {
      padding: 8px;
      text-decoration: none;
      display: block;
      color: #818181;
      transition: 0.3s;
    }

    .dropdown-content a:hover {
      background-color: #555;
      color: #f1f1f1;
    }

.sidenav-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
 opacity: 0;
 visibility: hidden;
  transition:.5s;
  overflow: hidden;
  background-color:rgba(0,0,0,0.4);
  z-index:1040;
}
.sidenav-overlay .top-bar{
	display:flex;
	justify-content:space-between;
	align-items: center;
	width:100%;
	padding:15px 0;
	background-color:#000;
}
.sidenav-overlay .white-logo{
	padding:5px 20px;
	margin-left:15px;
	border-radius:3px;
}

.sidenav-overlay .white-logo a img{
	max-width:100px;
	display:none;
}


.mr-nav .nav-inner .menus .signup li a.login-btn{
    padding:8px 12px;
    background:var(--theme-color);
    font-size:15px;
    color:#fff;
    border-radius:5px;
}

.sidenav-overlay.show { 
	transition:.5s;
	opacity: 1;
	visibility: visible;
}
.sidenav-overlay.show .sidenav-menu{
  transform:translateX(0);
  transition:.5s;
}
.sidenav-menu{
	height:100%;
	width:350px;
	background-color:#111;
}


.menu-wrapper h4.panel-title{
	margin-bottom:0px;
	border-bottom:1px solid #eee;
}

.sidenav-overlay  .menu-wrapper{
	padding:30px 0;
}

.sidenav-overlay .menu-wrapper  h4.panel-title a{
	display:block;
	padding:20px 15px;
	font-size:15px;
	padding-right:27px;
	font-weight:500;
	color:#000;
	text-transform:uppercase;
	position:relative;
}

.panel-body ul.nav a{
	display:block;
	padding:12px 20px;
	font-size:18px;
	text-transform:uppercase;
}

.sidenav-menu .social-links .networks{
	display:flex;
	justify-content:flex-start;
	align-items: center;
	padding-top:20px;
	position:relative;
}


.sidenav-menu .social-links h5{
	margin-bottom:5px;
	color:#eee;
	font-size:13px;
	font-weight:500;
	
}

.sidenav-menu .social-links a{
	font-size:17px;
	margin-right:20px;
	color:gray;
	
	
}
.sidenav-menu .social-links a:hover,
.sidenav-menu .social-links a:focus{
	color:var(--theme-color);
}

.sidenav-overlay .info,
.sidenav-menu .social-links{
	padding:30px;
	display:none;
}
.sidenav-overlay .info h5{
	font-size:14px;
	margin:20px 0;
	color:#fff;
	font-weight: 400;
}
.sidenav-overlay .info a{
	font-size:14px;
	color:#eee;
	display:flex;
	width:100%;
	margin-bottom:10px;
}
.sidenav-overlay .info span{
	margin-right:20px;
}

.sidenav-overlay .close-btn{
	width:20px;
	height:20px;
	border:0;
	background-color:inherit;
	display:flex;
	justify-content:center;
	align-items: center;
	margin-right:10px;
	z-index:9999;
	position:relative;
	opacity:1;

}
.sidenav-overlay .close-btn span{
	display: block;
	position:absolute;
	top:43%;
	left:14%;
	
	width:75%;
	height:2px;
	background-color:#fff;

}
.sidenav-overlay .close-btn span:nth-child(1){
	transform:rotate(-45deg);
}
.sidenav-overlay .close-btn span:nth-child(2){
	transform:rotate(45deg);
	bottom:0;
}
/*==============
colors and backgrounds
================*/
.txt-gray{
	color:#969595;
}
.txt-theme{
	color:#d89976 ;
}
.bg-gray{
	background-color:#f6f6f6;
}

/*=========
Spacing
============*/
.section-padding{
	padding:80px 0;
}
.row.mt-80{
	margin-top:60px;
}

/*========
Product-details
==================*/
.ak-details .overlay{
	display:none;
}
.ak-details.section-padding{
    padding:100px 0;
}

.ak-details .shop-slider .shop-item .img-wrapper{
    max-height:200px;
	position:relative;
	
	overflow:hidden;
	margin-bottom:20px;
	
	
}

.ak-details .shop-slider .shop-item{
	display:flex;
	height:auto;
	justify-content:center;
	align-items: center;
	overflow:hidden;
	opacity:.5;
	transition:.3s;
}

.ak-details .shop-slider .shop-item img{
	width:100%;
	height:100%;


}
.ak-details .shop-slider .shop-item.slick-active.slick-current{
    opacity:1;
}


.quantity-wrap{
	display:flex;
	justify-content:flex-start;
	align-items: center;
	margin:20px 0;

}

.product-details .price{
	display:flex;
	justify-content:space-between;
	align-items: center;
}

.price .fav{
	background-color:#ffc107;
	display:flex;
	width:56px;
	height:56px;
	color:#fff;
	margin-left:20px;
	font-size:20px;
	cursor:pointer;
	justify-content:center;
	align-items: center;
	transition:.3s;
	}

	.price .fav:hover{

		color:#222;
	}

.quantity-wrap .number{
	
	display:flex;
	margin-right:20px;
	justify-content:center;
	align-items: center;
	border:1px solid #ffc107;
	

}


.ak-details .minus, 
.ak-details .plus{
	width:40px;
	height:56px;
	display:flex;
	font-size:22px;
	background-color:#ffc107;
	justify-content:center;
	align-items: center;
	color:#fff;
	transition:.3s;
	cursor:pointer;
	
}

.ak-details .minus:focus-within, 
.ak-details .plus:focus-within{
	background-color:#222;
	color:#fff;
}

.quantity-wrap .number input{
	height:55px;
	width:90px;
	text-align: center;
	font-size: 22px;
	border:0;
	display: inline-block;
	vertical-align: middle;
			
}	





.ak-details .shop-slider .slick-center{
	opacity:1;
	transform:scale(1.2);
}
@media(min-width:768px){
    .ak-details .review-tab{
        padding-left:0px;
    }
    
}
.ak-details .single-item{
       display: flex;
    height: auto;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-wrap: nowrap;
}

/*.ak-details  .single-item .img-wrapper{*/
/*   max-height: 550px;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

.ak-details  .single-item img{
   height:100%;
   width:100%;
    object-fit:contain;
}
.ak-details dt{
    font-size: 14px;
    font-weight: 600;
    margin-bottom:20px;
}
.ak-details dd{
    font-size:14px;
    font-weight:400;
}

.ak-details .content p{
	padding-right:50px;
}

.ak-details .content,
.ak-details .content ul{
	margin:30px 0;
}

.ak-details .content ul{
	margin:30px 0;
}

.ak-details .content ul:not(.inline-block) li{
	color:#6d6767;
	position:relative;
	vertical-align:middle;
	margin:5px 0;


}

.ak-details .content ul:not(.inline-block) li:before{
	content:"";
	width:15px;
	height:15px;
	margin-right:10px;
	display:inline-block;
	vertical-align:middle;
	border-radius:50%;
	border:2px solid #ffc107;
	justify-content:center;
	align-items: center;
	font-style:20px;
	font-family:'Merriweather',sans-serif;

}

.ak-details .content ul li a{
	color:#6d6767;
	margin:0 3px;
}
.ak-details .content ul li a:hover{
	color:#ffc107;
}
.review-tab .tab-content {
	padding:20px;
	margin:15px 0;
	border:1px solid #ccc;
	background:#fff;
	
}
.review-tab .cert{
    
    padding:20px;
}


.review-tab .cert img{
    width:50px;
    height:50px;
    margin-right:10px;
    object-fit:cover;
}

.review-tab ul li a{
margin-right: 20px;
    padding:5px 7px;
    font-size: 15px;
    font-weight: 500;
    background:#000;
    color: #fff;
    position: relative;
}


.review-tab ul li a.active{
	background:#fff;
	color:#000;

}

/*====FAQ=====*/
.faq .panel{
    margin-bottom: 30px;
   
}
.faq .panel-collapse{
    padding: 20px;
    margin-bottom: 20px;
    color: #000;
}
.faq h4{
    padding: 20px;
    margin-bottom: 20px;
    

    color: #fff;
}
.faq h4 a{
    color:#221a15;
    display:block;
}



/*===============
 Navigation
====================*/

.mr-nav{
	width:100%;
	background-color:#fff;
	z-index:999;
	transition:all .5s;
	position:fixed;
	top:0;
}

.mr-nav.nav-change{
	box-shadow: 0 0 10px  rgba(0,0,0,0.4);
}



 .logo .logo-ico img{
	max-width:250px;
	height:auto;
	
}
.sidenav-menu .logo{
	max-width:120px;
	padding:10px 12px;
	margin-left:15px;
	border:2px solid #2198ef;
	text-align:center;
}



.mr-nav .nav-inner{
	width:100%;
	display:flex;
	justify-content:space-between;
	align-items: center;
	

}
.filter .dropdown-menu {
  width: 100%;
  position:absolute;
  padding:0;
}
.filter .dropdown-menu li{
    padding:4px 10px;
    border-bottom:1px solid #eee;
}


.mr-nav .nav-inner .menus ul li{
	padding:12px 0;
	margin-right:20px;
	cursor:pointer;
	position:relative;
}
.mr-nav .nav-inner .desktop-nav a,
.mega-btn{
	color:#000000;
	border:0;
	background:transparent;
	font-weight:500;
	padding:35px 25px;
	font-size:13px;
	text-transform:uppercase;
	
}
.mr-nav .nav-inner .desktop-nav .mega-btn i{
    margin-left:5px;
}
.mr-nav .nav-inner .desktop-nav a:hover,
.mega-btn:hover{
    color:var(--theme-color);
    
}
.desktop-nav{
        display:none;
    }
    

@media(min-width:768px){
    .desktop-nav{
        display:block;
    }
    .mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding:30px;
  background:#f1c3a9;
  
  top:100px;
  z-index:999;
  opacity: 0;
   display: grid;
        grid-template-columns: repeat(5, 1fr); /* Create four columns */
        gap: 5px;
  
  visibility: hidden;
}
.mega-box.artist-mega{
    max-height:400px;
    overflow-y:scroll;
}

.desktop-nav .mega-box a{
   text-align: center;
       padding:5px !important;
        border: 1px solid #ccc;
        text-decoration:bullets;
        color: #333;
        display: flex;
        font-size:17px;
        align-items: center;
        justify-content:flex-start;
        
        text-transform:normal;
}
.desktop-nav .mega-box a:hover{
    color:#fff !important;
}

.mega-btn:hover  .mega-box{
    top:100%;
    opacity:1;
    visibility:visible;
}

}


.mr-nav .nav-inner .menus ul li a:hover,
.mr-nav .nav-inner .menus ul li a:focus{
	color:#2198ef;
}

.mr-nav .nav-inner .menus{
	display:flex;
	justify-content:center;
	align-items: center;
	width:100%;
}

.mr-nav .menu-btn{
    display:none;
}
@media(max-width:768px){
    .mr-nav .menu-btn{
    	width:30px;
    	opacity:1;
    	margin-right:20px;
    	background-color:inherit;
    	display:block;
    	border:0;
    	overflow:hidden;
    
    }
    .subpage-banner{
        padding:60px 0;
    }
    .subpage-banner h3{
        font-size:35px;
    }
    .mr-nav .nav-inner .menus{
        justify-content:flex-end;
    }
    
    .mr-nav .menu-btn:hover  span,
    .mr-nav .menu-btn:focus  span{
    	background-color:#0eb996;
    }
    
    
    
    .mr-nav .menu-btn span{
    	display:block;
    	width:40px;
    	height:2px;
    	background-color:#000;
    	transition:.4s;
    
    }
    
    .mr-nav .menu-btn span:nth-child(2){
    	margin:6px 0;
    	width:25px;
    
    }

}


.mr-nav .nav-inner .menus .signup  li a{
	color:#000;
	margin-left:10px;
	font-size:20px;
	
}

.mr-nav .nav-inner .menus .user-btn{
    border: none;
    background: #fff;
    padding: 2px 10px;
    
}
.mr-nav .nav-inner .menus .signup .user-btn:hover,
.mr-nav .nav-inner .menus .signup .user-btn:focus{
    color:var(--theme-color);
}

.mr-nav .nav-inner .menus .signup{
	display:flex;
	justify-content:center;
	align-items:center;
}

.mr-nav .menus .sub-menu{
	position:absolute;
	z-index:999;
	top:70px;
	width:100%;
	transform:translateY(12px);
	min-width:200px;
	visibility:hidden;
	border-top:5px solid #2198ef;
	background-color:#fff;
	transition:all .3s;
	opacity:0;
	box-shadow:0 0 15px 0 rgb(0 0 0 / 10%);

}



.mr-nav .nav-inner .menus .sub-menu a{
	padding:10px 15px;
	display:block;
	font-size:14px;
	color:black;
	position:relative;

}
.mr-nav .nav-inner .menus .sub-menu a:after{
	content:"";
	position:absolute;
	top:20px;
	left:0;
	width:0;
	height:2px;
	transition:.3s;
	background-color: #2198ef;
}
.mr-nav .nav-inner .menus .sub-menu a:hover:after{

	width:10px;

}

.mr-nav .nav-inner .menus .sub-menu a:last-child{
	border-bottom:0;
}

.mr-nav .nav-inner .menus li.sub-menu-link:hover > .sub-menu{
		visibility:visible;
		transform:translateY(0);
		opacity:1;

}


.search-open{
	display:flex;
	justify-content:center;
	align-items: center;

}

.search-open i{
	font-size:20px;
	transition:.1s;
	margin-top:10px;
}
.search-open:before{
	position:absolute;
	content:"X";
	font-size:28px;
	font-family:'Poppins',sans-serif;
	opacity:0;
	font-weight:300;
	display:flex;
	justify-content:center;
	align-items: center;
	transition:.2s;
}


.search-open.cross i{
	opacity:0;
}

.search-open.cross:before{
	opacity:1;
}


.search-box.show-search{
	top:80px;
	opacity:1;
	visibility:visible;

}

.search-box{
	position:absolute;
	top:80%;
	opacity:0;
	visibility:hidden;
	transition:.3s;
	z-index:999;
	overflow:hidden;
	left:0;
	width:100%;
	border:1px solid #6b6b6b85;
	background-color:#fff;
	border-radius:50px;
		box-shadow:0 4px 10px rgba(0, 0, 0,0.1);
}
.search-box .search-form{
	display:flex;
	justify-content:space-between;
	margin-bottom:0;
	align-items:center;
	padding:10px;

}
.search-box .search-form input{
    border: 0;
    border-top-left-radius:20px;
    border-bottom-left-radius: 20px;
}
.search-box .search-form input::placeholder{
	font-size:12px;
	color:rgba(0,0,0,0.4);	
	font-weight:300;

}

.search-box .search-form .search-btn{
cursor: pointer;
    border: 0;
    font-weight: 600;
    /* width: 60px; */
    padding: 8px;
    color: #fff;
    background-color: #d89976;
    /* height: 60px; */
    border-radius: 50%;
}

/*----Spacing-------*/

@media (max-width:768px){
.banner-padding{
	padding:100px 0;
}
}

/*--Mobile-banner*/
@media(min-width:991px){

.for-mobile{
	display:none;
}
}

.slider-mobile{
	padding:100px 0;

}
.slider-mobile img{
	max-height:300px;
}
.slider-mobile a{
	margin:20px 0;
	display:inline-block;
}

/*---banner slider----*/
#icons {
  display: none;
}
.s-gallery{
    position:relative;
    /*overflow:hidden;*/
    width:100%;
    height:90%;
    margin-top:43px;
    
}
.s-gallery .slide-img {
    position: relative;
    height: 116vh;
    transition: transform 1s ease-in;
  
}
@media(max-width:768px){
    .s-gallery{
        padding-top:0px;
        height:45vw;
    }
    .s-gallery .slide-img {
     height:45vw;   
    }
}
.s-gallery .slick-slider .slick-arrow{
  
    background-position: center !important;
    padding:20px;
    display:flex;
    justify-content:center;
    align-items:center;
}
.s-gallery .slick-slider .slick-arrow.slick-prev{
    left:40px;
   
}
.s-gallery .slick-slider .slick-arrow.slick-next{
    right:40px;
}


.s-gallery .gallery__item .content{
	transform:translateY(30px);
	opacity:0;
    position: absolute;
    bottom: 100px;
    max-width: 500px;
    left: 50px;
    border-radius:5px;
    background: #050505a1;
    color: #fff;
    padding: 20px;
	transition:all .3s ease-in;

}
.s-gallery .slick-dots li button{
width: 9px;
    height: 9px;
    border-radius: 100px;
    border: 0;
    color: transparent;
    /* color: #000; */
    font-size: 20px;
    font-weight: 700;
    background-color:#fff;

}
.s-gallery .slick-dots li.slick-active button{
	background-color:var(--theme-color);

}

.link-btn{
	font-size:16px;
	font-weight:500;
}

.s-gallery p{
    color:#fff;
}
.s-gallery .content h2{
	font-size:20px;
	font-weight:700;
	color:#fff;
	
	
}



.s-gallery .gallery__item.slick-current.slick-active .slide-img{
	animation: reveal-curve-left 2s  forwards;
	transform:translateX(0);

}
.s-gallery .gallery__item.slick-current.slick-active .content{
	transform:translateY(0);
	opacity:1;
	transition-delay:.3s;
}


.s-gallery .slide-img img{
	 width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    z-index: 0;
}
.painting-col{
    margin-bottom:20px;
}



@media(max-width:991px){
.for-large{
		display:none;
}
}



.cart-number{
	position:absolute;
	bottom:10px;
	right:0px;
	border-radius:100%;
	width:20px;
	height:20px;
	background-color:var(--theme-color);
	display:flex;
	justify-content:center;
	align-items: center;
	font-size:12px;
	color:#fff;
}




/*=================
Experience
======================*/
.h1-exp .exp-content{
	margin-top:40px;
	padding:40px 20px;
	box-shadow:0 0 3px .1px rgba(0,0,0,0.4);
}

.h1-exp .exp-content p{
	font-size:14px;
	padding:10px 0;
	font-weight:300;
}
.h1-exp .exp-content span{
	font-size:75px;
	display:block;
	color:#2198ef;
	margin-bottom:20px;
}
/*==========
About Us
===============*/
.section-padding.about-page{
    margin-bottom:-140px;
    padding-top:100px;
}

.lead{
  font-size:16.px;
}
.card {
	border: 0;
	margin: 10px;
	outline: none;
	cursor: pointer;
}

.testimonial .slick-dots li button:before{
  color:#fff!important;
  font-size: 18px;
}
.card-body h3{
  color:#000;
  align-item:left;
  font-weght:600;
  margin:40px 0px 0px 0px;
  
}
.cust_card_btn_div{
  margin:0px 0px 50px;
  
}
.cust_card_btn{
  color:#fff;
  Background:#991B1E
;
  padding:16px 40px; 
  position:absolute;
  right:0px;
}
.card-body span{
  background:#991B1E;
  border-radius:4px;
  padding:10px 15px;
	color:#fff;
  position:relative;
  float:right;
  margin-bottom:50px;
  
} 




/*============
Product store
================*/

.h1-store .filter-option {
  padding:5px;
  margin: 30px 0;
}
.h1-store .filter-option li {
  display: inline-block;
  list-style: none;
  height:auto;
  background-color:#eee;
  margin-right:10px;
}


.h1-store .filter-option li + li {
  margin-left: -5px;
}
.h1-store .filter-option li a {
  display: inline-block;
  min-width: 150px;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  text-align: center;
  background: transparent;
  padding:8px 0;
  
}
.h1-store .filter-option li a.active {
  background:var(--theme-color);
  color: #ffffff;
  border-color: #80602d;
}
.h1-store .filter-option li:last-of-type a {
  border-right: none;
}

.h1-store .item-slider div {
  margin:0 5px;
  cursor:grabbing;
}
.item-slider div img.img-short{
	max-height:250px;
}
.item-slider div img:nth-child(2){
	margin-top:20px;
}
/*.h1-store .item-slider div img {
  width:auto;
  min-height:400px;
}
*/
.h1-store .slider-controls {
	margin-top:50px;
	display:flex;
	justify-content:space-between;
}
.h1-store .slider-controls span {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: transparent;
  border: 1px solid #8b6932;
  color: #8b6932;
  cursor: pointer;
  margin: 0 5px;
  transition: all 0.3s linear;
}
.h1-store .slider-controls span:hover {
  background: #8b6932;
  color: #ffffff;
  border-color: #8b6932;
}

/*----- Events --------*/
.events a.event-block{
	padding:30px 0;
	display:block;
	border-top:1px solid #eee;
}
.events .art-img{
    display:flex;
    margin-bottom:20px;
}

.events a.event-block:hover .read-more p{
	transform: translateX(0);
}
.events .arts-img img{
	max-height:150px;
}

.events .read-more{
	max-width:300px;
	position:relative;
	overflow:hidden;
}
.events .price{
	float:right;
	color:#000;
	font-size:22px;
	font-weight:600;
}
.events .read-more  p{
	color:#000;
	transition:all .4s ease-in;
	transform:translateX(-100px);
}

.events img.arrow-img{
	width:30px;
}

.events .arts-name h4{
	font-size:22px;
}
.events .arts-name h6{
	font-size:16px;
}

.events .arts-name h6 span{
	color:#222;
	font-size:12px;
	margin-left:20px;
}

/* -- subscribe --- */

.wrap {
	max-width: 90%;
	margin: 0 auto;
}
.newsletter-form{
	max-width:500px;
	margin:0 auto;
}
.newsletter-form .form-inner{
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding:10px 0;
	margin:30px auto;
	border-bottom:2px solid var(--theme-color);
}

.newsletter-form .form-inner input{
	border:0;
	width:100%;
	background-color:transparent;
	padding:5px 0;
	color:#000;
}
.newsletter-form button{
	border-radius:50%;
	padding:10px;
	border:0;
	background-color:var(--theme-color);
	color:#fff;
}
.newsletter-form label{
	margin-bottom:0;
	margin-left:10px;
}


.newsletter-text:focus,
.newsletter-email-input:focus{
	transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
	-moz-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	border-color: #fff;
	outline: none;
}
.newsletter-submit:hover {
	background-color: #009c3a;
	border-color: #009c3a;
}

/*==========
Gallery Masonary
======================*/
.h1-gallery .masonary{
	width:100%;
	max-width:100%;
	display:flex;
	flex-wrap:wrap;
	overflow:hidden;
	height:auto;
}
.h1-gallery .masonary img{
	height:100%;
}

.h1-gallery .masonary .width-1{
	flex:60%;
}

.h1-gallery .masonary .width-2{
	flex:40%;
}

.h1-gallery .gallery-img{
	position:relative;
	overflow:hidden;
}
.h1-gallery .img-overlay .img-links{
	display:flex;
	justify-content:center;
	align-items: center;
	margin:50px 0;
}
.h1-gallery  .img-overlay .img-links span{
	display:block;
	width:50px;
	height:50px;
	border-radius:50%;
	background-color:rgba(0,0,0,0.3);
	color:#fff;
	display:flex;
	justify-content:center;
	align-items: center;
	margin:0 10px;
	transform:scale(0);
	transition:.3s;
}
.h1-gallery  .img-overlay h5{
	color:#fff;
	padding:10px 20px;
	font-weight:700;
	transform: translateY(50px);
	opacity:0;
	transition:.4s;
	background-color:rgba(0,0,0,0.3);
}
.h1-gallery  .img-overlay:hover > h5{
	transform:translateY(0);
	opacity:1;
}
.h1-gallery  .img-overlay:hover > .img-links span{
	transform:scale(1);
	opacity:1;
}
/*==========
Our Team
===============*/
.h1-products .team-member{ 
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:stretch;
	margin-bottom:40px;
	box-shadow:0 0 8px #9b7d6d5e;
}

.h1-products .member-img{
    background: #765848;
	position:relative;
	overflow: hidden;
}

.h1-products .member-img img{
	width:100%;
	height:200px;
	object-fit:fill;
	position:relative;
	overflow: hidden;
}

.h1-products .member-img .img-overlay{
	position:absolute;
	top:0;
	left:0;
	z-index:1;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,.7);
	display:flex;
	opacity:0;
	visibility:hidden;
	justify-content:center;
	align-items: center;
	transition:.4s;
}
.h1-products .member-img .img-overlay a{
	margin:0 5px;
	color:#fff;
	font-size:20px;
}
.h1-products .member-img:hover .img-overlay,
.h1-products .member-img:focus .img-overlay{
	opacity:1;
	visibility:visible;
}

.h1-products .member-img .img-overlay a:hover{
	color:#2198ef;
}
.h1-products .team-member .name a.txt-theme{
	font-size:12px;
	padding:8px 22px;
	margin-top:10px;
	text-align: center;
	border-radius:2px;
	background-color:var(--theme-color);
	color:#fff;

}

a.text-black {
    font-weight: 500;
    font-size: 24px;
    color: white;
}
a.category-text {
    color: white;
    font-weight: 400;
}

.h1-products .name{
display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column-reverse;
    padding: 12px 20px;
    background: #765848;
    font-size: 20px;
    font-weight: 600;
}
@media(min-width:768px){
    .insta-slider{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:2;
    }

}
@media(max-width:768px){
        .h1-products .name {
   
    padding: 4px 7px;
    }
}
    

.slick-slider .slick-arrow {
  position: absolute;
  top: 50%;
  margin: -20px 0px 0px 0px;
  z-index: 10;
  font-size: 0;
  border:0;
  width: 30px;
  height: 30px;
}
.slick-slider .slick-arrow.slick-prev {
  left: -40px;
  background: url("https://maxmedo.in/anyahhart/public/img/left-arrow.png");
  background-size:contain;
  background-position:center;
}
.slick-slider .slick-arrow.slick-next {
  right: -40px;
  background: url("https://maxmedo.in/anyahhart/public/img/right-arrow.png");
  background-size:contain;
  background-position:center;
}
.slick-slider .slick-arrow.slick-disabled {
  opacity: 0.2;
}




@media(max-width:568px){
	.h1-products .name{
		flex-direction:column-reverse;
		justify-content:center;
	}
    .h1-products .member-img img{
    	width:100%;
    	/*height:auto!important;*/
    	object-fit:fill;
    	position:relative;
    	overflow: hidden;
    }

}



/*------Creative-------*/
.h1-creative .content .hr-box h3{
	padding:40px 0;
	margin:0;
	width:100%;
	font-size:30px;
	
}
.border-top{
	border-top:1px solid #d899766e !important;
}
.border-bottom{
	border-bottom:1px solid var(--theme-color);
}

.h1-creative .content .hr-box a{
	width:100%;
	display:flex;
	justify-content:space-between;
	align-items:center;
	
}
.h1-creative .content .hr-box h3 span{
	font-size:15px;
	margin-left:20px;
	word-spacing:2px;
	color:var(--theme-color);

}

.h1-creative .content .hr-box a:hover .follow-img{
	opacity:1;
}

.h1-creative  .follow-img{
	opacity: 0;
  width:200px;
  height:200px;
  box-sizing: border-box;
  transition: ease .2s;
  position: absolute;
  z-index:1;
  object-fit: cover;
}
.join-member .content{
	max-width:750px;
	margin:0 auto;
	text-align:center;

}

.subpage-banner{
    height:475px;
    padding:100px 0;
    background-image:url('../img/usgs-hoS3dzgpHzw-unsplash.jpg');
    background-size:cover;
    text-align:center;
    background-position:center center;
}
/*==========
Blog Section
===============*/
.section-padding.h1-blog{
	padding-bottom:100px;
}
.h1-blog  .post-wrapper{
	display:block;
	margin-top:20px;
	border-radius:10px;
	overflow: hidden;
	background-color:#fff;
	box-shadow:0 0 8px 0 rgba(0, 0, 0, 0.2);
}

.h1-blog .blog-post{
	display:block;
	overflow: hidden;
	position:relative;

}


.h1-blog .blog-post .post-img img{
	display:block;
	height:300px;
	object-fit:cover;
	transition:all .5s ease-out;
	filter:blur(0);
	
}

.h1-blog .post-wrapper:hover .post-img img,
.h1-blog .post-wrapper:focus .post-img img{
	transform:scale(1.2);
	transition:.4s;
	
}
.h1-blog .post-wrapper:hover .post-img:after,
.h1-blog .post-wrapper:focus .post-img:after{
	top:50%;
	opacity:1;
	
}



.h1-blog  .post-heading{
	margin-top:20px;
	display:block;
	padding:30px;
}
.h1-blog  .post-heading h6{
	font-size:18px;
	line-height:1.4;
	text-transform:capitalize;
	margin-bottom:10px;
}
/*------Collection slider----*/
.our-collection .collection-img{
	position:relative;
	overflow:hidden;
	height:400px;
	margin:0 10px;
}
.our-collection .section-title{
	max-width:100%;
}

.our-collection .collection-img img{
	object-fit:cover;
	height:100%;
	width:100%;
	transition:all .3s ease-in;
}
.our-collection .collection-img:hover img{
	transform:scale(1.1);
}

/*========= Footer label=======*/
.footer-label .icon-box{
	text-align:center;
	font-weight:600;
	margin-top:10px;
	color:#fff;
}
.icon-box i{
	margin-bottom:10px;
	font-size:30px;
	color:#765848;
}
.icon-box p{
	color:#765848;
	font-weight:500;
	font-size:16px;
	margin-bottom:0;
}


/*==============
About us
=========================*/
.about-banner{
	background-image: url('https://anyahhartdubai.com/wp-content/uploads/2020/12/banner3a-1-scaled.jpg');
	background-size:cover;
	background-position:center;
	padding-bottom:100px;
}

/*----- Collections ----------*/
.collection img{
    max-height:350px;
    object-fit:cover;
}

/*------ Paintings -----*/



.explore-artist .row{

    
}



.painting-product{
    /*padding-top:100px;*/
}
.painting-product .filter{
    position: relative;
    z-index: 20;
    top: -112px;
    width: 100%;
    display: flex
;
    justify-content: center;
}


.painting-info{
    padding: 25px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    
}
.painting-info .d-flex{
    justify-content:space-between;
    align-items:center;
    flex-direction:column;
    
}
.painting-info h5{
    font-size:18px;
    margin-bottom:10px;
    text-transform:uppercase;
}
.painting-info  p{
    font-size:14px;
    margin-bottom:5px;
}
.painting-info h6{
    font-size:14px;
    margin-bottom:10px;
}
.painting-product .product-page-title h2{
    font-size:40px;
    text-align:center;
    width:100%;
    margin:30px 0;
}
 .title h3{
    font-size: 28px;
    margin-bottom: 0;
    line-height: 34px;
    margin-right: 10px;
    }

.explore-filter {
    display: flex;
    
    align-items: center;
    /*padding-bottom: 40px;*/
    margin-left:-20px;
}

.explore-filter ul {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    width: 100%;
}

.explore-filter ul li {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 0 15px;
    padding:40px;
    border-radius: 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    transition: all .3s ease-in;
    cursor: pointer;
    justify-content: center;
}

.explore-filter ul li span {
    width: 70px;
    height: 70px;
    position: relative;
    background-color: gray;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}

.explore-filter ul li img {
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 5px;
    width: 110px;
    height: 110px;
    border: 2px solid transparent;
    transition: all .3s ease-in;
}

.explore-filter ul li:hover {
    color: var(--theme-color);
}

.explore-filter ul li.is-checked {
    border-bottom: 2px solid var(--theme-color);
    color: var(--theme-color);
}

.explore-filter ul li.is-checked img {
    border: 2px solid var(--theme-color);
}

.explore-artist a {
    /*padding: 12px 34px;*/
    text-align: center;
    /*margin-top: 20px;*/
    /*background-color: var(--theme-color);*/
    color: #fff;
}

@media (max-width: 768px) {
    .explore-filter ul {
        align-self: flex-start;
        border-bottom: 0;
        overflow-x: scroll;
        overscroll-behavior-x: contain;
    }
    figure {
        width: max-content;
        /*margin: 0 0 1rem;*/
    }
    .explore-artist ul li img {
        width: 80px;
        height: 80px;
        object-fit: cover;
    }
}


/*.explore-filter{*/
/*	display:flex;*/
/*	justify-content:center;*/
/*	flex-direction:column;*/
/*	align-items: center;*/
/*	padding-bottom:40px;*/
/*}*/
/*.explore-filter ul{*/
/* display:flex;*/
/* align-items:center;*/
/* margin-bottom:35px;*/
  
/*}*/

/*.explore-filter ul li{*/
/*  display:flex;*/
/*  align-items:center;*/
/*  flex-direction:column;*/
/*  text-align:center;*/
/*  margin:0 20px;*/
/*  border-radius:0;*/
/*  border-bottom:1px solid #eee;*/
/*  font-size:15px;*/
/*  transition:all .3s ease-in;*/
/*  cursor:pointer;*/
/*  justify-content:center;*/
   
/*}*/

/*.explore-artist ul li span{*/
/*	width:70px;*/
/*	height:70px;*/
/*	position:relative;*/
/*	background-color:gray;*/
/*	border-radius:50%;*/
/*	overflow:hidden;*/
/*	margin-bottom:10px;*/
/*}*/

/*.explore-artist ul li img{*/
/*    border-radius:100%;*/
/*    margin-bottom:5px;*/
    /*display:none;*/
/*    width:100%;*/
/*    height:100%;*/
/*    border:2px solid transparent;*/
/*    transition:all .3s ease-in;*/
/*}*/
/*.explore-filter ul li:hover{*/
/*  color:var(--theme-color);*/
  
/*}*/
/*.explore-filter ul li.is-checked{*/
/*  border-bottom:2px solid var(--theme-color);*/
/*  color:var(--theme-color);*/
  
/*}*/
/*.explore-filter ul li.is-checked img{*/
/*    border:2px solid var(--theme-color);*/
    
/*}*/

/*.explore-artist .row{*/
/*	margin-bottom:30px;*/
/*}*/


/* .explore-artist img{*/
/*    width:100%;*/
/*    height:auto;*/
/*    object-fit:cover;*/
    
/*}*/
/*.explore-artist a{*/
/*    padding:12px 34px;*/
/*    text-align:center;*/
/*    margin-top:20px;*/
/*    background-color:var(--theme-color);*/
/*    color:#fff;*/
/*}*/
/*@media(max-width:768px){*/
    
/*    .explore-filter ul {*/
/*        align-self: flex-start;*/
/*        border-bottom:0;*/
        /*overflow-x:scroll;*/
/*    }*/
/*    .explore-artist ul li img{*/
/*        width:60px;*/
/*        height:60px;*/
        
/*    }*/
   
/*}*/

@media(max-width:768px){
    .painting-product .filter{
        overflow-x:scroll;
    }
    
   
}

/*Art of the day*/
.art-day{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    overflow:hidden;
    
    
}
.art-day a{
    width:500px;
    height:500px;
    position:relative;
    overflow:hidden;
    transition:all .3s ease-in;
    border-radius:10px;
    box-shadow: 0 3px 15px 0 rgba(0, 0, 0,0.2);
}

.art-day .img-overlay{
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.7);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 70%;
    /* max-width: 300px; */
    border-radius: 50px;
    text-align: center;
    padding: 15px 20px;
    
}
.art-day h5{
    color:#fff;
    text-transform:capitalize;
    font-size:20px;
    margin-bottom:0;
}

.art-day img{
    height:100%;
    width:100%;
    object-fit:cover;
}

.art-day:hover a{
	transform:scale(0.99);
}

/*==============
Footer
=========================*/
.footer-1.section-padding{
	padding-bottom:0;
}
.footer-copyright p{
		color:var(--theme-color) !important;
}
.footer-1 .social a{
	font-size:20px;
	width:40px;
	height:40px;
	display:inline-flex;
	justify-content:center;
	align-items:center;
	border-radius:100%;
	border:1px solid #000;
	margin-right:10px;
}
.footer-1 .widget-title{
    font-size:18px;
    font-weight:500;
}
.widget ul li{
    display:flex;
    color:#fff;
    align-items:flex-start;
}
.widget ul li i{
    margin-right:10px;
}

.footer-1 .d-block a{
    display:block;
    margin-top:10px;
}

.footer-1 li,
.footer-1 a,
.footer-1 p{
	color:#222;
	font-size:13px;
	margin-bottom:10px;
}

.footer-1 .logo-ico img{
	max-width:200px;
}


/*==========
Blog-Grid
===============*/
.blog-banner.home1-banner .banner-content{
	padding:30px 0;
	margin:0 auto;
}

/*==========
Blog-left-sidebar
===============*/
.blog-sidebar .sidebar-widget{
	padding:5px;
	margin-bottom:40px;
	box-shadow:3px -3px 1px 1px #2198ef;
}
.blog-sidebar .sidebar-widget .wrapper{
	padding: 20px;
	text-align: center;
	box-shadow:0 0 3px .1px rgba(0,0,0,0.4);
}
.blog-sidebar  h4{
	position:relative;
	padding:5px 0;
	font-size:23px;
	font-weight:400;
	background-color:transparent;
	text-transform:uppercase;
	border:1px solid #222;
	border-radius:2px;
	margin-bottom:25px;
	
}
.blog-sidebar  h4:before{
	content:"";
	position:absolute;
	top:-5px;
	left:2px;
	width:99%;
	height:47px;
	border:1px solid #222;
	border-radius:2px;
}

.blog-sidebar .post-search .search-form{
	display:flex;
	justify-content: center;
	align-items: center;
	margin-bottom:0;
}
.blog-sidebar  .search-form button{
	background-color:black;
	color:#fff;
	padding:6px 10px;
	border:2px solid #80808096;
}
.blog-sidebar  .search-form input{
	border:2px solid #80808096;
	border-radius:1px;
	border-right:0;
}
.blog-sidebar .sidebar-widget ul li a{
	display:block;
	text-align:left;
	padding:5px 10px;
}
.blog-sidebar .sidebar-widget ul li a span{
	float:right;
	vertical-align: middle;
}
.blog-sidebar .sidebar-widget ul.popular-widget li a{
	display:flex;
	width:100%;
	justify-content:space-between;
	align-items: center;
	padding:0 10px;
	padding-right:0;
	margin-top:20px;
}
.blog-sidebar .sidebar-widget ul.popular-widget li a span:nth-child(2){
	display:block;
	width:100%;
	margin-left:20px;
	vertical-align: middle;


}

.blog-sidebar{
	padding:5px;
	padding-left:0;
}

.blog-sidebar .sidebar-widget .tags a{
	padding:5px;
	text-align:center;
	border:2px solid #80808096;
	margin-top:5px;
	border-radius:3px;
	transition:.3s;
	font-size:11px;
}
.blog-sidebar .sidebar-widget .tags a:hover,
.blog-sidebar .sidebar-widget .tags a:focus{

	background-color:#2198ef;
	border-color:#2198ef;
	color:#fff;


}
.it-blog-left.h1-blog .post-wrapper{
	padding:0 30px;

}

.it-blog-left.h1-blog .post-heading h6{
	font-size:16px;
}

/*==========
Blog Details
===============*/
/*sub header*/
.subheader {
	background-image: url(https://via.placeholder.com/1920x250);
	text-align: center;
	height: 300px;
	background-position:center center;
	padding-top: 140px;
	position:relative;
	overflow:hidden;
	background-size:cover;
}
.subheader:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #2d3e52;
	opacity: 0.5;
}
.subheader h1 {
	line-height: 1;
}
.subheader ul li a {
	color: #fff;
}
.subheader ul li a:after {
	content: '/';
	color: #fff;
	font-size: 14px;
	margin: 0 5px;
}
.subheader ul li.active {
	color: #d89976;
}
/*sidebar*/
.sidebar_wrap .sidebar .sidebar_widgets {
	padding: 20px;
	background: #fff;
	border: #eee solid 1px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.sidebar_wrap .sidebar .sidebar_widgets .widget_title {
	/*margin: -20px -20px 20px;*/
	padding: 20px;
}
.sidebar_wrap .sidebar .sidebar_widgets .categories li {
padding: 10px;
    background-color: white;
    position: relative;
    margin-bottom: 10px;
    border: 1px solid #d7c2b9;
}
.sidebar_wrap .sidebar .sidebar_widgets .categories li:last-child {
	margin-bottom: 0px;
}
.sidebar_wrap .sidebar .sidebar_widgets .categories li a {
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.post-heading h2{
    font-size:25px;
    font-weight:600;
    text-transform:capitalize;
    margin-top:25px;
}

.sidebar_wrap .sidebar .sidebar_widgets .popular_post li .post .post-wrapper {
	width: 100%;
	display: flex;
	margin-bottom:15px;
	align-items: center;
}
.sidebar_wrap .sidebar .sidebar_widgets .popular_post li .post .post-wrapper .popular_post_img {
	flex: 0 0 80px;
	max-width: 80px;
	height: 80px;
}
.sidebar_wrap .sidebar .sidebar_widgets .popular_post li .post .post-wrapper .popular_post_title {
	flex: 0 0 calc(100% - 80px);
	max-width: calc(100% - 80px);
	padding: 5px 15px;
	width: 100%;
}
.sidebar_wrap .sidebar .sidebar_widgets .popular_post li .post .post-wrapper .popular_post_title h6 {
	margin-bottom: 10px;
}
.blog-details .post-details-tags-social .tags a, .sidebar_wrap .sidebar .sidebar_widgets .tags a {
	display: inline-block;
	padding: 5px 15px;
	border: #eee solid 1px;
	margin: 0 5px 10px 0;
	background: #ffffff;
	font-weight: 600;
	border-radius: 50px;
	color: #838383;
}
.blog-details .post-details-tags-social .tags a:hover, .sidebar_wrap .sidebar .sidebar_widgets .tags a:hover {
	border-color: #d89976;
	color: #d89976;
}


.fr-blog-details .author-img{
	display:flex;
	justify-content:space-between;
	align-items: flex-end;
	transform: translate(30px,-70px);
	
	
}
.it-blog-details .author-bio{
	display:flex;
	justify-content:space-between;
	height:180px;

}

.it-blog-comments .it-author-avtar img{
	border-radius: 50%;
}


.fr-blog-details .post-article{
	padding:45px 30px;
	padding-bottom:20px;

}
.it-blog-comments{
	padding:10px 30px;
	margin-top:20px;
}
.it-comments-body{
	padding:10px 40px;
	padding-bottom:0;
}
.it-post-date p{
	margin:30px 0;
	font-weight:600;
	color:#222;
}
.it-comments-body p.comment{
	font-size:14px;
}

.it-blog-comments h5{
	padding-top:50px;
	padding-bottom:20px;
	border-top:1px solid #ccc;
}
.it-blog-comments .it-author-avtar a{
	display: block;
	
}
.it-blog-comments li ul{
	padding-left:150px;
}

.it-blog-comments .it-author-avtar a img{
	width:150px;
	height:150px;
}
.it-comments-user{
	display:flex;
	align-items: center;
	margin-bottom:50px;
}

.it-blog-details .author-social{
	margin-top:32px;
}

.author-social a{
	padding:15px 20px;
	background-color:#2198ef;
	color:#fff;
	margin-left:10px;
}
.it-blog-details .author-name{
	display:flex;
	justify-content:space-between;
	align-items: center;
}
.author-name .reply-arrow{
	display:flex;
	justify-content: center;
	align-items: center;
	border:2px solid #2198ef;
	color:#2198ef;
	width:60px;
	font-size:22px;
	height:40px;

}
.it-blog-details .submit-btn{
	font-size:16px;
}

.post-content h4,
.post-content p{
	margin-bottom:40px;
}
/*=========
Contact-form
====================*/
.section-padding.contact-page{
    padding-top:100px;
}
.contact-page h4{
	font-size:16px;
	padding:8px;
	background-color:#fff;
}
.contact-page .contact-info{
	padding: 20px;
    background-color: #f4ded4;
   
    border: 1px solid #eee;
    
   
    box-shadow: 0 0 20px rgb(151 117 117 / 10%);



}
.contact-page p{
    color:#221A15;
	font-size:18px;
	margin-bottom:5px;
   
}
.contact-page input,
.contact-page textarea{
    
	border-color:#d7c2b9;
	background-color:#fff;
}

.contact-page .section-title{
	padding-bottom:30px;
}
.contact-page form{
	padding: 30px;
    background: #fff;
    border: 1px solid #eee;
    height:100%;
    box-shadow: 0 0 20px rgb(151 117 117 / 10%);
}

/*==========
Homepage With Slider
===============*/
.h2-banner{
	padding:50px 0;
}

.h2-banner .carousel-item:before{
	position:absolute;
	content:"";
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.6);
}
.h2-banner .banner-content{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	padding-bottom:0;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:flex-start;
	z-index:5;
	max-width:700px;
	width:100%;
	height:100%;
	
}
.h2-banner .banner-content h2{
	color:#fff;
}
.h2-dev .img-wrapper {
	width:100%;
	height:100%;
}
.h2-dev .img-wrapper .img-box img{
	width:400px;
	height:400px;

}
.h2-dev .img-wrapper .img-box.img-top img{
	top:0;
	left:0;
	z-index:1;
	position:absolute;
}
.h2-dev .img-wrapper .img-box.img-bottom img{
	right:0;
	bottom:0;
	z-index:2;
	position:absolute;
}
.h2-dev .content-wrap{
	padding:20px;
}
.h2-dev .content-wrap ul{
	padding:30px 0;
}

.h2-dev .content-wrap ul li{
	margin-bottom:30px;

}
.h2-dev .content-wrap ul li span{
	margin-right:20px;
	color:#2222228f;
	font-size:14px;
}

/* -- Artist and category template */
.minMax-form {
      width: 10px;
    }
    .price-input {
  width: 100%;
  display: flex;
  margin: 30px 0 35px;
}
.price-input .field {
  display: flex;
  width: 100%;
  height: 45px;
  align-items: center;
}
.field input {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 19px;
  margin-left: 12px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #999;
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.price-input .separator {
  width: 130px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}
.slider,
.range-input{
    display:none;
}
/*.slider {*/
/*  height: 5px;*/
/*  position: relative;*/
/*  background: #ddd;*/
/*  border-radius: 5px;*/
/*}*/
/*.slider .progress {*/
/*  height: 100%;*/
/*  left: 25%;*/
/*  right: 25%;*/
/*  position: absolute;*/
/*  border-radius: 5px;*/
/*  background: #17a2b8;*/
/*}*/
/*.range-input {*/
/*  position: relative;*/
/*  display:none;*/
/*}*/
/*.range-input input {*/
/*  position: absolute;*/
/*  width: 100%;*/
/*  height: 5px;*/
/*  display:none;*/
/*  top: -5px;*/
/*  background: none;*/
/*  pointer-events: none;*/
/*  -webkit-appearance: none;*/
/*  -moz-appearance: none;*/
/*}*/
/*input[type="range"]::-webkit-slider-thumb {*/
/*  height: 17px;*/
/*  width: 17px;*/
/*  border-radius: 50%;*/
/*  background: #17a2b8;*/
/*  pointer-events: auto;*/
/*  -webkit-appearance: none;*/
/*  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);*/
/*}*/
/*input[type="range"]::-moz-range-thumb {*/
/*  height: 17px;*/
/*  width: 17px;*/
/*  border: none;*/
/*  border-radius: 50%;*/
/*  background: #17a2b8;*/
/*  pointer-events: auto;*/
/*  -moz-appearance: none;*/
/*  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);*/
/*}*/

/* Support */
.support-box {
  top: 2rem;
  position: relative;
  bottom: 0;
  text-align: center;
  display: block;
}
.b-btn {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.b-btn.paypal i {
  color: blue;
}
.b-btn:hover {
  text-decoration: none;
  font-weight: bold;
}
.b-btn i {
  font-size: 20px;
  color: yellow;
  margin-top: 2rem;
}

.btn {
  width: 100%;
}
.product-grid6 {
    height:565px;
    width: 100% ;
  overflow: hidden;
 
  position: relative;
  border-radius:10px;
  
  
  margin-bottom:30px;
  

}
.product-grid6 .product-image6 {
  overflow: hidden;
  display: flex;
    align-items: center;
    justify-content: center;
  
  height:330px;
}

.product-grid6 .product-image6 a {
  display: block;
}
.product-grid6 .product-image6 img {
  width: 95%;
  height:100%;
  object-fit:contain;
  /*max-height:350px;*/
  transition: all 0.5s ease 0s;
}

.product-grid6 .product-content {
 margin-top:20px;
}

.product-grid6 .title {
 
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 10px;
  transition: all 0.3s ease 0s;
}
.product-grid6 .title a {
  color: #000;
  font-size:16px;
}
.product-grid6 .title a:hover {
  color: #2e86de;
}
.product-grid6 .price {
  font-size: 18px;
  font-weight: 600;
  color: #2e86de;
}
.product-grid6 .price span {
  color: #999;
  font-size: 15px;
  font-weight: 400;
  text-decoration: line-through;
  margin-left: 7px;
  display: inline-block;
}
.product-grid6 .social {
  background-color:transparent;
  width:auto;
  padding: 0;
  margin: 0;
  position:absolute;
  top:10px;
  right:10px;
  list-style: none;
  z-index: 1;
  transition: all 0.5s ease 0s;
}
.product-grid6 .social li {
  display:block;
}

.btnOpenForm i{
    display:none;
}

.painting-product .btnOpenForm{
    text-align:center;
    margin-top:20px;
    font-size: 13px;
    text-transform:uppercase;
    padding: 12px 20px;
    border-radius: 2px;
    background-color: var(--theme-color);
    color: #fff;
    font-weight:500;
    width:100%;
    border:0;
    display:block;
}
.pr-details-page .btnOpenForm{
    
    font-size: 13px;
    text-transform:uppercase;
    padding: 12px 20px;
    border-radius: 2px;
    background-color: var(--theme-color);
    color: #fff;
    font-weight:500;
   text-align:center;
    border:0;
    display:block;
    
}

.col-md-1.btnOpenForm1 {
    background-color: #d89976;
    display: flex;
    align-items: center;
    justify-content: center;
}
.share a{
    width: 30px;
    height: 30px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-right:20px;
    background-color:var(--theme-color);
    color:#fff;
    
}




.product-grid6 .social li a {
  color:#fff;
  font-size: 16px;
  line-height: 45px;
  text-align: center;
  height:30px;
  width: 30px;
  margin: 0 7px;
  border-radius: 50px;
  display: flex;
  background-color:#000;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.product-grid6 .social li a:hover {
  color:var(--theme-color);
  
 
}


@media only screen and (max-width: 990px) {
  .product-grid6 {
    margin-bottom: 30px;
  }
}


    .filter .dropdown p {
  padding: 5px 11px;
    font-size: 14px;
    margin-bottom: 0px;
    font-weight: 500;
    /* text-transform: uppercase; */
    line-height: 20px;
    background-color: white;
    height: 30px;
     width:250px;
    }
    .filter .dropdown select{
     width:250px;
     
    /* border: 1px solid #b6b6b6; */
    border: 0;
    padding: 6px;
    border-radius: 2px;
    color: black;
    background: white;
    }

.filter h6 {
  color:#000;
  font-size:13px;
  margin-bottom:0;
  margin-right:20px;
}
.painting-product .filter .row{
    justify-content:center;
}


.filter .dropdown{
    flex:none;
    margin-right:30px;
}
.filter .dropdown .dropdown-col{
    width:100%;
    max-width:260px;
    position:relative;
}

.drop {
  padding-left: 20px;
  font-size: 14px;
}
.custom-control-label {
  color: grey;
}
.check {
  padding-left: 20px;
}
.innerf {
  padding: 15px 10px;
  border-top: 1px solid #ebebeb;
}
.innerf p {
  font-size: 14px;
      font-weight: bold;

}




.drop1 {
  padding: 15px 10px;
}
.pad {
  padding: 20px 20px;
}
@media(min-width:991px){
.container-fluid{
 padding:0 40px;   
}
}
.bottom-products .blog-card{
    background:#fff;
}
.bottom-products .blog-card a.btn{
    padding:8px 16px;
    margin-top:10px;
    display:block;
}

/* --- Blog page------ */
.blog-page .blog-card{
    height:825px;
	background-color:inherit;
	margin-bottom:30px;
	border-radius:10px;
	position:relative;
	overflow: hidden;
	
}
.blog-page .blog-meta{
	padding:10px;
	padding-top:20px;
}
.blog-page .grid .grid-item img{
	margin-bottom:10px;
}

.blog-meta span.date{
	padding:5px;
	color:#000;
	font-size:12px;
	font-weight:600;
	margin-bottom:10px;
	display:block;

}
.blog-page p{
	font-size:12px;

}
.blog-page a.btn{
	background-color:var(--theme-color);
	border:0;
	color:#fff;
	padding: 8px 15px;
	text-transform:capitalize;
}

#footer{
    background:#000;
}
#footer h5,
#footer p,
#footer a{
    color:#fff;
}
#footer a:hover{
    color:var(--theme-color);
}

.wrapper.signup-page {
  padding:70px;
 }
 .signup-page .sign-inner{
     display:flex;
     justify-content: center;
 }
  .wrapper .image-holder {
    width: 40%; }
  .wrapper .form-inner {
    width: 40%; }

.image-holder {
  background: url("https://anyahhartdubai.com/public/coded-setups/0.46.jpeg.jpg") no-repeat;
  background-size: cover;
  background-position:right center;

  }
  .signup-page .form-control::placeholder{
      font-size:12px;
      color:#eee;
  }


  .image-holder img {
    display: none; 
  }

.form-inner {
  background:#d89976;
  padding-top:3vh;
  padding-left: 3vw;
  padding-right: 3vw; 
}



.signup-page form {
  width: 100%; }
  
 .signup-page .form-header img{
     object-fit:cover;
     max-width: 120px;
    margin-top: 10px
 } 

.signup-page .form-header {
  text-align: center;
  margin-bottom: 39px; }
.signup-page label {
  margin-bottom: 11px;
  display: block; }

.signup-page .form-group {
  margin-bottom: 26px;
  position: relative; }

.signup-page .form-control {
  border: 1px solid #d7c2b9;
  border-radius: 5px;
  width: 100%;
  height: 45px;
  background: none;
  padding: 0 19px;
  color: black;
  font-size: 17px; }
  .form-control.error {
    border-color: #fd677a !important;
    background: url("../images/error.png") no-repeat center right 19px; }
  .form-control.valid {
    background: url("../images/valid.png") no-repeat center right 19px; }

@media(min-width:768px){


.form-row{
   display:flex;
   justify-content:space-between;
   /*align-items:center;*/
}
.form-row .col-md-6{
  padding-right:10px;
}

}

.bottom-link p{
  font-size:17px;
}

.bottom-link a{
  color:#fff;
  text-underline-position: under;
}

.form-error {
  margin-top: 10px;
  display: inline-block; }

.signup-page button {
    background-color: #d89976;
  border: none;
  width: 100%;
  height: 46px;
  border-radius: 22.5px;
  margin: auto;
  margin-top: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  
  color: #000;
  text-transform: uppercase;
  font-size: 17px;
  overflow: hidden;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s; }
  .signup-page button:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out; }
 .signup-page button:hover {
    color: white; }
  .signup-page  button:hover:before {
      -webkit-transform: scaleX(1);
      transform: scaleX(1); }

.socials {
  text-align: center;
  margin-top: 59px; }

.socials-icon {
  display: inline-flex;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 19px;
  color: #fff;
  transition: all 0.5s ease;
  margin-right: 19px; }
  .socials-icon:hover {
    background: #fff;
    border: 1px solid transparent;
    color: #ff97a4; }
  .socials-icon:last-child {
    margin-right: 0; }

.signup-page p {
  font-family: "Muli-SemiBold";
  color: #000;
  margin-bottom: 22px; }

.signup-page h3{
    margin:0;
}  

/*======================
4. Blog Details
========================*/
.blog-details .post .post-wrapper .post-img, .blog-details .post .post-wrapper .blog-meta .blog-video iframe {
max-height: 802px;
    position: relative;
    overflow: hidden;
    margin-bottom:20px;
}
.blog-details .post .post-wrapper .blog-meta .post-meta-box {
	display: flex;
	justify-content: center;
	
}
.blog-details .post .post-wrapper .blog-meta .post-meta-box .post-meta {
	display: flex;
	
}
.blog-details .post .post-wrapper .blog-meta .post-meta-box .post-meta a{
    border-radius: 20px;
    background-color: #eae5ab;
    color: var(--theme-color);
    margin-left: 10px;
    padding: 5px 18px;
}
.blog-details .post .post-wrapper .blog-meta .post-meta-box .post-meta .post-date {
	position: absolute;
	right: 0;
	height: 75px;
	margin-top: 0;
	left: 20px;
	top: 20px;
	max-width:400px;
	
}
.blog-details .post-categories{
    background-color:#FFDBC9;
    
    display: flex;
    height: 30px;
    width: 150px;
    /* padding: 36px 28px; */
    
    color: #939292;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.blog-details .post .post-wrapper .blog-meta .post-meta-box .post-meta .post-date p{
    width:50px;
    height:50px;
    font-size:17px;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
}

.blog-details .post .post-wrapper .blog-meta .post-heading h2 {
	font-size: 30px;
	font-weight: 600;
	text-transform:capitalize;
}
.blog-details .post .post-wrapper .blog-meta .post-heading h2:after {
	content: '';
	display: block;
	width: 80px;
	height: 2px;
	background: #d89976;
	margin-top: 20px;
}
.blog-details .post .post-wrapper .blog-meta .post-author {
	display: flex;
	align-items: center;
	margin-right: 15px;
	flex-wrap: wrap;
	width: auto;
	border: none;
}
.blog-details .post .post-wrapper .blog-meta .post-author .author-img {
	margin-right: 15px;
	flex: 0 0 40px;
	max-width: 40px;
	height: 40px;
	border-radius: 50%;
}
.blog-details .post-details-tags-social .tags-box {
	display: flex;
	align-items: flex-start;
}
.blog-details .post-details-tags-social .tags {
	margin-left: 15px;
}


.blog-details .post-details-tags-social .social-media-box ul li {
	display: flex;
	align-items: center;
	margin-left: 10px;
}
.blog-details .post-details-tags-social .social-media-box ul li a {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	z-index: 1;
}
.sidebar_wrap .sidebar .sidebar_widgets {
padding: 20px;
    background: #f4ded4;
    /* border: #ccc solid 1px; */
    margin-top: 20px;
}
.sidebar_wrap .sidebar .sidebar_widgets .widget_title {
	/*margin: 0px 0px 0px;
	padding: 0 0 20px 0;
	position: relative;*/
	text-align: left;
	
	padding: 10px 0px; 
}
.sidebar_wrap .sidebar .sidebar_widgets .widget_title:after {

	display: block;
	width: 80px;
	height: 2px;
	background: #fff;
	margin: 20px 0 auto;
}
.sidebar_wrap .sidebar .sidebar_widgets .widget_title h5 {
	font-size: 36px;
	line-height: 1;
	font-weight: 600;
	font-style: normal;
	color: #765848;
}
.blog-details .post-details-tags-social .social-media-box ul li .social-number {
	padding: 2px 10px;
	border-radius: 0px 15px 15px 0;
	margin-left: -8px;
	z-index: 0;
	font-size: 14px;
}
.fb {
	background-color: #3b5998;
}
.tw {
	background-color: #1da1f2;
}
.yt {
	background-color: #d89976;
}
.ldin {
	background-color: #0077b5;
}
@media(min-width:768px){
    .blog-details .post-author {
	display: flex;
	align-items: center;
	width: 100%;
}
.blog-details .post-details-tags-social .social-media-box ul {
	justify-content: flex-end;
}

}
.blog-details .post-author{
    margin:30px 0;
}

.blog-details .post-author .author-img {

	width: 60px;
	height: 60px;
	margin-right: 15px;
	border-radius: 0%;
}
.blog-details .post-author .author-caption {
	flex: 0 0 calc(100% - 165px);
	width: 100%;
	position: relative;
}


.blog-details .post-author .author-caption h5 {
	margin-bottom: 10px;
}
.blog-details .post-author .author-caption .authorpost {
	top: 0;
	position: absolute;
	right: 0;
}
.pagination-btn nav ul {
	justify-content: space-between;
	margin:20px 0;
}
.pagination-btn a{
    background:var(--theme-color);
    color:#fff;
}

.comment-box .children, .comment-box .comments {
	margin-bottom: 35px;
}
.comment-box .children {
	padding:30px 0;
	border-top:1px solid #eee;
	
	
}
.comment-box .comments li.comment {
	list-style: outside none none;
	padding-left: 0;
	margin-bottom: 20px;
	background: inherit;
	padding:15px;
}
.comment-box .comments li article {
	display: flex;
	width: 100%;
	position: relative;
	margin-bottom: 20px;
}
.comment-box .comments li article .comment-avatar {
	margin-right: 20px;
	float: left;
	overflow: hidden;
	height: 80px;
	
}
.comment-box .comments li article .comment-content {
	float: right;
	width: calc(100% - 50px);
}
.comment-box .comments li article .comment-content .comment-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
	flex-wrap: wrap;
}
.comment-box .comments li article .comment-content .comment-meta .comment-meta-reply .comment-reply-link {
	font-size: 20px;
	padding: 0 15px;
}
.comment-box .comments li article .comment-content .comment-meta .comment-meta-header .post-date .date {
	display: inline-block;
	padding: 8px 15px;
	position: relative;
	line-height: 10px;
	font-size: 14px;

	position: relative;
	color: inherit;
}

/*=============
MEDIA QUERIES
================*/


@media (max-width: 767px) {
  .wrapper .form-inner {
    
   display: block;
  }
  .wrapper .image-holder {
    height: auto; 
    display: none;
  }

}

/*==========
Media Queries
===============*/
@media(max-width:991px){

	.section-title p{
		padding:0 15px;
	}
.logo .logo-ico img{
    width:140px;
}
	.mr-nav{
		padding:12px 0;
	}
	
	.mr-nav .signup{
		display:block;
	}
	.footer-2 .footer-bottom:before{
		left:25%;
	}

	.mr-nav .menu-btn{
		display:block;
	}
	.h1-exp .exp-content h5{
		font-size:20px;
	}

	.h1-about .about-content h4{
		margin:20px 0;
		font-size:25px;
	}

	.h1-about .about-content p{
		margin:25px 0;
	}

	.h1-store .pro-content{
		margin-bottom:20px;
	}
	.h1-store .panel-heading .nav-tabs{
		justify-content:center;
	}
	

	.h1-gallery .masonary .width-1{
	flex:50%;
	}

	.h1-gallery .masonary .width-2{
	flex:50%;
	}

	.h1-blog  .post-wrapper{
		padding-right:10px;
	}

	.h1-blog.it-blog-left .post-wrapper{
		padding:0 10px;
	}
	

.dk-footer-box-info
{
	position:relative;
}
.footer-left-widget{
	padding-left:0;
}
.dk-footer .contact-us .contact-info,
.dk-footer .contact-us.contact-us-last{
	margin-left:0;
}
.contact-icon{
	position:relative;
}
.dk-footer .contact-icon i{
	margin-right:20px;
}

.h1-store .filter-option{
	display:flex;
	position:relative;
	overflow-x:scroll;
}
.dk-footer .contact-us{
		padding:0;
}

}


@media(max-width:765px){
	h2{
		font-size:36px;
	}
h1{
	font-size:36px;
	
}
	.h1-gallery .img-overlay .img-links{
		margin:30px 0;
	}

	.sidenav-overlay .sidenav-menu{
		width:100%;
	}

	.h1-about .about-content.right,
	.h1-about .about-content.left{
		padding:0;
		margin-top:20px;
		

	}
	.h1-store .panel-heading .nav-tabs{
		justify-content:space-around;
	}
	.h1-store .panel-heading .nav-tabs li{
		padding:10px;
		background-color:inherit;
		border:0;
		border-bottom:1px solid #2198ef;
		box-shadow:none;
		margin-right: 5px;
	}
	.h1-store .panel-heading .nav-tabs li.active{
		background-color:inherit;
		border-bottom:2px solid #2198ef;
	}

	.h1-store .panel-heading .nav-tabs li a{
		color:#222;
	}

	.h1-gallery .img-overlay h5{
		font-size:18px;
		text-align:center;
	}
	

	.h1-blog  .post-wrapper{
		padding-right:0;
	}


	.h1-footer .terms li{
		display:block;
		text-align:center;
		margin-bottom:10px;
	}
	.h1-blog.it-blog-left .post-wrapper{
		padding:0;
	}

	.blog-banner h1{
		font-size:35px;
	}
	

	.it-blog-comments,
	.post-article{
		padding:10px 20px;
	}

	.it-comments-user{
		display:block;
	}
	.it-comments-body{
		padding:10px 20px;
	}
	.it-blog-comments li ul{
		padding:10px 30px;
		padding-right:0;
	}
	.it-blog-details .author-img img{
		width:150px;
		height:150px;
	}
	.it-blog-details .author-social{
		display: flex;
		flex-direction:column;
		margin-top:5px;

	}
	.it-blog-details .author-social a{
		margin-top:5px;
	}
	.it-contact .form-row{
		padding-right:0;
	}
	.section-padding{
		padding:50px 0;
	}
	.section-title{
		padding-top:50px;
		padding-bottom: 35px;
	}

	.admission .img-left img{
		display:none;
	}
	
	.s-gallery .slide-img img{
			height:auto;
			margin-bottom:30px;
	}
	.art-day a{
	    width:100vw;
	    height:100vw;
	    margin-bottom:20px;
	    font-size:18px;
	}
	.wrapper.signup-page{
	    padding:70px 25px;
	}
    .wrapper.signup-page .form-inner{
        width:100%;
        padding:20px;
    }

}

section.h1-products.section-padding.explore.bg-theme-light {
    margin-top: 0px;
}


.image-container
{
    width: 300px;
    position: relative;
    display: inline-block;
    padding-left: 18px;
}

 .arttimeless {
            width: 80%;
            margin: auto;
            text-align: center;
        }
        .arttimeless .row {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
        }
        .arttimeless .row-1 {
            height: 300px; /* Adjust height as needed */
        }
        .arttimeless .row-1 img {
            max-height: 100%;
            max-width: 100%;
        }
        .arttimeless .row-2 {
            height: 300px; /* Same height as row-1 */
        }
        .arttimeless .column {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .arttimeless .column img {
            max-height: 100%;
            max-width: 100%;
        }
        
        
        
        .pricerqst {
    margin-top: 20px;
    font-size: 13px;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 2px;
    background-color: var(--theme-color);
    color: #fff;
    font-weight: 500;
    width: 100%;
    border: 0;
    display: block;
}

.allpaintings {
    border: 1px solid #d89976 !important;
    background-color: #fff8f6 !important;
    color: #d89976 !important;
    padding: 16px 50px;
    border-radius: 30px;
}


@media (max-width: 768px) {
    .widget.social {
    position: relative;
    left: 12px;
}
}
    
.artistclass
{
    background-color:#fff8f6 !important;
    color: #d89976 !important;
    font-size:18px;
}
}