@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: #fff;
	--mc: #dc222f;
	--mc2: #dac047;
	--hc: #151515;
	--bc: #777;
	--hff: 'Heebo', sans-serif;
	--bff: 'Work Sans', sans-serif;
	--extra-color: #666;
	--rankero-border-color: #ccc;
    --rankero-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
}
html{
	overflow-x: hidden;
	padding: 0px;
	margin: 0px;
}
*:after,
*:before,
*{
	box-sizing: border-box;
}
body{
	font-family: var(--bff);
	font-size: 18px;
	letter-spacing: 0;
	line-height: 1.33;
	font-weight: 400;
	color: var(--bc);
	position: relative;
	word-break: break-word;
	background-color: #f5f5f5;
}
.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: 1470px;
	padding: 0 20px;
	margin: 0 auto;
}
.container.wide{
	max-width: 1760px;
}
.container.small{
	max-width: 900px;
}
.container:after,
.clearfix:after,
.clearfix:before{
	content: '';
	clear: both;
	display: table;
}
/*------------------------------------------------------------------*/
/*	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;
}
.rankero_fn_content{
	position: relative;
}
/*------------------------------------------------------------------*/
/*	02) Site Structure
/*------------------------------------------------------------------*/
.rankero_fn_main,
.rankero_fn_main *{
	box-sizing: border-box;
}
.rankero_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;
}



a.rankero_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.rankero_fn_price_btn .text{
    padding: 0 20px 0 10px;
}
a.rankero_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.rankero_fn_price_btn .icon .fn__svg{
	position: absolute;
	top: 5px;
	left: 5px;
	width: 20px;
	height: 20px;
}
a.rankero_fn_price_btn:hover{
	background-color: #348f30;
}
a.rankero_fn_price_btn:hover .icon{
    color: #348f30;
}


/* Totop Button */
.active.rankero_fn_fixed_totop{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.rankero_fn_fixed_totop{
	position: fixed;
	z-index: 98;
	left: 10px;
	bottom: 30px;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	align-items: center;
	transition: .5s;
	opacity: 0;
	visibility: hidden;
	transform: translateY(100px);
	z-index: 999;
}
.rankero_fn_fixed_totop .progress{
	width: 2px;
	height: 80px;
	background-color: #ccc;
	margin-bottom: 10px;
	position: relative;
}
.rankero_fn_fixed_totop .progress span{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	height: 0;
	background-color: #222;
}
.rankero_fn_fixed_totop .text{
	display: block;
	font-size: 14px;
	font-weight: 900;
	font-family: var(--hff);
	color: var(--hc);
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: 0;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	line-height: 80px;
}
/* Mix Mode */
.rankero_fn_fixed_totop{
	mix-blend-mode: difference;
}
.rankero_fn_fixed_totop .text{
	color: #ddd;
}
.rankero_fn_fixed_totop .progress{
	background-color: #333;
}
.rankero_fn_fixed_totop .progress span{
	background-color: #bbb;
}


#header{
	background-color: #151515;
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	right: 0;
	border-bottom: 1px solid #2d2d2d;
}
#header.active .header{
	height: 70px;
}
#header.active .header nav a{
	height: 70px;
	line-height: 70px;
}
#header.active .header .logo img{max-height: 40px;}
.header{
	display: flex;
	justify-content: space-between;
	height: 100px;
	align-items: center;
	transition: .3s;
}
.header .nav{
	flex: auto;
}
.header .logo{
	flex: 0 0 200px;
}
.header .extra{
	flex: 0 0 200px;
	display: flex;
	justify-content: flex-end;
}
.header nav ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	margin-left: -50px;
}
.header nav li{
	margin: 0;
	padding: 0;
	margin-left: 50px;
}
.header nav a{
	display: block;
	text-decoration: none;
	height: 100px;
	line-height: 100px;
	font-size: 20px;
	font-weight: 600;
	font-family: var(--hff);
	color: #cccccc;
	white-space: nowrap;
}
.header nav a.active,
.header nav a:hover{
	color: var(--mc);
}
.header .extra a{
	display: flex;
	align-items: center;
	height: 40px;
	line-height: 40px;
	padding: 0 20px;
	border-radius: 20px;
	text-decoration: none;
	font-size: 14px;
	text-transform: uppercase;
	font-family: var(--hff);
	font-weight: 900;
	letter-spacing: 0;
	color: #fff;
	background-color: var(--mc);
}
.header .extra a:hover{
	opacity: .9;
}
.header .extra span{
	position: relative;
	top: 1px;
}
.header .extra img{
	margin-left: 5px;
}
.header .trigger{
	width: 30px;
	height: 16px;
	position: relative;
	border-top: 2px solid #999;
	border-bottom: 2px solid #999;
}
.header .trigger:after{
	left: 0;
	right: 0;
	position: absolute;
	top: 50%;
	margin-top: -1px;
	content: '';

	height: 2px;
	background-color: #999;
}

