:root {
    --fresh-pink: #D81E65;
    --fresh-blue: #1373B9;
    --fresh-dark: #0B1630;
    --fresh-text: #374048;
    --fresh-muted: rgba(15, 23, 42, .72);
    --fresh-soft: #E4F0FF;
    --fresh-gradient-angle: 90deg;
    --fresh-color-gradient: linear-gradient(var(--fresh-gradient-angle), #CE214B 15%, #3064A7 100%);

}

* {
    box-sizing: border-box;
}

body {
    //font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--fresh-text);
    background: #fff;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
}

h2{
    margin: 0 0 2rem;
    font-size: 45px;
    line-height: 1.2;
    font-weight: 700;
    /*background: linear-gradient(90deg, var(--fresh-pink) 0%, var(--fresh-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;*/
}

.br-1{
    border-radius:1rem;
}

.secondary__btn{
    position: relative;
    --fresh-gradient-angle: 0deg;
    --color-gradient: linear-gradient(var(--fresh-gradient-angle), #CE214B 15%, #3064A7 100%);
    z-index: 1;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 15px;
    line-height: 17px;
}

.secondary__btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: var(--fresh-color-gradient);
    mask: linear-gradient(#000 0 0) exclude, linear-gradient(#000 0 0) content-box;

}


.border-gradient {
    position: relative;
    --fresh-gradient-angle: 0deg;
    --color-gradient: linear-gradient(var(--fresh-gradient-angle), #CE214B 15%, #3064A7 100%);
    z-index: 1;
}



.border-gradient::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: var(--fresh-color-gradient);
    mask: linear-gradient(#000 0 0) exclude, linear-gradient(#000 0 0) content-box;
}

.border-gradient-2px::before{
    padding: 2px!important;
}

ul.ul-style{
    list-style: none;
    padding-left: 40px;
    margin-bottom:3rem;
}

.ul-style>li{
    position: relative;
    margin-bottom: 20px;
}

.ul-style>li:before{
    content:"";
    width: 32px;
    height: 32px;
    position: absolute;
    top: 0;
    left: -40px;
    border-radius: 50%;
    background: var(--fresh-color-gradient);
}

.ul-style>li:after{
    content: 'check';
    font-family: 'Material Symbols Outlined';
    font-weight: 500;
    font-style: normal;
    position: absolute;
    left: -35px;
    top: 4px;
    display: block;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.5rem;
}

.ta-c{
    text-align: center;
}

.secondary__btn.header__btn__enter{
    padding-left:40px;
}

.secondary__btn.header__btn__enter:after{
    content: url('img/header-profile.svg');
    position: absolute;
    top: 9px;
    left: 10px;
}


.page__content {
    overflow-x: clip;
}

.section {
    padding: 80px 0 0 0;
}

.section--light {
    background: #fff;
}

.section--soft {
    background: var(--fresh-soft);
}

.section__head {
    margin-bottom: 28px;
}

.header__menu > .navbar > .container-fluid{
    padding-left:0;
    padding-right:0;
}

.header__menu .navbar-nav > li:first-child > a{
    padding-left: 0;
}

.header__menu .navbar-nav > li > a {
    font-size: 14px;
    font-weight: 600;
}

.header__menu .navbar-nav > li > a.active {
    font-weight: 900;
}

.header__menu .navbar-nav li:last-child > a{
    padding-right: 0;
}

.header__menu .navbar-nav{
        width: 100%;
        display: flex;
        justify-content: space-between;
}


/*.section__title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(90deg, var(--fresh-pink) 0%, var(--fresh-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}*/

.section__subtitle {
    margin: 12px 0 0;
    font-size: 30px;
    line-height: 1.35;
    font-weight: 400;
    color: var(--fresh-text);
}

/* Start steps */
.start {

    position: relative;
}

.start__wrapper {
    background: var(--fresh-soft);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.start__container {
    position: relative;
}

.section__title {
    margin: 0 0 26px;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #374048;
    text-align: center;
}

.start__flow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 82px;
    width: min(1440px, 100vw);
    pointer-events: none;
    z-index: 0;
}

.start__bg {
    width: 100%;
    height: auto;
    opacity: 1;
    display: block;
}

.start__container article:first-child .start__item:after{
    content: unset;
}

.start__item {
    border-radius: 20px;
    padding: 18px;
    min-height: 200px;
    margin-top:calc(var(--bs-gutter-x) * .5);
    margin-bottom:calc(var(--bs-gutter-x) * .5);
    margin-left: 50px;
}

.start__item:after{
    content:url('img/arrow-right.svg');
    position: absolute;
    top: 35px;
    left: -60px;
}

.start__item--outlined {

}

.start__item--outlined::before {

}

.start__num {
    font-size: 50px;
    line-height: 1.05;
    font-weight: 800;
    background: linear-gradient(90deg, var(--fresh-pink) 0%, var(--fresh-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 6px;
}

.start__num--accent {
    background: linear-gradient(92deg, var(--fresh-pink) 0%, var(--fresh-blue) 27%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.start__name {
    margin: 0 0 8px;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 800;
    color: #000;
}

.start__text {
    margin: 0;
    font-size: 18px;
    line-height: 1.22;
    color: #000;
}
@media (max-width: 767.98px) {
	.start__item:after{
		content:unset;
	}
}
/* Header */
.header {
    position: relative;
    top: 0;
    z-index: 1030;
    background: #fff;
}

.header__container {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header__left {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.header__logo {
    display: inline-flex;
    align-items: center;
}

.header__logo-img {
    display: block;
    height: auto;
}

.header__nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
}

.header__nav-link {
    text-decoration: none;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    color: rgba(11, 22, 48, .85);
}

.header__nav-link:hover {
    color: rgba(11, 22, 48, 1);
}

.header__right {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
}



.primary__btn, .btn-primary{
    background: linear-gradient(90deg, var(--fresh-pink) 0%, var(--fresh-blue) 100%);
    --bs-btn-color: #fff;
    border:none;
    --bs-btn-border-radius: 999px;
    --bs-btn-padding-x: 15px;
    --bs-btn-padding-y: 10px;
    --bs-btn-font-weight: 600;
    --bs-btn-line-heigh: 17px;
    --bs-btn-font-size: 14px;
}



.header__phone {
    text-decoration: none;
    font-weight: 600;
    color: var(--fresh-text);
    font-size: 18px;
}

.header__btn {

}

.header__btn--secondary {

}

.header__btn--primary {
    background: #fff;
    border: 2px solid rgba(11, 22, 48, .16);
    color: var(--fresh-text);
}

.header__divider {
    height: 1px;
    background: rgba(11, 22, 48, .12);
}

.header__burger {
    border: 1px solid rgba(11, 22, 48, .18);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header__burger-lines {
    width: 18px;
    height: 10px;
    position: relative;
    display: inline-block;
    background: transparent;
}

.header__burger-lines::before,
.header__burger-lines::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: rgba(11, 22, 48, .85);
}

.header__burger-lines::before {
    top: 0px;
    box-shadow: 0 4px 0 rgba(11, 22, 48, .85);
}

.header__burger-lines::after {
    bottom: 0px;
}
.header__menu{
	position:relative;
}
.header__nav,
.header__menu .nav-item{
	position:static;
}
.header__menu img{
	max-width: 100px;
	max-height: 100px;
}
.header__menu .dropdown-menu{
	box-shadow: 0px 4px 4px 0px #00000040;
    border: none;
    padding-top: 3rem;
    padding-bottom: 0.3rem;
	top:37px;
	width:100%;
    border-bottom-left-radius: 26px;
    border-bottom-right-radius: 26px;
}
.header__menu .dropdown-menu .dropdown-item{
	display: flex;
	flex-direction: column;
	justify-content: center;
    align-items: center;
	background: #fff;
	border-radius: 20px;
	padding: 26px 14px;
	height:100%;
}
.header__menu .dropdown-menu .dropdown-item,
.header__menu .dropdown-menu .dropdown-item:hover,
.header__menu .dropdown-menu .dropdown-item:active,
.header__menu .dropdown-menu .dropdown-item:visited{
	color: #374048;
	font-weight: 700;
	font-size: 1.125rem;
	background: transparent;
	text-decoration: none;
	text-wrap: wrap;
    text-align: center;
}
.header__menu .dropdown-menu .dropdown-item:hover,
.header__menu .dropdown-menu .dropdown-item.active{
	background: #C9E0FF80;
	box-shadow: 0px 4px 4px 0px #00000040;
}
.header__menu .dropdown-menu .dropdown-item.disabled,
.header__menu .dropdown-menu .dropdown-item.disabled:hover,
.header__menu .dropdown-menu .dropdown-item.disabled:active,
.header__menu .dropdown-menu .dropdown-item.disabled:visited{
	background: #e8e9ec;
	box-shadow:none;
	cursor:default;
}
.header__menu .dropdown-menu .dropdown-item-single,
.header__menu .dropdown-menu .dropdown-item-multiple{
	padding-bottom:0.75rem;
}
.header__menu .dropdown-menu .dropdown-item-single .dropdown-item{
	padding-top:15px;
	padding-bottom: 30px;
}
.border-gradient-menu {
    position: relative;
    --fresh-gradient-angle: 0deg;
    --color-gradient: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 20.19%, rgba(19, 115, 185, 0.5) 40.38%, rgba(216, 30, 70, 0.5) 100%), linear-gradient(270deg, rgba(40, 106, 173, 0.5) 0%, #C9E8FF 24.52%, rgba(19, 115, 185, 0.5) 56.73%, rgba(216, 30, 70, 0.5) 100%);
    z-index: 1;
}
.border-gradient-menu::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 20.19%, rgba(19, 115, 185, 0.5) 40.38%, rgba(216, 30, 70, 0.5) 100%), linear-gradient(270deg, rgba(40, 106, 173, 0.5) 0%, #C9E8FF 24.52%, rgba(19, 115, 185, 0.5) 56.73%, rgba(216, 30, 70, 0.5) 100%);
    mask: linear-gradient(#000 0 0) exclude, linear-gradient(#000 0 0) content-box;
}
.header__menu .dropdown-menu .dropdown-item.border-gradient-menu.active{
	--color-gradient: linear-gradient(90deg, #D81E65 0%, #1373B9 100%);
}
.header__menu .dropdown-menu .dropdown-item.active.border-gradient-menu::before {
	 background: linear-gradient(90deg, #D81E65 0%, #1373B9 100%);
}


.events-carousel-wrapper{
    margin-bottom:3rem;
}

.events-carousel-wrapper .carousel-indicators button{
    width: 17px;
    height: 17px;
    border-radius: 50%;
    margin-left: 1rem;
    margin-right: 1rem;
    border:1px solid #D9D9D9;
    background-color: unset;
}

.events-carousel-wrapper .carousel-indicators button.active{
    background-color: #D9D9D9;
}

.events-carousel-wrapper .carousel-indicators{
    bottom: -40px;
}


/* Fresh help (tabs + card) */
.fresh-help {
    padding-top: 56px;
}

.fresh-help__title {
    text-align: center;
}

.fresh-help__tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -2px;
    border-bottom: 0;
    justify-content: space-between;
}

.fresh-help__tabs>.nav-item:first-child>.fresh-help__tab{
    margin-left: 0;
    width: 100%;
}

.fresh-help__tab {
    border: unset;
    background: #f5f5f5;
    color: #374048;
    border-radius: 18px 18px 0 0;
    padding: 12px 18px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.25;
    width: calc(100% + 30px);
    margin-left: -30px;
}

.fresh-help__tab:hover {
    background: #efefef;
}

.fresh-help__tab.active {
    background: linear-gradient(90deg, var(--fresh-pink) 0%, var(--fresh-blue) 100%);
    border-color: transparent;
    color: #fff;
}

.fresh-help__tabs>.nav-item{
    width: 25%;
}

.fresh-help__content {

}

.fresh-help__card {
    border-radius: 0 0 20px 20px;
    background: #fff;
    overflow: hidden;
    display: grid;
    grid-template-columns: 400px 1fr;
    min-height: 480px;
}

.fresh-help__card--muted {
    border-color: rgba(11, 22, 48, .10);
}

.fresh-help__media {
    padding: 18px 18px 18px 18px;
}

.fresh-help__img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.fresh-help__body {
    padding: 34px 28px 28px;
}

.fresh-help__body > h3 {
    margin: 0 0 10px;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--fresh-pink) 0%, var(--fresh-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fresh-help__subhead {
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
    background: linear-gradient(90deg, var(--fresh-pink) 0%, var(--fresh-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fresh-help__body > ul{
    margin: 0 0 18px;
    color: #374048;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
}
@media (max-width: 767.98px) {
	.fresh-help__tabs>.nav-item{
		width:100%;
	}
	.fresh-help__tabs>.nav-item .fresh-help__tab{
		margin-left:0px;
		width:100%;
	}
	.fresh-help__card{
		grid-template-columns: auto auto;
        grid-template-rows: auto auto;
        grid-auto-flow: column;
	}
}
/* Events */
#events .events-wrapper{
    paddin-top:1rem;
    paddin-bottom:1rem;
}

.events__card {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 190px;
}

.events__media {
    border-radius: 10px;
    overflow: hidden;
    padding:1rem;
}

.events__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.events__body {
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.events__tag {
    font-size: 20px;
    margin-bottom: 10px;
    display: flex;
}

.events__tag__type{
    margin-right: 15px;
    font-size: 20px;
}

.events__tag__record {
    color: #D81E46;
    font-size: 16px;
    position: relative;
    padding-left: 20px;
    line-height: 30px;
}

.events__tag__record:before {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    top: 12px;
    left: 0px;
    background-color: #D81E46;
    border-radius: 50%;
}


.events__name {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 10px;
    color:#000;
}

.events__desc {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(11, 22, 48, .72);
}

.events__link {
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    padding-right: 45px;
    padding-left: 25px;
    max-width: 220px;
    align-self: end;
}

.events__link:after{
    content:url('img/arrow-right-btn.svg');
    top: 8px;
    position: absolute;
    right: 15px;
}

.events__link:hover {
    text-decoration: none;
}

/* About */
.about__grid {
    display: grid;
    gap: 14px;
}

.about__item {
    background: #fff;
    text-align: center;
}

.about__title {
    font-weight: 700;
    font-size: 25px;
    line-height: 1.25;
    margin-bottom: 2rem;
}

.about__text {
    font-size: 20px;
    line-height: 1.45;
}

.about__item img{
    max-width: 200px;
}
@media (max-width: 767.98px) {
	.about__item {
		margin-top:1.5rem;
		margin-bottom:1.5rem;
	}
}
/* Consult */
.consult-wrapper{
    padding-top:3rem;
    padding-bottom:3rem;
}

.consult__inner {
    position: relative;
}

.consult__title {
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 8px;
    background: linear-gradient(90deg, var(--fresh-pink) 0%, var(--fresh-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.consult__subtitle {
    margin-bottom:18px;
    font-size: 20px;
    font-weight: 400;
}

.consult__label {
    display: inline-flex;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 13px;
    color: rgba(11, 22, 48, .7);
}

.input-wrapper{
    border-radius: 10px;
    padding: 1px;
}

.input-wrapper.border-gradient input:focus{
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: unset;
    outline: 0;
    box-shadow: unset;
    border-radius: 10px;
}

.consult__input {
    border-radius: 0;
    height: 40px;
    border: none;
    background: unset;
}

.consult__check {
    margin-top: 6px;
}

.consult__check-label {
    color: rgba(11, 22, 48, .7);
    font-size: 13px;
}

.consult__submit {
    border-radius: 14px;
    min-height: 48px;
    background: linear-gradient(90deg, var(--fresh-pink) 0%, var(--fresh-blue) 100%);
    border: none;
    color: #fff;
    font-weight: 700;
}

/* Footer */
.footer {
    background: linear-gradient(90deg, var(--fresh-pink) 0%, var(--fresh-blue) 100%);
    color: #fff;
    padding: 42px 0 26px;
	text-align:left;
}

.footer__top {
    margin-bottom: 22px;
}

.footer__logo img,
.footer__social{
	margin: 0;
}
.footer__social > a{
    margin-left: 5px;
    margin-right: 5px;
}

.footer__social > a:first-child{
    margin-left: 0;
}

.footer__social > a:last-child {
    margin-right: 0;
}

.footer__cols {

}
.footer__col__contacts{
	margin-bottom:0px;
}
.footer__col ul{
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.footer__col ul li{
    margin-left: 0;
    padding-left: 0;
}

.footer__col__title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 1rem;
}

.footer__col ul li{
    margin-bottom: 0.75rem;
}

.footer__col ul li a{
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

.footer__link {
    text-decoration: none;
}

.footer__link:hover {
    text-decoration: underline;
}


.footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, .28);
    margin: 22px 0 16px;
}

.footer__bottom {
    display: grid;
    grid-template-columns: 1.6fr .7fr .7fr;
    gap: 12px;
    align-items: start;
}

.footer__meta {
    display: grid;
    gap: 6px;
	margin-top: 0px;
	margin-bottom: 0px;
}

.footer__meta-link {
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    font-size: 13px;
}

.footer__meta-link:hover {
    text-decoration: underline;
}

.footer__copy,
.footer__made {
    font-size: 13px;
    color: rgba(255, 255, 255, .9);
}


@media (max-width: 575.98px) {
	.footer{
		text-align:center;
	}
	.footer__col__contacts{
		margin-bottom:62px;
	}
	.footer__logo img,
	.footer__social{
		margin: 10px 0;
	}
	.footer__meta {
		margin-top: 10px;
		margin-bottom: 10px;
	}
}

/* Mobile nav */
.mobile-nav {
    display: grid;
    gap: 10px;
}

.mobile-nav__link{
    display: block;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid rgba(11, 22, 48, .14);
	text-decoration: none;	
	color: rgba(11, 22, 48, .9);
    font-weight: 600;
}
.mobile-nav__item .dropdown-menu{
	position:relative !important;
	margin-top:5px !important;
	transform:none !important;
}
.mobile-nav__item .dropdown-menu .dropdown-item.disabled{
	color: darkgrey;
}
/* main-content */
.main-content{
    padding-top:3rem;
    /*padding-bottom:3rem;*/
}


.main-content h1{
    margin-bottom:3rem;
    font-weight: 700;
    text-align: center;
}



.main-content h2{
    font-weight: 700;
    font-size: 45px;
    line-height: 100%; 
}

.decorate-circle-check{
    position: relative;
    padding-left: 50px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.decorate-circle-check:before{
    content:url("img/circle-check.svg");
    position: absolute;
    left: 0;
    top: 11px;
    height: 38px;
    width: 38px;

}

.text-gradient{
    background: linear-gradient(90deg, var(--fresh-pink) 0%, var(--fresh-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bg-gradient{
    background: linear-gradient(90deg, var(--fresh-pink) 0%, var(--fresh-blue) 100%) !important;
}

.section-about{
    font-size:20px;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.section-about-1{
    align-items: center;
    display: flex;
}

.section-about-1 img{
    width: 100%;
}

.about-card{
    border-radius: 16px;
    text-align: center;
    padding: 1rem;
    margin-top:1rem;
    margin-bottom:1rem;
}

.about-card-title{
    font-weight: 700;
    font-size: 60px;
    text-align: center;
    display: block;
}

.about-card-text{
    display: block;
}


.bg-full-width{
    position: relative;
}

.bg-full-width::before {
    content: "";
    width: 100vw;
    height: 100%;
    position: absolute;
    left: calc( (-1) * ((100vw - 100%) / 2) );
    top: 0;
    background-color: #e4f0ff;
    z-index: -1;
    pointer-events: none;
}

.section-about.section-about-3{
    padding-top:5rem;
    padding-bottom:5rem;
}

.section-about.section-about-3 h2{
    margin-bottom: 0;
}


.about-card-v2{
    font-size: 20px;
	text-align:left;
	margin-top:0px;
	margin-bottom:0px;
}

.about-card-v2-title{
    font-weight: 700;
    font-size: 2rem;
    display: block;
    line-height: 2.1rem;
    margin-bottom:1rem;
}

.about-card-v2-text{

}
@media (max-width: 991.98px) {
	.about-card-v2{
		text-align:center;
		margin-top:1rem;
		margin-bottom:1rem;
	}
}

.contacts-map-wrapper {
    position: relative;
    width: 100vw;
    left: calc( (-1) * ((100vw - 100%) / 2) );
}

.contacts-map {
    height: 40rem;
}

.contacts-map-btns-wrapper {
    position: absolute;
    right: 70px;
    top: calc(50% - 50px);
}

.contacts-map-zoom-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 3rem;
    line-height: 2.4rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.5rem;
}

.contacts-map-zoom-btn:after{

}

.contacts-map-zoom-btn._plus {
    top: 0;
}

.contacts-map-zoom-btn._plus:after{
    content:"+";
}



.contacts-map-zoom-btn._minus {
    top: 60px;
}

.contacts-map-zoom-btn._minus:after{
    content:"-";
}


.footer__made a{
    color:#fff;
    text-decoration: none;
}

.custom-hero{
    padding-top:5rem;
    padding-bottom:5rem;
    text-align: center;
}

.custom-hero{
    background-color: #C9E8FF;
}

h1.custom-hero__title{
    font-weight: 700;
    margin-bottom: 2rem;
}

.custom-hero__text{
    font-size: 1rem;
}

.contact-list{
    padding-top:5rem;
    padding-bottom:5rem;
    font-size: 18px;
}

.contact-list ul{
    list-style: none;
}

.contact-list ul li{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.contact-list ul li span{
    font-weight: 700;
}

.SmartCaptcha-Shield{
    display: none !important;
}

.footer__social img{
    width: 24px;
}




/* xxl (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

}


/* xl (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {

}


/* lg (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {

}


/* md (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero__inner {
        grid-template-columns: 1fr;
    }

    .fresh-help__card {
        grid-template-columns: 1fr;
    }

    .fresh-help__media {
        padding-bottom: 0;
    }

    .fresh-help__img {
        max-height: 360px;
    }

    .events__card {

    }

    .events__media {
        height: 220px;
    }

    .footer__cols {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        grid-template-columns: 1fr;
    }

    .start__flow {
        display: none;
    }

    .start__grid {
        grid-template-columns: 1fr;
        margin-top: 0;
        gap: 14px;
    }

    .start__item {
        min-height: auto;
        background: rgba(255, 255, 255, .6);
        border: 1px solid rgba(11, 22, 48, .12);
    }
}


/* sm (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {

}


/* xs (landscape phones, 576px and up) */
@media (max-width: 575.98px) {
    .section {
        padding: 56px 0;
    }

    .hero__title {
        font-size: 38px;
    }

    .fresh-help__title {
        font-size: 34px;
    }

    .fresh-help__tab {
        font-size: 16px;
        padding: 10px 14px;
    }

    .fresh-help__headline {
        font-size: 26px;
    }

    .fresh-help__subhead {
        font-size: 22px;
    }

    .section__title {
        font-size: 34px;
    }

    .consult__title {
        font-size: 28px;
    }

    .start__title {
        font-size: 34px;
    }

    .start__name {
        font-size: 22px;
    }
}