@import url('../fonts/montserrat/font.css');
@import url('../fonts/felidae/font.css');

html {
	font-size: 10px;
	background: var(--body-bg-color);
}
* {
	outline: none !important;
}
body {
	color: #000;
	font-size: 1.6rem;
	line-height: 150%;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #fff;
	overflow-x: hidden;
	zoom: 1;
	margin: 0;
}
.container {
	width: 100%;
	max-width: 1560px;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}
.img-fluid {
	max-width: 100%;
	height: auto;
}
.img-centered {
	display: block;
	margin: 0 auto;
}
.text-center {
	text-align: center;
}
.nowrap {
	white-space: nowrap;
}
.section {
	min-height: 960px;
}
.section-title {
	font-family: 'Felidae', sans-serif;
	font-weight: 400;
	font-size: 8.5rem;
	line-height: 86%;
}
.section-title:after {
	content: '';
	display: inline-block;
	border-radius: 50%;
	width: 1rem;
	height: 1rem;
	background: #f92020;
	margin-left: 1.6rem;
}
.btn-red {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	border: 0;
	color: #fff;
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 100%;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	white-space: nowrap;
	text-decoration: none;
	padding: 1rem 1rem 1rem 2.8rem;
	border-radius: 5.5rem;
	background: linear-gradient(90deg, #af0808 0%, #f92020 100%);
	box-shadow: 0 4px 55px 0 rgba(249, 32, 32, 0.3);
	transition: all 0.3s;
}
.btn-red span {
	display: block;
	margin-top: 0.1rem;
}
.btn-red:hover {
	box-shadow: 0 4px 55px 0 rgba(249, 32, 32, 0.7);
}
.btn-red i {
	content: '';
	display: block;
	width: 4.6rem;
	height: 4.6rem;
	border-radius: 50%;
	background: rgba(255, 255,255, 0.25) url('../img/icon-btn-red-arrow.svg') center center no-repeat;
}
.btn-grey {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 3rem;
	border: 0;
	color: #272233;
	font-weight: 600;
	font-size: 1.1rem;
	line-height: 100%;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	white-space: nowrap;
	text-decoration: none;
	padding: 1rem 1rem 1rem 2.8rem;
	border-radius: 5.5rem;
	background: #f5f5f5;
	transition: all 0.3s;
}
.btn-grey span {
	display: block;
	margin-top: 0.1rem;
}
.btn-grey:hover {
	background: transparent;
	box-shadow: inset 0 0 0 0.1rem rgba(249, 32, 32, 0.2);
}
.btn-grey i {
	content: '';
	display: block;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: #f92020 url('../img/icon-btn-grey-arrow.svg') center center no-repeat;
	transition: all 0.3s;
}
.btn-grey:hover i {
	transform: rotate(-90deg);
}
#section-intro {
	position: relative;
	background: #000 url(../img/intro-bg.jpg) center center no-repeat;
	background-size: cover;
	color: #fff;
	padding-top: 20rem;
}
#section-intro:after {
	position: absolute;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: url(../img/intro-bg-lines.svg) top center no-repeat;
	pointer-events: none;
	z-index: 10;
}
#section-intro .logo {
	position: absolute;
	top: 2.6rem;
}
#section-intro .block {
	position: relative;
	display: flex;
	justify-content: space-between;
	margin-bottom: 15.8rem;
	z-index: 30;
}
#section-intro .block-title {
	flex-basis: 500;
}
#section-intro .block-title h1 {
	font-size: 11rem;
	line-height: 100%;
	margin-left: 8.2rem;
}
#section-intro .block-content {
	flex-basis: 510px;
	margin-right: 6.7rem;
}
#section-intro .block-content .p-title {
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 135%;
	margin-bottom: 4.2rem;
}
#section-intro .block-content .p-text {
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 135%;
	opacity: 0.7;
	margin-bottom: 3.2rem;
}
#section-intro .block-content .contacts {
	display: flex;
	align-items: center;
	gap: 3.6rem;
}
#section-intro .block-content .contacts ul {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	list-style: none;
	padding: 0;
	margin-bottom: 0;
}
#section-intro .block-content .contacts ul>li {
	display: block;
}
#section-intro .block-content .contacts ul .icon {
	display: block;
	text-decoration: none;
	width: 6.4rem;
	height: 6.4rem;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 0;
	transition: transform 0.1s;
}
#section-intro .block-content .contacts ul .icon:hover {
	transform: scale(1.1);
}
#section-intro .block-content .contacts ul .icon-yt {
	background: url(../img/icon-yt.svg) center center no-repeat;
}
#section-intro .block-content .contacts ul .icon-tg {
	background: url(../img/icon-tg.svg) center center no-repeat;
}
#section-intro .block-content .contacts ul .icon-vk {
	background: url(../img/icon-vk.svg) center center no-repeat;
}
#section-intro .items-container {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.35);
	margin-bottom: 9rem;
	z-index: 30;
}
#section-intro .items {
	display: flex;
	justify-content: center;
	backdrop-filter: blur(1rem);
	-webkit-backdrop-filter: blur(1rem)
}
#section-intro .item {
	flex-basis: 509px;
	display: flex;
	background: rgba(255, 255,255, 0.06);
	border-right: 1px solid rgba(255, 255, 255, 0.15);
	padding: 4.4rem 3.8rem 5.6rem;
}
#section-intro .item:last-child {
	border-right: 0;
}
#section-intro .item .p-num {
	flex-basis: 8.6rem;
	font-family: 'Felidae', sans-serif;
	font-size: 5.5rem;
	line-height: 120%;
	margin-bottom: 0;
}
#section-intro .item .p-text {
	flex-basis: 340px;
	font-size: 1.6rem;
	line-height: 145%;
	padding-top: 3rem;
	margin-bottom: 0;
	opacity: 0.85;
}
#section-intro .img-ep {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	margin-left: -11rem;
	pointer-events: none;
	z-index: 20;
}
#section-intro .img-text {
	position: absolute;
	top: 37.2rem;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	z-index: 20;
}
#section-projects {
	position: relative;
	padding-top: 9rem;
	padding-bottom: 9rem;
}
#section-projects:before {
	position: absolute;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: url(../img/projects-bg-lines.svg?v=1.1) top center no-repeat;
	pointer-events: none;
	z-index: 10;
}
#section-projects .section-title {
	margin-bottom: 7rem;
}
#section-projects .items {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 3rem;
	z-index: 20;
}
#section-projects .item {
	flex-basis: 490px;
	display: flex;
	flex-direction: column;
	background: #fff;
	box-shadow: 0 4px 150px 0 rgba(0, 0, 0, 0.05);
	transition: background 0.3s;
}
#section-projects .item:hover {
	background: #fefefe;
}
#section-projects .item .item-logo {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 185px;
	border-bottom: 1px solid #f0f0f0;
}
#section-projects .item .item-logo:after {
	content: '';
	position: absolute;
	width: 2rem;
	height: 0.1rem;
	bottom: -0.1rem;
	left: 50%;
	transform: translateX(-50%);
	background: #af0808;
	box-shadow: 0 4px 10px 0 #f92020;
}
#section-projects .item .item-text {
	padding: 5.4rem 5.4rem 0;
}
#section-projects .item .item-text p {
	font-size: 1.6rem;
	line-height: 135%;
	color: #505050;
	margin-bottom: 1.2rem;
}
#section-projects .item .item-text p:last-child {
	margin-bottom: 0;
}
#section-projects .item .item-text .p-strong {
	font-weight: 600;
	color: #000;
}
#section-projects .item .item-button {
	padding: 2rem 5.4rem 5.4rem;
	margin-top: auto;
}
#section-projects .item .item-button button>span:after {
	content: attr(data-collapse-text);
}
#section-projects .item .item-button button.is-active>span:after {
	content: attr(data-collapsed-text);
}
#section-projects .item .item-button button.is-active i {
	transform: rotate(-180deg);
}
#section-projects .item .item-button button.is-active:hover i {
	transform: rotate(-90deg);
}
#section-social {
	position: relative;
	padding-top: 14.6rem;
	padding-bottom: 9rem;
}
#section-social:before {
	position: absolute;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: url(../img/social-bg-lines.svg?v=1.1) top center no-repeat;
	pointer-events: none;
	z-index: 10;
}
#section-social:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 15.1rem;
	top: -5rem;
	background: url(../img/social-after-bg.svg) center center no-repeat;
	pointer-events: none;
}
#section-social .block {
	position: relative;
	display: flex;
	justify-content: space-between;
	z-index: 20;
}
#section-social .block-text {
	flex-basis: 520px;
	padding-top: 6rem;
}
#section-social .section-title {
	margin-bottom: 6.4rem;
}
#section-social .text {
	margin-bottom: 0;
}
#section-social .text p {
	font-size: 1.6rem;
	line-height: 150%;
	margin-bottom: 2.3rem;
}
#section-social .img-spartak {
	display: block;
	max-width: 260px;
	padding: 1rem 0;
	margin: 0 auto 2.3rem;
}
#section-social .text .p-strong {
	font-weight: 600;
}
#section-social .btn-grey>span:after {
	content: attr(data-collapse-text);
}
#section-social .btn-grey.is-active>span:after {
	content: attr(data-collapsed-text);
}
#section-social .btn-grey.is-active i {
	transform: rotate(-180deg);
}
#section-social .btn-grey.is-active:hover i {
	transform: rotate(-90deg);
}
#section-social .block-slider {
	width: 910px;
	max-width: 100%;
}
#slider-social {
	width: 100%;
}
#slider-social .slide-content {
	display: flex;
	justify-content: center;
	gap: 3rem;
}
#slider-social .slide-content img {
	filter: saturate(0);
	transition: filter 1s;
}
#slider-social .slide-content img:hover {
	filter: saturate(1);
}
#slider-social-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	margin-top: 5.6rem;
}
#slider-social-scrollbar.swiper-scrollbar {
	position: relative;
	width: 20rem;
	height: 0.2rem;
	left: 0;
	top: 0;
	bottom: 0;
	background: #c1c1c1;
}
#slider-social-scrollbar>.swiper-scrollbar-drag {
	background: #af0808;
	border-radius: 0;
}
#slider-social-button-next,
#slider-social-button-prev
{
	width: 2.3rem;
	height: 0.8rem;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-image: url('../img/slider-arrow.svg');
	mask-image: url('../img/slider-arrow.svg');
	background: #150f20;
	transition: background 0.3s;
}
#slider-social-button-prev {
	transform: scale(-1, 1);
}
#slider-social-button-next:hover,
#slider-social-button-prev:hover
{
	background: #f92020;
}
#section-sport {
	position: relative;
	/*background: #fafafa url(../img/sport-bg.jpg) bottom center no-repeat;*/
	background: #fafafa;
	padding: 7.5rem 0;
}
#section-sport:before {
	position: absolute;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: url(../img/sport-bg-lines.svg?v=1.1) top center no-repeat;
	pointer-events: none;
	z-index: 10;
}
#section-sport .container {
	position: relative;
}
#section-sport .block {
	max-width: 880px;
}
#section-sport .block .p-title {
	max-width: 720px;
	display: flex;
	gap: 2.3rem;
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 150%;
	margin-bottom: 3rem;
}
#section-sport .block .p-title:before {
	content: '';
	flex-shrink: 0;
	display: block;
	width: 2rem;
	height: 0.1rem;
	background: #af0808;
	box-shadow: 0 4px 10px 0 #f92020;
	margin-top: 1.2rem;
}
#section-sport .block .text {
	margin-left: 4.3rem;
	margin-bottom: 4rem;
}
#section-sport .block .text p {
	max-width: 780px;
	font-size: 1.6rem;
	line-height: 150%;
	margin-bottom: 2.2rem;
}
#section-sport .block .text p:last-child {
	margin-bottom: 0;
}
#section-sport .block-slider {
	position: relative;
	width: 880px;
	max-width: 100%;
}
#section-sport .thumbs-container {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	z-index: 40;
}
#slider-sport-button-next,
#slider-sport-button-prev
{
	width: 2.3rem;
	height: 0.8rem;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-image: url('../img/slider-arrow.svg');
	mask-image: url('../img/slider-arrow.svg');
	background: #150f20;
	transition: background 0.3s;
	margin-bottom: 6.6rem;
}
#slider-sport-button-prev {
	transform: scale(-1, 1);
}
#slider-sport-button-next:hover,
#slider-sport-button-prev:hover
{
	background: #f92020;
}
#slider-sport-thumbs {
	width: 800px;
	max-width: 100%;
	padding-bottom: 5rem;
}
#slider-sport-thumbs .swiper-wrapper {
	align-items: flex-end;
	justify-content: space-between;
}
#slider-sport-thumbs .swiper-wrapper {
	align-items: flex-end;
	justify-content: space-between;
}
#slider-sport-thumbs .swiper-slide {
	width: 8rem !important;
	display: flex;
	justify-content: center;
	cursor: pointer;
}
#slider-sport-thumbs .swiper-slide .year {
	font-family: 'Felidae', sans-serif;
	font-size: 3.5rem;
	line-height: 3.5rem;
	opacity: 0.5;
	transition: opacity 0.3s;
}
#slider-sport-thumbs .swiper-slide:hover .year {
	opacity: 1;
}
#slider-sport-thumbs .swiper-slide-thumb-active {
	width: 14.8rem !important;
	position: relative;
}
#slider-sport-thumbs .swiper-slide-thumb-active:after {
	content: '';
	display: block;
	position: absolute;
	width: 3.9rem;
	height: 3.9rem;
	bottom: -5.4rem;
	background: url(../img/sport-slider-circle.svg) center center no-repeat;
}
#slider-sport-thumbs .swiper-slide-thumb-active .year {
	font-size: 6rem;
	line-height: 6rem;
	color: #af0808;
	opacity: 1;
	margin-bottom: -0.6rem;
}
#slider-sport-content {
	position: relative;
	border-top: 1px solid #dadcdd;
	margin-top: -2rem;
	z-index: 30;
}
#slider-sport-content .results-items {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 3rem;
	padding-top: 3rem;
}
#slider-sport-content .item {
	flex-basis: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #000;
	text-decoration: none;
	z-index: 50;
}
#slider-sport-content a.item:hover {
	text-decoration: underline;
}
#slider-sport-content .item .flag {
	margin-bottom: 1.2rem;
}
#slider-sport-content .item .flag img {
	display: block;
	height: 3.8rem;
	width: auto;
	max-width: 100%;
	box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