.mob_bottom{
	border-top: 1px solid #222;
	padding-top: 24px;
	padding-bottom: 24px;
	display: none;
	overflow: hidden;
}
@media(min-width: 1041px){
	.header .trigger,
	.mob_bottom{display: none !important;}
}
.mob_bottom ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.mob_bottom li{
	margin: 0;
	padding: 0;
	margin-bottom: 3px;
}
.mob_bottom li:last-child{
	margin-bottom: 0;
}
.mob_bottom a{
	display: block;
	text-decoration: none;
	color: #ccc;
	font-size: 18px;
}

.mob_bottom a:hover,
.mob_bottom a.active{
	color: var(--mc);
}


/* Hero Header */
#hero_header{
	background-color: #151515;
	padding: 210px 0 0 0;
	position: relative;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	overflow: hidden;
}
.hero_header .hero_translation span{
	position: absolute;
	display: block;
	line-height: 1;
	padding: 15px;
	padding-bottom: 12px;
	background-color: #151515;
	bottom: 123px;
	right: 103px;
	width: max-content;
	font-weight: 800;
	font-size: 16px;
	font-family: var(--hff);
	text-transform: uppercase;
	color: #b3b3b4;
	text-align: right;
}
.hero_header .hero_translation{
	width: 160px;
	height: 160px;
	border: 2px solid #2d2d2d;
	border-radius: 30px;
	position: absolute;
	right: 100%;
	margin-right: 30px;
	bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero_header .hb_list{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	margin-left: -30px;
}
.hero_header .hbl_item{
	width: 33.3333333333%;
	padding: 0;
	padding-left: 30px;
	margin: 0;
	display: flex;
	text-align: center;
	position: relative;
}
.hero_header .hbl_item:first-child{
	padding-top: 70px;
}
.hero_header .hbl_item:nth-child(3){
	padding-top: 140px;
}
.hero_header .item_in{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 9px;
}
.hero_header .item_in:after{
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: .1;
	background: linear-gradient(to bottom, transparent, #f5f5f5);
	border-radius: 3px 3px 0 0;
}
.hero_header .hbl_position{
	position: absolute;
	right: 6px;
	top: 4px;
	display: block;
	font-weight: 800;
	color: #eee;
	line-height: 1;
	font-family: var(--hff);
	font-size: 48px;
	z-index: 2;
}
.hero_header .hbl_line{
	width: 4px;
	height: 92px;
	background-color: #151515;
}
.hero_header li:nth-child(2) .hbl_line{
	height: 162px;
}
.hero_header li:nth-child(3) .hbl_line{
	height: 22px;
}
.hero_header .hbl_stars{
	margin-bottom: 30px;
}
.hero_header .hbl_title{
	margin: 0;
	padding: 0;
	font-weight: 800;
	font-size: 30px;
	color: #eee;
}
.hero_header .hbl_featured{
	display: block;
	width: 100%;
	border-radius: 2px;
	margin-bottom: 25px;
}
.hero_header .hbl__item{
	border: 2px solid #2d2d2d;
	border-radius: 5px 5px 0 0;
	border-bottom: none;
	padding: 18px;
	padding-bottom: 0;
	width: 100%;
	position: relative;
	box-shadow: 0 0 29px 0 rgba(218, 192, 71, 0.1);
}
.hero_header .hero_top{
	text-align: center;
	margin-bottom: 77px;
}
.hero_header .hero_bottom{
	position: relative;
}
.hero_header .left_icon,
.hero_header .right_icon{
	width: 460px;
	height: auto;
	color: #191919;
	display: block;
	position: absolute;
	bottom: 100%;
	z-index: -1;
	margin-bottom: -15px;
}
.hero_header .left_icon{
	left: 0;
	transform: rotateY(180deg);
}
.hero_header .right_icon{
	right: 0;
}
.hero_header .hero_bottom_in{
	max-width: 960px;
	position: relative;
	margin: 0 auto;	
}
.hero_header .subtitle{
	margin: 0;
	padding: 0;
	font-size: 30px;
	font-weight: 700;
	color: #ccc;
	margin-bottom: 37px;
}
.hero_header .options{
	display: flex;
	justify-content: center;
	align-items: center;
}
.hero_header .options ul{
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style-type: none;
	padding: 15px 37px 15px 39px;
	border-radius: 5px;
	background-color: #1d1d1d;
}
.hero_header .options li:after{
	right: 29px;
	top: 50%;
	margin-top: -3px;
	width: 6px;
	height: 6px;
	position: absolute;
	content: '';
	background-color: #d8222e;
	border-radius: 50%;
}
.hero_header .options li:last-child:after{
	display: none;
}
.hero_header .options li{
	margin: 0;
	padding: 0;
	position: relative;
	font-family: var(--hff);
	font-weight: 700;
	font-size: 18px;
	color: #777;
	text-transform: uppercase;
	padding-right: 62px;
}
.hero_header .options span{
	display: block;
	height: 20px;
	letter-spacing: 2px;
	line-height: 21px;
}
.hero_header .options li:last-child{
	padding-right: 0;
}
.hero_header .title{
	font-size: 120px;
	font-weight: 800;
	font-family: var(--hff);
	color: #eee;
	line-height: 113px;
	margin: 0;
	margin-bottom: 38px;
	letter-spacing: -7px;
	letter-spacing: -6.5px;
}
.hero_header .title span{
	color: var(--mc2);
}

.hero_header .o_options{
	position: absolute;
	top: 34px;
	left: 30px;
	width: 640px;
	text-align: left;
}
.hero_header .o_options ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	margin-left: -35px;
	row-gap: 20px;
}
.hero_header .o_options li{
	margin: 0;
	padding: 0;
	margin-left: 35px;
	display: flex;
	align-items: center;
}
.hero_header .o_options li:hover .icon{
	border-color: #555;
}
.hero_header .o_options .icon{
	margin-right: 15px;
	width: 56px;
	height: 56px;
	border: 2px solid #2d2d2d;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
}
.hero_header .o_options .text{
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	font-family: var(--hff);
	color: #b3b3b4;
}


.fn__title{
	text-align: center;
	margin: 0;
	padding: 88px 20px 37px;
	font-weight: 800;
	font-size: 120px;
	line-height: 1;
	letter-spacing: -7.5px;
	position: relative;
	z-index: 1;
}
.fn__title:after{
	content: '';
	position: absolute;
	left: 50%;
	margin-left: -2px;
	width: 4px;
	height: 60px;
	background-color: #cccccc;
	top: 0;
}
.fn__title.light:after{
	background-color: #2d2d2d;
}


/* Main Features */
#main_features{
	position: relative;
	z-index: 5;
	padding-bottom: 50px;
}
#demos .container,
#main_features .container{
	max-width: 1760px;
}
.main_features ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	margin-left: -50px;
	display: flex;
	flex-wrap: wrap;
}
.main_features li{
	margin: 0;
	padding: 0;
	padding-left: 50px;
	margin-bottom: 50px;
	width: 33.3333%;
}
.main_features .item{
	border: 2px solid #dddddd;
	border-radius: 5px;
	box-shadow: 0 0 30px rgba(0,0,0,0.05);
	padding: 64px 58px 0;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.main_features .item .title{
	margin: 0;
	padding: 0;
	font-weight: 600;
	font-size: 30px;
	line-height: 36px;
	margin-bottom: 17px;
}
.main_features .item .desc{
	margin: 0;
	padding: 0;
	color: #777;
	font-size: 18px;
	letter-spacing: -1.5px;
	line-height: 22px;
	margin-bottom: 39px;
}
.main_features .item img{
	display: block;
	width: 100%;
	border-radius: 5px 5px 0 0;
	margin-top: auto;
	border: 1px solid #ddd;
	border-bottom: none;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}




/* Demos */
.demos{
	padding-bottom: 50px;
}
.demos .demos_in{
	display: flex;
	flex-direction: column;
}
.demos .demos_right{
	width: 100%;
}
.demos .demos_right ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	margin-left: -50px;
}
.demos .demos_right .item:hover img{
	filter: sepia(20%) brightness(0.5) invert(10%);
}
.demos .demos_right li{
	margin: 0;
	padding: 0;
	width: 25%;
	padding-left: 50px;
	margin-bottom: 50px;
	position: relative;
}
.demos .demos_right .item:hover .item_rtl{
	opacity: 1;
}
.demos .item_rtl{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	gap: 10px;
	opacity: 0;
}
.demos .item_rtl a{
	background-color: #fff;
	height: 35px;
	border-radius: 5px;
	color: #000;
	text-decoration: none;
	line-height: 36px;
	font-size: 14px;
	padding: 0 20px;
	font-family: var(--hff);
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.5px;
}
.demos .item_rtl a:last-child{
	background-color: #ffd800;
}
.demos .item_rtl a:hover{
	opacity: .9;
}
.demos .demos_right .item_img{
	flex: auto;
	display: flex;
	border: 2px solid #ddd;
	border-radius: 5px;
	position: relative;
}
.demos .demos_right .item_img a{
	display: block;
}
.demos .demos_right .item_img a.ltr{
	z-index: 1;
}
.demos .demos_right .item_img a.rtl{
	z-index: 2;
}
.demos .demos_right .item_img a.ltr:after{
	content: '';
	inset: 0;
	position: absolute;
}
.demos .demos_right .item_img img{
	width: 100%;
	object-fit: cover;
	display: block;
	border-radius: 4px;
	border-bottom: none;
	transition: .3s;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.demos .demos_right .item_title{
	padding: 22px 0 0px 0;
	text-align: center;
}
.demos .demos_right .title{
	font-size: 30px;
	margin: 0;
	padding: 0;
	font-weight: 900;
	line-height: 36px;
}
.demos .demos_right .fn__read_more{
	display: none;
}
.demos .demos_right .desc{
	color: #777;
	margin: 0;
	margin-bottom: 24px;
	display: none;
}



/* Features */
#features{
	background-color: #0e0e10;
	padding: 150px 0;
	color: #777;
}
#features h1,
#features h2,
#features h3,
#features h4,
#features h5,
#features h6{color: #ccc;}



