
@font-face {
    font-family: 'Arima Koshi';
    src: url('../fonts/ArimaKoshi-Medium.woff2') format('woff2'),
        url('../fonts/ArimaKoshi-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arima Koshi';
    src: url('../fonts/ArimaKoshi-Bold.woff2') format('woff2'),
        url('../fonts/ArimaKoshi-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



body,
html {
  width: 100%;
  height: 100%;
  font-family: 'Arima Koshi';
  font-weight: 500;
  font-style: normal;
}


body {
    color: #000;
    font-size: 18px;
    line-height: 24px;
}

.container{
    width: 1100px;
}



p {
  font-size: 1.3rem;
  line-height: 2.3rem;
}


h1, h2{
	font-size: 2.5rem;
}

h1, h2, h3, h4 {
	font-weight: bold;
	line-height: 150%;
}


a {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    color: #000;
}
a:hover {
    color: #000;
}



figure{
    margin: 0px;
}

.letter-spacing{
    letter-spacing: 1px;
}

.bg-golden {
    background: #000;
}

.bg-purple {
    background: #e7a2cb;
}

.bg-dark-purple {
    background: #ededed;
}

.bg-darker-purple{
	background: #ededed;
}

.text-purple {
    color: #000;
}


/*light purple: #e7a2cb
dark purple: #c978a9
darker purple: #a53579
golden color: #000
*/


.border-grey{
    border: 1px solid #e5e5e5;
}


.text-black{
    color: #000;
}

.text-white a{
    color: #fff;
}


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

.shadow {
    box-shadow: 0 0.3rem 0.8rem rgba(0, 0, 0, 0.15) !important;
}

.border{
    border: 1px solid #555 !important;
}

.round{
    border-radius: 8px;
    overflow: hidden;
}


label {
  margin-top: 15px;
}

.form-control,
.form-control:focus{
	border-radius:0px;
	border: 1px solid #000;
	color: #000;
}

.form-control:focus{
	border-color: #000;
}

.form-control::placeholder {
  color: #000;
  opacity: 0.8;
}



.btn-primary {
  background: #c978a9;
  font-size: 18px;
  font-weight: 400;
  padding: 11px 20px 6px 20px;
  color: #fff;
  border-radius: 0px;
  border: 1px solid #c978a9;
  text-transform: uppercase;
}

.btn-primary:hover{
    background: #fff;
    color: #c978a9;
    text-decoration: none;
    border: 1px solid #c978a9;
}

.btn-primary:focus, 
.btn-primary.focus {
    box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled):active, 
.btn-primary:not(:disabled):not(.disabled).active, 
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #888;
  border-color: transparent;
}



.btn-secondary:focus, 
.btn-secondary.focus {
    box-shadow: none;
}


.bg-gradient{
    background: rgb(1,167,225);
    background: -moz-linear-gradient(180deg, rgba(1,167,225,1) 0%, rgba(1,125,195,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(1,167,225,1) 0%, rgba(1,125,195,1) 100%);
    background: linear-gradient(180deg, rgba(1,167,225,1) 0%, rgba(1,125,195,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#01a7e1",endColorstr="#017dc3",GradientType=1);

}






.preLoader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #ededed;
    z-index: 10;
    display: table;
}

.preLoaderContent {
    vertical-align: middle;
    text-align: center;
    display: table-cell;
}


.lds-ellipsis {
    display: block;
    position: relative;
    width: 64px;
    height: 64px;
    margin: auto;
	
}

.lds-ellipsis div {
    position: absolute;
    top: 27px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #000;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 4px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 4px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 26px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 45px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(19px, 0);
    }
}

#scroll {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: #333;
    text-indent: -9999px;
    display: none;
    z-index: 2;
    border: 1px solid #838383;
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
#scroll:hover {
    background-color:#000;
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}

.icon-whatsapp {
  position: fixed;
  right: 11px;
  bottom: 70px;
  z-index: 2;
  font-size: 42px;
  background: #000;
  padding: 8px 10px;
  border-radius: 50%;
  color: #fff;
}

.icon-whatsapp:hover{
	color: #fff;
	background: #333;
}

header {
	background: #fff;
}

.marginTop{
	margin-top: 150px;
	display: block;
}



header.fixed-top {
    /*animation: smoothScroll 0.5s forwards;*/
	border-bottom: 1px solid #000;
}

header.fixed-top .logo img {
  width: 140px;
  margin: 10px;
}

header.fixed-top .offer{
	display: none;
}




header.fixed-top .navbar .navbar-nav.mainMenu a.nav-link {
	
}


@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }
    100% {
        transform: translateY(0px);
    }
}