#slider-sport-content .item p {
	font-weight: 500;
	font-size: 1.3rem;
	line-height: 135%;
	margin-bottom: 0;
}
#slider-sport-content .btn-wrapper {
	text-align: center;
	padding-top: 3rem;
}
#slider-sport-content .btn-dropdown {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	font-weight: 600;
	font-size: 1.1rem;
	line-height: 150%;
	letter-spacing: 0.05em;
	border: none;
	background: none;
	text-transform: uppercase;
	color: #f92020;
	cursor: pointer;
}
#slider-sport-content .btn-dropdown:before {
	content: attr(data-collapse-text);
}
#slider-sport-content .btn-dropdown.is-active:before {
	content: attr(data-collapsed-text);
}
#slider-sport-content .btn-dropdown.is-active.is-active:after {
	transform: rotate(-180deg);
}
#slider-sport-content .btn-dropdown:after {
	content: '';
	display: block;
	width: 0.8rem;
	height: 1rem;
	background: url(../img/icon-dropdown.svg) center center no-repeat;
	background-size: cover;
}
#section-sport .img-ep {
	position: absolute;
	bottom: -7.5rem;
	right: -6rem;
}
#section-way {
	position: relative;
	background: #000 url(../img/way-bg.jpg) center center no-repeat;
	background-size: cover;
	color: #fff;
	padding: 22rem 0;
}
#section-way:before {
	position: absolute;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: url(../img/way-bg-lines.svg) top center no-repeat;
	pointer-events: none;
	z-index: 10;
}
#section-way .block {
	max-width: 890px;
	display: flex;
	gap: 3rem;
	margin-left: 52rem;
}
#section-way .block-title {
	flex-basis: 246px;
}
#section-way .block-text {
	flex-basis: 644px;
}
#section-way .block-text .p-title {
	font-size: 1.8rem;
	line-height: 135%;
	margin-bottom: 3.4rem;
}
#section-way .block-text .p-quote {
	font-family: 'Felidae', sans-serif;
	font-size: 5.5rem;
	line-height: 110%;
	padding-left: 10rem;
	background: url(../img/way-quote.svg) top 0.6rem left 0.6rem no-repeat;
	margin-bottom: 5.6rem;
}
#section-way .block-text .p-text {
	font-size: 1.6rem;
	line-height: 135%;
	margin-bottom: 2.3rem;
}
#section-way .block-text .p-text:last-child {
	margin-bottom: 0;
}
#section-way .block-text .p-text a {
	color: #fff;
	font-weight: 600;
	text-decoration: underline;
}
#section-way .block-text .p-text a:hover {
	text-decoration: none;
}
#footer {
	position: relative;
	background: #150f20 url(../img/footer-bg.jpg) center center no-repeat;
	background-size: cover;
	color: #fff;
	padding: 5.2rem 0 0 0;
}
#footer:after {
	position: absolute;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: url(../img/footer-bg-lines.svg) top center no-repeat;
	pointer-events: none;
	z-index: 10;
}
#footer .items-top {
	display: flex;
	margin-bottom: 6.7rem;
}
#footer .items-top .item-logo {
	flex-shrink: 0;
	flex-basis: 177px;
	margin-right: 12.8rem;
}
#footer .items-top .item-tags {
	flex-grow: 1;
	padding-top: 2rem;
}
#footer .items-top .item-tags ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 3rem 14rem;
	list-style: none;
	padding: 0;
	margin: 0;
}
#footer .items-top .item-tags ul>li {
	font-weight: 500;
	font-size: 1.7rem;
	line-height: 135%;
	white-space: nowrap;
}
#footer .items-top .item-tags ul>li.sm {
	font-size: 1.6rem;
}
#footer .items-top .item-tags ul>li.lg {
	font-size: 2.2rem;
}
#footer .delim {
	width: 100%;
	height: 0.1rem;
	background: rgba(255, 255, 255, 0.1);
}
#footer .items-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2.4rem 0;
}
#footer .items-bottom .item-copy p {
	font-size: 1.4rem;
	line-height: 135%;
	opacity: 0.7;
	margin-bottom: 0;
}
#footer .items-bottom .item-social {
	display: flex;
	align-items: center;
	gap: 2.4rem;
}
#footer .items-bottom .item-social p {
	font-size: 1.4rem;
	line-height: 135%;
	margin-bottom: 0;
}
#footer .items-bottom .item-social ul {
	display: flex;
	align-items: center;
	gap: 1rem;
	list-style: none;
	padding: 0;
	margin-bottom: 0;
}
#footer .items-bottom .item-social ul>li {
	display: block;
}
#footer .items-bottom .item-social ul .icon {
	display: block;
	text-decoration: none;
	width: 4.8rem;
	height: 4.8rem;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 0;
	transition: transform 0.1s;
}
#footer .items-bottom .item-social ul .icon:hover {
	transform: scale(1.1);
}
#footer .items-bottom .item-social ul .icon-yt {
	background: url(../img/icon-yt.svg) center center no-repeat;
	background-size: 1.8rem;
}
#footer .items-bottom .item-social ul .icon-tg {
	background: url(../img/icon-tg.svg) center center no-repeat;
	background-size: 1.8rem;
}
#footer .items-bottom .item-social ul .icon-vk {
	background: url(../img/icon-vk.svg) center center no-repeat;
	background-size: 1.8rem;
}