.accordions{
	width: 100%;
}
.accordion{
	margin-bottom: 20px;
}
.accordion a{
	color: var(--mc);
	text-decoration: none;
	border-bottom: 1px solid;
}
.accordion.active .acc_header{
	background-color: #fefefe;
}
.accordion.active .acc_header .plus:after{
	transform: scale(0);
}
.accordion.active .acc_header .plus:before{
	transform: rotate(-90deg);
}
.accordion .acc_header{
	height: 100px;
	box-shadow: 0 0 30px rgba(0,0,0,0.05);
	font-family: var(--hff);
	font-size: 24px;
	line-height: 29px;
	display: flex;
	padding-left: 38px;
	padding-top: 21px;
	padding-bottom: 17px;
	padding-right: 96px;
	font-weight: 700;
	color: var(--hc);
	align-items: center;
	position: relative;
	cursor: pointer;
	background-color: #fff;
	border-radius: 20px;
}
.accordion .acc_content{
	display: none;
	box-shadow: 0 0 30px rgba(0,0,0,0.05);
	font-family: var(--bff);
	color: #666;
	margin-top: 10px;
	padding-left: 38px;
	padding-right: 38px;
	padding-top: 25px;
	padding-bottom: 24px;
	overflow: hidden;
	border-radius: 20px;
	background-color: #fff;
	letter-spacing: -1px;
	line-height: 22px;
}
.accordion .acc_header .plus{
	width: 20px;
	height: 20px;
	display: block;
	position: absolute;
	right: 38px;
	top: 50%;
	margin-top: -10px;
}
.accordion .acc_header .plus:after,
.accordion .acc_header .plus:before{
	content: '';
	position: absolute;
	background-color: var(--hc);
	transition: .3s;
}
.accordion .acc_header .plus:after{
	width: 20px;
	height: 2px;
	top: 50%;
	margin-top: -1px;
	left: 0;
}
.accordion .acc_header .plus:before{
	width: 2px;
	height: 20px;
	left: 50%;
	margin-left: -1px;
	top: 0;
}