.logo{
}

.logo img {
  width: 220px;
  z-index: 2;
  position: relative;
  margin: 15px;
}



.navbar{
    padding: 0px;
    z-index:1;
}

.navbar-dark .navbar-toggler {
    border: 0px;
    background: #000;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.mainMenu {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

ul.main_menu {
  margin-bottom: 0;
}

.navbar .navbar-nav.mainMenu a.nav-link {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  padding: 20px 20px 16px 20px;
  position: relative;
  margin: 0 10px;
}

/*.navbar .navbar-nav.mainMenu a.nav-link:last-child {
  width: 80px;
  pointer-events: none;
}*/

.navbar .navbar-nav.mainMenu a.nav-link:hover,
.navbar .navbar-nav.mainMenu a.nav-link.selected{
	color: #000;
}

.navbar .navbar-nav.mainMenu a.nav-link:hover::after,
.navbar .navbar-nav.mainMenu a.nav-link.selected::after{
	width:100%;
	
}

.navbar .navbar-nav.mainMenu a.nav-link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #000;
  z-index: -1;
  
	-webkit-transition: all .3s;
	-moz-transition: all .34s;
	-o-transition: all .3s;
	transition: all .3s
}

.nav-item .fa-cart-shopping{
	position: relative;
}

.nav-item .badge-light {
  color: #000;
  background-color: #fff;
  position: absolute;
  right: -5px;
  top: 0px;
  border: 2px solid #000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  padding-top: 8px;
  z-index: 22;
}


.banner h2 {
  font-size: 40px;
  line-height: 45px;
}

.banner-slider div{
    position: relative;
}

.banner-slider aside {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: 370px;
}

.banner-slider aside h3 {
  background: rgba(255,255,255,0.8);
  padding: 10px 10px 5px 10px;
}




@keyframes fade-Up {
  
  0% {
    bottom: -40px;
    opacity: 0;
  }
  
  60% {
    bottom: 0px;
    opacity:1;
  }

}

.fade-Up {
  -webkit-animation-name: fade-Up;
  animation-name: fade-Up;
}

@-webkit-keyframes fade-Up {
  
  0% {
    bottom: -20px;
    opacity: 0;
  }
  
  40% {
    bottom: 0px;
    opacity:1;
  }

}





.banner-slider figure {
    width: 100%;
    display: inline-block;
    text-align: right;
    vertical-align: middle;
    position: relative;
	background: #000;
}

.banner-slider figure img{
    width: 100%;

}



.banner-slider .slick-slide {
      padding: 0;
      position: relative;
  }
  
  
.banner-slider .slick-dots {
  bottom: 45%;
  text-align: left;
  padding-left: 20px;
}

.banner-slider .slick-dots li button::before {
  border: 1px solid #fff;
  opacity:1;
}

.banner-slider .slick-dots li:hover button::before {
    background: #eee;
}

.banner-slider .slick-dots li.slick-active button::before {
    background: #fff;
}

.banner-slider .slick-dots  li{
    display: block;
    margin-bottom: 5px;
}

.slick-dotted.slick-slider {
  margin-bottom: 0px !important;
}

