@charset "utf-8";
@font-face {
	font-family: 'Circe';
	src: url('../fonts/Circe-Light.eot');
	src: local('Circe Light'), local('Circe-Light'),
		url('../fonts/Circe-Light.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Circe-Light.woff2') format('woff2'),
		url('../fonts/Circe-Light.woff') format('woff'),
		url('../fonts/Circe-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
	font-display: fallback;
}

@font-face {
	font-family: 'Circe';
	src: url('../fonts/Circe-Regular.eot');
	src: local('Circe'), local('Circe-Regular'),
		url('../fonts/Circe-Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Circe-Regular.woff2') format('woff2'),
		url('../fonts/Circe-Regular.woff') format('woff'),
		url('../fonts/Circe-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: fallback;
}

@font-face {
	font-family: 'Circe';
	src: url('../fonts/Circe-Bold.eot');
	src: local('Circe Bold'), local('Circe-Bold'),
		url('../fonts/Circe-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Circe-Bold.woff2') format('woff2'),
		url('../fonts/Circe-Bold.woff') format('woff'),
		url('../fonts/Circe-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
	font-display: fallback;
}

:root{
	--color-primaryA: #373c59; /* DarkPurple */
	--color-primaryB: #f15b4e; /* Orange */
	--color-secondaryA: #929ebc;
	--color-secondaryB: #fabfb7;
	--fs-standart: 16px;
	--fs-header:  20px;
}

[text-size="large"]{
	--fs-standart: 20px;
	--fs-header:  24px;
}

[text-size="medium"]{
	--fs-standart: 18px;
	--fs-header:  22px;
}

*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body{
	font-family: 'Circe', 'Arial', sans-serif;
	font-weight: normal;
	font-style: normal;
	width: 100vw;
	overflow-x: hidden;
	scroll-behavior: smooth;
	min-height: 100vh;
	background-image: url(../images/back/Project-Manager-Meeting-large.png);
	background-size: cover;
	background-attachment: fixed;
	background-position-x: center;
	background-position-y: top;
	font-size: var(--fs-standart);
}

body.admin-bar{
	min-height: calc(100vh - 32px);
}

/** Меню навигации **/
.menu {
	font-weight: bold;
	font-style: normal;
	display: flex;
	width: 100%;
	color: rgb(235 235 236);
}

.primaryMenu {
	position: absolute;
	left: 0;
	border-bottom: 2px solid rgb(235 235 236 / 10%);
	z-index: 999;
}

.primaryMenu.fixed {
	position: fixed;
	border-bottom: 2px solid;
}

.primaryMenu.fixed, .primaryMenu.active, .secondaryMenu {
	background: var(--color-primaryA);
	color: rgb(146 158 188);
}

/**** Логотип ****/
#logo{
	padding: 4px 0;
	align-items: center;
}

#logo-abbr {
	display: none;
}

#showMenu {
	border: none;
	background: none;
	cursor: pointer;
	transition: .4s ease-out;
	display: none;
}

#showMenu:hover {
	transform: scale(1.25);
}

#showMenu img {
	height: calc(var(--fs-header) * 1.2 );
}

#logo img {
	height: calc(var(--fs-header) * 1.45 );
}

.menuWrapper {
	display: flex;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 10px;
}

.primaryMenuWrapper {
	justify-content: space-between;
	padding: 0 10px;
}

.primaryMenuLinks {
	display: flex;
	flex-direction: column;
	font-size: var(--fs-header);
}

.primaryMenuPart {
	display: flex;
	justify-content: end;
}

.menu-anchors {
	font-size: var(--fs-standart);
	background-size: 0;
}

.primaryMenuPart.anchors a{
	color: var(--color-secondaryB);
}

.menu-anchors.fixed {
	position: fixed;
	right: 12px;
	top: calc(50vh - 100px);
}

.menu-anchors.fixed::after {
	content: "";
	display: block;
	width: 2px;
	height: 200px;
	background-image: inherit;
	transform: scaleY(0.98);
}

.menu-anchors.fixed.bottom {
	font-size: 0;
	top: unset;
	bottom: 18px;
	left: calc(50vw - 100px);
	right: unset;
}