#rating{
	background-color: #151515;
	color: #777;
}
#rating h1,
#rating h2,
#rating h3,
#rating h4,
#rating h5,
#rating h6{color: #ccc;}



.fn_reviews ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	margin-left: -50px;
}
.fn_reviews li{
	width: 25%;
	margin: 0;
	padding: 0;
	padding-left: 50px;
	margin-bottom: 50px;
}
.fn_reviews .item{
	padding: 35px 29px 29px;
	background-color: #1d1d1d;
	border: 1px solid #26262b;
	border-radius: 5px;
}
.fn_reviews .review_topic{
	margin: 0;
	padding: 0;
	font-size: 22px;
	line-height: 28px;
	font-weight: 600;
	margin-bottom: 5px;
}
.fn_reviews .review_stars{
	margin-bottom: 15px;
}
.fn_reviews br[data-full]{
	margin-bottom: 20px;
	display: block;
	content: '';
}
.fn_reviews .review_text{
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 15px;
}
.fn_reviews .review_author{
	margin: 0;
	display: flex;
	align-items: center;
	font-size: 14px;
	line-height: 20px;
	text-transform: uppercase;
	font-family: var(--bff);
	color: #ccc;
	font-weight: 400;
}
.fn_reviews .review_author img{
	min-width: 14px;
	margin-right: 10px;
}
.fn_reviews{
	max-height: calc(100% - 250px);
	overflow: hidden;
	position: relative;
}
.fn_reviews:after{
	content: '';
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 0;
	right: 0;
	height: 240px;
	background: rgb(14,14,16);
	background: linear-gradient(180deg, rgba(14,14,16,0) 0%, rgba(14,14,16,1) 100%);
}