@-webkit-keyframes action {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes action {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.scroll-down {
  display: block;
  width: 60px;
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
}

.scroll-down img {
    -webkit-animation: action 1s infinite  alternate;
    animation: action 1s infinite  alternate;
    width: 25px;
    margin: 12px auto;
}

.product-slider .slick-slide div div{
	padding: 0 15px;
	position: relative;
}

.product-slider .slick-prev, 
.product-slider .slick-next{
	margin-top: -15px;
}

.product-slider .slick-slide aside a{
	color: #fff;
}

.product-slider .slick-slide aside {
  background: #000;
  text-align: center;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 0%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 25px;
  padding: 15px;
  height: 70px;
}

.product-slider .slick-slide:hover aside{
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
}

.product-slider .slick-slide img{
	width: 100%
}


.product-slider.wedding-slider .slick-slide figure {
  display: flex;
  justify-content: center;
}


.product-slider.wedding-slider .slick-slide img {
  width: auto;
  height: 480px;
}


.slick-prev::before, 
.slick-next::before {
  font-size: 35px;
  opacity: 1;
  color: #000;
}

.slick-prev, 
.slick-next{
	width: auto;
	height: auto;
	z-index: 2;
}




.btnPrev {
	position: absolute;
	top: 45%;
	left: 20px;
	z-index:2;
}

.btnNext{
	position:absolute;
	top: 45%;
	right: 20px;
	z-index:2
}

.btnPrev i::before,
.btnNext i::before {
    color: #fff;
	font-size: 30px;
}

.slick-dots {
  bottom: 10px;
}

.slick-dots li button::before {
  width: 16px;
  height: 16px;
  content: '';
  opacity: 1;
  border-radius: 50%;
  background: #666;
}

.slick-dots li:hover button::before {
    background: #000;
}

.slick-dots li.slick-active button::before {
    background: #000;
	opacity: 1;
	width: 18px;
    height: 18px;
}


h2.line {
    position: relative;
    display: inline-block;
}

h2.line::after, h2.line::before {
    position: absolute;
    content: "";
    display: block;
    height: 1px;
    background: #bbb;
    width: 100px;
    
    top: 17px;
}

h2.line::before{
    left:108%;
}

h2.line::after{
    right: 108%;
}




.zoom, .shop-box figure,
.product-slider .slick-slide figure{
    overflow: hidden;
}

.zoom img, .shop-box img,
.product-slider .slick-slide figure img{
    max-height: unset;
	-webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}


.zoom:hover img, .shop-box:hover img,
.product-slider .slick-slide figure:hover img {
    transform: scale(1.15);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}




.nav-tabs {
  border-bottom: 0;
}

.nav-tabs .nav-link {
  border: 2px solid #000000;
  padding: 14px 15px 8px 15px;
  margin: 10px;
  background: #000000;
  color: #fff;
  border-radius: 20px;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active{
	background: #fff;
	color: #000;
	border: 2px solid #000;

}


/*------------ events -------------*/

.event-box {
	margin-bottom: 40px;
}

.event-box figure{
	position: relative;
}

.event-box figure aside {
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0px;
  right: 0px;
  bottom: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0px;
  opacity: 0;
  color: #fff;
  font-size: 25px;
  padding: 15px;
}

.event-box:hover figure aside {
  height: 100%;
  top: 0;
  bottom: 0;
  opacity: 1;
}

.event-box a{
	text-decoration: underline;
}

/*--------- shop box -----------*/


.shop-box{
	margin-bottom: 30px;
	border: 1px solid transparent;
}

.shop-box:hover{
	border: 1px solid #000;
}

.shop-box figure{
	margin-bottom: 20px;
}

.shop-box a:hover{
	text-decoration: none;
}


.shop-box h4{
	font-size: 1.4rem;
	line-height: 1.4rem;
}


.shop-box h4:first-of-type{
	border-bottom: 1px solid #000;
	display: inline-block;
}

/*------- Product details image gallery ------------*/

.column {
  float: left;
  width: 50%;
  padding: 10px;
}

/* Style the images inside the grid */
.column img {
  opacity: 0.8; 
  cursor: pointer; 
}

.column img:hover {
  opacity: 1;
}

/* Clear floats after the columns */
.gallery-row:after {
  content: "";
  display: table;
  clear: both;
}

/* The expanding image container */
.gallery-container {
  position: relative;
}

/* Expanding image text */
#imgtext {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-size: 20px;
  background: #000;
  padding: 4px 6px 0px 6px;
}

/* Closable button inside the expanded image */
.closebtn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 35px;
  cursor: pointer;
}





.slider-galeria div, .slider-galeria-thumbs div {
  outline: 0;
}

.slider-galeria span {
  display: block;
  margin: 0 10px 0 10px;
}

.slider-galeria span img,
.slider-galeria-thumbs span img{
	width: 100%;
    border: 2px solid #b08e25;
}

.slider-galeria-thumbs span {
  display: block;
}

.slider-galeria-thumbs .slick-current span {
  background: #000;
  color: #3498db;
}

.slider-galeria .slick-prev::before, 
.slider-galeria .slick-next::before{
	opacity: 1;
	color: #fff;
	
}

.slider-galeria .slick-prev {
	left: 20px;
}

.slider-galeria .slick-next{
	right: 20px;
}



.js-image-zoom__zoomed-image{
	z-index: 10;
}


h1.product_title {
  font-size: 2rem;
}



#item-size .btn, {
  border-radius: 0;
  margin-right: 15px;
  border: 1px solid #000;
  width: 46px;
  height: 45px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 18px;
}

