/*=============== GOOGLE FONTS ===============*/

@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&display=swap');


/*=============== VARIABLES CSS ===============*/
:root {
	--header-height: 3.5rem;

	/*========== Colors ==========*/
	/*Color mode HSL(hue, saturation, lightness)*/
	--first-color: hsl(14, 98%, 50%);
	--black-color: hsl(0, 0%, 0%);
	--black-color-light: hsl(0, 0%, 40%);
	--white-color: hsl(0, 0%, 95%);
	--title-color: hsl(0, 0%, 0%);
	--text-color: hsl(0, 0%, 35%);
	--text-color-light: hsl(0, 0%, 64%);
	--body-color: hsl(0, 0%, 87%);
	--container-color: hsl(0, 0%, 83%);


	--black: #1A1A1D;
	--gray: #666666;
	--yellow-text: #f5f50c;
	--yellow: #ecec20;
	--orange: #f2ae25;




	--red-dark: #6F2232;
	--pink: #950740;
	--red-light: #C3073F;

	/*========== Font and typography ==========*/
	/*.5rem = 8px | 1rem = 16px ...*/
	/* --body-font: 'Bai Jamjuree', sans-serif; */
	--body-font: 'Alegreya Sans', monospace;
	--biggest-font-size: 2.5rem;
	--h1-font-size: 1.75rem;
	--h2-font-size: 1.25rem;
	--h3-font-size: 1.125rem;
	--normal-font-size: 0.938rem;
	--small-font-size: 0.813rem;
	--smaller-font-size: 0.75rem;

	/*========== Font weight ==========*/
	--font-regular: 400;
	--font-medium: 500;
	--font-semi-bold: 600;
	--font-bold: 700;

	/*========== z index ==========*/
	--z-tooltip: 10;
	--z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
	:root {
		--biggest-font-size: 4.5rem;
		--h1-font-size: 3rem;
		--h2-font-size: 1.5rem;
		--h3-font-size: 1.25rem;
		--normal-font-size: 1rem;
		--small-font-size: 0.875rem;
		--smaller-font-size: 0.813rem;
	}
}

/*=============== BASE ===============*/
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--body-font);
	font-size: var(--normal-font-size);
	background: var(--black);
	color: var(--text-color);
	/* letter-spacing: -0.01em; */
}

h1,
h2,
h3,
h4 {
	color: var(--red-light);
	font-weight: var(--font-bold);
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}
/*=============== THEME ===============*/

/*========== Variables Dark theme ==========*/

/*========== 
	Color changes in some parts of 
	the website, in dark theme
==========*/

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
	max-width: 1120px;
	margin-inline: 1.5rem;
}

.grid {
	display: grid;
	gap: 1.5rem;
}

.section {
	padding-block: 4rem 2rem;
}

.section__title-1,
.section__title-2 {
	position: relative;
	font-size: var(--h1-font-size);
	width: max-content;
	margin: 0.75rem auto 2rem;
	color: var(--yellow-text);
}

.section__title-1 span,
.section__title-2 span {
	z-index: 5;
	position: relative;
}


.main {
	overflow: hidden; /* For animation ScrollReveal */
}






/*=============== MENU ===============*/
.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	background-color: var(--black);
	z-index: var(--z-fixed);
	transition: box-shadow 0.4s;
}

