@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swapp');
:root {
    --red: #c75c64;
    --cyan: #4cd2c9;
    --green: #007F7C;
    --yellow: #e8bc7d;
    --blue: #15135e;
}
body{
    font-family: 'Montserrat', sans-serif;
	font-weight: 400;	
}
p{
	font-weight: 400;	
    color: var(--blue);
}
p strong{
	font-size: 600;
}
h1, h2, h3, h4, h5, h6{
	font-weight: 700;
	color: var(--blue);
}
a{
	color: var(--green);
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
ul{
	list-style-type: none;
}
.form-control:focus, 
.form-control:active,
button:focus, button:active{
	box-shadow: none !important;
	outline: none !important;
}
.text-green{
    color: var(--green) !important;
}
.text-cyan{
    color: var(--cyan);
}
.bg-green {
    background-color: var(--green) !important;
}
.bg-cyan {
    background-color: var(--cyan) !important;
}
.bg-yellow {
    background-color: var(--yellow) !important;
}
.bg-teal {
    background-color: var(--teal) !important;
}
.section-100 {
	padding: 100px 0;
}
.section-50 {
	padding: 50px 0;
}
.section-80 {
	padding: 80px 0;
}
.fs-7{
    font-size: 0.9rem;
}
.fs-8{
    font-size: 0.8rem;
}
.fs-9{
    font-size: 0.9rem;
}
.h-200px{
    height: 200px;
}
.h-250px{
    height: 250px;
}
.h-300px{
    height: 300px;
}

/*=================*/
/* NAV */
/*=================*/
.cbp-af-header {
	position: relative;
	background-color: var(--bs-white);
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.75s cubic-bezier(0, 0, 0.2, 1);
    border-bottom: 1px solid #edeef1;
}
.cbp-af-header.cbp-af-header-shrink {
	position: fixed;
	background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: saturate(1) blur(20px) !important;
    -o-backdrop-filter: saturate(1) blur(20px) !important;
    -ms-backdrop-filter: saturate(1) blur(20px) !important;
    backdrop-filter: saturate(1) blur(20px) !important;
    border-bottom: 1px solid #edeef1;
	transition : all 0.3s ease-out;
    -webkit-animation: headerSlideDown .45s ease forwards;
    animation: headerSlideDown .45s ease forwards;
}
@keyframes headerSlideDown{
    0%{-webkit-transform:translateY(-100%);transform:translateY(-100%)}to{-webkit-transform:translateY(0);transform:translateY(0)}
}
.navbar{
	padding: 0;
}
.navbar-brand{
	position: relative;
	height: 40px;
	display: block;
    margin: 0;
    padding: 0;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navbar-brand img{
	height: 100%;
    width: auto;
	display: block;
    margin: 0;
    padding: 0;
}
.navbar-toggler {
	float: right;
	border: none;
	padding: 0;
    transition: color 300ms linear;
}
.navbar-toggler:active,
.navbar-toggler:focus {
	outline: none;
}
.navbar-light .navbar-toggler-icon {
	width: 16px;
	height: 18px;
	background-image: none;
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
    margin-right: 7px;
	border-bottom: 2px solid var(--green);
    transform: translateX(8px);
}
.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before{
	width: 16px;
	position: absolute;
	height: 2px;
	background-color: var(--green);
	top: 0;
	left: 0;
	content: '';
	z-index: 2;
    transform: translateX(-8px);
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after{
	top: 8px;
	width: 24px;
	left: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: translateX(-8px) rotate(45deg);
	width: 24px;
	left: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: translate(-8px, 8px) rotate(-45deg);
	width: 24px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
    transition: all 300ms linear;
}
.nav-item {
    margin: 0;
    padding: 0;
}
.nav-link{
    padding: 25px 10px;
    margin: 0 5px;
    transition: all 0.3s ease-out;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
}
.nav-link:hover{
}
.navbar-light .navbar-nav .active>.nav-link, 
.navbar-light .navbar-nav .nav-link.active, 
.navbar-light .navbar-nav .nav-link.show, 
.navbar-light .navbar-nav .show>.nav-link {
    color: var(--blue);
}
.btn-cart .badge{
    top: 12px;
    right: -9px;
}
.cart-btn-container .cart-btn .badge {
    height: 1.125rem;
    width: 1.125rem;
    font-size: .55em;
}
/*DROPDOWN*/
.navbar .dropdown-menu {
    z-index: 5;
    border-radius: 0;
    background-color: var(--bs-white);
    display: block;
    padding: 10px 5px;
    border: none;
    top: 100%;
    visibility: hidden;
    transform: translateY(5px);
    opacity: 0;
    min-width: 150px;
    margin: 0;
    transform-origin: 0 0;
    transition: all 0.3s ease-out;
}
.navbar .dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-item.active, .dropdown-item:active {
    background-color: var(--cyan);
}
.dropdown-item{
    font-size: 12px;
    font-weight: 700;
    color: #838383;
    padding: 10px 10px;
}

/*=================*/
/* HEADER PRODUCTS */
/*=================*/
.header-products{
	height: 500px;
	background-image: url('https://futuranetwork.com/wp-content/uploads/2021/12/bg-futura-head-e1717102860532.jpg');
	background-size: cover;
    background-position: top;
}
.header-products h1{
    font-size: 3rem;
}

/*=================*/
/* HEADER SM */
/*=================*/
.header-sm{
	height: 300px;
	background-color: var(--green);
}
.header-sm .decor{
    transform: rotate(1deg);
    margin-bottom: -25px;
}
.header-sm h1{
    color: #fff;
    font-size: 3rem;
}
.header-sm-img-1{
    width: 15%;
    margin-right: -55px;
    margin-top: -40px;
    opacity: 0.4;
}
.header-sm-img-2{
    width: 14%;
    margin-left: -112px;
    margin-bottom: 0;
    opacity: 0.4;
    transform: rotate(55deg);
}

/*=================*/
/* BTN */
/*=================*/
.btn{  
	border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: all 200ms linear !important;
    padding: 15px 25px;
	letter-spacing: 0.2px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: none;
}
.btn:active,
.btn:focus{
	box-shadow: none;
}
.btn-small{
    font-size: 11px;
    padding: 7px 15px;
}
.btn-green{
	color: var(--bs-white) !important;
    background-color: var(--green);
}
.btn-green:active,
.btn-green:focus,
.btn-green:hover{
	color: var(--bs-white) !important;
    background-color: #20837b;
}
.btn-black{
	color: var(--bs-white) !important;
    background-color: var(--bs-black);
}
.btn-black:active,
.btn-black:focus,
.btn-black:hover{
	color: var(--bs-white) !important;
    background-color: var(--bs-black);
}
.btn-cyan{
    color: var(--bs-white) !important;
    background-color: var(--cyan);
}
.btn-cyan:active,
.btn-cyan:focus,
.btn-cyan:hover{
    color: var(--bs-white) !important;
    background-color: #20837b;
}

/*=================*/
/* BLOG */
/*=================*/
.blog-box .blog-box-image a figure{
    height: 12rem;
}
.blog-box .blog-box-image img{
    transform: scale(1);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.8, 1);
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}
.blog-box .blog-box-content h2 {
	color: #5ec4b7;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: .01em;
    margin: 25px 0 10px;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
.blog-box .blog-box-content h2 a{
    color: #000;
}
.blog-box .blog-box-content p{
    font-size: 11px;
    line-height: 1.81em;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    position: relative;
    padding: 0;
    color: #ababab;
}

.content-nav{
	background-color: #faf9f7;
	padding: 10px;
}
.content-nav a i{
    color: #cfac9f;
    font-size: 25px;
}
.content-nav a span{
    color: #cfac9f;
    font-family: Montserrat;
    font-size: 11px;
    line-height: 1.81em;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin: 25px 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
.content-nav a span strong{
    color: #000;
}
.content-nav .content-nav-left,
.content-nav .content-nav-right{
	max-width: 50%;
}

.single .section .futura-content p,
.single .section .futura-content ul li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 0.5rem;
    letter-spacing: 0.2px;
    color: var(--bs-black);
}
.single .section .futura-content p strong{
	font-weight: 600;
}
.single .section .futura-content h2{
	font-size: 27px;
}
.single .section .futura-content h3{
	font-size: 24px;
}
.single .section .futura-content h4{
	font-size: 18px;
}
.single .section .futura-content h5{
	font-size: 16px;
}
.single .section .futura-content h6{
	font-size: 14px;
}

.single .section .futura-category  {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    font-size: 11px;
    line-height: 1.81em;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    position: relative;
    vertical-align: top;
    padding: 0;
}
.single .section .futura-category:before {
    margin-right: 20px;
}
.single .section .futura-category:after, 
.single .section .futura-category:before {
    content: '';
    width: 30px;
    height: 1px;
    display: block;
    background-color: #eee6e2;
}
.single .section .futura-category a{
	color: #cfac9f;
}
.single .section .futura-title{
 	color: #25d0c6;
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 1px
}
.single .section .futura-date{
    font-size: 11px;
    line-height: 1.81em;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 0;
    color: #ababab;
}
.single .section .futura-share h4{
}
.widget.widget_categories {
    margin: 0 0 33px;
    text-align: center;
}
.widget.widget_categories ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.widget.widget_categories ul li {
    margin: 0 0 5px;
}
.widget.widget_categories ul>li>a {
    color: #cfac9f;
    font-size: 11px;
    line-height: 1.81em;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.widget h4,
.widget .widget-title {
    color: #1b1b1b;
    font-size: 25px;
    line-height: 1.12em;
    font-weight: 500;
    letter-spacing: .01em;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

.widget-suscribe{
	background-color: #faf9f7;
	padding: 30px 10px;
}
.blog-newsletter {
    position: relative;
}
.blog-newsletter input{
	position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: 0 0 20px;
    padding: 0 10px;
    height: 50px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: grey;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 0;
    box-sizing: border-box;
    outline: 0;
    cursor: pointer;
    -webkit-appearance: none;
    transition: color .2s ease-out,background-color .2s ease-out,border-color .2s ease-out;
}
.blog-newsletter button{
	position: absolute;
    top: 0;
    height: 50px;
    right: 0;
    padding: 0 20px;
    background-color: #cfac9f;
    color: #fff;
    border: none;
}
.blog-newsletter button i{
	font-size: 20px;
}
/*INSTAGRAM*/
.insta{
	height: 500px;
}
.insta img{
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.insta img,
.eapps-instagram-feed-posts-item{
    border-radius: .25rem;
}

/*=================*/
/* FOOTER */
/*=================*/
footer{
    background-color: #855e25;
}
footer .footer-top{
    padding: 100px 0 80px;
}
footer .footer-logo{
    width: 200px;
    filter: brightness(0) invert(1);
}
footer .footer-menu ul li a {
    transition: all .3s ease;
    font-size: 15px;
}
footer .footer-menu ul li a:hover{
    color: #838383 !important;
    text-decoration: underline;
    transition: all .3s ease;
}
footer .copy,
footer .copy a{
	font-size: 12px;
	color: #ffffff;
}
footer hr{
    opacity: 1;
    border-color: #a57f48;
}
body.cfw-side-cart-open {
    overflow: initial;
}
.form-control {
    border-radius: 0;
    padding: 15px 15px;
    font-size: 13px;
}
.form-control:focus{
    border-color: var(--green);
}

@media (max-width: 991px){
	.navbar {
	    padding: 10px 0;
	}
	.navbar-nav {
	    justify-content: center;
	    text-align: center;
	}
	.nav-link {
	    margin: 0;
	    padding: 15px 0;
	    font-size: 15px;
	}
	.header-sm h1,
    .header-products h1 {
	    font-size: 2.5rem;
	}
    .header-sm {
        height: 300px;
    }
    .header-products {
        height: auto;
        padding: 4rem 0 4rem;
    }
    footer .footer-top {
        padding: 80px 0 40px;
    }
}
.grecaptcha-badge {
    visibility: collapse !important;
}
.floating {
	animation-name: floating;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	margin-left: 30px;
	margin-top: 5px;
}
@keyframes floating {
	0% { transform: translate(0, 0px); }
	50% { transform: translate(0, 10px); }
	100% { transform: translate(0, -0px); }
}
.clearfix{
    clear: both;
}

