/*======================
   00.  fonts
========================*/

@font-face {
    font-family: 'ITC Cheltenham Std';
    src: url('../font/CheltenhamStd-Bold.eot');
    src: url('../font/CheltenhamStd-Bold.eot?#iefix') format('embedded-opentype'),
        url('../font/CheltenhamStd-Bold.woff2') format('woff2'),
        url('../font/CheltenhamStd-Bold.woff') format('woff'),
        url('../font/CheltenhamStd-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Cheltenham Std';
    src: url('../font/CheltenhamStd-Book.eot');
    src: url('../font/CheltenhamStd-Book.eot?#iefix') format('embedded-opentype'),
        url('../font/CheltenhamStd-Book.woff2') format('woff2'),
        url('../font/CheltenhamStd-Book.woff') format('woff'),
        url('../font/CheltenhamStd-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Cheltenham Std';
    src: url('../font/CheltenhamStd-BookItalic.eot');
    src: url('../font/CheltenhamStd-BookItalic.eot?#iefix') format('embedded-opentype'),
        url('../font/CheltenhamStd-BookItalic.woff2') format('woff2'),
        url('../font/CheltenhamStd-BookItalic.woff') format('woff'),
        url('../font/CheltenhamStd-BookItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}



:root{
	--primary-color:#FBA400;
	--verde-color:#00432C;
	--verde-claro:#015940;
	--burdeos-color:#631927;
	--claro-color:#F9B233;
	--black:#000;
	--white:#fff;
	--font-cheltenham:'ITC Cheltenham Std';
}
/*======================
   02. Basic css
========================*/
html{
	font-size: 62.5%;
}
a, button, img{
	transition: 0.3s;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}


body {
	color: var(--black);
	line-height: 1.2;
	font-weight: 400;
	font-style: normal;
	font-size: 2rem;
	background-color: var(--primary-color);
	font-family: var(--font-cheltenham);
}
a{
	text-decoration: none;
	color: var(--black);
}
a:hover, button:hover{
	text-decoration: none;
	color: var(--black);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}
img{
	max-width: 100%;
}
li{
	list-style: none;
}
.container{
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
.row{
	margin-left: -1.5rem;
	margin-right: -1.5rem;
}
.row>div{
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
button:focus,
a:focus,
input:focus,
textarea:focus{
	outline: none;
}
.primary-btn{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: var(--primary-color);
	color: var(--verde-color);
	border-radius: .5rem;
	padding: 1.7rem;
	gap: .5rem;
	text-transform: uppercase;
	font-size: 1.6rem;
	line-height: 2.4rem;
	font-weight: 700;
	letter-spacing: .05rem;
	transition: .3s ease-in-out;
}
.primary-btn img{
	width: 1.4rem;
}
.primary-btn:hover {
    background-color: #F9B233;
    color: var(--verde-color);
}
.secondary-btn{
	display: inline-block;
	background-color: var(--verde-color);
	color: var(--white);
	text-transform: uppercase;
	padding: 1.7rem;
	font-size: 1.6rem;
	line-height: 2.4rem;
	font-weight: 700;
	letter-spacing: .05rem;
	text-align: center;
	border-radius: .5rem;
}
.secondary-btn:hover{
	background-color: var(--verde-claro);
	color: var(--white);
}
/* page loader  */
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
}
.loader3 {
	width: 6.0rem;
	height: 6.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 6.0rem;
	height: 6.0rem;
	border-radius: 100%;
	background: var(--primary-color);
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}



/*======================
    Header Css
========================*/
header{
	background-color: var(--black);
	padding: 3rem 0;
}
.header-content{
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.header-content .logo{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
}
.header-content .logo img{
	width: 58rem;
}
.header-quick-action{
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.header-quick-action a{
	display: flex;
	align-items: center;
	color: var(--primary-color);
	gap: 1rem;
}
.hamburger-text{
	font-style: normal;
}
.header-quick-action a span{
	height: 4.5rem;
	width: 4.5rem;
	border-radius: 50%;
	background-color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-quick-action a img{
	width: 1.9rem;
}
/*======================
    banner Css
========================*/

.banner{
	position: relative;
	height: 61.5rem;
	overflow: hidden;
	display: flex;
	align-items: end;
	padding-bottom: 8rem;
}
.banner-text{
	max-width: 67rem;
}
.banner-text h1{
	font-size: 5rem;
	line-height: 5.4rem;
	margin-bottom: 2rem;
}
.banner-text p{
	margin-bottom: 2rem;
}

.banner-big-img{
	width: 102rem;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 0;
}
.birth-year{
	width: 30rem;
	position: absolute;
	bottom: 4rem;
	left: 50%;
	transform: translateX(-50%);
}

/*======================
    feature Css
========================*/
.feature{
	padding: 3.5rem 0;
}
.feature-slider .owl-stage{
	padding-left: 0 !important;
}
.feature-box{
	font-style: italic;
	height: 36rem;
	padding: 3rem;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid var(--claro-color);
	transition: .3s ease-in-out;
	border-radius: .5rem;
}
.feature-box:hover{
	border: 5px solid var(--burdeos-color);
	box-shadow: 0 .5rem 2rem 0 #63192740;
}
.feature-box p{
	font-size: 2.5rem;
	line-height: 2.8rem;
}
.feature-slider .owl-nav{
	display: flex;
	justify-content: space-between;
}
.feature-slider .owl-next, .feature-slider .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    background-size: 2rem;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 0;
    height: 4rem;
    width: 4rem;
}
.feature-slider .owl-prev{
	left: -4rem;
	background-image: url(../img/left-arrow.svg);
}
.feature-slider .owl-next{
	right: -4rem;
	background-image: url(../img/right-arrow.svg);
}
/*======================
    free Css
========================*/
.free{
	padding: 6rem 0;
	background-color: var(--black);
}
.free-content-wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.free-content{
	max-width: 43.8rem;
}
.free-content h2{
	font-size: 4rem;
	line-height: 4.5rem;
	color: var(--white);
	margin-bottom: 2rem;
}
.free-content h3{
	margin-bottom: 1rem;
	font-size: 2.5rem;
	line-height: 3rem;
	color: var(--white);
}
.free-content p{
	color: var(--white);
	margin-bottom: 4.5rem;
}
.free-small-img img{
	width: 33.5rem;
}
.free-big-img img{
	width: 55.3rem;
}
.free-button{
	display: flex;
	align-items: center;
	gap: 2rem;
}
.free-button .primary-btn{
	width: 28rem;
}
.cut-icon{
	height: 3.5rem;
}
/*======================
    branding product Css
========================*/
.branding-product{
	padding-top: 6rem;
	padding-bottom: 4rem;
}
.branding-content-wrap{
	display: flex;
}
.branding-person img{
	width: 49.2rem;
}
.thinking-mu {
    margin-top: 13rem;
    margin-left: -7rem;
    margin-right: 3rem;
}
.thinking-mu img{
	width: 21.7rem;
}
.branding-product-img img{
	width: 30.7rem;
}
.branding-product-details{
	max-width: 62.6rem;
	margin-left: auto;
}
.branding-product-details h2{
	font-size: 4rem;
	line-height: 4.5rem;
	margin-bottom: .5rem;
}
.branding-product-details h3 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-top: 0.5rem;

}
.branding-product-details p {
    margin-bottom: 5rem;
    font-size: 2rem;
    margin-top: 2rem;
}
.branding-product-details h5{
	font-size: 4rem;
	line-height: 4.5rem;
	margin-bottom: .5rem;
	color: var(--verde-color);
}
.branding-product-details .secondary-btn{
	width: 28rem;
}


/*======================
    product area Css
========================*/
.product-area{
	padding: 6rem 0;
}
.product-row{
	display: flex;
	justify-content: space-between;
	gap: 10rem;
	margin-left: -1.5rem;
	margin-right: -1.5rem;
}
.product-row>div{
	width: 33.33%;
}
.product-item{
	position: relative;
}
.product-item .product-img img{
	height: 25rem;
}
.product-item.second .product-img img{
	height: 19.3rem;
}
.product-item.second .product-img img:last-child{
	height: 29rem;
}

.product-item .coming-soon{
	position: absolute;
	width: 16.5rem;
	top: -2.7rem;
	left: -2.7rem;
}
.product-item .product-img{
	outline: 2px solid var(--claro-color);
	margin-bottom: 2rem;
	height: 36rem;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .3s ease-in-out;
	border-radius: .5rem;
	overflow: hidden;
	padding: 3rem;
}
.product-img img:last-child{
	opacity: 0;
	visibility: hidden;
	display: none;
}
.product-item:hover .product-img{
	/* border: .2rem solid var(--burdeos-color); */
	outline: 5px solid var(--burdeos-color);
	box-shadow: 0 .5rem 2rem 0 #63192740;
}
.h-0{
	height: 0;
}
.product-item:hover .product-img img{
	max-height: 100%;
}
.product-item:hover .product-img img:last-child{
	opacity: 1;
	visibility: visible;
	display: block;
}
.product-item:hover .product-img img:first-child{
	opacity: 0;
	visibility: hidden;
	display: none;
}
.product-item h2{
	font-size: 2.5rem;
	line-height: 3rem;
}
.product-item p{
	height: 5rem;
	overflow: hidden;
}
.product-item h3{
	margin-top: 1.5rem;
	font-size: 4rem;
	line-height: 4.5rem;
	color: var(--verde-color);
}
/*======================
    good vibe Css
========================*/
.good-vibe{
	background-image: url(../img/vibes-bg.png);
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	padding-top: 7.3rem;
	padding-bottom: 7.8rem;
	position: relative;
}
.good-vibe .back-top {
    height: 4rem;
    width: 4rem;
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 1.5rem;
}
.good-vibe-row{
	display: flex;
	align-items: center;
}
.good-vibe-row>div{
	width: 100%;
}
.vibe-title{
	max-width: 50.7rem;
	margin: auto;
}
.vibe-title h2{
	font-size: 6rem;
	line-height: 1;
	color: var(--primary-color);
	text-transform: uppercase;
}
.vibe-content{
	max-width: 47.6rem;
	margin: auto;
}
.vibe-content p{
	margin-bottom: 1rem;
	color: var(--primary-color);
}
.vibe-content .primary-btn {
    margin-top: 3rem;
    width: 30.4rem;
    padding: 1.45rem 1.7rem;
}
.vibe-content .primary-btn img{
	width: 3rem;
}
#plalistPopup .modal-dialog{
	max-width: 152rem;
}
#plalistPopup .modal-content{
	background-color: var(--black);
	padding: 5.5rem;
	position: relative;
}
#plalistPopup h2{
	font-size: 4rem;
	line-height: 4.5rem;
	color: var(--claro-color);
	margin-bottom: 4.5rem;
	text-align: center;
}
.modal-inner .btn-close {
    background-color: var(--claro-color);
    height: 4.5rem;
    width: 4.5rem;
    border-radius: 50%;
    opacity: 1;
    background-size: 2.5rem;
	position: absolute;
	top: 3rem;
	right: 3rem;
}
.playlist-row{
	display: flex;
	justify-content: space-between;
	gap: 7rem;
}
.playlist-row>div{
	width: 33.33%;
}
.playlist-card{
	padding: 2rem;
	border-radius: .5rem;
	transition: .3s ease-in-out;
}
.playlist-card:hover{
	background-color: var(--claro-color);
}
.playlist-img img{
	width: 100%;
	margin-bottom: 1.7rem;
	border-radius: .5rem;
}
.playlist-card h3{
	font-size: 2.5rem;
	line-height: 3rem;
	color: var(--claro-color);
	text-transform: uppercase;
}
.playlist-card p{
	font-size: 1.6rem;
	line-height: 2rem;
	color: var(--claro-color);
}
.playlist-card:hover h3, .playlist-card:hover p{
	color: var(--black);
}
.playlist-card>div:last-child{
	display: flex;
	justify-content: space-between;
}
.playlist-card .play-icon{
	opacity: 0;
	border: .1rem solid var(--black);
	border-radius: 50%;
	width: 3.8rem;
}
.playlist-card:hover .play-icon{
	opacity: 1;
}
.modal-inner video {
    width: 100.7rem;
    height: 80rem;
    border-radius: .5rem;
    border: 0.2rem solid var(--primary-color);
    object-fit: cover;
}
.video-modal .modal-content{
	background-color:transparent;
	padding:0;
	border: none;
}
.video-modal .modal-dialog {
    max-width: 100.7rem;
    padding: 0;
	height: 80rem;
}
.video-modal .modal-body{
	padding: 0;
	height: 80rem;
}
.video-modal .btn-close {
    position: relative;
    top: -3rem;
    right: -3rem;
	z-index: 4;
}
/*======================
    cta Css
========================*/
.cta{
	padding-top: 4.5rem;
	padding-bottom: 7rem;
	background-color: var(--burdeos-color);
}
.cta-row{
	display: flex;
}
.cta-row>div{
	width: 100%;
}
.cta-left{
	max-width: 50.7rem;
	margin: auto;
	display: flex;
	justify-content: space-between;
}
.cta-left h2{
	font-size: 4rem;
	line-height: 4.5rem;
	color: var(--primary-color);
	margin-bottom: .6rem;
}
.cta-social ul{
	display: flex;
	gap: 1.5rem;
}
.cta-social a{
	display: block;
}
.cta-social img{
	width: 4rem;
}
.cta-link a{
	display: block;
	margin-bottom: 1rem;
	color: var(--primary-color);
}
.newslatter{
	max-width: 47.6rem;
	margin: auto;
}
.newslatter label{
	color: var(--primary-color);
	margin-bottom: 1.5rem;
}
.newslatter form div{
	width: 100%;
	border-radius: .5rem;
	overflow: hidden;
	height: 5.2rem;
	border: .1rem solid var(--black);
}
.newslatter form button{
	width: 12.2rem;
	border: none;
	border-radius: 0;
	padding: 1.3rem;
}
.newslatter form input {
    width: 35.4rem;
    padding: 1.1rem;
    font-size: 2rem;
	border: none;
}
/*======================
    footer Css
========================*/
footer{
	padding: 1rem 0;
	background-color: var(--black);
}
.footer-content{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.copyright-text p{
	font-size: 1.6rem;
	line-height: 2rem;
	color: var(--primary-color);
}
.copyright-text p a{
	text-decoration: underline;
	color: var(--primary-color);
}
.footer-link{
	display: flex;
}
.footer-link a{
	display: block;
	padding-left: 2rem;
	padding-right: 2rem;
	border-right: .1rem solid var(--primary-color);
	color: var(--primary-color);
	font-size: 1.6rem;
}
.footer-link li:last-child a{
	border: none;
	padding-right: 0;
}




/*======================
    download page Css
========================*/
.download-banner{
	background-color: var(--black);
	display: flex;
	height: 96rem;
	align-items: end;
	padding-bottom: 9rem;
}
.download-banner-content{
	display: flex;
	gap: 17rem;
	justify-content: space-between;
	align-items: center;
}
.download-banner-content img{
	width: 33.5rem;
}
.inner-video-wrap {
    width: 44.9rem;
    height: 59.7rem;
    overflow: hidden;
    border-radius: 3rem;
    border: 2px solid var(--primary-color);
}
.download-banner-content video {
    width: calc(100% + 3rem);
    height: 100%;
    border-radius: 3rem;
    object-fit: cover;
    object-position: center;
}
.download-text{
	max-width: 43.8rem;
}
.download-text h1{
	margin-bottom: .5rem;
	font-size: 4rem;
	line-height: 4.5rem;
	color: var(--white);
}
.download-text h2{
	margin-bottom: 2.5rem;
	font-size: 2.5rem;
	line-height: 3rem;
	color: var(--white);
}
.download-text p{
	color: var(--white);
	margin-bottom: 3rem;
}
.download-banner-content .download-text img{
	width: 7.5rem;
}

.contact{
	padding: 9rem 0;
}
.contact-content{
	display: flex;
	gap: 17rem;
	justify-content: space-between;
}
.contact-content>div{
	width: 100%;
}
.contact-text{
	max-width: 79.5rem;
	margin: auto;
}
.contact-text h2{
	display: flex;
	align-items: center;
	font-size: 4rem;
	line-height: 4.5rem;
	margin-bottom: 4rem;
}
.contact-text h2 img{
	width: 20rem;
	margin-right: 2rem;
}
.contact-text p{
	margin-bottom: 2rem;
}
.contact-form{
	max-width: 65rem;
	margin: auto;
}
.contact-form label{
	display: block;
	margin-bottom: .5rem;
	font-weight: 700;
}
.contact-form form>div{
	margin-bottom: 2rem;
}
.contact-form input{
	width: 100%;
	padding: 1.2rem;
	border: .1rem solid var(--black);
	border-radius: .5rem;
}
.contact-form .checkbox-label{
	display: flex;
	user-select: none;
	font-size: 1.6rem;
	line-height: 2rem;
	font-weight: 400;
}
.contact-form .checkbox-label input{
	display: inline-block;
	width: 2rem;
	height: 2rem;
	margin-right: 1rem;
	border-radius: .5rem;
}
.contact-form .checkbox-label a{
	text-decoration: underline;
}
.contact-form button{
	width: 100%;
	border: none;
}
.contact-form button:hover{
	color: var(--white);
}