.nav {
	position: relative;
	height: var(--header-height);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav__logo {
	display: flex;
	column-gap: 0.5rem;
	align-items: center;
	font-weight: bold;
	font-size: 1.5rem;
	font-style: italic;
	color: var(--black);
}

.nav__logo-name{
	color: #fff;
	/* color: var(--gray); */
}

.nav__logo-circle,
.nav__toggle {
	width: 32px;
	height: 32px;
	background-color: var(--black);
	color: #fff;
	display: grid;
	place-items: center;
	border-radius: .3rem;
}

.nav__toggle :hover{
	color: var(--yellow);
}

.nav__logo-circle {
	border-radius: 50%;
}

.nav__toggle {
	font-size: 1.25rem;
	cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
	.nav__menu {
		position: fixed;
		top: -150%;
		left: 0;
		background-color: hsla(0, 0%, 0%, 0.7);
		width: 100%;
		padding-block: 1.8rem 5rem;
		text-align: center;
		backdrop-filter: blur(8px);
		transition: top 0.4s;
	}
}


.nav__name,
.nav__close {
	color: #fff;
}

.nav__name span{
	color: var(--yellow-text);
}

.nav__title{
	color: var(--yellow-text);
}

.nav__close:hover {
	color: var(--yellow);
}

.nav__title {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 3.5rem;
}

.nav__name {
	position: relative;
	width: max-content;
	margin: 0 auto 3rem;
	font-size: var(--h2-font-size);
}

.nav__name::after,
.nav__name::before {
	content: '';
	width: 40px;
	height: 2px;
	background-color: var(--yellow);
	position: absolute;
	top: 50%;
	left: -4rem;
}

.nav__name::before {
	left: initial;
	right: -4rem;
}

.nav__list {
	display: flex;
	flex-direction: column;
	row-gap: 2.5rem;
}

.nav__link {
	position: relative;
	color: #fff;
	font-size: var(--h3-font-size);
	font-weight: var(--font-semi-bold);
	transition: color 0.3s;
}

.nav__link::after {
	content: '';
	width: 0;
	height: 2px;
	background-color: #fff;
	position: absolute;
	left: 0;
	bottom: -0.5rem;
	transition: width 0.3s;
}

.nav__link:hover {
	color: var(--orange);
}

.nav__link:hover::after {
	width: 100%;
}

.nav__close {
	position: absolute;
	font-size: 1.5rem;
	top: 1rem;
	right: 1.5rem;
	cursor: pointer;
}
/* Show menu */
.show-menu {
	top: 0;
}
/* Add shadow header */
.shadow-header {
	box-shadow: 0 1px 16px var(--yellow);
	/* border-bottom: 10px solid black; */
}
/* Active link */
.active-link {
	color: var(--yellow-text);
}

.active-link::after {
	width: 50%;
	background: #fff;
}

.nav__logo-name span{
	color: var(--yellow-text);
}

.nav__logo-name::after {
	content: '';
	width: 80px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	top: 75%;
	left: 1rem;
}
/*=============== MENU ===============*/



/*=============== HOME ===============*/
.home__container {
	padding-top: 9rem;
	position: relative;
}

.buy__button{
	display: block;
	background: var(--yellow);
	color: var(--black);
	border-radius: .3rem;
	width: 12rem;
	font-size: 1.2rem;
	padding: .5rem;
	margin-top: 1rem;
	text-align: center;
}

.buy__button:hover{
	background: var(--orange);
	box-shadow: 0 0 2px 4px var(--orange);
}

.home_phones{
	line-height: 2;
}

.home__contacts{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	position: absolute;
	top: -2rem;
	color: var(--white-color);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.3;
}

.home__contacts a{
	color: var(--white-color);
	font-weight: 600;
	font-size: 1rem;
}

.home__street,
.home__time{
	display: flex;
	align-items: center;
	/* justify-content: center; */
	line-height: 1;
}

.home__time{
	margin-top: 1rem;
}

.home__street a,
.home__time span{
	margin-left: .5rem;
}

.home__street i,
.home__time i{
	color: var(--yellow);
	font-size: 1.3rem;
}

.home__contacts a i{
	color: var(--yellow);
}

.home__contacts a:hover{
	color: var(--yellow);
}

.home__name {
	font-size: 2rem;
	text-align: center;
	color: #fff;
	line-height: .8;
}

.home__perfil {
	position: relative;
	justify-self: center;
}

.home__image {
	width: 400px;
	height: 400px;
	box-shadow: 0 0 3px 9px var(--gray);
	z-index: 10;
}

.home__img {
	position: relative;
	z-index: 10;
}

.home__shadow {
	width: 100%;
	height: 100%;
	background-color: var(--black);
	position: absolute;
	bottom: -0.75rem;
	right: -0.75rem;
	border: 4px solid var(--yellow);
	/* z-index: 1; */
	box-shadow: 0 0 1px 2px var(--yellow-text);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.hs__title {
	color: var(--red-light);
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	line-height: .9;
	margin-bottom: 1.5rem;
}

.hs__title i{
	color: #fff;
}

.hs__list{
	color: #fff;
	padding: .5rem;
	font-weight: 500;
	line-height: 1;
}

.many__years{
	color: #fff;
	font-weight: bold;
	font-style: italic;
	font-size: 3rem;
	z-index: 10;
	position: absolute;
	bottom: -3rem;
	left: -25rem;
	width: 50rem;
	transform: rotate(-15deg);
}

.many__years span{
	/* color: var(--orange); */
	font-size: 5rem;
}

.home__arrow,
.home__line {
	position: absolute;
	width: 50px;
	transition: filter 0.4s;
}

.home__arrow {
	left: 40%;
	bottom: -4rem;
}

.home__line {
	right: -2rem;
	bottom: -0.5rem;
}

.home__perfil .geometric-box {
	top: 2.5rem;
	left: -0.7rem;
	z-index: 10;
}

.home__social {
	height: max-content;
	position: absolute;
	left: -3.5rem;
	top: 0;
	bottom: 0;
	margin: auto 0;
	display: grid;
	row-gap: 1rem;
}

.home__social-link {
	background-color: var(--gray);
	color: #fff;
	font-size: 1.25rem;
	padding: 6px;
	display: grid;
	place-items: center;
	border-radius: .3rem;
	box-shadow: 0 0 1px 2px var(--gray);
}

.home__social-link:hover {
	background-color: var(--red-light);
	box-shadow: 0 0 1px 2px var(--red-light);
}

.home__info {
	margin-top: 4rem;
}

.home__description {
	text-align: center;
	color: var(--white-color);
	margin-bottom: 1.5rem;
	font-weight: 600;
}

.home__description b {
	background: linear-gradient(
		90deg,
		hsla(0, 99%, 48%, 0.3),
		hsla(0, 98%, 50%, 0)
	);
	color: var(-gray);
}

.home__scroll {
	display: block;
	width: max-content;
	margin: 0 auto;
}

.home__scroll-text {
	display: none;
}

.home__scroll-box {
	background-color: var(--yellow);
	color: var(--black);
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	font-size: 1rem;
	cursor: pointer;
	overflow: hidden;
	transition: background-color 0.4s;
}

.home__scroll-box i {
	animation: scroll-down 3s infinite;
}

/* Animate scroll icon */
@keyframes scroll-down {
	0% {
		transform: translateY(-1rem);
		opacity: 0;
	}

	50% {
		transform: translateY(0);
		opacity: 1;
	}

	110% {
		transform: translateY(0.6rem);
		opacity: 0;
	}
}



/*=============== BUTTON ===============*/
.button,
.button__ghost {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 0.5rem;
}

.button {
	background-color: var(--orange);
	padding: 1.1rem 1.5rem;
	color: var(--black);
	font-weight: bold;
	border-radius: .3rem;
	font-size: 1.2rem;
	/* box-shadow: 0 0 2px 4px var(--gray); */
}

.button i {
	font-size: 1.25rem;
}	

.button:hover {
	background-color: var(--yellow);
	box-shadow: 0 0 2px 4px var(--yellow-text);
}

.button__ghost {
	border: 3px solid var(--orange);
	color: var(--black);
	background: var(--orange);
	padding: 0.5rem;
	border-radius: .3rem;
}

.button__ghost i {
	font-size: 1.25rem;
}

.button__ghost:hover {
	border: 3px solid var(--yellow);
	box-shadow: 0 0 1px 2px var(--yellow);
	background: var(--yellow);
}








/*=============== ABOUT ===============*/
.about__container {
	row-gap: 0;
	padding-bottom: 2rem;
}

.about__perfil {
	position: relative;
	justify-self: center;
	margin-block: 2.5rem 4.5rem;
}

.about__image {
	width: 220px;
}

.about__img {
	position: relative;
	z-index: 1;
	box-shadow: 0 0 4px 8px var(--orange);
}

.about__shadow,
.about__line,
.about__box {
	position: absolute;
}

.about__shadow {
	width: 150px;
	height: 300px;
	background-color: rgb(22, 22, 22);
	box-shadow: 0 0 4px 8px var(--yellow);
	top: -2.5rem;
	right: -3.5rem;
	transition: background-color 0.4s;
}

.about__perfil .geometric-box {
	top: 1.5rem;
	right: -2.8rem;
}

.about__line {
	right: -1.25rem;
	top: 6rem;
	width: 50px;
	transition: filter 0.4s;
}

.about__box {
	width: 40px;
	height: 40px;
	background-color: var(--first-color);
	right: -0.5rem;
	bottom: 1.5rem;
}

.about__info {
	padding-left: 1.25rem;
}

.about__description {
	position: relative;
	color: var(--white-color);
	margin-bottom: 1.5rem;
}

.about__description i,
.about__description span{
	color: var(--yellow-text);
	font-weight: bold;
}

.about__description::after {
	content: '';
	width: 20px;
	height: 1px;
	background-color: var(--orange);
	position: absolute;
	left: -1.75rem;
	top: 0.5rem;
}

.about__list {
	list-style: circle;
	color: var(--white-color);
	margin-bottom: 3rem;
	font-size: 1rem;
	font-weight: bold;
}

.about__buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 1rem;
}
/*=============== ABOUT ===============*/









/*=============== SERVICES ===============*/
.services__container {
	grid-template-columns: 250px;
	justify-content: center;
	row-gap: 2rem;
	padding-top: 1rem;
}

.services__card {
	position: relative;
	/* margin: 1rem; */
	margin-top: .5rem;
}

.services__content {
	height: 100%;
	background-color: var(--black);
	/* border: 4px solid var(--yellow); */
	padding: 1rem;
	z-index: 5;
	position: relative;
	box-shadow: 0 0 2px 4px var(--yellow);
}

.services__border {
	position: absolute;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 2px 4px var(--gray);
	top: 0;
	left: 0;
	transition: transform 0.4s;
}

.services__card:hover .services__border {
	transform: translate(0.75rem, 0.75rem);
}




.services__title {
	font-size: var(--h2-font-size);
	margin-bottom: 1.25rem;
	color: var(--orange);
	text-align: center;
	line-height: 1;
}

.services__description {
	color: #fff;
	font-weight: 500;
	font-size: 1.1rem;
}







/*=============== CONTACT ===============*/
.contact {
	padding-bottom: 0;
}

.stcolor{
	color: #fff;
	font-weight: bold;
}

.contact__container {
	position: relative;
	grid-template-rows: 300px max-content max-content;
	row-gap: 0;
}

.contact__data {
	position: relative;
	width: 300px;
	height: 300px;
	background-color: var(--black);
	padding: 3rem 1.5rem 3.5rem;
	margin-left: auto;
	z-index: 5;
	box-shadow: 0px 0px 11px 7px var(--yellow);
}

.contact__data .section__title-1 {
	margin: 0 0 1.5rem;
	transform: translateX(-3rem);
}

.contact__description-1 {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 2rem;
	line-height: 1.5;
}

.contact__description-2 {
	line-height: 1.1;
}

.contact__description-1 i,
.contact__description-2 i{
	color: var(--orange);
}

.contact__description-1 a{
	color: #fff;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 2rem;
}

.contact__description-2 a{
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 2rem;
}

.contact__description-1 a:hover,
.contact__description-2 a:hover{
	color: var(--yellow-text);
}

.contact__description-2 {
	color: var(--white-color);
	font-weight: var(--small-font-size);
}

.contact__mail {
	position: relative;
	background-color: var(--black);
	padding: 5rem 1.5rem 2.5rem;
	margin-top: -2.5rem;
	box-shadow: 0px 0px 11px 7px var(--gray);
}

.contact__title {
	color: var(--white-color);
	font-size: var(--h2-font-size);
	margin-bottom: 2rem;
	text-align: center;
}

.contact__form,
.contact__group {
	display: grid;
	row-gap: 1.25rem;
}

.contact__form {
	position: relative;
}

.contact__box {
	position: relative;
	width: 100%;
	height: 58px;
}

.contact__input,
.contact__button {
	font-family: var(--body-font);
	font-size: var(--normal-font-size);
	outline: none;
	border: none;
}

.contact__input {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--black);
	border: 3px solid var(--yellow);
	color: #fff;
	padding: 0.5rem 1rem;
	font-weight: var(--font-medium);
	transition: border 0.4s, background-color 0.4s;
}

