/*
Theme name: Faura
Description: Описание
Author: Aleksandrlao
Author URI: https://alaoweb.top
*/


:root {
	--white: #fff;
	--black: #000;
}



*, *::before, *::after {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
html {
	font-size: 20px;
}
body {
	background: var(--white);
	color: var(--black);
	font: 0.8rem/1.5 'Gilroy', Arial, sans-serif;
}
.wrapper,
body.nav-active {
	overflow: hidden;
}
.box {
	width: 100%;
	min-width: 320px;
	position: relative;
}
.container {
	width: 100%;
	min-width: 320px;
	max-width: 1440px;
	padding-left: 1rem;
	padding-right: 1rem;
	margin: 0 auto;
	position: relative;
	border-top: 0 solid transparent;
}
.container::after {
	content: '';
	display: block;
	clear: both;
	width: 100%;
	height: 0;
}
.flx {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.wrapper {
	overflow: hidden;
}


a {
	color: var(--blue);
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}

input, 
textarea, 
select,
button {
	font-family: 'Gilroy', Arial, sans-serif;
}
input.error {
	color: #f00 !important;
	border: 1px solid #f00 !important;
}
input.valid {
	border: 1px solid #339e36 !important;
}
input:focus {
	color: var(--black);
}
input::-webkit-input-placeholder {
	color: var(--black);
}
input::-moz-placeholder {
	color: var(--black);
}
input:-moz-placeholder {
	color: var(--black);
}
input:-ms-input-placeholder {
	color: var(--black);
}






.text {
	overflow: hidden;
}
.text p {
	margin-bottom: 1.2rem;
}
.text h2, 
.text h3, 
.text h4, 
.text h5 {
	margin-bottom: 1.2rem;
	color: #000;
	font-size: 1.5rem;
	line-height: 1.3rem;
}
.text h3 {
	font-size: 1.2rem;
}
.text h4, .text h5 {
	font-size: 1rem;
}
.text table {
	width: 100%;
	border-collapse: collapse;
}
.text table tr td {
	border: 1px solid var(--black);
	padding: 10px;
	margin-bottom: 1.2rem;
}
.text ul, .text ol {
	margin: 0 0 1rem 1.2rem;
}
.text li {
	margin-bottom: 8px;
}
.text img {
	display: block;
	max-width: 100%;
	height: auto;
}



.alignleft {display: inline;float: left;margin: 5px 15px 5px 0;}
.alignright {display: inline;float: right;margin: 5px 0 5px 15px;}
.aligncenter {clear: both;display: block;margin: 5px auto;}


.preloader {
	position: fixed;
	inset: 0;
	background: #e9e9e9;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	overflow: hidden;
}

.main-dot,
.dot {
	width: 44px;
	height: 44px;
	background: #000;
	border-radius: 50%;
	position: absolute;
}

.main-dot {
	top: -60px;
	left: 50%;
	transform: translateX(-50%);
}

.dots {
	position: relative;
	width: 600px;
	height: 600px;
}

.logo-target {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 120px;
	height: 60px;
}






/* Header ----------------------------------------------------------------------------- */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 40;
}
.header__logo {
	display: block;
	width: 70px;
	height: 88px;
	background: url('i/bg-logo.png') no-repeat;
	background-size: contain;
}

.header__nav {
	width: calc(100% - 100px);
	margin-left: auto;
}
.header__nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
	list-style: none;
}
.header__nav ul a {
	display: block;
	padding-top: 28px;
	position: relative;
	color: var(--white);
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
}
.header__nav ul a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 14px;
	height: 14px;
	border-radius: 100%;
	transition: all .3s ease-in-out;
}
.header__nav ul a:hover::before {
	top: -5px;
	left: -5px;
	width: 24px;
	height: 24px;
}

.header__nav-btn {
	display: none;
	width: 30px;
	height: 30px;
	border: none;
	background: transparent;
	outline: none;
	cursor: pointer;
}
.header__nav-btn span {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	height: 2px;
	border-radius: 3px;
	background: #717171;
	margin: 7px 0 0;
	position: relative;
}
.header__nav-btn span::before, 
.header__nav-btn span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 3px;
	background: #717171;
	transition: all 0.4s ease;
}
.header__nav-btn span::before {
	top: -7px;
}
.header__nav-btn span::after {
	bottom: -7px;
}
.nav-active .header__nav-btn span {
	background: transparent;
}
.nav-active .header__nav-btn span::before {
	top: 0;
	-webkit-transform: rotate(45deg);
}
.nav-active .header__nav-btn span::after {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
}









