/***************************************************              GENERAL RESET STYLES             ***************************************************/
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Oswald:wght@200..700&display=swap");
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Inter", sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: normal;
}

*:focus {
	outline: none;
}

body {
	line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

nav ul {
	list-style: none;
}

ol,
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

strong,
b {
	font-weight: 600;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	border-style: none;
	width: 100%;
	height: auto;
}

form fieldset {
	margin: 0;
	padding: 0;
	border: none;
}

input,
textarea,
select {
	vertical-align: middle;
	padding: 0;
	box-sizing: border-box;
	resize: none;

	border: 1px solid transparent;
	color: #000c49;
	background-color: #fff;
}
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
	color: #000c49;
	font-size: 16px;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
	color: #b9b9b9;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-background-clip: text;
	-webkit-text-fill-color: #fff;
	transition: background-color 5000s ease-in-out 0s;
	box-shadow: inset 0 0 20px 20px transparent;
}

.container {
	display: block;
	position: relative;
	overflow: hidden;
	width: 1200px;
	/* padding: 0px 20px; */
	margin: 0 auto 0 auto;
	height: 100%;
}

header,
main,
footer,
section {
	display: block;
	position: relative;
	width: 100%;
}

span {
	font: inherit;
}

/* common styles */
:root {
	--main-orange: #ee4c01;
	--main-blue: #111b58;
	--light-blue: #3853ea;
	--main-white: #f3f8fb;
	--oswald-font: "Oswald", sans-serif;
	--header-heigth: 120px;
	--header-top-offset: 24px;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 10px);
}
body {
	background-color: #eaeff5;
}

.main-btn {
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 16px;
	background-color: var(--main-white);
	border: 1px solid var(--main-orange);
	border-radius: 40px;
	padding: 8px 8px 8px 36px;
	transition: all 0.4s;
	width: fit-content;
	font-weight: 500;
	color: var(--main-orange);
	font-size: 16px;
	transition: all 0.4s;
	outline: none;
}
.main-btn__arrow {
	display: grid;
	place-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	overflow: hidden;
	background-color: var(--main-orange);
	transition: all 0.4s;
	flex-shrink: 0;
	color: var(--main-white);
}
.main-btn--blue {
	background-color: var(--light-blue);
	border-color: var(--light-blue);
	color: var(--main-white);
}
.main-btn--blue .main-btn__arrow {
	background-color: var(--main-white);
	color: var(--light-blue);
}

.main-btn--solid {
	background-color: var(--main-orange);
	border-color: var(--main-orange);
	color: var(--main-white);
}
.main-btn--solid .main-btn__arrow {
	background-color: var(--main-white);
	color: var(--main-orange);
}
.main-btn:hover {
	background-color: var(--main-orange);
	color: var(--main-white);
}
.main-btn:hover .main-btn__arrow {
	background-color: var(--main-white);
	color: var(--main-orange);
}
.main-btn--blue:hover {
	background-color: var(--main-white);
	color: var(--light-blue);
}
.main-btn--blue:hover .main-btn__arrow {
	background-color: var(--light-blue);
	color: var(--main-white);
}
.main-btn--solid:hover {
	background-color: var(--main-white);
	color: var(--main-orange);
}
.main-btn--solid:hover .main-btn__arrow {
	background-color: var(--main-orange);
	color: var(--main-white);
}

.default-btn {
	cursor: pointer;
	background-color: var(--main-orange);
	border: 1px solid var(--main-orange);
	border-radius: 40px;
	padding: 14px 36px;
	transition: all 0.4s;
	width: fit-content;
	font-weight: 500;
	color: var(--main-white);
	font-size: 16px;
	transition: all 0.4s;
	outline: none;
	display: block;
}
.default-btn:hover {
	background-color: var(--main-white);
	color: var(--main-orange);
}

.section-w-overlay {
	border-radius: 20px;
	background-color: var(--main-white);
	margin-left: 40px;
	margin-right: 40px;
	width: calc(100% - 80px);
}

.left-container {
	padding-left: calc(50vw - 640px);
}

.section-margin {
	margin-top: 140px;
}
/* common styles */