.menu-anchors.fixed.bottom::after {
	width: 200px;
	height: 2px;
	transform: translateX(-200px) translateY(15px);
	box-shadow: 0px 0px 15px 6px #fabfb779, 10px 0px 15px 3px #00000080, -10px 0px 15px 3px #00000080;
}

.menu-anchors.fixed ul {
	height: 200px;
	flex-direction: column;
	justify-content: space-between;
	align-items: end;
}

.menu-anchors.fixed.bottom ul {
	height: auto;
	width: 200px;
	flex-direction: row;
	justify-content: space-between;
}

.menu-anchors.fixed li {
	padding: 0;
}

.menu-anchors.fixed a::after {
	content: "";
	display: flex;
	align-self: center;
	transform: translateX(9px);
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid #ebebec;
	background: #ebebec;
	transition: border-color .4s ease;
	z-index: 50;
}

.menu-anchors.fixed.bottom a::after {
	transform: translateY(8px);
}

.menu-anchors.fixed a:hover::after {
	border-color: #fabfb7;
}

.menu-anchors.fixed a.scrolled::after {
	background: var(--color-secondaryB);
}

.menu-anchors.fixed li:first-of-type a::after {
	align-self: baseline;
}

.menu-anchors.fixed li:last-of-type a::after {
	align-self: flex-end;
}

.menu li {
	list-style: none;
	padding: 4px;
}

.menu a {
	display: flex;
	color: inherit;
	text-decoration: none;
}

.primaryMenuPart.pages a::after {
	content: "";
	align-self: center;
	margin: 0 5px;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 10px solid;
}

.primaryMenuPart.pages a:only-child::after {
	margin: 0;
	border: none;
}

/**** Анимация для выпадающего меню ****/
.primaryMenuPart.pages ul {
	position: absolute;
	display: flex;
	opacity: 0;
	padding-top: 4px;
	transition: opacity .5s ease;
	transform: scale(0);
	flex-direction: column;
}

.primaryMenu.fixed .pages ul{
	padding-top: 6px;
}

.primaryMenu.fixed .pages ul li {
	background: var(--color-primaryA);
	border-style: solid;
	border-width: 0 2px 2px 2px;
	box-shadow: none;
}

.primaryMenuPart.pages ul li {
	background: black;
	padding: 4px;
	box-shadow: 7px 7px 9px 4px #00000040, -7px 7px 9px 4px #00000040;
}

.primaryMenuPart.pages li:hover > ul {
	opacity: 1;
	transform: scale(1);
}

/** Нижнее меню **/
.secondaryMenu {
	border-top: 2px solid;
	position: sticky;
	z-index: 13;
}

.secondaryMenuWrapper {
	align-items: end;
	flex-wrap: wrap;
}

.side-info {
	margin-top: 0.5em;
	margin-left: auto;
}

.partners {
	margin-right: 5px;
}

.partner_logo {
	height: 32px;
	margin: 0 4px;
}

.copyright {
	text-align: right;
	font-size: 14px;
	padding-right: 10px;
}

.copyright::first-letter {
	font-size: 20px;
	padding-right: 2px;
}

/** Модальное окно **/
.term {
	color: inherit;
	text-decoration: none;
	text-indent: 0;
}

.term::after{
	content: "❖";
	display: inline-flex;
	color: var(--color-primaryB);
	font-size: calc(var(--fs-standart) / 2);
	vertical-align: top;
}

.partners .term {
	display: unset;
}

.partners .term::after{
	content: "";
}

.modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999999;
	background: #00000080;
	backdrop-filter: blur(5px) grayscale(0.2);
}

.modal-wrapper {
	width: 450px;
	max-width: 80vw;
	max-height: 80vh;
	padding: 1em;
	overflow: auto;
	background: var(--color-primaryB);
	color: #ebebec;
}

.modal-close {
	display: block;
	float: right;
	width: 24px;
	height: 24px;
	background: url(../icons/meteor.svg) bottom left no-repeat;
	background-size: 20px;
	cursor: pointer;
	transform: translate(1em, -1em);
}