/* Hero ----------------------------------------------------------------------------- */
.hero {
	width: 100%;
	height: 100vh;
}
.hero .container {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: flex-start;
	max-width: 1120px;
	height: 100%;
	padding-top: 240px;
	padding-bottom: 180px;
	z-index: 10;
}
.hero__info {
	width: 100%;
	max-width: 320px;
}
.hero__head {
	width: 100%;
	margin-bottom: 8px;
	color: var(--white);
	font-size: 24px;
	line-height: 1.1;
	text-transform: uppercase;
}
.hero__desc {
	margin-bottom: 80px;
	color: var(--white);
	font-size: 16px;
}
.hero__become {
	padding-top: 80px;
	position: relative;
	color: var(--white);
	font-size: 16px;
	text-transform: uppercase;
}
.hero__become::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 56px;
	height: 64px;
	background: url("i/become.png") center no-repeat;
	background-size: contain;
}

.hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.hero__bg video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}







/* cat-item ----------------------------------------------------------------------------- */
.cat-item {
	width: calc(33.3% - 44px);
	margin: 0 22px;
	position: relative;
}
.cat-item__thumb {
	display: block;
	width: 100%;
}
.cat-item__thumb-ins {
	display: block;
	width: 100%;
	padding-top: 150%;
	position: relative;
}
.cat-item__thumb-ins img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cat-item__info {
	min-height: 92px;
	position: relative;
	overflow: hidden;
}
.cat-item__title {
	position: absolute;
	top: -100%;
	left: 0;
	width: 100%;
	padding: 40px 30px 20px;
	background: var(--white);
	color: var(--black);
	font-size: 24px;
	line-height: 1.1;
	transition: all .3s ease;
}
.cat-item:hover .cat-item__title {
	top: 0;
}







/* Welcome ----------------------------------------------------------------------------- */
.welcome {
	padding-top: 60px;
	padding-bottom: 80px;
	background: #C4C2C1;
}
.welcome__info {
	width: 240px;
}
.welcome__head {
	color: var(--black);
	font-size: 24px;
}
.welcome__box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	width: calc(100% - 300px);
}
.welcome__box .cat-item {
	width: calc(50% - 44px);
}







/* Type ----------------------------------------------------------------------------- */
.type {
	padding-top: 100px;
	padding-bottom: 160px;
	background: #C4C2C1;
}







/* beautiful ----------------------------------------------------------------------------- */
.beautiful {
	padding-top: 96px;
	padding-bottom: 112px;
}
.beautiful .container {
	z-index: 10;
}
.beautiful__box {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	min-height: 860px;
	padding: 76px;
	position: relative;
}
.beautiful__head {
	color: var(--white);
	font-size: 24px;
}
.beautiful__desc {
	color: var(--white);
	font-size: 16px;
}
.beautiful__logo {
	position: absolute;
	bottom: 80px;
	right: 80px;
	display: block;
	width: 70px;
	height: 88px;
	background: url('i/bg-logo.png') center no-repeat;
	background-size: contain;
}
.beautiful__box-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.beautiful__box-bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.beautiful__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	filter: blur(10px);
}
.beautiful__bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}






.advantage {
	position: relative;
}
.advantage .container {
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	min-height: 100vh;
	padding-top: 144px;
	padding-bottom: 144px;
	z-index: 10;
}
.advantage__info {
	width: 100%;
	max-width: 440px;
	padding-bottom: 52px;
}
.advantage__head {
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.2;
}
.advantage__desc {
	max-width: 380px;
}
.advantage__list {
	width: 100%;
}
.advantage-item {
	width: calc(33.3% - 32px);
	padding-top: 28px;
	position: relative;
	font-size: 16px;
}
.advantage-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--black);
}
.advantage-item__title {
	margin-bottom: 5px;
	font-size: 18px;
	font-weight: normal;
	line-height: 1.2;
}
.advantage__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.advantage__bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}