.thanks_wrapper{
	padding: 108px 0;
	background-color: #1d1d1d;
	margin-top: -257px;
	position: relative;
	z-index: 2;
}
.thanks{
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
}
.thanks .title{
	margin: 0;
	padding: 0;
	font-size: 60px;
	line-height: 1.17;
	font-weight: 700;
	font-family: var(--bff);
	margin-bottom: 21px;
	color: #ccc;
	letter-spacing: -3px;
}
.thanks .desc{
	margin: 0;
	padding: 0;
	font-size: 18px;
	margin-bottom: 24px;
}
.thanks .btn{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}
.thanks .btn a{
	display: flex;
    align-items: center;
    height: 100px;
    padding: 0 83px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    font-family: var(--hff);
    font-weight: 900;
    letter-spacing: 0;
    color: #fff;
	box-shadow: 0px 2px 10px rgba(100,40,236,.1);
    background-color: var(--mc);
}
.thanks .btn a:hover{
	opacity: .9;
}
.thanks .btn span{
	line-height: 1;
	position: relative;
	top: 1px;
}
.thanks .btn img{
	margin-left: 5px;
	margin-left: 5.75px;
}






.fn__new > *:hover{
	background-color: var(--mc);
	color: #fff;
}
.fn__new > *{
	pointer-events: all;
	display: block;
	text-decoration: none;
	text-align: center;
    left: 0;
    width: 200%;
    -webkit-transform: translateY(-50%) translateX(-50%) translateX(52px) rotate(-45deg);
    -ms-transform: translateY(-50%) translateX(-50%) translateX(52px) rotate(-45deg);
    transform: translateY(-50%) translateX(-50%) translateX(52px) rotate(-45deg);
    margin-top: 52px;
    line-height: 2;
	background-color: #ffd800;
    font-weight: 900;
    color: #000;
    font-size: 16px;
    letter-spacing: 0;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
	font-family: var(--hff);
}
.fn__new{
	pointer-events: none;
	display: block;
	position: absolute;
    top: 0;
    left: auto;
    right: 0;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 150px;
    overflow: hidden;
    height: 150px;
	z-index: 2;
	text-decoration: none;
}