.modal-content {
	padding-top: 0.5em;
	text-align: justify;
	text-indent: 1em;
}

.modal-link {
	color: inherit;
	float: right;
}

.modal-link.site::before {
	content: "Сайт";
}

.modal-link.form::before {
	content: "Форма";
}

.modal-link.example::before {
	content: "Пример";
}

.modal-link.registry::before {
	content: "Реестр";
}

.modal-link.prof-standart::before {
	content: "Профстандарт";
}

/** CONTENT **/
/** Общие правила для всех section **/
.content-block
{
	color: #ebebec;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 0;
}

.content-block h2 {
	font-weight: 300;
	padding: 0 20px 20px 20px;
}

.content-block:nth-child(2n) {
	background: #187295;
}

.content-block:nth-child(2n+1) {
	background: rgb(0 0 0 / 60%);
}

/** Обложка сверху **/
.greeting-cover {
	display: flex;
	background: rgb(0 0 0 / 60%);
	min-height: 100vh;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	color: #ebebec;
	padding: 4px;
	font-size: var(--fs-header);
}

.greeting-quote {
	display: flex;
	flex-direction: column;
	width: fit-content;
	margin: 35px 0 0 25px;
	font-size: var(--fs-standart);
}

.greeting-quote::before, .greeting-quote::after {
	content: "";
	width: 15px;
	height: 15px;
	border-style: solid;
	border-color: var(--color-primaryB);
}

.greeting-quote::before {
	border-width: 3px 0 0 3px;
	margin: -18px 0 0 -18px;
}

.greeting-quote::after {
	border-width: 0 3px 3px 0;
	margin-left: 100%;
}

.greeting-phrase {
	font-weight: 300;
}

.greeting-phrase::before, .greeting-phrase::after, .standart-list li::before{
	content: "";
	display: inline-flex;
	vertical-align: middle;
	width: 15px;
	height: 2px;
	background: var(--color-primaryB);
}

.greeting-phrase::before{
	margin-right: 5px;
}

.greeting-phrase::after{
	margin-left: 5px;
}

.greeting-quote cite {
    text-align: right;
    font-size: 80%;
}

/** section #info **/
#info p{
	max-width: 1000px;
	width: 100%;
	text-align: justify;
	margin-bottom: 0.8em;
	font-size: 120%;
	padding: 0 10px;
}

.standart-list {
	padding: 0 15px 0 40px;
	max-width: 1200px;
	text-align: justify;
	margin-bottom: 1em;
}

.standart-list li {
	text-indent: -30px;
	list-style: none;
	margin-bottom: 8px;
}

.standart-list li::before {
	width: 10px;
	height: 3px;
	margin-right: 4px;
}

.mobile{
	display: none;
}

.last-news{
	background: #00000040;
	z-index: 5;
}

.last-news li {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-width: 320px;
	width: 320px;
	align-items: center;
	align-self: flex-start;
}

.last-news li a {
	max-width: 233px;
	color: transparent;
	height: 82px;
	position: relative;
	margin-right: 0 !important;
	width: 75%;
	background: url(../icons/scenery.svg), url(../icons/text-preload.svg);
	background-color: #125570;
	background-size: contain;
	background-repeat: no-repeat;
	background-position-x: 6px, right;
}

.last-news li img{
	margin-right: 12px !important;
	visibility: hidden;
}

.last-news.loaded li img{
	visibility: visible;
}