#item-size .btn.active{
	background: #000;
	color: #fff;
}

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: none;
}


.category-list {
  list-style: none;
  padding: 0;
}

.category-list li {
  margin-bottom: 10px;
  font-size: 1.2rem;
  position: relative;
}

.category-list li::after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  right: 6px;
  top: 6px;
  transform: rotate(45deg);
  border-right: 2px solid #000;
  border-top: 2px solid #000;
}
.category-list li:hover::after {
	right: 0px;
}

td.xoo-cp-remove .xoo-cp-remove-pd {
  color: #000;
}

.xoo-cp-qtybox input[type='number'] {
    -moz-appearance:textfield;
}

.xoo-cp-qtybox input::-webkit-outer-spin-button,
.xoo-cp-qtybox input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}



.location-box{
	position: relative;
	color: #000;
	overflow: hidden;
	display: block;
}

.location-box p{
	font-size: 1.7rem;
	line-height: 2.4rem;
}

.location-box i{
	margin-bottom: 20px;
	font-size: 3rem;
}


.location-box:hover img{
	transform: scale(1.15);
}


.location-box aside {
  position: absolute;
  left: 40px;
  right: 40px;
  top: 40px;
  bottom: 40px;
  background: rgba(255,255,255,0.9);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.location-box img{
	width: 100%;
}

.woocommerce a.remove {
  font-size: 1.8em;
  color: #fff !important;
  background: #000;
  padding: 3px;
  border: 2px solid #000;
}

.woocommerce a.remove:hover {
  color: #000 !important;
  background: #fff;
}

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3 {
  font-size: 1.3rem;
  line-height: 1.3rem;
}

.select2-container--default .select2-selection--single {
  border-radius: 0;
}

.cart_totals p {
  font-size: 1.2rem;
}

.form-row.notes label {
  margin-top: 0;
}

footer{
	background: #ededed;
}



footer h4 {
  font-size: 20px;
  margin: 20px 0;
}


footer, footer p{
    font-size: 16px;
    line-height: 22px;
    color: #000;
}

.footer-menu a {
	display: block;
}

footer a, footer a:hover{
    color: #000;
}

footer .media{
	display: inline;
}

footer .media a{
	text-decoration: none;
}

footer .media i::before {
    font-size: 20px;
}

footer .media a:hover i::before {
    color: #000;
    border-bottom: 3px solid #000;
}

footer .media i {
  margin: 0 0 0 10px;
}

.copyrights{
    border-top: 1px solid rgba(54, 53, 53, 0.5);
	margin-top: 20px;
}

.copyrights, .copyrights p, .copyrights a{
    font-size: 13px;
}


.bg-shadow{
    -webkit-box-shadow: 0px 2px 7px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 2px 7px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 2px 7px 0px rgba(0,0,0,0.2);
}


.product-slider .slick-slide aside, .category-list li::after,
.btn-primary, .btn-secondary, footer .media a i, header .logo img,
.location-box img, .location-box a:hover img, .event-box figure aside, .event-box:hover figure aside{
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}


/*----cookie---*/
#gdpr {
    padding: 20px;
    background: #000;
    color: #FFFFFF;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
#gdpr p {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 0;
    text-align: center;
}
#gdpr p a {
    color: #fff;
}
#gdpr .btn-primary {
    color: #333;
    background: #f7f7f7;
    font-size: 15px;
    margin-right: 6px;
    text-transform: uppercase;
    border: 1px solid transparent;
    width: 10%;
    padding: 6px 12px;
    display: inline-block;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    border-radius: 1px;
}
.woocommerce form .password-input, .woocommerce-page form .password-input {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
}
@media only screen and (max-width:1200px) {
	
	
    .container {
        width: 100%;
        max-width: unset;
    }
	
	.navbar .navbar-nav.mainMenu a.nav-link,
	header.fixed-top .navbar .navbar-nav.mainMenu a.nav-link {
	    border-bottom: 0;
		text-align: right;
		padding: 12px 6px 6px 6px;
		font-size: 17px;
	}
	
	.location-box p{
	  font-size: 1.4rem;
	  line-height: 2rem;
	}
	
	.location-box aside {
	  left: 10px;
	  right: 10px;
	  top: 10px;
	  bottom: 10px;
	  padding: 20px;
	}
	
	.location-box figure img{
		min-height: 300px;
	}
	
	.nav-item .badge-light{
		right: -20px;
		top: -4px;
		width: 27px;
		height: 27px;
		padding-top: 6px;
	}
    
    
}