.contact__input::placeholder {
	color: #fff;
	transition: opacity 0.4s;
}

.contact__input:focus {
	border: 3px solid var(--yellow-text);
	box-shadow: 0px 0px 5px 5px var(--yellow);
}

.contact__input:-webkit-autofill {
	transition: background-color 6000s, color 6000s;
}

.contact__label {
	position: absolute;
	top: 8px;
	left: 10px;
	color: var(--yellow-text);
	font-size: var(--small-font-size);
	font-weight: var(--font-medium);
	background-color: var(--black);
	padding: 8px;
	pointer-events: none;
	transition: top 0.4s, opacity 0.4s, background-color 0.4s;
	opacity: 0;
	border-radius: .5rem;
}

.contact__form .contact__area {
	height: 10rem;
}

.contact__area textarea {
	resize: none;
	padding-top: 1rem;
}

.contact__button {
	cursor: pointer;
	background-color: var(--orange);
	color: #fff;
	font-size: 1.2rem;
	font-weight: 600;
	border-radius: .3rem;
	box-shadow: none;
}

.contact__button:hover {
	background-color: var(--yellow);
	box-shadow: 0px 0px 5px 5px var(--yellow);
	color: var(--black);
}

.contact__input:focus::placeholder {
	opacity: 0;
}