/* unlock ----------------------------------------------------------------------------- */
.unlock {
	padding-top: 40px;
	padding-bottom: 40px;
	background: #C4C2C1;
}







/* Request ----------------------------------------------------------------------------- */
.request {
	position: relative;
	background: var(--black);
	color: var(--white);
}
.request .container {
	min-height: 100vh;
	padding-top: 110px;
	padding-bottom: 110px;
	z-index: 10;
}
.request__info {
	width: 44%;
	margin-left: auto;
	position: relative;
	padding-top: 600px;
}
.request__info::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 320px;
	height: 520px;
	background: url("i/bg-icon-request.jpg") center no-repeat;
	background-size: contain;
}
.request__head {
	position: relative;
	padding-top: 30px;
	font-size: 24px;
	font-weight: normal;
	line-height: 1.2;
}
.request__head::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--white);
}
.request__desc {
	max-width: 260px;
}
.request__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.request__bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}







/* Contact ----------------------------------------------------------------------------- */
.contact {
	padding-top: 92px;
	padding-bottom: 92px;
}
.contact__list {
	width: 140%;
	margin-left: -16px;
}
.contact-item {
	width: calc(33.3% - 32px);
	margin: 0 16px;
	position: relative;
	background: #948478;
	border-radius: 50%;
}
.contact-item__bg {
	display: block;
	width: 100%;
	padding-top: 100%;
}
.contact-item__ins {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding-top: 176px;
	border-radius: 50%;
	z-index: 2;
}
.contact-item__icon {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 74px;
	height: 110px;
	margin: 0 auto 32px;
}
.contact-item__icon img {
	display: block;
	max-width: 100%;
	max-height: 100%;
}
.contact-item__title {
	width: 100%;
	font-size: 24px;
	font-weight: normal;
	line-height: 1.2;
	text-align: center;
}
.contact-item__text {

}



/* Footer ----------------------------------------------------------------------------- */
.footer {
	
}






/* Всплывающие окна */
.overlay {
	display: none;
	background-color: #000;
	opacity: .7;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 999
}
.overlay.active {
	display: block;
}

.popup {
	display: none;
	position: relative;
	width: 100%;
	max-width: 400px;
	padding: 25px;
	background: #fff;
	text-align: center;
	z-index: 9999;
}
.popup__close {
	width: 24px;
	height: 24px;
	-webkit-border-radius: 100%;
		  border-radius: 100%;
	position: absolute;
	background: #000;
	color: #FFF;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	border: 1px solid #363636;
	top: -11px;
	right: -11px;
	cursor: pointer;
}
.popup__close:hover {
	background: #FFF;
	color: #000;
}
.popup__title {
	margin-bottom: 5px;
	font-size: 30px;
	font-weight: 300;
	line-height: 34px;
	color: #000;
}
.popup__subtitle {
	margin-bottom: 20px;
	font-size: 13px;
	line-height: 21px;
	text-align: center;
	color: #000;
}
.popup__label {
	position: relative;
}
.popup__body input,
.popup__body textarea {
	width: 100%;
	height: 40px;
	margin-top: 12px;
	padding-left: 12px;
	border: 1px solid #eee;
	background-color: #FFF;
	outline: none;
}
.popup-body textarea {
	height: 120px;
	resize: none;
	padding-top: 5px;
}
.popup-body input[type="submit"] {
	height: 46px;
	padding-left: 0;
	background-color: #FC0;
	border: 1px solid #FC0;
	color: #000;
	font-size: 17px;
	font-weight: bold;
	line-height: 44px;
	cursor: pointer;
}



/* Форма */


input.hide_input {
	display: none;
}
span.wpcf7-not-valid-tip, div.wpcf7-validation-errors {
	display: none !important;
}
.popup-body input.wpcf7-not-valid {
	border: 1px solid #c00;
}

.popup-thy {
	position: fixed;
	top: calc(50% - 160px);
	left: calc(50% - 200px);
}




/* ==============================================================
   ========================  MEDIA  =============================
   ============================================================== */
@media screen and (max-width:1200px) {

	

}











@media screen and (max-width:1050px) {

	

}












@media screen and (max-width:900px) {

	

}












@media screen and (max-width:750px) {

	

}












@media screen and (max-width:600px) {

	

}












@media screen and (max-width:450px) {

	

}












/* END ============================================================= */

