@charset "utf-8";
/*
/*	Copyright (c) 2022 Frenify
/*	Author: Frenify
/*	This file is made for CURRENT TEMPLATE
/*


	List of CSS codes:
	
	01) Base


/*------------------------------------------------------------------*/
/*	01) Base
/*------------------------------------------------------------------*/
:root{
	--sbc: #eae5d3;
	--mc: #e95e4a;
	--hc: #000;
	--bc: #000;
	--hff: 'Montserrat', sans-serif;
	--bff: 'Montserrat', sans-serif;
	--eff: 'Open Sans', sans-serif;
	--extra-color: #666;
}
html{
	overflow-x: hidden;
	padding: 0px;
	margin: 0px;
}
*:after,
*:before,
*{
	box-sizing: border-box;
}
.yamal_fn_preloader.ready{
	opacity: 0;
	visibility: hidden;
}
.yamal_fn_preloader{
	opacity: 1;
	visibility: visible;
	transition: all .3s ease;
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99999;
	background-color: var(--sbc);
}
.yamal_fn_preloader .spinner{
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -38px 0 0 -38px;
	width: 76px;
    height: 76px;
    background: transparent;
    border-top: 4px solid var(--mc);
    border-right: 4px solid transparent;
    border-radius: 50%;
    -webkit-animation: 1s yamal_spin linear infinite;
    animation: 1s yamal_spin linear infinite;
}
@-webkit-keyframes yamal_spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes yamal_spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
body{
	font-family: var(--bff);
	font-size: 18px;
	letter-spacing: 0;
	line-height: 1.44;
	font-weight: 400;
	color: var(--bc);
	position: relative;
	word-break: break-word;
	background-color: var(--sbc);
	overflow: hidden;
}
.fn__svg{
	fill: currentcolor;
	width: 18px;
	height: 18px;
	opacity: 0;
}
.replaced-svg{
	opacity: 1;
}
p{
	letter-spacing: 0;
	margin-bottom: 20px;
}
h1, h2, h3, h4, h5, h6{
	color: var(--hc);
	font-family: var(--hff);
	line-height: 1.22;
	letter-spacing: 0;
}
h1>a, h2>a, h3>a, h4>a, h5>a, h6>a{
	text-decoration: none;
	color: var(--hc);
}
h1>a:hover, h2>a:hover, h3>a:hover, h4>a:hover, h5>a:hover, h6>a:hover{
	color: var(--mc);
}
input[type="text"]{
	background-color: #181818;
	border-radius: 5px;
	border: 2px solid var(--extra-color);
	font-size: 16px;
	letter-spacing: 0;
	line-height: 46px;
	height: 50px;
	padding: 0 15px;
}
textarea{
	background-color: #181818;
	border-radius: 5px;
	border: 2px solid var(--extra-color);
	font-size: 16px;
	letter-spacing: 0;
	padding: 13px 15px;
	height: 250px;
}
textarea:focus,
input[type="text"]:focus{
	outline: none;
	background-color: #181818;
	border-color: #777;
}
/*------------------------------------------------------------------*/
/*	02) Container
/*------------------------------------------------------------------*/
.container{
	width: 100%;
	max-width: 1360px;
	padding: 0 80px;
	margin: 0 auto;
}
.container.wide{
	max-width: 1760px;
}
.container.small{
	max-width: 900px;
}
.container:after,
.clearfix:after,
.clearfix:before{
	content: '';
	clear: both;
	display: table;
}
@media(max-width: 1400px){.container{padding: 0 40px;}}
@media(max-width: 1040px){.container{padding: 0 20px;}}
@media(max-width: 480px){.container{padding: 0 10px;}}
/*------------------------------------------------------------------*/
/*	02) Some codes
/*------------------------------------------------------------------*/
a.full_link{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.bg_overlay .bg_image,
.bg_overlay .bg_color,
.bg_overlay{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.bg_overlay .bg_color{
	z-index: 2;
}
[class*="mw_"]{
	margin-left: auto;
	margin-right: auto;
}
.mw_650{max-width: 650px;}
.mw_500{max-width: 500px;}
/*------------------------------------------------------------------*/
/*	02) Site Structure
/*------------------------------------------------------------------*/
.yamal_fn_main,
.yamal_fn_main *{
	box-sizing: border-box;
}
.yamal_fn_main{
	position: relative;
	z-index: 2;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
}

/*------------------------------------------------------------------*/
/*	xx) Hero Header
/*------------------------------------------------------------------*/
.yamal_fn_hero{
	background-color: #fff;
	width: 100%;
	position: relative;
	z-index: 1;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	padding: 130px 70px 122px;
	text-align: center;
}
.yamal_fn_hero .logo{
	margin-bottom: 52px;
	display: block;
}
.yamal_fn_hero .logo img{
	max-width: 60vw;
}
.yamal_fn_hero .fn_title{
	margin: 0;
	padding: 0;
	font-size: 36px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.yamal_fn_hero .fn_desc{
	margin: 0;
	padding: 0;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 900;
}
.yamal_fn_hero .fn_desc a{
	color: #000;
	text-decoration: none;
}
.yamal_fn_hero .fn_desc a:hover{
	-webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
	mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
	-webkit-mask-size: 200%;
	mask-size: 200%;
	animation: shine 2s infinite;
	color: var(--mc);
}

/* Intro Section */
.intro{
	position: relative;
	border-top: 4px solid #000;
	padding-top: 83px;
	padding-bottom: 120px;
}


.yamal_fn_pagetitle .item{
	display: flex;
	align-items: center;
}
.yamal_fn_pagetitle .fn__title{
	white-space: nowrap;
	margin: 0;
	padding: 0;
	font-size: 120px;
	font-weight: 900;
	font-family: var(--hff);
	text-transform: uppercase;
	letter-spacing: 0;
	line-height: 1;
}
.yamal_fn_pagetitle .icon{
	width: 150px;
	color: var(--mc);
	padding-top: 1px;
	display: flex;
	justify-content: center;
}
.yamal_fn_pagetitle .icon .fn__svg{
	width: 40px;
	height: 40px;
	display: block;
}
.marquee_wrapper{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
}
.js-marquee-wrapper,
.marquee{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.marquee{
	overflow: hidden;
}
.js-marquee{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: nowrap;
}


a.yamal_fn_price_btn{
	z-index: 9999;
    padding: 0;
    position: fixed;
    top: 200px;
    right: 0;
    text-decoration: none;
    outline-color: transparent;
    outline: none;
    margin: 0;
    display: block;
    width: auto;
    height: 40px;
    font-size: 18px;
    font-weight: 300;
    font-family: 'Trebuchet MS', sans-serif;
    text-align: center;
    line-height: 40px;
    letter-spacing: -.5px;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 0;
	background-color: #222;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    transition: all .3s ease;
}
a.yamal_fn_price_btn .text{
    padding: 0 20px 0 10px;
}
a.yamal_fn_price_btn .icon{
	position: relative;
    display: block;
    width: 30px;
    height: 30px;
    float: left;
    top: 5px;
    background-color: #fff;
    border-radius: 50%;
    margin-left: 10px;
	color: #111;
    transition: all .3s ease;
}
a.yamal_fn_price_btn .icon .fn__svg{
	position: absolute;
	top: 5px;
	left: 5px;
	width: 20px;
	height: 20px;
}
a.yamal_fn_price_btn:hover{
	background-color: #348f30;
}
a.yamal_fn_price_btn:hover .icon{
    color: #348f30;
}

/* Totop Button */
.yamal_fn_totop{
	position: fixed;
	z-index: 15;
	bottom: 46px;
	right: 40px;
	text-decoration: none;
	width: 50px;
	height: 50px;
	border: 4px solid #000;
	border-radius: 100%;
	background-color: #fff;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transform: translateY(120px);
}
.yamal_fn_totop .progress_wrapper{
	position:absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	display: block;
	border-radius: 100%;
}
.yamal_fn_totop .progress{
	position:absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 0;
	background-color: var(--mc);
}
.yamal_fn_totop.active{
	transform: translateY(0);
}
.yamal_fn_totop:after{
	content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -8px;
    z-index: -1;
    border-radius: 0 0 50% 50%;
    border-bottom: 8px solid #000;
}
.yamal_fn_totop .fn__svg{
	width: 16px;
    height: 16px;
    transform: rotate(-90deg);
}







@keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  
  to {
    -webkit-mask-position: -50%;
  }
}

@-webkit-keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  
  to {
    -webkit-mask-position: -50%;
  }
}





.demos_list{
	margin-bottom: 111px;
	padding: 0 70px;
}
.demos_list ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	margin-left: -70px;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.demos_list li{
	margin: 0;
	padding: 0;
	width: 33.3333%;
	padding-left: 70px;
	margin-bottom: 76px;
	transition: all .3s ease;
}
.demos_list li:hover{
	transform: translateY(-10px);
}
.demos_list .img_holder{
	border: 4px solid #000;
	border-radius: 30px;
	position: relative;
	margin-left: -4px;
	margin-right: -4px;
	z-index: 1;
}
.demos_list .coming_soon .img_holder img{
	filter: blur(10px);
	opacity: 0.5;
}
.demos_list .img_holder img{
	width: 100%;
	display: block;
	border-radius: 26px;
}
.demos_list .img_holder:after{
	content: '';
    position: absolute;
    top: 0;
    left: -4px;
    right: -4px;
    bottom: -10px;
    z-index: -1;
    border-radius: 0 0 34px 34px;
    border-bottom: 10px solid #000;
}
.demos_list h3{
	margin: 0;
	padding: 0 20px;
	text-align: center;
	font-weight: 900;
	font-size: 36px;
	padding-top: 28px;
	padding-bottom: 22px;
	line-height: 44px;
}
.demos_list .decor{
	display: flex;
	height: 50px;
	align-items: center;
	justify-content: center;
	width: 100%;
	overflow: hidden;
}
.demos_list .decor span{
	width: 10px;
	min-width: 10px;
	height: 10px;
	display: block;
	background-color: #000;
	border-radius: 100%;
	margin-right: 10px;
}
.demos_list .decor span:nth-child(1),
.demos_list .decor span:nth-child(7){
	margin-right: 30px;
}
.demos_list .decor span:last-child{
	margin-right: 0;
}
.demos_list .item{
	background-color: #fff;
	width: 100%;
	position: relative;
	border: 4px solid #000;
	border-radius: 30px;
}
.demos_list .item:after{
	content: '';
    position: absolute;
    top: 0;
    left: -4px;
    right: -4px;
    bottom: -10px;
    z-index: -1;
    border-radius: 0 0 35px 35px;
    border-bottom: 10px solid #000;
}





.post_format_list{
	max-width: 1170px;
	margin: 0 auto;
	margin-bottom: 163px;
}
.post_format_list ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-left: -30px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}
.post_format_list li{
	width: 240px;
	padding-left: 30px;
	margin-bottom: 36px;
	transition: all .3s ease;
}
.post_format_list li:hover{
	transform: translateY(-10px);
}
.post_format_list .item{
	width: 100%;
	height: 210px;
	border: 4px solid #000;
	border-radius: 30px;
	position: relative;
	background-color: #fff;
}
.post_format_list .item:after{
	content: '';
    position: absolute;
    top: 0;
    left: -4px;
    right: -4px;
    bottom: -10px;
    z-index: -1;
    border-radius: 0 0 34px 34px;
    border-bottom: 10px solid #000;
}
.post_format_list img{
	max-width: 80px;
	margin-bottom: 12px;
}
.post_format_list a{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
	text-decoration: none;
	height: 100%;
	width: 100%;
	-ms-align-items: center;
	align-items: center;
	text-align: center;
	color: #000;
}
.post_format_list a:hover span{
	-webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
	mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
    -webkit-mask-size: 200%;
    mask-size: 200%;
    animation: shine 2s infinite;
    color: var(--mc);
}
.post_format_list span{
	font-size: 24px;
	font-weight: 900;
}
.features_list{
	max-width: 1170px;
	margin: 0 auto;
	margin-bottom: 78px;
}
.features_list ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.features_list li{
	margin: 0;
	padding: 0;
	text-align: center;
	font-size: 24px;
	font-weight: 900;
	margin-bottom: 13px;
}




.extra_btns{
	max-width: 1170px;
	margin: 0 auto;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.extra_btns .purchase_btn{
	padding: 0 152px;
	text-align: center;
	position: relative;
	margin-bottom: 36px;
	max-width: 100%;
	overflow: hidden;
}
.extra_btns .purchase_btn a{
	text-decoration: none;
	display: block;
	border: 4px solid #000;
	padding: 0 36px;
	background-color: var(--mc);
	line-height: 57px;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 0;
	color: #000;
	border-radius: 15px;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.extra_btns .purchase_btn .wing{
	width: 120px;
	height: 4px;
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -2px;
	background-color: #000;
}
.extra_btns .purchase_btn .wing:after,
.extra_btns .purchase_btn .wing:before{
	content: '';
	display: block;
	position: absolute;
	width: 100px;
	height: 4px;
	background-color: #000;
	right: 0;
}
.extra_btns .purchase_btn .wing:before{
	bottom: 100%;
	margin-bottom: 10px;
}
.extra_btns .purchase_btn .wing:after{
	top: 100%;
	margin-top: 10px;
}
.extra_btns .purchase_btn .right_wing:before,
.extra_btns .purchase_btn .right_wing:after{
	left: 0;
}
.extra_btns .purchase_btn .left_wing{
	left: 0;
}
.extra_btns .purchase_btn .right_wing{
	right: 0;
}
.extra_btns .purchase_btn a:hover span{
	-webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
	mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
	-webkit-mask-size: 200%;
	mask-size: 200%;
	animation: shine 2s infinite;
}
.extra_btns .back_demo_btn a{
	text-decoration: none;
	display: block;
	font-weight: 900;
	font-size: 16px;
	text-transform: uppercase;
	line-height: 23px;
	border-bottom: 2px solid #000;
	padding: 0 10px;
	color: #000;
}
.extra_btns .back_demo_btn a:hover{
	-webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
	mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
	-webkit-mask-size: 200%;
	mask-size: 200%;
	animation: shine 2s infinite;
	color: var(--mc);
}


#demos .yamal_fn_pagetitle{
	padding-bottom: 83px;
}


@media(max-width: 1600px){
	.main_title{margin-left: -40px;margin-right: -40px;}
	.yamal_fn_hero{padding-left: 40px;padding-right: 40px;}
	.demos_list ul{
		margin-left: -40px;
	}
	.demos_list{margin-bottom: 103px;}
	.demos_list li{
		padding-left: 40px;
		margin-bottom: 46px;
	}
	.post_format_list{margin-bottom: 113px;}
	.intro{padding-bottom: 100px;}
}
@media(max-width: 1400px){
	.yamal_fn_hero .fn_title{font-size: 30px;}
	.demos_list h3{font-size: 30px;}
}
@media(max-width: 1200px){
	.demos_list li{width: 50%;}
}
@media(max-width: 1040px){
	.yamal_fn_pagetitle .fn__title{font-size: 80px;}
	.yamal_fn_hero{padding-left: 20px;padding-right: 20px;}
	.main_title{margin-left: -20px;margin-right: -20px;}
}
@media(max-width: 768px){
	.yamal_fn_pagetitle .fn__title{font-size: 60px;}
	.post_format_list span{font-size: 18px;}
	.features_list ul{list-style-type: disc;list-style-position: inside;}
	.features_list li{text-align: left;font-size: 18px;}
	.main_title span{padding-left: 50px;padding-right: 44px;}
	.main_title span:before, .main_title span:after{width: 20px;}
	.post_format_list li{padding-left: 20px;width: 200px;margin-bottom: 26px;}
	.post_format_list .item{height: 180px;}
	.post_format_list img{max-width: 60px;}
	.post_format_list ul{margin-left: -20px;}
	.demos_list li{width: 100%;}
	.extra_btns .purchase_btn{padding: 0;}
	.extra_btns .purchase_btn .wing{display: none;}
}