#responsive{
	padding: 32px 300px 36px;
	position: relative;
	background-color: #151515;
	display: flex;
	align-items: center;
	justify-content: center;
}
#responsive:after,
#responsive:before{
	width: 300px;
	height: 4px;
	top: 50%;
	margin-top: -2px;
	background-color: #2d2d2d;
	content: '';
	position: absolute;
}
#responsive:before{left: 0;}
#responsive:after{right: 0;}
#responsive ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	margin-left: -80px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	row-gap: 30px;
}
#responsive li{
	margin: 0;
	padding: 0;
	margin-left: 80px;
}
#responsive li span{
	color: #ccc;
	display: block;
	font-family: var(--hff);
	font-size: 24px;
	font-weight: 800;
	line-height: 1;
}
#responsive li img{
	height: 70px;
	width: auto;
}
#faq{
	border-top: 4px solid #ccc;
	position: relative;
	padding-bottom: 70px;
}
#faq:before{
	content: '';
	position: absolute;
	bottom: 0;
	width: 4px;
	background-color: #ccc;
	height: 60px;
	left: 50%;
	margin-left: -2px;
}
#faq:after{
	content: '';
	position: absolute;
	top: -64px;
	width: 4px;
	background-color: #ccc;
	height: 124px;
	left: 50%;
	margin-left: -2px;
}
.support_top{
	display: flex;
	margin-left: -30px;
	padding-top: 120px;
}
.support_bottom{
	display: flex;
	margin-left: -30px;
}
.support_bottom .support_left,
.support_top .support_left{
	width: 50%;
	padding-left: 30px;
	margin-bottom: 30px;
}
.support_top .support_left .spl_in{
	padding: 0 40px;
}
.support_top .support_left .title{
	font-size: 72px;
	margin: 0;
	padding: 0;
	font-weight: 800;
	letter-spacing: -4px;
	line-height: 60px;
	margin-bottom: 43px;
}
.support_top .support_left .desc{
	font-size: 18px;
	margin: 0;
	padding: 0;
	max-width: 500px;
	letter-spacing: -1.5px;
	line-height: 22px;
}
.support_bottom .support_right,
.support_top .support_right{
	width: 50%;
	padding-left: 30px;
	margin-bottom: 30px;
	display: flex;
	gap: 20px;
}
.support_top .support_right .sr_left_in{
	width: 100%;
	border-radius: 20px;
	background-color: #111;
	padding: 40px;
	flex-direction: column;
	display: flex;
}
.support_top .support_right .sr_left .title{
	margin: 0;
	padding: 0;
	color: #f5f5f5;
	font-weight: 500;
	font-size: 30px;
	line-height: 26px;
}
.support_top .support_right .sr_left .subtitle{
	margin: 0;
	padding: 0;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -1px;
	color: #f5f5f5;
	margin-top: -3px;
	margin-bottom: 162px;
}
.support_top .support_right .sr_left .team_members{
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
	margin-top: auto;
	margin-bottom: 20px;
}
.support_top .support_right .sr_left .team_members img{
	width: 60px;
	height: 60px;
	object-fit: cover;
	display: block;
	border-radius: 20px;
}
.support_top .support_right .sr_left{
	flex: 2.2307;
	min-width: 0;
	display: flex;
}
.support_top .support_right .sr_right{
	flex: 3;
	min-width: 0;
	display: flex;
}
.support_top .support_right .sr_right_in{
	padding: 40px;
	background-color: #fff;
	border-radius: 20px;
	width: 100%;
	flex-direction: column;
	display: flex;
}
.support_top .support_right .sr_right .desc{
	font-size: 18px;
	line-height: 22px;
	margin: 0;
	padding: 0;
	letter-spacing: -1.5px;
	margin-bottom: 45px;
}
.support_top .support_right .sr_right .title{
	margin: 0;
	padding: 0;
	font-size: 30px;
	font-weight: 500;
	line-height: 26px;
	margin-bottom: 11px;
}
.support_top .support_right .sr_right a{
	display: block;
	width: fit-content;
	max-width: 100%;
	background-color: #111;
	height: 50px;
	padding: 0 43px;
	line-height: 51px;
	color: #fff;
	text-transform: uppercase;
	font-family: var(--hff);
	font-size: 14px;
	border-radius: 30px;
	text-decoration: none;
	margin-top: auto;
}