@media only screen and (max-width:991px) {
    
	h2{
	}

	
	p {
	  font-size: 16px;
	  line-height: 20px;
	}


    
    .navbar{
        background: transparent;
    }
    
    
    
    header{
        padding: 10px 0;
		position: relative;
    }
	
	.banner{
		margin-top: 0px;
	}
	
	
	header .logo img,
	header.fixed-top .logo img {
	  width: 120px;
	  margin: 8px 10px 5px;
	}
    
    .top-menu{
        display: none;
    }
	
	
	.navbar .navbar-nav.mainMenu a.nav-link:hover, 
	.navbar .navbar-nav.mainMenu a.nav-link.selected {
	  background: #fff;
	  color: #000;
	}
    
    .navbar .navbar-nav.mainMenu a.nav-item:hover, 
    .navbar .navbar-nav.mainMenu a.nav-item:focus, 
    .navbar .navbar-nav.mainMenu a.nav-item.active {
        border-bottom: 0;
    }
	
    
    
}

@media only screen and (max-width:767px) {
    
	
	
	h1, h2, h1.product_title{
	font-size: 1.6rem;
	}
	
	h3, .h3,
	.location-box a {
	  font-size: 1.3rem;
	}
	
	h4, .h4 {
	  font-size: 1.1rem;
	}
	
	.logo {
	  display: none;
	}
	
	.mainMenu {
		margin-top: 15px;
		align-items: revert;
	}
	
	.navbar .navbar-nav.mainMenu a.nav-link::after {
		display: none;
	}
    
    .banner-slider aside h2 {
        font-size: 25px;
        text-align: center;
        line-height: 28px;
    }
    

    .banner-slider aside p{
        display: none;
    }
    
    .banner-slider.subpage aside {
        top: 50%;
        bottom: auto;
    }
	
	.column {
	  width: 25%;
	}
    
    
    
    .btn-primary {
      padding: 9px 16px 5px 16px;
    }
    
    .slick-dotted.slick-slider {
        margin-bottom: 45px;
    }
    
    #tab-about::after {
        background: transparent;
    }
	
	.img-form {
		display: none;
	}
	
	ul.page-numbers {
	  list-style: none;
	  display: flex;
	  flex-wrap: wrap;
	  padding: 0;
	  justify-content: center;
	}
	
	.page-numbers .page-numbers {
	  border-radius: 0;
	  margin: 6px;
	  border: 1px solid #000;
	  padding: 7px 12px 6px 12px;
	  cursor: pointer;
	  font-size: 15px;
	  text-align: center;
	  display: block;
	}
 
   
    footer h3 {
        margin: 25px 0 15px;
    }
    
    #scroll{
        bottom: 20px;
    }
	
	.slider-galeria-thumbs .slick-slide span {
	  margin: 10px;
	}
	
	#gdpr .btn-primary{
		margin: 10px auto 0px;
		display: block;
		width: 120px;
	}
    
}


@media only screen and (max-width:576px) {
    
	
    .banner-slider figure img {
        height: 170px;
		object-fit: cover;
    }
	
	.banner-slider aside img {
	  width: 260px;
	}
	
	.footer-menu p {
	  margin-bottom: 0;
	  line-height: 24px;
	}
    .banner-slider aside h3{
        margin-left:30px;
         margin-right:30px;
    }
	
    
    
}

@media only screen and (max-width:420px) {
    
    
    
    
}

    
.main_menu .current_page_item  a.nav-link{
    color: #eeb1a8 !important;
}