.last-news.loaded li a {
	max-width: 233px;
	color: var(--color-secondaryB);
	height: unset;
	background: unset;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.last-news .wp-block-latest-posts__featured-image{
	position: relative;
	margin-right: 0 !important;
	display: none;
}

.last-news.loaded .wp-block-latest-posts__featured-image{
	display: unset;
}

.last-news .wp-block-latest-posts__post-excerpt {
	position: relative;
	font-size: 80%;
	color: transparent;
	background: url(../icons/text-preload.svg);
	background-color: #125570;
	background-size: 25%, contain;
	background-position-y: center;
	user-select: none;
	margin: 12px 0 0 0 !important;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

.last-news.loaded .wp-block-latest-posts__post-excerpt{
	color: unset;
	background: none;
	overflow: hidden;
}

.last-news .wp-block-latest-posts__post-excerpt::before, .last-news li a::before {
	position: absolute;
	content: "";
	top: -2px;
	left: -2px;
	z-index: -1;
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	border-radius: 2px;
	background: linear-gradient(60deg, #ebebec, #34abd9, #ffffff, #34abd9, #ebebec);
	background-size: 250% 250%;
	background-position: 0 50%;
	animation: moveGradient 3s alternate infinite;
	box-shadow: 0 0 4px 1px #ffffff70;
}

.last-news.loaded .wp-block-latest-posts__post-excerpt::before, .last-news.loaded li a::before{
	display: none;
}

@keyframes moveGradient {
	50% {
		background-position: 100% 50%;
	}
}

/** section #service **/
.service-list {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	flex-direction: column;
}

.service-list.loading {
    width: 900px;
    min-height: 180px;
    max-width: 100vw;
    background: url(../icons/writing.svg);
    background-size: contain;
    background-repeat: round;
}

.service-list.loading *{
	user-select: none;
	opacity: 0;
}

.service-list-select {
    display: flex;
    flex-direction: column;
    justify-content: right;
    align-items: end;
}

.study-trainings, .last-news{
	display: flex;
	margin: 0 auto;
	max-width: 1200px;
	overflow: auto;
	background: #00000040;
	column-gap: 32px;
	padding: 10px 16px !important;
}

.study-training-card {
	display: inherit;
	flex-direction: column;
	align-items: center;
	padding: 10px 0;
	cursor: pointer;
}

.study-icon {
	height: 32px;
	margin-bottom: 12px;
	transition: transform .4s;
	background: url(../icons/graduation.svg);
	padding-left: 40px;
	background-repeat: no-repeat;
	font-size: var(--fs-header);
}

.study-training-card:hover .study-icon{
	transform: scale(1.2);
}

.study-training-card:after {
	background: var(--color-primaryA);
	position: absolute;
	content: attr(prompt);
	font-size: 14px;
	width: 250px;
	max-width: 80vw;
	margin: 40px 0 0 0;
	padding: 6px 12px;
	box-shadow: 0 0 4px 4px #196d8f;
	z-index: 400;
	opacity: 0;
	transform: scale(0);
	transition: opacity .6s;
}

.study-training-card.showPrompt:after {
	transform: unset;
    opacity: 1;
}

.study-training-card.showPrompt:hover .study-icon{
	transform: unset;
}

.study-training-card a {
	color: #ebebec;
	text-decoration: none;
	transition: color .4s;
	word-break: break-word;
	line-height: 1.25;
	max-height: calc(var(--fs-standart) * 5);
	overflow: hidden;
	text-align: center;
	width: 190px;
	padding: 0 10px;
	margin: auto 0;
}

.study-training-card:hover a{
	color: var(--color-secondaryB);
}

/** section #photos **/
#photos .wp-block-gallery {
	padding: 12px 40px;
	max-width: 1200px;
}

#photos .wp-block-gallery img{
	box-shadow: 0px 0 6px 0px #ffffff80;
}

/** section #feedback **/
#feedback {
    padding: 0 24px;
}

#feedback > div{
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 40px calc(50vw - 600px);
}

.contact-location{
	display: flex;
	margin: 0 15px 30px 15px;
}

.contact-location .wp-block-group__inner-container {
	display: inherit;
	flex-direction: column-reverse;
}

.contact-desc {
	position: absolute;
	background: var(--color-primaryA);
	color: black;
	padding: 12px 18px;
	width: 640px;
	max-width: 100vw;
	min-width: 320px;
	line-height: 140%;
	opacity: 0.9;
	transition-property: color, opacity, transform;
	transition-duration: .4s, .4s, .0s;
	transition-delay: .0s, .0s, .4s;
	z-index: 15;
}

