:root {
	--general-text: #312C27;
	--accent-text: #1F1711;
	--general-bg: #FFF9F4;
	--accent-bg: #FFE0CB;
	--accent-color: #FFA55C;
}

body {
	font-family: "Montserrat", "Arial", sans-serif;
	line-height: 1.5;
	color: var(--general-text);
	background: var(--general-bg);
}


.body--opened-menu {
    overflow: hidden;
}


.wrapper {
	min-height: 100%;
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.main {
	flex-grow: 1;
}

.container {
	max-width: 1310px;
	margin: 0 auto;
	padding: 0 15px;
	height: 100%;
}

.button {
	line-height: 1.6;
	font-size: 16px;
	font-weight: 500;
	background: var(--accent-color);
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 3px 15px;
	height: 62px;
	transition: all 0.4s;
}

.button:hover {
	background: #FF9138;
}

/* ========================================================= */

.header {
	background: url("../img/decor/bg-header.png") 50% 100% / cover no-repeat;
}

.header__top {
	padding-top: 19px;
}

.header__top-inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.header__logo {
	max-width: 174px;
}

.container {}

.nav {}

.nav__list {
	display: flex;
	gap: 4vh 40px;
}

.nav__item {}

.nav__link {
	display: block;
	padding: 5px;
	position: relative;
	z-index: 1;
}

.nav__link::before {
	content: '';
	position: absolute;
	top: -8px;
	left: -13px;
	width: 34px;
	height: 34px;
	background: var(--accent-color);
	border-radius: 50%;
	z-index: -1;
	opacity: 0;
	transition: all .4s;
}

.nav__link:hover::before {
	opacity: 1;
}


.hero {
	padding: 50px 0 140px;
}

.hero__inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;

}

.hero__content {
	max-width: 520px;

}

.hero__info {
	color: #B197B3;
	text-transform: uppercase;
	line-height: 1.6;
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	/* align-items: center; */
}

.hero__info span {
	display: flex;
	align-items: center;
}

.hero__info span::after {
	content: '';
	background: #B197B3;
	border-radius: 50%;
	width: 4px;
	height: 4px;
	display: block;
	margin-left: 0 10px;
}

.hero__info span:last-child:after {
	content: none;
}

.hero__title {
	font-family: 'Gabriola';
	font-style: normal;
	font-weight: 400;
	font-size: 74px;
	line-height: 0.82;
	margin-bottom: 30px;
}

.hero__text {
	margin-bottom: 40px;
	max-width: 360px;
}

.hero__button {
	max-width: 360px;
}


.hero__img {
	margin-right: 247px;
	position: relative;
}

.hero__img>img{
	width: 100%;
}

.hero__img-control {
	position: absolute;
	bottom: 11%;
	left: calc(100% - 39px);
	display: flex;
	gap: 10px;
	align-items: center;
	max-width: 200px;
}

.hero__img-button {
	background: #FFE0CB;
	box-shadow: 0px 4px 20px rgb(184, 148, 126, 0.3);
	border-radius: 50%;
	width: 78px;
	height: 78px;
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	position: relative;
}

.hero__img-button::before {
	content: '';
	position: absolute;
	border: 1px solid var(--accent-color);
	inset: 5px;
	border-radius: 50%;
}

.hero__img-button img {
	padding-left: 8.8%;
}

.hero__img-button:hover:before {
	opacity: 1;
}


.hero__img-button::before {
	content: '';
	position: absolute;
	/* background: var(--accent-color); */
	border-radius: 50%;
	opacity: 0;
	transition: all .4s;
	inset: 5px;
}

.hero__img-button:hover::before {
	opacity: 1;
}


.burger-icon {
	display: none;
	width: 50px;
	height: 50px;
	align-items: center;
	justify-content: center;
	z-index: 11;
}

.burger-icon span {
	position: relative;
}

/* ============================== */
@media (max-width: 900px) {
	.nav {
		background: var(--general-bg);
		position: fixed;
		inset: 0;
		z-index: 10;
		padding: 100px 15px 30px;
		font-size: 24px;

		transform: translateY(-50%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.4s;
	}

	.nav__list {
		flex-direction: column;
		align-items: center;
	}

	.burger-icon {
		display: flex;
	}
}

.burger-icon span::before,
.burger-icon span::after {
	content: '';
	width: 30px;
	height: 3px;
	border-radius: 100px;
	display: block;
	background: var(--general-text);
	position: absolute;
}

.burger-icon span::before {
	top: -8px;
}

.burger-icon span::after {
	bottom: -8px;
}

.burger-icon span,
.burger-icon span::before,
.burger-icon span::after {
	width: 30px;
	height: 3px;
	border-radius: 100px;
	display: block;
	background: var(--general-text);

}

.body--opened-menu .nav {
	transform: translateY(0%);
	opacity: 1;
	visibility: visible;
}

.burger-icon span {
    position: relative;
    display: block;
    width: 30px;
    height: 3px;
    border-radius: 100px;
    background: var(--general-text);
    transition: all 0.4s;
}

.burger-icon span::before,
.burger-icon span::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--general-text);
    border-radius: 100px;
    transition: all 0.4s;
}

.burger-icon span::before {
    top: -8px;
}

.burger-icon span::after {
    bottom: -8px;
}


.body--opened-menu .burger-icon span {
    background: transparent;
}

.body--opened-menu .burger-icon span::before {
    top: 0;
    transform: rotate(45deg);
}

.body--opened-menu .burger-icon span::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ====================== */



@media (max-width: 1200px) {
    .hero__img {
        margin: 0;
        max-width: 377px;
    }
    .hero__img-conrol {
        position: static;
        max-width: none;
        margin-top: 30px;
    }
}

@media (max-width: 900px) {
    .nav {
        position: fixed;
        inset: 0;
        z-index: 10;
        background: var(--general-bg);
        padding: 26vh 15px 30px;
        font-size: 24px;

        transform: translateY(-50%);
        opacity: 0;
        visibility: hidden;
        transition: all .4s;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
    }

    .body--opened-menu .nav {
        transform: translateY(0%);
        opacity: 1;
        visibility: visible;
    }

    .burger-icon {
        display: flex;
    }
}

@media (max-width: 800px) {

    .hero__content {
        max-width: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .hero__img {
        display: none;
    }
    .hero__img-conrol--mobile {
        display: flex;
        margin: 0 0 30px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding-bottom: 80px;
    }
    .hero__title {
        font-size: 12vw;
    }
}