#rating .left_icon,
#rating .right_icon{
	width: 460px;
	height: auto;
	color: #202020;
	display: block;
	position: absolute;
	bottom: 145px;
	z-index: -1;
}
#rating .left_icon{
	left: 0;
	transform: rotateY(180deg);
}
#rating .right_icon{
	right: 0;
}

.fn_animated_text{
	opacity: 0;
}
.fn_animated_text.ready{
	opacity: 1;
}
.fn_animated_text span{
    animation: fn_animated_text 0.8s both;
}
.fn_animated_text em{
	opacity: 0;
}
@keyframes fn_animated_text {
  0% {
    opacity: 0;
  }
  65% {
    opacity: 1;
    text-shadow: 0 0 25px white;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

/* Ex */
.fn__new > *{font-size: 12px;margin-top: 35px;transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);line-height: 1.9;}
.demos .demos_right .title{font-size: 24px;}
.demos .demos_right ul{margin-left: -50px;}
.demos .demos_right li{padding-left: 50px;margin-bottom: 50px;}
@media(max-width: 1200px){
	.demos .demos_right li{width: 50%;}
}
@media(max-width: 768px){
	.demos .demos_right li{width: 100%;}
}
@media(max-width: 480px){.container{padding: 0 10px;}}


@media(max-width: 1600px){
	.hero_header .o_options .text{font-weight: 500;}
	.hero_header .o_options .icon img{width: 14px;height: 14px;}
	.hero_header .o_options .icon{width: 30px;height: 30px;}
	.hero_header .o_options .text br{display: none;}
	.hero_header .o_options{top: 15px;}
	.hero_header .o_options ul{
		flex-direction: column;
		row-gap: 8px;
	}
	.main_features .item{ padding: 44px 38px 0; }
	.header nav li{margin-left: 30px;}
	.header nav ul{margin-left: -30px;}
	.header nav a{font-size: 16px;}
	.fn_reviews ul{margin-left: -30px;}
	.fn_reviews li{padding-left: 30px;margin-bottom: 30px;}
	.fn_reviews .item{padding: 25px 19px 19px;}
}
@media(max-width: 1400px){
	.support_top .support_left .title{font-size: 60px;line-height: 55px;}
	.support_top .support_right .sr_right_in{padding: 30px 20px;}
	.support_top .support_right .sr_left_in{padding: 30px 20px;}
	#responsive:after,
	#responsive:before{width: 100px;}
	#responsive{padding-left: 100px;padding-right: 100px;}
	.demos{padding-bottom: 70px;}
	.demos .demos_right ul{margin-left: -30px;}
	.demos .demos_right li{padding-left: 30px;margin-bottom: 30px;}
	#main_features{padding-bottom: 70px;}
	.main_features ul{margin-left: -30px;}
	.main_features li{padding-left: 30px;margin-bottom: 30px;}
	.fn__title{font-size: 90px;letter-spacing: -5px;padding-top: 91px;padding-bottom: 43px;}
	.thanks .btn a{height: 70px;padding: 0 50px;}
	#rating .left_icon, #rating .right_icon,
	.hero_header .left_icon, .hero_header .right_icon{width: 300px;}
	.hero_header .title{font-size: 90px;line-height: 1.1;letter-spacing: -4px;}
	.hero_header .hero_translation img{width: 40px;height: auto;}
	.hero_header .hero_translation{width: 120px;height: 120px;}
	.hero_header .hero_translation span{right: 20px;bottom: 87px;}
}
@media(max-width: 1200px){
	.support_bottom .support_left{margin-bottom: 0;}
	.support_top .support_left .title br{display: none;}
	.support_top .support_left .desc{max-width: 100%;}
	.support_bottom .support_left, .support_top .support_left{width: 100%;}
	.support_top,
	.support_bottom{flex-direction: column;}
	.support_bottom .support_right, .support_top .support_right{width: 100%;}
	.support_top .support_left .spl_in{padding: 0;}
	.accordion .acc_header{font-size: 18px;}
	.hero_header .title{font-size: 60px;letter-spacing: -1px;line-height: 1.1;}
	.main_features .item .title{font-size: 20px;line-height: 1.3;}
	.main_features ul{margin-left: -30px;}
	.main_features li{padding-left: 30px;margin-bottom: 30px;}
	.header .extra span{display: none;}
	.header nav li{margin-left: 20px;}
	.header nav ul{margin-left: -20px;}
	.fn_reviews li{width: 50%;}
}
@media(max-width: 1040px){
	.fn__title{font-size: 60px;letter-spacing: -2px;}
	#rating .left_icon, #rating .right_icon,
	.hero_header .left_icon, .hero_header .right_icon{width: 150px;}
	a.rankero_fn_price_btn{top: 120px;}
	a.rankero_fn_price_btn .text{display: none;}
	a.rankero_fn_price_btn{padding-right: 20px;}
	body{overflow-x: hidden;}
	.fn_reviews{max-height: inherit;}
	.main_features li{width: 50%;}
	.header .extra,
	.header .nav{display: none;}
}
@media(max-width: 768px){
	.support_right{flex-direction: column;}
	.thanks .title{font-size: 40px;letter-spacing: -1px;}
	.hero_header .options ul{padding-left: 20px;padding-right: 20px;}
	.hero_header .options span{font-size: 14px;letter-spacing: 0;}
	.hero_header .options li:after{right: 10px;width: 2px;height: 2px;margin-top: -1px;}
	.hero_header .options li{padding-right: 24px;}
	.hero_header .o_options{display: none;}
	.hero_header .hbl__item{padding: 18px;border-bottom: 2px solid #2d2d2d;border-radius: 5px;}
	.hero_header .item_in:after{border-radius: 3px;}
	.hero_header .hbl_line{height: 50px !important;}
	.hero_header .hb_list{flex-direction: column;gap: 20px;}
	.hero_header .hbl_item{width: 100%;padding-top: 0 !important;}
	.fn_reviews .review_stars{max-width: 50px;}
	.fn_reviews .review_text{font-size: 13px;line-height: 16px;}
	.fn_reviews .review_author{font-size: 13px;}
	.fn_reviews .item{padding: 15px 10px;}
	.fn_reviews .review_topic{font-size: 18px;}
	.fn_reviews ul{margin-left: -10px;}
	.fn_reviews li{padding-left: 10px;margin-bottom: 10px;}
	.accordion .acc_header{padding-left: 20px;padding-right: 60px;height: auto;font-size: 18px;line-height: 24px;}
	.accordion .acc_header .plus{right: 20px;}
	.main_features .item{padding-left: 20px;padding-right: 20px;}
	.main_features li{width: 100%;}
	.thanks .btn a{height: 40px;border-radius: 20px;padding: 0 25px;}
}
@media(max-width: 480px){
	.hero_header .options span{font-size: 12px;}
	.rankero_fn_fixed_totop{display: none;}
	.hero_header .title{font-size: 50px;}
	.fn_reviews li{width: 100%;}
	.hero_header .hbl_title{font-size: 24px;}
}