.contact-map {
	width: 640px;
	height: 640px;
	max-width: 100vw;
	max-height: 90vh;
	min-width: 320px;
	background: #f8f9fb;
	z-index: 15;
}

#contact-info-expand {
	display: none;
	position: absolute;
	background: url(../icons/expand.svg);
	background-size: 30px 30px;
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--color-primaryA);
	width: 44px;
	height: 44px;
	cursor: pointer;
	margin: 0 0 20px 10px;
	border-radius: 8px;
	box-shadow: 0px 0px 4px 4px rgb(0 0 0 / 60%);
	z-index: 15;
}

/** Для слабовидящих **/
.vis-imp {
	position: fixed;
	bottom: 12px;
	right: 12px;
	z-index: 12;
}

.vis-imp-mode-wrapper {
	display: flex;
	flex-direction: column;
	max-height: max-content;
	transform: translateY(190px);
	transform-origin: bottom;
	opacity: 0;
	height: 0;
	transition-timing-function: ease-out;
	transition-property: transform, opacity, height;
	transition-delay: 0s, 0s, 0.2s;
	transition-duration: .4s, .6s, .2s;
}

.vis-imp.active .vis-imp-mode-wrapper{
	height: 131px;
	opacity: 1;
	transform: unset;
}

.vis-imp-mode, .vis-imp-controller {
	display: block;
	background: var(--color-primaryA);
	color: #ebebec;
	margin: 5px 0;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	cursor: pointer;
	border: 3px solid;
	font-size: 16px;
}

.vis-imp-mode.current {
	background: var(--color-primaryB);
}

.vis-imp-controller {
	background-image: url(../icons/glasses.svg);
	background-size: 20px 20px;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: -4px 0px 10px 0px #ffffff70;
}

#vim-origin {
	transform: scale(0.8);
}

#vim-large {
	transform: scale(1.25);
	margin-bottom: 10px;
}

/** Стилизованный скроллбар **/
::-webkit-scrollbar{
	width:  5px;	height: 6px;
}

::-webkit-scrollbar-thumb {
	background-clip: padding-box;
	background: linear-gradient(120deg, #0994ff, #3583b5);
}

::-webkit-scrollbar-button {
	display: none;
}

::-webkit-scrollbar-track {
	background-color: #373c5959;
}

/****** Адаптив ******/
@media screen and (min-width: 1440px){
	.primaryMenuPart.pages ul li {
		display: flex;
		justify-content: center;
	}
}

@media screen and (min-width: 720px){
	.contact-map:hover + .contact-desc{
		opacity: 0;
		transform: scale(0);
	}

	.contact-desc:hover {
		color: inherit;
		opacity: 1;
		transform: scale(1);
	}
}

@media screen and (max-width: 1920px){
	body{
		background-image: url(../images/back/Project-Manager-Meeting-optimal.png);
	}
}

@media screen and (max-width: 1440px){
	.primaryMenuLinks{
		flex-direction: column-reverse;
	}

	.menu-anchors.fixed {
		font-size: 0;
	}

	.menu-anchors.fixed::after {
		box-shadow: 0px 0px 15px 6px #fabfb799
	}
}

@media screen and (max-width: 1200px){
	.menu-anchors {
		font-size: 0;
	}
	
	#photos .wp-block-gallery {
		padding: 12px 15px;
	}

	.study-trainings, .last-news{
		max-width: 100%;
	}
}

@media screen and (max-width: 1024px){
	body{
		background-image: url(../images/back/Project-Manager-Meeting-min.png);
	}
}

@media screen and (max-width: 782px){
	body.admin-bar{
		min-height: calc(100vh - 46px);
	}
}