.contact__input:focus + .contact__label,
.contact__input:not(:placeholder-shown).contact__input:not(:focus)
	+ .contact__label {
	opacity: 1;
	top: -16px;
}

.contact__social {
	display: grid;
	row-gap: 1rem;
	background-color: hsl(0, 0%, 10%);
	background-color: var(--black-color);
	padding-block: 1rem 2rem;
	text-align: center;
}

.contact__social-arrow {
	width: 32px;
	margin: 0 auto;
}

.contact__social-data {
	display: flex;
	flex-direction: column;
	row-gap: 1.5rem;
}

.contact__social-description-1 {
	color: var(--gray);
	font-size: .9rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.contact__social-description-2 {
	color: var(--white-color);
	font-size: var(--small-font-size);
	font-weight: var(--font-semi-bold);
	margin-bottom: 1rem;
}

.contact__social-description-2 a{
	color: var(--white-color);
	font-size: var(--small-font-size);
	font-weight: var(--font-semi-bold);
}

.contact__social-description-2 a:hover{
	color: var(--gray);
}


.contact__social-links {
	display: flex;
	justify-content: center;
	column-gap: 0.75rem;
}

.contact__social-link {
	background-color: #fff;
	color: var(--black);
	padding: 6px;
	font-size: 1.25rem;
	display: grid;
	place-items: center;
	box-shadow: 0px 0px 2px 4px var(--yellow);
}

.contact__social-link:hover {
	background-color: var(--yellow);
	/* color: #fff; */
}
/*=============== CONTACT ===============*/

/* Opaque placeholder */





/*=============== FOOTER ===============*/
.footer {
	background-color: var(--black);
}

.footer__container {
	padding-block: 3rem 2rem;
	row-gap: 2.5rem;
	/* border-top: 1px solid #f0c835; */
}

.footer__links {
	display: flex;
	justify-content: center;
	column-gap: 2rem;
}

.footer__link {
	color: #fff;
	font-weight: 600;
	transition: color 0.4s;
}

.footer__link:hover {
	color: var(--yellow-text);
}

.footer__copy {
	color: var(--gray);
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
}

.footer__copy a {
	color: var(--gray);
	font-weight: var(--font-medium);
}

.footer__copy a:hover {
	color: var(--yellow-text);
	text-decoration: underline;
}
/*=============== FOOTER ===============*/




/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
	width: 0.6rem;
	border-radius: 0.5rem;
	background-color: var(--yellow);
}