/* header styles */
.header {
	position: fixed;
	top: var(--header-top-offset);
	z-index: 10;
	/* position: relative; */
}
.header-top-fix {
	position: fixed;
	z-index: 9;
	top: 0px;
	width: 100%;
	background-color: #eaeff5;
	height: var(--header-top-offset);
	/* filter: blur(10px); */
}
.logo {
	width: 140px;
	height: 48px;
}
.header-burger-wrap {
	display: none;
}
.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 16px 0px;
}
.header__nav {
	display: flex;
	align-items: center;
	gap: 40px;
}
.header__nav-link {
	cursor: pointer;
	transition: all 0.5s;
	color: var(--main-blue);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.header__nav-link:hover {
	color: var(--main-orange);
}
.header-fix {
	width: 100%;
	opacity: 0;
	height: var(--header-heigth);
}
/* header styles */

/* popup styles */
.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.4);
	cursor: pointer;
	display: grid;
	place-content: center;
	justify-items: center;
	z-index: -20;
	opacity: 0;
	transition: all 0.5s;
}
.popup.active {
	z-index: 1000;
	opacity: 1;
}
.popup-content {
	background-color: var(--main-white);
	padding: 60px;
	border-radius: 30px;
	overflow: hidden;
	cursor: default;
	width: 671px;
	height: auto;
}
.popup-top {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin: 30px 0px;
}
.popup-close {
	width: 45px;
	height: 45px;
	border-radius: 60px;
	background: var(--light-blue);
	outline: none;
	border: none;
	overflow: hidden;
	display: grid;
	place-content: center;
	margin-left: auto;
	cursor: pointer;
	transition: all 0.4s;
}
.popup-close:hover {
	opacity: 0.8;
}
.popup-top-title {
	color: var(--main-blue);
	text-align: center;
	font-family: var(--oswald-font);
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%; /* 46.8px */
	text-transform: uppercase;
	line-height: 1;
}
.popup-top-text {
	color: var(--main-blue);
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.popup-form .form-btn {
	margin-inline: auto;
}
.popup-content .footer__r-links {
	margin-top: 60px;
}
.popup-content .footer__r-title {
	text-align: center;
}
.popup-content .footer__r-text {
	text-align: center;
}
.popup-content .footer__r-soc {
	justify-content: center;
}
/* popup styles */

/* hero styles */
.hero {
	background-image: url("../images/hero-bg.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 50%;
	/* height: calc(100vh - var(--header-heigth) - 30px); */
}
.hero-btn-mobile {
	display: none;
}
.hero__inner {
	display: flex;
	gap: 16px;
	padding-top: 100px;
	padding-bottom: 100px;
}
.hero-subtitle {
	color: var(--main-orange);
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}
.hero__title {
	color: var(--main-blue);
	font-family: var(--oswald-font);
	font-size: 56px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%; /* 72.8px */
	text-transform: uppercase;
	margin-top: 16px;
	margin-bottom: 32px;
}
.hero-subtext {
	color: var(--main-blue);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.hero-subtext span {
	color: var(--light-blue);
}
.hero__l {
	max-width: 664px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.hero__r {
	width: 50%;
}
.hero__r img {
	opacity: 0;
	scale: 1.1;
}
.hero__l-btm {
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin-top: auto;
	transform: translateY(15px);
	opacity: 0;
	scale: 0.9;
}
.hero__l-top {
	transform: translateX(20px);
	opacity: 0;
}
.hero__l-btm-text {
	color: var(--main-blue);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
}
.hero__btns {
	display: flex;
	align-items: center;
	gap: 16px;
}
/* hero styles */

/* about styles */
.about-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.about-line {
	display: block;
	width: 24px;
	flex-shrink: 0;
	height: 4px;
	background-color: var(--main-orange);
}
.about-title {
	color: var(--main-blue);
	font-family: var(--oswald-font);
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}
.about-head__text {
	text-align: right;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	color: var(--main-blue);
}
.about__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.about-list {
	display: flex;
	flex-direction: column;
	border-top: 1px solid #ccced0;
}
.about-list__line {
	padding: 16px 0px;
	border-bottom: 1px solid #ccced0;
	display: flex;
}
.about-list__line2 {
	justify-content: center;
}
.about-list__line3 {
	justify-content: flex-end;
}
.about-list-item {
	width: fit-content;
	display: flex;
	align-items: center;
}
.about-mark {
	margin-left: 20px;
	margin-right: 30px;
	color: var(--main-blue);
	font-family: var(--oswald-font);
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
}
.about-img {
	border-radius: 16px;
	overflow: hidden;
	width: 120px;
	flex-shrink: 0;
	height: 120px;
}
.about-num {
	color: var(--main-orange);
	font-family: var(--oswald-font);
	font-size: 80px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}
.about-foot {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: space-between;
}
.about-foot__text {
	color: var(--main-blue);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	max-width: 586px;
}
.about-foot__text span {
	font-weight: 600;
}
/* about styles */

/* why section */
.why .container {
	overflow: visible;
}
.why-title {
	color: var(--main-blue);
	font-family: var(--oswald-font);
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 32px;
}
.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.why-grid-item {
	background-color: var(--main-white);
	display: flex;
	padding: 30px 29px;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	border-radius: 30px;
}
.why-grid-icon {
	display: grid;
	place-content: center;
	border-radius: 40px;
	background: var(--main-orange);
	width: 64px;
	height: 64px;
	overflow: hidden;
}
.why-item-title {
	color: var(--main-orange);
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 15px;
}
.why-item-text {
	color: var(--main-blue);
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
/* why section */

/* decision section */
.decision__inner {
	display: flex;
	gap: 20px;
}
.decision__r {
	border-radius: 30px;
	overflow: hidden;
	width: 50%;
}
.decision__r img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.decision__l {
	width: 50%;
	display: flex;
	flex-direction: column;
	padding: 60px 27px 60px 30px;
	border-radius: 30px;
	background-color: var(--main-blue);
}
.decision-title {
	color: var(--main-white);
	font-family: var(--oswald-font);
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%; /* 46.8px */
	text-transform: uppercase;
}
.decision-text {
	color: var(--main-white);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-top: 15px;
	margin-bottom: 45px;
}
.decision-text span {
	font-weight: 600;
}
.decision-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-bottom: 60px;
}
.decision-item {
	display: flex;
	gap: 20px;
}
.decision-num {
	color: var(--main-orange);
	font-family: var(--oswald-font);
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	line-height: 1;
}
.decision-item-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.decision-item-title {
	color: var(--main-white);
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}
.decision-item-text {
	color: var(--main-white);
	font-size: 18px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
}
/* decision section */

/* services section */
.services__inner {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 386px);
	column-gap: 20px;
	row-gap: 50px;
}
.services-item-name {
	color: var(--main-blue);
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	padding-bottom: 10px;
	border-bottom: 1px solid #ccced0;
}
.services-title {
	color: var(--main-blue);
	font-family: var(--oswald-font);
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%; /* 46.8px */
	text-transform: uppercase;
	max-width: 285px;
}
.services-item-link {
	color: var(--main-orange);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-top: 10px;
	display: block;
	transition: all 0.4s;
}
.services-item-link:hover {
	opacity: 0.7;
}
/* services section */

/* advs section */
.advs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	row-gap: 30px;
	column-gap: 20px;
}
.advs-item {
	display: flex;
	padding: 20px 30px;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
	border-radius: 20px;
	background: var(--main-blue);
}
.advs-special h2 {
	color: var(--main-blue);
	font-family: var(--oswald-font);
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%; /* 46.8px */
	text-transform: uppercase;
	width: 90%;
}
.advs-item-sep {
	width: 50px;
	height: 4px;
	display: block;
	background-color: var(--main-orange);
}
.advs-item-name {
	color: var(--main-white);
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}
.advs-item-text {
	color: var(--main-white);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
/* advs section */

/* cards section */
.cards__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.cards-title {
	color: var(--main-blue);
	font-family: var(--oswald-font);
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%; /* 46.8px */
	text-transform: uppercase;
}
.cards-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	border: 1px solid #bababa;
	padding: 60px 30px 40px 30px;
	aspect-ratio: 400 / 664;
	cursor: pointer;
	overflow: hidden;
}
.cards-self {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.cards-card-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: space-between;
	position: relative;
	height: 100%;
	z-index: 1;
}
.cards-card-num {
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: var(--main-orange);
	font-family: var(--oswald-font);
	font-size: 128px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	color: transparent;
	transition: all 0.4s;
	line-height: 1;
}
.card-img {
	position: absolute;
	inset: 0;
	opacity: 0;
	/* transform: translateY(-15px); */
	transition: all 0.4s;
}
.card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cards-card-content > div {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.cards-card-name {
	color: var(--main-blue);
	font-family: var(--oswald-font);
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	line-height: 1;
	transition: all 0.4s;
}
.cards-card-text {
	color: var(--main-blue);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	transition: all 0.4s;
}
.cards-card.active .cards-card-num {
	color: var(--main-orange);
}
.cards-card.active .cards-card-text {
	color: var(--main-orange);
}
.cards-card.active .cards-card-name {
	color: var(--main-orange);
}
.cards-card.active .card-img {
	opacity: 1;
	/* transform: translateY(0); */
}
/* cards section */

/* footer styles */
.footer {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 60px;
}
.footer-links {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 0px;
}
.footer-links p {
	color: #000;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.footer__l svg {
	flex-shrink: 0;
}
.made-by {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #000;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	transition: all 0.4s;
}
.made-by:hover {
	color: var(--main-orange);
}
.footer__inner {
	display: flex;
	gap: 48px;
	padding: 60px 0px;
}
.footer__l {
	width: 50%;
}
.footer-title {
	color: var(--main-blue);
	font-family: var(--oswald-font);
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
	text-transform: uppercase;
}
.footer-text {
	color: var(--main-blue);
	/* text-align: center; */
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 30px;
	margin-top: 15px;
}
.form-wrap form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.form-btn {
	margin-top: 20px;
}
.main-input {
	padding: 20px 30px;
	border-radius: 30px;
	background: #fff;
	color: #000;
	width: 100%;
}
.main-input,
.main-input::placeholder {
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.main-input::placeholder {
	color: #c9c9c9;
}
.footer__r {
	width: 50%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: space-between;
}
.footer-map {
	width: 100%;
	max-height: 435px;
	border-radius: 20px;
	overflow: hidden;
}
.footer-link {
	transition: all 0.4s;
	color: #111b58;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	display: flex;
	align-items: center;
	gap: 20px;
}
a.footer-link:hover {
	color: var(--main-orange);
}
.footer-phones {
	display: flex;
	gap: 20px;
	margin-top: 20px;
}
.site-link {
	margin-top: 20px;
}
.footer-phones > div {
	display: grid;
	grid-template-columns: repeat(2, auto);
	row-gap: 10px;
	column-gap: 20px;
}
.location {
	margin-top: 70px;
	margin-bottom: 20px;
}
.footer__r-title {
	color: #111b58;
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}
.footer__r-text {
	color: var(--main-blue);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-top: 15px;
	margin-bottom: 30px;
}
.footer__r-soc {
	display: flex;
	align-items: center;
	gap: 20px;
}
.footer-soc-link {
	border-radius: 60px;
	background: #fff;
	width: 52px;
	height: 52px;
	display: grid;
	place-content: center;
	transition: all 0.4s;
}
.footer-soc-link:hover {
	opacity: 0.8;
}
/* footer styles */

/* header burger */
.header__burger {
	border-radius: 50%;
	background-color: var(--light-blue);
	width: 45px;
	height: 45px;
	align-items: center;
	justify-content: center;
	display: flex;
	cursor: pointer;
}
.header__burger-lines {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 5px;
	width: 23px;
}
.header-cross {
	width: 26px;
	height: 26px;
	position: relative;
	display: none;
	opacity: 0;
}
.header-cross span {
	width: 100%;
	height: 2px;
	border-radius: 3px;
	display: block;
	background-color: #fff;
	position: absolute;
	top: 50%;
}
.header-cross .line1 {
	transform: translateY(-50%) rotate(45deg) scaleX(0);
}
.header-cross .line2 {
	transform: translateY(-50%) rotate(-45deg) scaleX(0);
}
.header__burger-lines span {
	height: 2px;
	width: 100%;
	border-radius: 3px;
	display: block;
	background-color: #fff;
	transform-origin: left;
}
.header__burger-lines .line2 {
	width: 70%;
}

.header-burger-phone {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background-color: var(--light-blue);
	cursor: pointer;
	transition: all 0.4s;
	display: grid;
	place-content: center;
}
.header-burger-phone:hover {
	opacity: 0.8;
}
/* header burger */

/* mobile menu */
.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #eaeff5;
	z-index: 9;
	padding: var(--header-heigth) 40px 40px;
	clip-path: inset(0% 100% 0% 0%);
	display: none;
}
.mobile-menu-nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.mobile-menu__link {
	display: flex;
	justify-content: center;
	width: 100%;
	color: var(--main-orange);
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	padding: 15px;
	border-radius: 30px;
	overflow: hidden;
	background-color: var(--main-white);
}
/* mobile menu */

html {
	scroll-behavior: auto !important;
}

html.lenis {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}