@media screen and (max-width: 720px){
	:root{
		--fs-standart: 15px;
		--fs-header:  18px;
	}

	[text-size="large"]{
		--fs-standart: 19px;
		--fs-header:  22px;
	}

	[text-size="medium"]{
		--fs-standart: 17px;
		--fs-header:  20px;
	}

	#logo-abbr {
		display: inherit;
	}

	#logo-extended {
		display: none;
	}

	.greeting-quote::before, .greeting-quote::after {
		width: 12px;
		height: 12px;
	}

	.greeting-quote::before {
		margin: -15px 0 0 -15px;
	}

	.contentCardWrap {
		padding: 0 10px;
	}

	.content-block {
		padding: 15px 0;
	}

	.content-block h2{
		padding-bottom: 10px;
	}

	.content-block#service, .content-block#info{
		padding-bottom: 0;
	}

	.study-training-card {
		margin-bottom: 0;
	}

	#contact-info-expand{
		display: inherit;
		margin: 0 0 12px 9px;
	}

	.contact-desc{
		display: none;
		opacity: 1;
		color: inherit;
	}

	.study-trainings, .last-news{
		column-gap: 16px;
	    width: 100vw;
	}

	.last-news li {
		min-width: 240px;
		width: 240px;
	}

	.last-news.loaded li a{
		max-width: 153px;
	}

	.desktop{
		display: none;
	}

	.mobile{
		display: unset;
	}
}

@media screen and (max-width: 600px){
	.primaryMenu.fixed{
		top: 0;
	}

	#info p{
		font-size: 100%;
	}

	/**** Меню для смартфонов****/
	.primaryMenu.active #showMenu {
		display: none;
	}

	#showMenu {
		display: inherit;
		margin: auto 0;
	}

	#logo{
		z-index: 25;
	}

	body.pause {
		overflow: hidden;
	}

	.primaryMenu {
		transition: .5s cubic-bezier(0.39, 0.58, 0.57, 1);
		transition-property: background, width, border-color;
	}

	.primaryMenu.active{
		position: fixed;
		z-index: 100000;
		top: 0;
		background: transparent;
		border-color: transparent;
		width: 0;
	}

	.primaryMenu.active .primaryMenuWrapper {
		justify-content: space-between;
		padding: 0 10px;
	}

	.primaryMenuPart.pages {
		flex-direction: column;
	}

	.primaryMenu.active .primaryMenuPart.pages {
		max-height: calc(100vh - 70px);
		justify-content: flex-start;
		overflow: auto;
	}

	.menu-pages {
		position: fixed;
		left: 0;
		top: 0;
		border-radius: 0 0 15px 0;
		background: var(--color-primaryA);
		transform: scaleY(0);
		padding: 15px 15px;
		padding-top: calc(var(--fs-header) * 2);
		font-size: 0;
		transform-origin: top;
		transition: .5s cubic-bezier(0.4, 0, 1, 1);
		font-size: 0;
	}

	.primaryMenu.active .menu-pages {
		transform: scaleY(1);
		font-size: inherit;
		box-shadow: 0 0 4px 20px #00000060, 0 0 50vh 50vh #00000060;
	}

	.primaryMenu.active .menu-anchors{
		display: none !important;
	}

	.primaryMenu.active .menu-pages .pages ul {
		opacity: 1;
		position: inherit;
		transform: none;
	}

	.primaryMenu.active .menu-pages .pages ul li {
		border: none;
		margin-left: 10px;
		background: none;
		box-shadow: none;
	}

	.primaryMenuPart.pages a::after {
		border: none;
	}

	.standart-list{
		text-align: unset;
	}

	.modal-content{
		text-align: unset;
	}

	.partner_logo{
		height: 26px;
	}
}

@media screen and (max-width: 440px){
	:root{
		--fs-standart: 14px;
		--fs-header:  16px;
	}

	[text-size="large"]{
		--fs-standart: 18px;
		--fs-header:  20px;
	}

	[text-size="medium"]{
		--fs-standart: 16px;
		--fs-header:  18px;
	}

	.greeting-quote::before, .greeting-quote::after {
		width: 10px;
		height: 10px;
	}

	.greeting-quote::before {
		border-width: 2px 0 0 2px;
		margin: -13px 0 0 -13px;
	}

	.greeting-quote::after {
		border-width: 0 2px 2px 0;
	}

	#feedback {
		padding-bottom: 0;
	}

	.contact-location{
		margin-bottom: 0;
	}
}

@media screen and (max-width: 400px){
	#info p{
		text-align: left;
	}
}