::-webkit-scrollbar-thumb {
	border-radius: 0.5rem;
	background-color: var(--yellow-text);
}

::-webkit-scrollbar-thumb:hover {
	background-color: var(--orange);
}


/*=============== SCROLL UP ===============*/
.scrollup {
	width: 2.3rem;
	position: fixed;
	left: 1rem;
	bottom: -50%;
	background-color: var(--orange);
	display: inline-flex;
	padding: 8px;
	font-size: 1.25rem;
	color: #fff;
	z-index: var(--z-tooltip);
	transition: bottom 0.4s, transform 0.4s, background-color 0.4s;
}

.scrollup:hover {
	transform: translateY(-0.5rem);
	background-color: var(--yellow-text);
	color: var(--black);
}
/* Show Scroll Up */
.show-scroll {
	bottom: 1rem;
}


/* VIDGET */
/* СОЦСЕТИ */
nav {
	position: fixed;
	bottom: .3rem;
	right: .3rem;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: grab;
	z-index: 99999;
  }
  
  nav .nav-content {
	display: flex;
	align-items: center;
	justify-content: center;
	transform: rotate(-45deg);
  }
  
  .nav-content .toggle-btn,
  .nav-content span a {
	height: 3rem;
	width: 3rem;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  
  .nav-content .toggle-btn {
	color: #fff;
	background-color: var(--yellow);
	color: var(--black);
	z-index: 100;
	cursor: pointer;
	transform: rotate(-45deg);
	transition: all 0.6s ease;
  }
  
  nav.open .toggle-btn {
	transform: rotate(315deg);
  }
  
  .nav-content span {
	position: absolute;
	transition: all 0.6s ease;
	opacity: 0;
  }
  
  nav.open .nav-content span {
	transform: rotate(calc(var(--i) * (360deg/8))) translateY(120px);
	opacity: 1;
  }
  
  .nav-content span a {
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: .3rem;

  }
  
  .nav-content span a:hover {
	background: var(--orange);
  }
  
  .first {
	background-color: var(--yellow);
	transform: rotate(45deg);
	font-size: 1.4rem;
  }
  
  .second {
	background-color: var(--yellow);
	transform: rotate(45deg);
	font-size: 2rem;
  }
  
  .third {
	background-color: var(--yellow);
	transform: rotate(45deg);
	font-size: 1.4rem;
  }
  
  
  .nav-content span a i {
	
	color: var(--black);
	transform: rotate(calc(var(--i) * (360deg/ -8)));
	transition: 0.2s;
  }
  
  .nav-content span a:hover i {
	opacity: 1;
  }
  
  .pulse::before,
  .pulse::after {
	content: '';
	position: absolute;
	border: 2px solid var(--yellow);;
	left: -20px;
	opacity: 0;
	right: -20px;
	top: -20px;
	bottom: -20px;
	border-radius: 50%;
	animation: pulse 2.5s linear infinite;
  }
  
  .pulse::after {
	animation-delay: 1.25s;
  }
  
  @keyframes pulse {
	0% {
	  transform: scale(0.5);
	  opacity: 0;
	}
  
	50% {
	  opacity: 1;
	}
  
	100% {
	  transform: scale(1.2);
	  opacity: 0;
	}
  }
  
  /* СОЦСЕТИ */







/*=============== BREAKPOINTS ===============*/
@media screen and (max-width: 576px) {

	.home__contacts{
		font-size: .7rem;
		top: 1rem;
	}

	.home__contacts a{
		font-size: 1rem;
	}



	.home__image {
		width: 250px;
		height: 250px;
		/* position: relative;
		right: -2rem; */
	}

	.home__social {
		left: -2rem;
	}

	.hs__title {
		font-size: 1rem;
	}
}
/* For small devices */
@media screen and (max-width: 340px) {
	.container {
		margin-inline: 1rem;
	}

	.home__image {
		width: 180px;
		height: 180px;
	}

	.about__image {
		width: 180px;
	}

	.about__shadow {
		height: 330px;
		right: -2.5rem;
	}

	.contact__data {
		width: 100%;
	}

	.contact__data .section__title-1 {
		transform: translateX(0);
	}

}
/* For medium devices */
@media screen and (min-width: 576px) {
	.home__container,
	.about__container {
		grid-template-columns: 350px;
		justify-content: center;
	}

	.contact__data {
		width: 350px;
		height: 320px;
		padding: 4rem 1.5rem;
		margin-inline: auto;
	}

	.contact__container {
		grid-template-columns: 500px;
		justify-content: center;
	}

	.contact__group {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 1rem;
	}

	.home__contacts{
		top: 1rem;
	}

}

@media screen and (min-width: 768px) {
	.services__container {
		grid-template-columns: repeat(2, 250px);
	}

	.slider-wrapper {
		padding: 3rem;
	}

}



@media screen and (max-width: 1150px){
	.many__years{
		color: #fff;
		font-weight: bold;
		font-style: italic;
		font-size: 1.4rem;

		bottom: 3rem;
		left: -4rem;
	
		transform: rotate(-15deg);
	}
	
	.many__years span{
		font-size: 4rem;
		/* color: var(--orange); */
	}
}



/* For large devices */
@media screen and (min-width: 1150px) {

	.home__contacts{
		top: -2rem;
	}
	
	.container {
		margin-inline: auto;
	}

	.section {
		padding-block: 7rem 2rem;
	}

	.section__title-1::after,
	.section__title-2::after {
		width: 70px;
		height: 48px;
	}

	.geometric-box {
		transform: scale(1.2);
	}

	.nav {
		height: var(--header-height);
	}
	.nav__close,
	.nav__toggle,
	.nav__title,
	.nav__name {
		display: none;
	}

	.nav__list {
		flex-direction: row;
		column-gap: 4rem;
		font-size: var(--normal-font-size);
	}

	.nav__link:hover {
		color: var(--orange);
	}

	.active-link {
		color: var(--yellow-text);
	}

	.nav__link-button {
		background-color: var(--orange);
		color: var(--black);
		padding: .3rem .5rem;
		border-radius: .5rem;
	}

	.nav__link-button:hover {
		background: var(--yellow);
		color: var(--black);
	}

	.nav__link-button::after {
		background-color: transparent;
	}













	/* HOME */

	.home__container {
		grid-template-columns: repeat(2, 460px);
		gap: 2rem 4rem;
		align-items: center;
		padding-block: 5.5rem;
	}

	.home__perfil {
		grid-column: 2/3;
		grid-row: 1/3;
	}

	.home__image {
		height: 350px;
		width: 350px;
	}

	.home__shadow {
		right: -1.25rem;
		bottom: -1.25rem;
		border: 6px solid var(--yellow);
	}

	.home__name,
	.home__description {
		text-align: initial;
	}

	.home__name {
		font-size: 3.5rem;
		align-self: flex-end;
	}

	.home__info {
		margin-top: 0;
		align-self: flex-start;
	}

	.home__description {
		position: relative;
		font-size: var(--h2-font-size);
		margin-bottom: 5.5rem;
		padding-left: 3rem;
	}

	.home__description::after {
		content: '';
		width: 32px;
		height: 2px;
		background-color: var(--orange);
		position: absolute;
		left: 0;
		top: 14px;
	}

	.home__scroll {
		margin: 0;
		display: flex;
		align-items: center;
		column-gap: 0.75rem;
	}

	.home__scroll-text {
		display: block;
		color: var(--yellow-text);
		font-size: 1rem;
		font-weight: bold;
	}

	.home__scroll-box {
		width: 44px;
		height: 44px;
	}

	.home__scroll-box i {
		font-size: 1.25rem;
	}

	.home__perfil .geometric-box {
		top: 15rem;
	}

	.home__arrow {
		top: 4.5rem;
		left: -8rem;
		rotate: 80deg;
		width: 80px;
	}

	.home__line {
		left: -15rem;
		bottom: 4rem;
		width: 80px;
		rotate: 30deg;
	}

	.home__social {
		left: initial;
		right: -6rem;
	}

	.home__social-link {
		font-size: 1.5rem;
		padding: 0.5rem;
	}

	.about__container {
		grid-template-columns: 440px 525px;
		gap: 1rem 9rem;
		align-items: center;
		padding-block: 1rem;
	}

	.about__perfil {
		order: -1;
		grid-row: 1/3;
	}

	.about__image {
		width: 350px;
	}

	.about__img {
		border: 2px solid var(--gray);
	}

	.about__shadow {
		width: 240px;
		height: 500px;
		top: -4rem;
		right: -5.5rem;
	}

	.about__perfil .geometric-box {
		right: -4rem;
		top: 4.5rem;
	}

	.about__line {
		width: 80px;
		right: -2rem;
		top: 10rem;
	}

	.about__box {
		width: 64px;
		height: 64px;
		right: -0.75rem;
	}

	.about__container .section__title-1 {
		align-self: flex-end;
		margin-inline: 0;
	}

	.about__info {
		align-self: flex-start;
		padding-left: 3rem;
	}

	.about__description {
		font-size: var(--h2-font-size);
		margin-bottom: 2rem;
	}

	.about__description::after {
		width: 32px;
		height: 2px;
		left: -3rem;
		top: 14px;
	}

	.about__list {
		margin-bottom: 5rem;
	}

	.about__buttons {
		justify-content: initial;
	}

	.button__ghost {
		padding: 0.75rem;
	}

	.button__ghost i {
		font-size: 1.5rem;
	}

	.services__container {
		grid-template-columns: repeat(3, 282px);
		column-gap: 5rem;
		padding-block: 3rem 5rem;
	}

	.services__content {
		padding: 1.5rem;
		/* border: 6px solid #f0c835; */
		box-shadow: 0 0 3px 6px var(--yellow);
	}

	.services__icon i {
		font-size: 3rem;
	}

	.services__box {
		width: 32px;
		height: 32px;
	}

	.services__title {
		margin-bottom: 1.5rem;
	}

	.services__card:hover .services__border {
		transform: translate(1.25rem, 1.25rem);
	}

	.contact__container {
		grid-template-columns: 440px 670px;
		grid-template-rows: initial;
		padding-bottom: 2rem;
	}

	.contact__container .section__title-1 {
		font-size: var(--h2-font-size);
	}

	.contact__container .section__title-1::after {
		width: 40px;
		height: 30px;
	}

	.contact__mail {
		grid-column: 2/3;
		grid-row: 1/3;
		padding: 7rem 5.5rem 6rem 7.5rem;
	}

	.contact__title {
		font-size: var(--h3-font-size);
		text-align: initial;
	}

	.contact__box {
		height: 60px;
	}

	.contact__form .contact__area {
		height: 11rem;
	}

	.contact__button {
		margin-top: 1.25rem;
		width: max-content;
	}

	.contact__data {
		width: 392px;
		height: 375px;
		padding: 4.5rem 3.5rem 3.5rem;
		margin: 7.5rem 0 0 8rem;
		/* border-bottom: 6px solid var(--red-dark); */
	}

	.contact__data .section__title-1 {
		margin: 0 0 2rem;
		transform: translateX(-6.5rem);
	}

	.contact__social {
		margin-left: 8rem;
		text-align: initial;
		background-color: transparent;
	}

	.contact__social-data {
		flex-direction: row;
		align-items: center;
		column-gap: 1.25rem;
	}

	.contact__social-arrow {
		width: 40px;
	}

	.contact__social-link {
		font-size: 1.5rem;
		padding: 0.5rem;
	}

	.footer__container {
		padding-block: 4rem;
		grid-template-columns: repeat(2, max-content);
		justify-content: space-between;
	}

	.footer__links {
		column-gap: 3rem;
		order: 1;
	}

	.scrollup {
		right: 3rem;
	}

	.button__project {
		font-size: 1.2rem;
		font-weight: var(--font-semi-bold);
	}
}









.reg_docs{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}


.docs__href{
	text-decoration: none;
	color: #ecec20;
	margin: .5rem;
	font-weight: 500;
}

.docs__href:hover{
	color: #f2ae25;
}








/* MODAL */
/* Services modal */
.services__modal {
	position: fixed;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 2rem 1rem;
	display: grid;
	place-items: center;
	visibility: hidden;
	opacity: 0;
	transition: 0.4s;
	z-index: 9999;
}

.services__modal-content {
	position: relative;
	background-color: var(--black);
	padding: 1.5rem;
	width: 20rem;
	border: 3px solid var(--orange);
}

.services__modal-title,
.services__modal-description {
	text-align: center;
}

.services__modal-title {
	font-size: var(--h2-font-size);
	color: var(--yellow-text);
	margin-bottom: 1rem;
	line-height: 1;
}

.services__modal-description {
	color: #fff;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 2rem;
	line-height: 1;
}

.services__modal-close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	font-size: 1.5rem;
	color: var(--gray);
	cursor: pointer;
}

.services__modal-close:hover {
	color: var(--yellow);
}

/*Active modal*/
.active-modal {
	opacity: 1;
	visibility: visible;
}


@media (min-width: 600px) {
	.home__contacts .home__phone{
		font-size: 1.5rem;
	}

	.home__container {
		padding-top: 10rem;
	}
}