.what-i-do-faq{
	margin-top: 3.7vw;
	margin-bottom: 8.4vw;
}
.what-i-do-faq .what-i-do-info{
	height: 25vw;
	display: flex;
	align-items: center;
	justify-content: center;
}
.reels-about{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 3.5vw;
}
.reels-about .img{
	width: 25vw;
	margin-left: 8vw;
}
.reels-about .info{
	width: 35vw;
}
.big-main-title{
	font-size: 2.5vw;
    margin: 0;
    text-transform: uppercase;
	font-family: "montserrat-light";
    font-weight: 400;
    line-height: 1.3;
}
.reels-faqs{
	display: flex;
	justify-content: space-between;
	margin-top: 6vw;
}
.reels-faqs-col{
	width: 48%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.reels-faqs-col:nth-child(2) .reels-faq h3{
	line-height: 1.3;
}
.reels-faq{
	padding: 2.8vw;
	padding-top: 0;
	border: 1px solid #E96B5F;
	margin-bottom: 2.8vw;
}
.reels-faq h3{
	font-size: 4.2vw;
	margin: 0;
	color: #EFB48A;
}
.reels-faq p:nth-child(2){
	margin-top: 0;
}
.reels-tabs{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 3.5vw;
}
.reels-tab{
	margin: 0 1vw;
	cursor: pointer;
	position: relative;
}
.reels-tab:before{
	width: 100%;
	top: 105%;
	height: 2px;
	position: absolute;
	content: '';
	background: var(--main-color);
	transition: .3s;
	transform: scaleX(0);
}
.reels-tab:hover:before,
.reels-tab.active:before{
	transform: scaleX(1);
}
.reels-ideas .ideas{
	margin: 0;
	margin-top: 3vw;
	display: none;
}
.reels-ideas .ideas.active{
	display: flex;
}
.reels-ideas .ideas .info{
	width: 48%;
}
.reels-ideas .ideas .info p:first-child{
	margin-top: 0;
}
.telegram-block{
	padding-top: 4.8vw;
	padding-bottom: 4.8vw;
	background: #FAFAFA;
	margin-top: 6.3vw;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.telegram-block .product{
	width: 25vw;
	margin: 0;
	margin-left: 8.6vw;
}
.telegram-block>.info{
	width: 39vw;
}
.faq-title{
	text-align: center;
}
.faq-cont{
	display: flex;
	justify-content: space-between;
	margin-top: 3.5vw;
	margin-bottom: 6.5vw;
}
.faq-cont .info{
	width: 38vw;
}
.faq-cont .faqs{
	max-width: 38vw;
	min-width: 38vw;
}
.faq-cont .faqs p{
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	transition: .3s;
}
.faq-cont .faqs p .arrow{
	width: 1.4vw;
	transition: .3s;
	transform: rotateX(180deg);
}
.faq-cont .faqs .faq{
	border-bottom: 1px solid #E96B5F;
	padding-top: 1vw;
	overflow: hidden;
	cursor: pointer;
	transition: .3s;
	padding-bottom: 3vw;
}
.faq-cont .faqs .faq.no-active{
	padding-bottom: 0;
}
.faq-cont .faqs .faq.no-active .arrow{
	transform: rotateX(0);
}
.faq-cont .faqs .faq.no-active p:nth-child(2){
	margin-top: 2.5vw;
}
.faq-cont .faqs .faq:hover .arrow{
	padding-top: .7vw;
}
.select{
	width: 85%;
	margin-left: 7.5%;
	position: relative;
	background: var(--main-color);
	cursor: pointer;
	display: none;
}

.selected-block{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 10;
	position: relative;
	transition: .3s;
	border-bottom: 1px solid #fff;
	color: #fff;
}

.selected-block p{
	margin: 0;
	color: #fff;
}
.selected-block .arrow{
	transition: .3s;
}
.select:hover .arrow{
	padding-top: .6vw;
}
.select .arrow path{
	fill: #fff;
}
.select.active .options{
	box-shadow: 5px 5px 25px -8px #aaa;
}
.select.active .selected-block .arrow{
	padding-top: .6vw;
}
.select .options{
	position: absolute;
	top: 0;
	width: 100%;
	background: var(--main-color);
	transition: .5s;
	z-index: 8;
	overflow: hidden;
	color: #fff;
}
.select .options .option{
	transition: .3s;
	cursor: pointer;
	letter-spacing: 0.03em;
}
@media (max-width: 500px) {
	.reels-about{
		flex-direction: column-reverse;
	}
	.reels-about .info{
		width: 100%;
		margin-top: 9.5vw;
	}
	.big-main-title{
		font-size: 6.3vw;
	}
	.reels-about .img{
		margin: 0;
		width: 100%;
		margin-top: 12.5vw;
	}
	.reels-faqs-col{
		width: 100%;
	}
	.reels-faqs{
		flex-direction: column;
	}
	.reels-faq{
		padding: 9.4vw;
		padding-top: 6.3vw;
		margin: 0;
		margin-top: 12.5vw;
	}
	.reels-faq h3{
		font-size: 12.5vw;
	}
	.reels-ideas .ideas.active{
		flex-direction: column;
	}
	.reels-ideas .ideas .info{
		width: 100%;
	}
	.reels-ideas .ideas{
		margin-top: 6vw;
	}
	.reels-tabs{
		display: none;
	}
	.about .info .main-text,
	.reels-ideas .ideas .info p:first-child{
		margin-top: 4.7vw;
	}
	.select{
		font-size: 4.4vw;
		margin-top: 6.3vw;
		display: block;
	}
	.selected-block{
		padding: 4vw 8vw;
	}
	.selected-block .arrow{
		width: 5vw;
	}
	.select:hover .arrow{
		padding-top: 2vw;
	}
	.select.active .selected-block .arrow{
		padding-top: 2vw;
	}
	.select .options{
		padding-top: 12.5vw;
	}
	.select .options .option{
		padding: 4vw 8vw;
	}
	.what-i-do-faq .what-i-do-info{
		height: 92vw;
	}
	.telegram-block{
		flex-direction: column-reverse;
		padding-top: 14vw;
		padding-bottom: 14vw;
	}
	.telegram-block>.info{
		width: 100%;
	}
	.telegram-block .product{
		width: 100%;
		margin: 0;
		margin-top: 12.5vw;
	}
	.faq-cont{
		flex-direction: column;
	}
	.faq-cont .info{
		width: 100%;
		margin-top: 9.4vw;
	}
	.faq-cont .faqs{
		min-width: 100%;
		max-width: 100%;
	}
	.faq-cont .faqs .faq{
		padding-top: 5vw;
		padding-bottom: 7vw;
	}
	.faq-cont .faqs .faq.no-active p:nth-child(2){
		margin-top: 8vw;
	}
	.faq-cont .faqs p .arrow{
		width: 5vw;
	}
}