/*modals*/
@keyframes myFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
dialog::backdrop {
	background-color: #000;
	opacity: 0.5;
}
dialog {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s;
}
dialog[open] {
	position: fixed;
	visibility: visible;
	opacity: 1;
	transition-delay: 0s;
	pointer-events: inherit;
	animation: myFadeIn 0.3s ease normal;
}
.dialog-modal {
	width: 640px;
	max-width: 100%;
	background: #fff;
	border: 0;
	border-radius: 1.2rem;
	box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
	padding: 0; /*for closing on backdrop click*/
}
.dialog-modal .dialog-content {
	padding: 6.4rem 4.8rem;
}
.dialog-modal .dialog-close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	width: 3rem;
	height: 3rem;
	background: url("/img/icon-modal-close.svg") center center no-repeat;
	z-index: 999;
	transition: transform 0.3s;
}
.dialog-modal .dialog-close:hover {
	transform: rotate(90deg);
}
#modal-feedback .dialog-content .title {
	font-weight: 600;
	font-size: 3.2rem;
	line-height: 100%;
	color: #000;
	text-align: center;
	margin-bottom: 4.8rem;
}
#modal-feedback .dialog-content form {
	padding: 0;
	margin: 0;
}
#modal-feedback .dialog-content textarea {
	width: 100%;
	height: 16rem;
	border: 2px solid #dadcdd;
	resize: none;
	padding: 1.2rem;
	margin: 0;
}
#modal-feedback .dialog-content .btn-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 2.4rem;
}
/*modals*/
