@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;800&display=swap');
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
* {
	font-family: inherit;
    font-weight: inherit;
	color: inherit;
    margin: 0;
    padding: 0;
}
html {
	scroll-behavior: smooth;
}

body.lock {
	overflow: hidden;
}
body {
	font-family: 'Manrope', sans-serif;
    background: #E6E1FB;
}
body, h1, h2, h3, h4, h5, h6, p {
	padding: 0;
	margin: 0;
}
a {
	text-decoration: none;
	color: inherit;
	outline: none;
}
ul li {
	list-style: none;
}
main {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
b {
    font-weight: 700;
}

.send {
    text-align: center;
    padding: 0 20px 20px;
    font-size: 18px;
    color: #126812;
    font-weight: 700;
}
.hero-form .send {
    padding-top: 20px;
    padding-bottom: 0;
}
.inp-wrapper {
    position: relative;
}
.error {
    color: #cf0000;
    padding-left: 37px;
    margin-bottom: 10px;
}
.inp-wrapper .error {
    position: absolute;
    top: -25px;
}
.cons-lbl .error, .footer .error {
    padding-left: 0;
    
}
.burger {
    display: none;
    position: relative;
    max-width: 160px;
    width: 100%;
    height: 30px;
    cursor: pointer;
    z-index: 11;
}
.burger span, .burger span::before, .burger span::after {
    width: 8px;
    position: absolute;
    height: 8px;
    background-color: #000;
    display: block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-radius: 50%;
}
.burger span {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.burger span::before {
    content: "";
    top: -11px;
    -webkit-transition: top .2s .2s,-webkit-transform .2s cubic-bezier(.23,1,.32,1);
    transition: top .2s .2s,-webkit-transform .2s cubic-bezier(.23,1,.32,1);
    -o-transition: top .2s .2s,-o-transform .2s cubic-bezier(.23,1,.32,1);
    -o-transition: top .2s .2s,transform .2s cubic-bezier(.23,1,.32,1);
    transition: top .2s .2s,transform .2s cubic-bezier(.23,1,.32,1);
    transition: top .2s .2s,transform .2s cubic-bezier(.23,1,.32,1),-webkit-transform .2s cubic-bezier(.23,1,.32,1);
}
.burger span::after {
    content: "";
    bottom: -11px;
    -webkit-transition: bottom .2s .2s,-webkit-transform .2s cubic-bezier(.23,1,.32,1);
    transition: bottom .2s .2s,-webkit-transform .2s cubic-bezier(.23,1,.32,1);
    -o-transition: bottom .2s .2s,-o-transform .2s cubic-bezier(.23,1,.32,1);
    -o-transition: bottom .2s .2s,transform .2s cubic-bezier(.23,1,.32,1);
    transition: bottom .2s .2s,transform .2s cubic-bezier(.23,1,.32,1);
    transition: bottom .2s .2s,transform .2s cubic-bezier(.23,1,.32,1),-webkit-transform .2s cubic-bezier(.23,1,.32,1);
}
.burger.active span {
    background: rgba(255,255,255,0);
    width: 30px;
    height: 2px;
}
.burger.active span::before {
    width: 100%;
    height: 2px;
    content: "";
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: top .2s,-webkit-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    transition: top .2s,-webkit-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    -o-transition: top .2s,-o-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    -o-transition: top .2s,transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    transition: top .2s,transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    transition: top .2s,transform .2s .2s cubic-bezier(.68,-.55,.265,1.55),-webkit-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
}
.burger.active span::after {
    width: 100%;
    height: 2px;
    content: "";
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: bottom .2s,-webkit-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    transition: bottom .2s,-webkit-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    -o-transition: bottom .2s,-o-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    -o-transition: bottom .2s,transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    transition: bottom .2s,transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
    transition: bottom .2s,transform .2s .2s cubic-bezier(.68,-.55,.265,1.55),-webkit-transform .2s .2s cubic-bezier(.68,-.55,.265,1.55);
}


.page {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}
.container {
    width: 100%;
    max-width: 1275px;
    margin-left: auto;
    margin-right: auto;
}
.header {
    padding-top: 68px;
}
.header-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.menu-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 57px auto 57px auto 57px auto 57px auto;
    grid-template-columns: repeat(5, auto);
    grid-column-gap: 57px;
    grid-row-gap: 15px;
}
.btn {
    background: #FFFFFF;
    border-radius: 35px;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    padding: 14px 52px;
    position: relative;
    z-index: 1;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    border-radius: 35px;
    opacity: 0;
    background: #000;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    z-index: -1;
}
.btn:hover::after {
    opacity: 1;
    width: 100%;
    height: 100%;
}
.btn:hover {
    color: #fff;
}
.menu-list__link {
    font-weight: 500;
    font-size: 18px;
    line-height: 131.7%;
    position: relative;
}
.menu-list__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    background: #000;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.menu-list__link:hover::after {
    width: 100%;
}
.menu-list__item.active .menu-list__link {
    font-weight: 800;
}
.menu-list__item.active .menu-list__link::after {
    width: 100%;
}
.home {
    padding-top: 105px;
    padding-bottom: 74px;
    text-align: center;
}
.home__title {
    font-weight: 800;
    font-size: 80px;
    line-height: 100.7%;
    letter-spacing: -0.02em;
}
.home__subtitle {
    font-size: 40px;
    line-height: 48px;
    margin-top: 40px;
}
.connect {
    background: #F5F5F5;
    -webkit-clip-path: ellipse(1920px 61% at 50% 61%);
            clip-path: ellipse(1920px 61% at 50% 61%);
    padding-top: 135px;
    padding-bottom: 62px;
}
.connect__title {
    font-size: 45px;
    line-height: 106.7%;
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
}
.connect-row {
    margin-top: 79px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
}
.connect-box {
    border-radius: 46px;
    padding: 65px 47px;
    height: 745.7px;
    position: relative;
    overflow: hidden;
}
.connect-l {
    background: #FCEDD7;
}
.connect-r {
    background: #D6F3FA;
    padding-left: 105px;
    padding-right: 105px;
}
.connect-box__title {
    text-align: center;
    font-weight: 700;
    font-size: 50px;
    line-height: 101.7%;
}
.connect__abs {
    position: absolute;
}
.connect-l__pic {
    left: 0;
    bottom: 0;
    z-index: 1;
}
.connect-r__pic {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 1;
}
.connect-l__abs {
    left: 0;
    bottom: 0;
}
.connect-r__abs1 {
    bottom: 0;
    right: 39px;
}
.connect-r__abs2 {
    bottom: 0;
    right: 47px;
    z-index: 2;
}
.connect__btn {
    display: block;
    width: 150px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 35px;
    padding-top: 13px;
    padding-bottom: 13px;
    text-align: center;
    font-size: 20px;
    line-height: 27px;
    margin-top: 20px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.connect-l__btn {
    background: #FEE49B;
}
.connect-l__btn:hover {
    background: #fbd66e;
}
.connect-r__btn {
    background: #AAD1EA;
}
.connect-r__btn:hover {
    background: #76bbe7;
}


.hero-consult {
    background: #F5F5F5;
    padding-bottom: 77px;
}
.hero-consult_content {
    background: #FEC7D7;
    border-radius: 46px;
    padding: 46px 20px 78px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.hero-consult_content::before, .hero-consult_content::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}
.hero-consult_content::before {
    width: 580px;
    height: 580px;
    background: #FEBDD0;
    top: 46px;
    left: 71px;
}
.hero-consult_content::after {
    width: 362px;
    height: 362px;
    background: #FDB2C9;
    bottom: -89px;
    left: 258px;
}
.hero-consult__title {
    text-align: center;
    font-weight: 600;
    font-size: 53px;
    line-height: 101.7%;
}
.hero-consult__subtitle {
    font-size: 28px;
    line-height: 45px;
    text-align: center;
    margin-top: 15px;
}
.hero-form {
    margin-top: 29px;
    max-width: 875px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.hero-form_row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    margin-bottom: 21px;
}
.hero-form__inp {
    background: #FFFFFF;
    border-radius: 48px;
    color: #000;
    padding: 20px 37px;
    border: none;
    outline: none;
    display: block;
    width: 100%;
    font-size: 20px;
    line-height: 131.7%;
}
.hero-form__inp::-webkit-input-placeholder {
    color: #BBBBBB;
}
.hero-form__inp::-moz-placeholder {
    color: #BBBBBB;
}
.hero-form__inp:-ms-input-placeholder {
    color: #BBBBBB;
}
.hero-form__inp::-ms-input-placeholder {
    color: #BBBBBB;
}
.hero-form__inp::placeholder {
    color: #BBBBBB;
}
.hero-form label {
    background: #FFFFFF;
    border-radius: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding: 7px 14px;
    overflow: hidden;
}
.hero-form textarea {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding: 8px 20px 8px 23px;
    border-radius: 0;
    resize: none;
}
.hero-form__send {
    width: 147px;
    min-width: 147px;
    height: 68px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #FF8EB1;
    border-radius: 35px;
    border: none;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.hero-form__send:hover {
    background: #ff6897;
}




.footer {
    padding: 60px 0 67px;
}
.footer-content {
    max-width: 610px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.footer__text {
    margin-top: 21px;
    margin-bottom: 38px;
}
.footer-form {
    position: relative;
    background: #fff;
    max-width: 412px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 80px 20px 26px;
    border-radius: 48px;
    overflow: hidden;
    margin-bottom: 39px;
}
.footer-form__inp {
    color: #000;
    font-size: 20px;
    line-height: 131.7%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: block;
    border: none;
    outline: none;
    width: 100%;
}
.footer-form__inp::-webkit-input-placeholder {
    color: #BBBBBB;
}
.footer-form__inp::-moz-placeholder {
    color: #BBBBBB;
}
.footer-form__inp:-ms-input-placeholder {
    color: #BBBBBB;
}
.footer-form__inp::-ms-input-placeholder {
    color: #BBBBBB;
}
.footer-form__inp::placeholder {
    color: #BBBBBB;
}
.footer-form__btn {
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    right: 7px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 57px;
    height: 57px;
    background: #F48F64;
    border: none;
    cursor: pointer;
}
.copyright {
    font-size: 18px;
    line-height: 22px;
}



.con {
    background: #F5F5F5;
    -webkit-clip-path: ellipse(1920px 61% at 50% 61%);
            clip-path: ellipse(1920px 61% at 50% 61%);
    margin-top: 38px;
}
.con-page {
    position: relative;
    z-index: 1;
}
.con-top {
    max-width: 1132px;
    width: 100%;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.con__title {
    margin-top: 306px;
    font-weight: 800;
    font-size: 90px;
    line-height: 88.7%;
    margin-right: -106px;
}
.con-top__pic {
    width: 707px;
    min-width: 707px;
    height: auto;
}
.con__abs {
    position: absolute;
    right: 80px;
    top: 0;
    width: 1354px;
    height: auto;
    z-index: -1;
}
.con-mid {
    max-width: 1217px;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.con-block {
    top: -106px;
    position: relative;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 75px 43px;
    margin-left: 41px;
}
.con-block::before {
    content: '';
    position: absolute;
    top: 0;
    right: -24px;
    left: -31px;
    height: 100%;
    background: #EBEBEB;
    border-radius: 15px;
    z-index: -1;
}
.con-mid__text {
    font-size: 30px;
    line-height: 57px;
    position: relative;
    z-index: 1;
}
.con-mid_l {
    margin-top: 65px;
    position: relative;
}
.con-mid__abs {
    position: absolute;
    bottom: -300px;
    left: 0;
}

.con-b {
    position: relative;
    z-index: 1;
    padding-bottom: 103px;
}
.con-b__title {
    text-align: right;
    max-width: 883px;
    margin-left: auto;
    font-size: 60px;
    line-height: 74px;
}

.con-b__abs {
    position: absolute;
    bottom: 151px;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 614px;
}
.con-scheme {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 88px 1fr 88px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 88px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1147px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 112px;
}
.con-b_block {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 60px;
}
.con-b_box {
    height: 366px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #FFFFFF;
    border-radius: 15px;
    padding-left: 40px;
    padding-right: 40px;
}
.con-b_box::before {
    content: '';
    position: absolute;
    top: 29px;
    right: -18px;
    width: 100%;
    height: 100%;
    background: #EAE4E4;
    border-radius: 15px;
    z-index: -1;
}
.con-b_box__abs {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 148%;
    height: auto;

}
.con-b__text {
    margin-top: 20px;
    font-weight: 600;
    font-size: 40px;
    line-height: 41px;
}


.corp {
    background: #F5F5F5;
    padding-bottom: 120px;
}
.corp-page {
    position: relative;
}
.corp-page::before {
    content: '';
    position: absolute;
    width: 435px;
    height: 435px;
    border-radius: 50%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(244, 84, 161, 0.48)), to(rgba(244, 84, 161, 0.48))), -webkit-gradient(linear, left bottom, left top, from(rgba(251, 201, 179, 0.48)), to(rgba(251, 201, 179, 0.48))), rgba(251, 201, 179, 0.35);
    background: -o-linear-gradient(bottom, rgba(244, 84, 161, 0.48), rgba(244, 84, 161, 0.48)), -o-linear-gradient(bottom, rgba(251, 201, 179, 0.48), rgba(251, 201, 179, 0.48)), rgba(251, 201, 179, 0.35);
    background: linear-gradient(0deg, rgba(244, 84, 161, 0.48), rgba(244, 84, 161, 0.48)), linear-gradient(0deg, rgba(251, 201, 179, 0.48), rgba(251, 201, 179, 0.48)), rgba(251, 201, 179, 0.35);
    -webkit-filter: blur(300px);
            filter: blur(300px);
    right: -57px;
    top: 69px;
}
.corp__title {
    margin-top: 260px;
    font-weight: 600;
    font-size: 60px;
    line-height: 133.2%;
    text-align: center;
}
.corp__subtitle {
    font-size: 45px;
    line-height: 133.2%;
    text-align: center;
}
.corp-inner, .corp-pic {
    position: relative;
    z-index: 1;
}
.corp-inner {
    margin-top: 44px;
}
.corp-pic img {
    width: 100%;
    height: auto;
}
.corp-inner::before {
    content: '';
    position: absolute;
    width: 960px;
    height: 960px;
    border-radius: 50%;
    background: rgba(251, 227, 179, 0.23);
    -webkit-filter: blur(300px);
            filter: blur(300px);
    top: 155px;
    right: -239px;
    z-index: -1;
}
.corp-pic::before {
    content: '';
    position: absolute;
    width: 405px;
    height: 405px;
    border-radius: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(#F22FB0), color-stop(100%, rgba(245, 138, 37, 0)), to(#7061A3));
    background: -o-linear-gradient(top, #F22FB0 0%, rgba(245, 138, 37, 0) 100%, #7061A3 100%);
    background: linear-gradient(180deg, #F22FB0 0%, rgba(245, 138, 37, 0) 100%, #7061A3 100%);
    -webkit-filter: blur(50px);
            filter: blur(50px);
    top: -3px;
    right: -32px;
    z-index: -3;
}
.corp-pic::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 555px;
    height: 555px;
    top: 30px;
    right: -12px;
    background: -webkit-gradient(linear, left top, left bottom, from(#FF7BCA), to(rgba(255, 197, 111, 0.46)));
    background: -o-linear-gradient(top, #FF7BCA 0%, rgba(255, 197, 111, 0.46) 100%);
    background: linear-gradient(180deg, #FF7BCA 0%, rgba(255, 197, 111, 0.46) 100%);
    -webkit-filter: blur(100px);
            filter: blur(100px);
    z-index: -2;
}
.corp__text {
    text-align: right;
    font-size: 40px;
    line-height: 109.2%;
    position: relative;
    margin-top: 56px;
    z-index: 1;
}
.corp__text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 54px;
    background-image: url('../img/icons/vector.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0;
    width: 62px;
    height: 62px;
}
.corp__text::after {
    content: '';
    position: absolute;
    bottom: -110px;
    right: 41px;
    background-image: url('../img/icons/vector.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0;
    width: 27px;
    height: 27px;
}
.corp-step {
    margin-top: 93px;
    position: relative;
    max-width: 1151px;
    width: 100%;
    margin-left: auto;
    z-index: 1;
}
.corp-step::before {
    content: '';
    position: absolute;
    left: 85px;
    top: -48px;
    bottom: -48px;
    width: 161px;
    background: rgba(254, 199, 214, 0.4);
    border-radius: 15px;
    z-index: -1;
}
.corp-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 68px;
}
.corp-row:last-child {
    margin-bottom: 0;
}
.corp-l {
    width: 330px;
    height: 330px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #FEC7D7;
    font-weight: 800;
    font-size: 90px;
    line-height: 109.2%;
    color: #fff;
}
.corp-r {
    margin-left: 35px;
    font-weight: 600;
    font-size: 30px;
    line-height: 109.2%;
    position: relative;
}
.corp-row_n .corp-r::before {
    content: '';
    position: absolute;
    background-image: url('../img/icons/vector.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0;
    width: 27px;
    height: 27px;
    left: 4px;
    top: -74px;
}
.corp-b {
    margin-top: 96px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.corp-b__block {
    margin-bottom: 90px;
    border: 1px solid #000000;
    border-radius: 65px;
    padding: 29px 31px;
    font-size: 30px;
    line-height: 109.2%;
    text-align: center;
}
.corp-b__text {
    position: relative;
    text-align: center;
    display: inline-block;
    font-size: 30px;
    line-height: 109.2%;
}
.corp-b__text::before {
    content: '';
    position: absolute;
    background-image: url('../img/icons/vector.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0;
    width: 48px;
    height: 48px;
    left: -149px;
    top: -43px;
}
.corp-b__text a {
    font-size: 50px;
}


.plac {
    margin-top: 38px;
    background: #FFF;
    -webkit-clip-path: ellipse(1920px 61% at 50% 61%);
            clip-path: ellipse(1920px 61% at 50% 61%);
    padding-top: 172px;
    padding-bottom: 71px;
}
.plac-page {
    position: relative;
    z-index: 1;
}
.plac-page_inner {
    position: absolute;
    width: 1440px;
    height: 100%;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: -1;
}
.plac__abs {
    position: absolute;
    left: -65px;
    top: -562px;
}
.plac__mob {
    display: none;
}
.plac-top {
    max-width: 1200px;
    padding-left: 33px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.plac__title {
    padding-left: 75px;
    font-weight: 800;
    font-size: 90px;
    line-height: 88.7%;
}
.plac__subtitle {
    text-align: right;
    padding-left: 200px;
    font-weight: 500;
    font-size: 80px;
    line-height: 88.7%;
}
.plac__title, .plac__subtitle {
    max-width: 706px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.plac__text {
    margin-top: 124px;
    font-size: 40px;
    line-height: 136.2%;
}
.plac-b {
    margin-top: 183px;
}
.plac-b_row {
    max-width: 1132px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.plac-b_l {
    min-width: 515px;
    width: 515px;
    position: relative;
    padding-left: 75px;
    padding-right: 38px;
}
.plac-b__abs {
    position: absolute;
    right: -13px;
    bottom: -3px;
    z-index: -1;
    width: auto;
    height: auto;
}
.plac-b__text {
    max-width: 496px;
    width: 100%;
    margin-left: 100px;
    font-weight: 600;
    font-size: 40px;
    line-height: 136.2%;
    margin-bottom: 87px;
}
.plac-content {
    position: relative;
    padding-top: 109px;
    padding-bottom: 177px;
    background: #fff;
    z-index: 1;
}
.plac-content::before {
    content: '';
    position: absolute;
    -webkit-clip-path: ellipse(1920px 50% at 50% 50%);
            clip-path: ellipse(1920px 50% at 50% 50%);
    background: #DBF8CC;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}
.plac-box {
    max-width: 1132px;
    margin-left: auto;
    margin-right: auto;
    background: #FFFFFF;
    border-radius: 15px;
    padding: 86px 68px 87px 115px;
    font-weight: 600;
    font-size: 40px;
    line-height: 56px;
}
.plac-abs1 {
    position: absolute;
    max-width: 1132px;
    width: 100%;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 100%;
    z-index: -2;
}
.plac-abs2 {
    position: absolute;
    max-width: 1132px;
    width: 100%;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 100%;
    z-index: -1;
}
.plac-content__t {
    position: absolute;
    top: -90px;
    right: -25px;
}
.plac-content__b {
    position: absolute;
    right: 310px;
    bottom: 0;
}
.plac-help {
    background: #fff;
    padding-top: 125px;
}
.plac-help_row {
    max-width: 1132px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
}
.plac-help_row::before, .plac-help_row::after {
    content: '';
    position: absolute;
    -webkit-filter: blur(250px);
            filter: blur(250px);
    width: 702px;
    height: 702px;
    border-radius: 50%;
}
.plac-help_row::before {
    top: 0;
    right: 96px;
    background: rgba(248, 131, 131, 0.31);
}
.plac-help_row::after {
    top: 0;
    right: -291px;
    background: rgba(248, 131, 222, 0.5);
}
.plac-help__text {
    font-size: 40px;
    line-height: 60px;
    max-width: 483px;
    margin-right: 132px;
    position: relative;
}
.plac-help__text::before {
    content: '';
    position: absolute;
    top: -164px;
    right: -20px;
    background-image: url(../img/icons/vector.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0;
    width: 50px;
    height: 50px;
    z-index: 1;
}
.plac-help__text::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -92px;
    background-image: url(../img/icons/vector2.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0;
    width: 32px;
    height: 31px;
    z-index: 1;
}
.plac-help_r {
    width: 513px;
    position: relative;
    z-index: 1;
}
.plac-help_r::before {
    content: '';
    position: absolute;
    bottom: 135px;
    left: 265px;
    width: 404px;
    height: 110px;
    z-index: -1;
    background: #FF7F6F;
}
.plac-help__pic {
    position: absolute;
    right: -105px;
    bottom: 135px;
}
.plac-help__abs {
    position: absolute;
    right: -169px;
    bottom: 0;
    z-index: -2;
}


.plac-step {
    background: #fff;
    padding-top: 90px;
}
.plac-step_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1190px;
    width: 100%;
    padding-left: 33px;
    margin-left: auto;
    margin-right: auto;
}
.plac-step_box {
    height: 585px;
    position: relative;
    z-index: 1;
}
.plac-step__num {
    color: #fff;
    font-weight: 800;
    font-size: 150px;
    line-height: 109.2%;
    text-shadow: 3px 0 rgba(255, 161, 205, 0.7), -3px 0 rgba(255, 161, 205, 0.7), 0 3px rgba(255, 161, 205, 0.7), 0 -3px rgba(255, 161, 205, 0.7), 1px 1px rgba(255, 161, 205, 0.7), -1px -1px rgba(255, 161, 205, 0.7), 1px -1px rgba(255, 161, 205, 0.7), -1px 1px rgba(255, 161, 205, 0.7);
    text-align: center;
}
.plac-step_l {
    padding-top: 95px;
    margin-right: 65px;
    width: 520px;
}
.plac-step_l::before {
    content: '';
    position: absolute;
    bottom: 52px;
    right: 64px;
    background-image: url(../img/icons/vector2.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0;
    width: 36px;
    height: 35px;
    z-index: 1;
}
.plac-step_r::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 103px;
    background-image: url(../img/icons/vector2.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0;
    width: 36px;
    height: 35px;
    z-index: 1;
}
.plac-step_r {
    padding-top: 128px;
    margin-top: 121px;
    width: 570px;
}
.plac-step_l1 {
    position: absolute;
    left: -50px;
    top: 3px;
    z-index: -1;
}
.plac-step_l2 {
    position: absolute;
    top: 272px;
    left: -5px;
    z-index: -1;
}
.plac-step_r1 {
    position: absolute;
    right: -50px;
    top: 0;
    z-index: -1;
}
.plac-step_r2 {
    position: absolute;
    left: -44px;
    bottom: 23px;
    z-index: -1;
}
.plac-step__text {
    font-size: 35px;
    line-height: 56px;
    margin-top: 13px;
}
.plac-step_l .plac-step__text {
    margin-top: 44px;
}
.plac-foot {
    padding-top: 99px;
    background: #fff;
    padding-bottom: 533px;
}
.plac-foot_page {
    position: relative;
}
.plac-foot__abs {
    position: absolute;
    left: 0;
    top: -340px;
}
.plac-foot_r {
    max-width: 876px;
    margin-left: auto;
    text-align: center;
    margin-right: 88px;
    position: relative;
    z-index: 1;
}
.plac-foot__text {
    font-weight: 400;
    font-size: 35px;
    line-height: 56px;
    margin-bottom: 24px;
}
.plac-foot__b {
    font-weight: 500;
    font-size: 35px;
    line-height: 123.2%;
}

.res {
    -webkit-clip-path: ellipse(1920px 61% at 50% 61%);
            clip-path: ellipse(1920px 61% at 50% 61%);
    background: #fff;
    margin-top: 38px;
    padding-top: 144px;
    padding-bottom: 80px;
}
.res__title {
    text-align: center;
    font-weight: 800;
    font-size: 85px;
    line-height: 88.7%;
}
.res__text {
    font-weight: 400;
    font-size: 30px;
    line-height: 56px;
    margin-top: 50px;
    margin-bottom: 42px;
}
.res__link {
    font-weight: 500;
    font-size: 45px;
    line-height: 109.7%;
    text-align: center;
    color: #333131;
    display: block;
}
.res-pic img {
    width: 100%;
    height: auto;
}


.staf {
    -webkit-clip-path: ellipse(1920px 61% at 50% 61%);
            clip-path: ellipse(1920px 61% at 50% 61%);
    background: #F5F5F5;
    margin-top: 38px;
    overflow: hidden;
}
.staf-page {
    background-image: url('../img/staf-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: -187px -76px;
    padding-top: 100px;
}
.staf__title {
    font-weight: 800;
    font-size: 90px;
    line-height: 88.7%;
    text-align: center;
    margin-bottom: 102px;
}
.staf__text {
    font-size: 30px;
    line-height: 56px;
    margin-top: 32px;
}
.staf__text b {
    font-weight: 700;
    text-transform: uppercase;
}

.staf-b {
    position: relative;
    height: 756px;
    width: 768px;
    margin-left: auto;
    z-index: 1;
}
.staff__abs {
    position: absolute;
    top: 244px;
    left: -91px;
    z-index: -1;

}
.staff__pic {
    position: absolute;
    bottom: 0;
    right: -13px;
}

.cons {
    -webkit-clip-path: ellipse(1920px 61% at 50% 61%);
            clip-path: ellipse(1920px 61% at 50% 61%);
    background: #F5F5F5;
    margin-top: 38px;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 60px;
}
.cons-page {
    position: relative;
    z-index: 1;
}
.cons__bg {
    position: absolute;
    left: -150px;
    top: -158px;
    z-index: -1;
}
.cons__title {
    text-align: center;
    font-weight: 800;
    font-size: 90px;
    line-height: 88.7%;
}
.cons-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 50px;
    padding-right: 65px;
    margin-top: 31px;
}
.cons-l {
    position: relative;
}
.cons-l__pic {
    position: absolute;
    top: 0;
    left: 63px;
}
.cons__text {
    font-size: 40px;
    line-height: 136.2%;
    max-width: 576px;
    margin-left: auto;
    margin-top: 166px;
}
.cons__text b{
    font-weight: 600;
}
.cons-form {
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    max-width: 1212px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 288px;
}
.cons-top {
    padding: 68px 59px 63px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 29px;
}
.cons-rad {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.cons-rad input {
    height: 27px;
    width: 27px;
}
.cons-rad span {
    font-size: 32px;
    line-height: 114.7%;
    margin-left: 28px;
}
.cons-mid {
    background: #000;
    padding: 21px 51px;
    text-align: right;
}
.cons-bottom {
    padding: 51px 60px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 29px;
}
.cons-lbl span {
    font-weight: 500;
    font-size: 25px;
    line-height: 114.7%;
    color: #8A8A8A;
}
.cons__inp {
    background: #F5F5F5;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    max-width: 786px;
    width: 100%;
    height: 81px;
    display: block;
    border: none;
    outline: none;
    margin-top: 7px;
    padding: 10px 20px;
    font-size: 30px;
}
.cons__mess {
    max-width: 100%;
    resize: none;
    height: 290px;
}
.cons__btn {
    background: #FEC5D6;
    border-radius: 50px;
    width: 253px;
    height: 85px;
    color: #000;
    font-weight: 600;
    font-size: 30px;
    line-height: 114.7%;
    border: none;
    outline: none;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.cons__btn:hover {
    background: #000;
    color: #FEC5D6;
}



.prof {
    padding-top: 4.583vw;
    padding-bottom: 18.819vw;
    background: #F5F5F5;
    -webkit-clip-path: ellipse(1920px 61% at 50% 61%);
            clip-path: ellipse(1920px 61% at 50% 61%);
    margin-top: 38px;
}
.prof-page {
    position: relative;
    z-index: 1;
}
.prof__bg {
    position: absolute;
    top: -1.25vw;
    left: 5vw;
    width: 93.611vw;
    height: auto;
    z-index: -1;
}
.prof-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    position: relative;
    padding-right: 7.431vw;
    overflow: hidden;
}
.prof__pic {
    position: absolute;
    top: 0;
    width: 36.886vw;
    height: auto;
    left: 12vw;
}
.prof-r {
    margin-left: auto;
    margin-top: 8.542vw;
    margin-bottom: 36.042vw;
}
.prof__subtitle {
    font-weight: 600;
    font-size: 3.125vw;
    line-height: 88.7%;
    margin-bottom: 0.972vw;
    margin-left: -10.069vw;
    width: 50vw;
}
.prof__title {
    font-weight: 800;
    font-size: 5.556vw;
    line-height: 88.7%;
    margin-left: -10.069vw;
    width: 50vw;
}
.prof-abs {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 3.472vw;
    padding-bottom: 3.472vw;
    background: #FEC7D7;
    border-radius: 7.292vw;
    left: 6.458vw;
    right: 7.431vw;
    padding-right: 4.722vw;
}
.prof-abs p {
    font-weight: 400;
    font-size: 2.431vw;
    line-height: 120.7%;
    max-width: 39.722vw;
    margin-left: auto;
    position: relative;
    z-index: 1;
}
.prof-abs p span {
    color: #EE346D;
    font-weight: 800;
}



.our {
    background: #F5F5F5;
}
.our-page {
    position: relative;
    z-index: 1;
}
.our__bg {
    position: absolute;
    top: -75px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: -1;
}
.our__mob {
    display: none;
}
.our-box {
    max-width: 1320px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    padding: 82px 74px 66px 78px;
}
.our__title {
    font-weight: 800;
    font-size: 82px;
    line-height: 94.2%;
    color: rgba(0, 0, 0, 0.84);
    margin-bottom: 14px;
}
.our__text {
    font-size: 30px;
    line-height: 56px;
}
.our-b {
    max-width: 1065px;
    margin-left: auto;
    margin-right: 128px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    height: 434px;
    padding: 40px 18px 31px;
    margin-top: 138px;
}
.our-inner {
    background: #FEC7D7;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 58px 41px 44px 62px;
}
.our-inner span, .our-inner span::before, .our-inner span::after {
    display: block;
    background: #EE346D;
    -webkit-box-shadow: 0px 4px 4px rgba(73, 67, 67, 0.05);
            box-shadow: 0px 4px 4px rgba(73, 67, 67, 0.05);
    border-radius: 50%;
    width: 19px;
    height: 19px;
}
.our-inner span {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.our-inner span::before {
    content: '';
    position: absolute;
    left: -133px;
    top: 0;
}
.our-inner span::after {
    content: '';
    position: absolute;
    right: -133px;
    top: 0;
}
.our-inner__text {
    margin-top: 27px;
    font-size: 30px;
    line-height: 56px;
}
.our-inner__text b {
    font-weight: 600;
    text-transform: uppercase;
}


.what {
    padding-top: 257px;
    background: #F5F5F5;
}
.what__title {
    font-size: 65px;
    line-height: 123.5%;
    text-align: center;
    max-width: 850px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.what__title b {
    font-weight: 600;
    text-transform: uppercase;
}
.what-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-right: 82px;
    margin-top: 157px;
}
.what-l {
    position: relative;
    z-index: 1;
    width: 450px;
}
.what-l img {
    position: absolute;
    bottom: -125px;
    right: -479px;
    height: auto;
    width: auto;
}
.what-r {
    position: relative;
    z-index: 1;
    margin-left: auto;
    max-width: 907px;
    width: 100%;
}
.what-inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 65px;
}
.what__abs {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -106px;
    bottom: -82px;
    height: calc(100% + 188px);
    width: auto;
    z-index: -1;
}
.what-wr {
    position: relative;
}
.what-wr>span {
    position: absolute;
    left: 47%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -56px;
    font-weight: 700;
    font-size: 30px;
    line-height: 123.5%;
    color: #E68DD8;
    border-bottom: 3px solid #B6DEE2;
}
.what-block {
    background: #E5EEEF;
    border-radius: 20px;
    height: 100px;
    position: relative;
    margin-left: auto;
    z-index: 1;
    /* width: 100%; */
}
.what-box {
    position: relative;
    top: -7px;
    right: -7px;
    background: #FFFFFF;
    border-radius: 20px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 25px;
    line-height: 123.5%;
    z-index: 1;
}

.what-block::before, .what-box::before {
    content: '';
    position: absolute;
    display: block;
    width: 47px;
    height: 55px;
    right: 0;
    bottom: 0;
    border-radius: 0 0 5px 0;
    -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: skewY(37deg);
        -ms-transform: skewY(37deg);
            transform: skewY(37deg);
    z-index: -1;
}
.what-block::before {
    background: #E5EEEF;
}
.what-box::before {
    background: #fff;
}
.what-box span {
    position: absolute;
    left: 50%;
    top: -30px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
.what-block:first-child {
    max-width: 878px;
    margin-right: 4px;
    margin-left: 18px;
}
.what-block:nth-child(2) {
    max-width: 710px;
    /* max-width: 821px; */
    margin-right: 43px;
    margin-left: 147px;
}
.what-block:nth-child(3) {
    max-width: 673px;
    margin-right: 74px;
    margin-left: 153px;
}
.what-block:nth-child(4) {
    max-width: 720px;
    margin-right: 123px;
    margin-left: 57px;
}
.what-block:nth-child(5) {
    max-width: 900px;
}
.what-block:last-child {
    max-width: 673px;
    margin-right: 75px;
    margin-left: 152px;
}


.prof-foot {
    padding-top: 222px;
    padding-bottom: 99px;
    background: #F5F5F5;
    overflow: hidden;
}
.prof-foot_page {
    position: relative;
    z-index: 1;
}
.prof-foot__bg {
    position: absolute;
    top: -200px;
    right: 30px;
    z-index: -1;
}
.prof-foot_pic {
    max-width: 1100px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
.prof-foot_inner {
    position: relative;
    max-width: 721px;
}
.prof-foot_inner__pic {
    height: auto;
    width: 100%;
}
.prof-foot__logo {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 50px;
}
.prof-foot__text {
    max-width: 1078px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 59px;
    margin-top: 40px;
    font-size: 35px;
    line-height: 120.5%;
    margin-bottom: 274px;
}
.prof-foot__text b {
    font-weight: 700;
    text-transform: uppercase;
}
.prof-foot__link {
    display: block;
    text-align: center;
    font-weight: 500;
    font-size: 30px;
    line-height: 123.5%;
}



.organ {
    background: #F5F5F5;
    margin-top: 38px;
    padding-top: 100px;
    -webkit-clip-path: ellipse(1920px 61% at 50% 61%);
            clip-path: ellipse(1920px 61% at 50% 61%);
}
.organ__title {
    text-align: center;
    font-weight: 800;
    font-size: 90px;
    line-height: 88.7%;
}
.organ__text {
    font-size: 30px;
    line-height: 56px;
    margin-top: 77px;
}
.organ__text span {
    display: block;
    padding-top: 20px;
    
}



.organ-mid {
    padding-top: 83px;
    padding-bottom: 84px;
    background: #F5F5F5;
}
.organ-mid__title {
    font-size: 45px;
    line-height: 106.7%;
    text-align: center;
}
.organ-mid__title b {
    font-weight: 600;
    text-transform: uppercase;
}
.organ-grid {
    max-width: 841px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 79px;
}
.organ-box {
    background: #FFFFFF;
    border-radius: 33px;
    width: 244px;
    height: 266px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 18px;
    margin-right: 18px;
    padding-left: 13px;
    padding-right: 12px;
    text-align: center;
    margin-bottom: 23px;
}
.organ-box p {
    margin-top: 22px;
    font-size: 20px;
    line-height: 106.7%;
}


.sector {
    padding-bottom: 123px;
    background: #F5F5F5;
}
.sector__title {
    font-weight: 600;
    font-size: 55px;
    line-height: 106.7%;
    text-align: center;
}
.sector-row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr 12px 1fr;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 12px;
    margin-top: 53px;
}
.sector-box {
    background: #FFFFFF;
    border-radius: 33px;
    padding: 47px 40px 31px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
}
.sector-icon {
    width: 109px;
    height: 109px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 4px;
}
.sector-icon img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}
.sector__text {
    margin-top: 101px;
    font-size: 30px;
    line-height: 56px;
}













@media(max-width:1420px) {
    .cons-l__pic {
        width: 490px;
        height: auto;
    }
    .cons-form {
        margin-top: 165px;
    }
}
@media(max-width:1300px) {
    .container {
        max-width: 991px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .menu-list {
        grid-column-gap: 30px;
    }
    .menu-list__link {
        font-size: 14px;
    }
    .logo {
        width: 120px;
    }
    .logo img {
        width: 100%;
        height: auto;
    }
    .btn {
        padding: 9px 35px;
        font-size: 18px;
    }

    .home__title {
        font-size: 60px;
    }
    .home__subtitle {
        font-size: 28px;
        line-height: 35px;
    }
    

    .connect {
        padding-top: 100px;
    }
    .connect__title {
        padding-left: 0;
        padding-right: 0;
        font-size: 35px;
    }

    .connect-box__title {
        font-size: 35px;
    }

    .hero-consult__title {
        font-size: 45px;
    }
    .hero-consult__subtitle {
        font-size: 22px;
    }
    


    .connect-box {
        height: 640px;
    }
    .connect__abs {
        max-width: 100%;
        height: auto;
    }
    .connect-r__pic {
        height: 400px;
        width: auto;
    }





    .con-scheme {
        grid-gap: 50px;
    }
    .con-b_box__abs {
        width: 130%;
        height: auto;
    }
    .con-b__text {
        font-size: 35px;
        line-height: 36px;
    }
    .con-b_box {
        height: 320px;
    }


    
    .corp__title {
        font-size: 45px;
        margin-top: 0;
    }
    .corp__subtitle {
        font-size: 35px;
    }
    .corp__text {
        font-size: 30px;
    }
    .corp-step::before {
        left: 75px;
        width: 135px;
    }
    .corp-l {
        width: 280px;
        min-width: 280px;
        height: 280px;
    }
    .corp-r {
        font-size: 22px;
    }
    .corp-b__block {
        font-size: 20px;
    }
    .corp-b__text {
        font-size: 20px;
    }
    .corp-b__text a {
        font-size: 35px;
    }


    .res__title, .cons__title {
        /*font-size: 55px;*/
    }
    .res__text {
        font-size: 25px;
        line-height: 45px;
    }
    .res__link {
        font-size: 35px;
    }


    .cons__text {
        max-width: 425px;
        font-size: 30px;
    }



    .organ__title {
        font-size: 55px;
    }
    .organ__text, .sector__text {
        font-size: 25px;
        line-height: 40px;
    }
    .organ-mid__title, .sector__title {
        font-size: 35px;
    }
    .sector-row {
        margin-top: 70px;
    }
    .sector-box {
        padding: 24px 10px 18px;
        
    }
    
}

@media(max-width:1170px) {
    .page {
        padding-left: 20px;
        padding-right: 20px;
    }
    .page .container {
        padding: 0;
    }
    
    .con__title {
        font-size: 70px;
    }
    .con-top__pic {
        width: 600px;
        min-width: 600px;
        height: auto;
    }
    .con-mid__text {
        font-size: 22px;
        line-height: 45px;
    }


    
    .res__title, .cons__title {
        font-size: 55px;
    }
    
    .plac__title {
        font-size: 70px;
    }
    .plac__subtitle {
        font-size: 60px;
    }
    .plac__title, .plac__subtitle {
        max-width: 565px;
    }
    .plac__text {
        font-size: 30px;
        margin-top: 55px;
    }
    .plac__abs {
        left: 65px;
        top: -455px;
        width: 1353px;
        height: auto;
    }


    .plac-b_l {
        margin-left: 35px;
    }
    .plac-b__pic {
        width: 350px;
        height: auto;
    }
    .plac-b__text {
        margin-left: 20px;
        font-size: 25px;
        max-width: 315px;
    }
    .plac-b__abs {
        width: 550px;
        right: 35px;
        height: auto;
    }
    .plac-box, .plac-help__text {
        font-size: 25px;
        line-height: 35px;
    }
    .plac-help__text {
        max-width: 355px;
    }
    .plac-help__pic {
        bottom: 80px;
        width: 450px;
        right: -20px;
        height: auto;
    }
    .plac-help_r::before {
        bottom: 80px;
    }
    .plac-help__abs {
        right: -45px;
        width: 520px;
        height: auto;
    }
    
    .plac-step__num {
        font-size: 120px;
    }
    .plac-step__text {
        font-size: 25px;
        line-height: 35px;
    }
    .plac-step_l2 {
        top: 240px;
    }
    .plac-step_l1, .plac-step_r1 {
        display: none;
    }
    .plac-step_box {
        height: 525px;
    }
    .plac-foot__abs {
        position: static;
        max-width: 400px;
        height: auto;
    }
    .plac-foot {
       text-align: center;
       padding-bottom: 50px;
    }
    .plac-foot_r {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .plac-foot__text, .plac-foot__b {
        font-size: 25px;
        line-height: 35px;
    }


    .con-b {
        padding-top: 295px;
    }
    .cons__bg {
        width: 1615px;
        height: auto;
    }
    .cons-l__pic {
        width: 380px;
        height: auto;
    }
    .cons__text {
        max-width: 380px;
        font-size: 25px;
    }
    .cons-form {
        margin-top: 100px;
    }
    .cons-rad span {
        font-size: 28px;
    }



    .prof__pic {
        left: 9vw;
    }
    .prof-foot__text {
        padding-left: 0;
    }
    
}

@media(max-width:1090px) {
    .staf-page {
        background-position: -290px -76px;
    }
    .cons-rad span {
        font-size: 25px;
    }


    .our__title {
        font-size: 55px;
    }
    .our__text {
        font-size: 20px;
        line-height: 45px;
    }
    .our-b {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .our-inner__text {
        font-size: 20px;
        line-height: 45px;
    }


    .what__title {
        font-size: 55px;
    }
    .what-box {
        font-size: 20px;
    }
    .what-inner {
        grid-gap: 57px;
    }
}

@media(max-width:991px) {
    .burger {
        display: block;
    }
    .menu {
        position: fixed;
        left: 0;
        top: 0;
        max-width: 450px;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.9);
        z-index: 10;
        padding-top: 125px;
        -webkit-transform: translateX(-100%);
            -ms-transform: translateX(-100%);
                transform: translateX(-100%);
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
    }
    .menu.active {
        -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
                transform: translateX(0);
    }
    .menu-list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center;
    }
    .menu-list__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        padding-left: 30px;
        padding-right: 30px;
    }
    .menu-list__link {
        font-size: 30px;
        font-weight: 700;
    }
    .connect-box {
        padding-left: 15px;
        padding-right: 15px;
        height: 620px;
    }
    .connect-r {
        padding-left: 71px;
        padding-right: 71px;
    }
    .connect-r__pic {
        height: auto;
        width: 95%;
    }


    .home__title {
        font-size: 38px;
    }
    .home__subtitle {
        padding-left: 22px;
        text-align: left;
        border-left: 1px solid #000;
        font-size: 20px;
        line-height: 26px;
    }
    .btn {
        padding: 6px 35px;
        font-size: 14px;
    }
    .burger {
        max-width: 110px;
        width: 100%;
    }
    .logo {
        margin-left: 15px;
        margin-right: 15px;
    }

    .home {
        -webkit-clip-path: ellipse(600px 61% at 50% 61%);
                clip-path: ellipse(600px 61% at 50% 61%);
        background: #F5F5F5;
        margin-top: 18px;
        padding-top: 90px;
    }
    .connect {
        -webkit-clip-path: unset;
                clip-path: unset;
    }
    .connect__title {
        font-size: 20px;
    }


    .con-page {
        padding-bottom: 60px;
    }
    .con__abs {
        right: 0;
        width: 980px;
        height: auto;
    }
    .con-top__pic {
        width: 450px;
        min-width: 450px;
        height: auto;
    }
    .con__title {
        margin-right: 0;
        margin-top: 200px;
        font-size: 55px;
        text-align: center;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
    }
    .con-mid_l {
        width: 200px;
        min-width: 200px;
    }
    .con-mid_l img {
        width: 100%;
        height: auto;
    }
    .con-mid__abs {
        bottom: -144px;
    }


    .con-b__title {
        font-size: 45px;
        line-height: 50px;
    }
    .con-b__text {
        font-size: 24px;
        line-height: 25px;
    }
    .con-b_box img:not(.con-b_box__abs) {
        max-width: 50px;
        height: auto;
    }
    .con-b_box {
        height: 255px;
    }
    .con-b__abs {
        display: none;
    }


    .corp__title {
        font-size: 30px;
    }
    .corp__subtitle, .corp__text {
        font-size: 22px;
    }
    .corp-l {
        width: 200px;
        min-width: 200px;
        height: 200px;
    }
    .corp-step::before {
        left: 53px;
        width: 100px;
    }
    .corp-pic::after {
        width: 300px;
        height: 300px;
    }
    .corp-pic::before, .corp-page::before {
        width: 200px;
        height: 200px;
    }
    .corp-inner::before {
        width: 500px;
        height: 500px;
    }


    .plac__abs {
        display: none;
    }
    .plac__mob {
        display: block;
    }

    .plac__title, .plac__subtitle {
        padding-left: 0;
        text-align: center;
    }
    .plac__title {
        font-size: 55px;
    }
    .plac__subtitle {
        font-size: 35px;
        padding-left: 100px;
    }
    .plac__text {
        font-size: 22px;
    }
    .plac-b__pic {
        width: 255px;
        height: auto;
    }
    .plac-b_l {
        margin-left: 0;
        min-width: 470px;
        width: 470px;
    }
    .plac-b__abs {
        width: 410px;
        height: auto;
        right: 95px;
        bottom: 0;
    }
    .plac-help__pic {
        width: 340px;
        height: auto;
        right: 0;
    }
    .plac-help__abs {
        width: 450px;
        height: auto;
    }

    .plac-step__num {
        font-size: 100px;
    }
    .plac-box, .plac-help__text {
        font-size: 22px;
    }
    .plac-step__text {
        /* font-size: 22px; */
    }
    .plac-step_l2, .plac-step_r2 {
        display: none;
    }
    .plac-step_row {
        padding-left: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .plac-step_box {
        height: auto;
        padding-top: 0;
        margin-top: 0;
    }
    .plac-step_r {
        margin-top: 20px;
        width: 100%;
    }
    .plac-step_l {
        margin-right: 0;
        width: 100%;
    }
    .plac-step__text {
        margin-top: 20px;
    }
    .plac-step_l .plac-step__text {
        margin-top: 20px;
    }



    .staf-page {
        background-position: 80% -76px;
    }



    .cons__bg {
        width: 1180px;
        height: auto;
        top: -95px;
    }
    .cons-l__pic {
        width: 230px;
        height: auto;
    }
    .cons__text {
        margin-top: 85px;
    }
    .cons-form {
        margin-top: 40px;
    }
    .cons-rad span {
        font-size: 20px;
    }
    .cons-rad input {
        width: 18px;
        height: 18px;
    }
    .cons__inp {
        height: 60px;
        border-radius: 10px;
        font-size: 20px;
        max-width: 100%;
    }
    .cons__mess {
        height: 220px;
    }
    .cons__btn {
        height: 65px;
        font-size: 25px;
    }
    .cons-top {
        padding: 38px 29px 33px;
    }
    .cons-bottom {
        padding-left: 29px;
        padding-right: 29px;
    }
    

    .prof {
        -webkit-clip-path: ellipse(1020px 61% at 50% 61%);
                clip-path: ellipse(1020px 61% at 50% 61%);
        padding-top: 11.594vw;
        padding-bottom: 26.087vw;
    }
    .prof-row {
        padding-left: 0;
        padding-right: 5.072vw;
    }
    .prof__pic {
        left: 5vw;
        width: 37.072vw;
        height: auto;
    }

    .prof__subtitle {
        width: 44.483vw;
        margin-left: -7.87vw;
    }
    .prof__title {
        width: 44.483vw;
        margin-left: -3.435vw;
    }




    .what-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        padding-right: 0;
    }
    .what-r {
        max-width: 100%;
    }
    .what__abs {
        left: 65%;
    }
    .what-block {
        margin-left: 0!important;
        margin-right: 0!important;
        max-width: 100%!important;
    }
    .what-l {
        width: 100%;
    }
    .what-l img{
        position: static;
        width: 300px;
        height: auto;
    }
    .what-wr>span {
        left: 62%;
    }
    
    
    .prof-foot {
        padding-top: 0;
    }
    .prof-foot_inner {
        max-width: 100%;
    }




    .sector-row {
        -ms-grid-columns: 1fr 12px 1fr 12px 1fr;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:850px) {
    .connect-box__title {
        font-size: 20px;
    }
    .connect-box {
        padding-left: 60px;
        padding-right: 60px;
        height: 60vw;
        border-radius: 20px;
    }
    .connect-r {
        padding-left: 105px;
        padding-right: 105px;
    }
    .connect__btn {
        font-size: 14px;
        width: 80px;
        line-height: 17px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .con-b_box__abs {
        height: 285px;
        width: auto;
    }
    .con-b_box {
        padding-left: 15px;
        padding-right: 15px;
    }
    .con-scheme {
        grid-gap: 34px;
    }



    .plac-b {
        margin-top: 110px;
    }
    .plac-b_row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .plac-b_l {
        min-width: 385px;
        width: 385px;
    }
    .plac-b__abs {
        right: 0;
    }
    .plac-b__text {
        margin-left: 0;
        margin-bottom: 0;
        max-width: 100%;
        margin-top: 20px;
    }
    .plac-content::before {
        -webkit-clip-path: ellipse(920px 50% at 50% 50%);
                clip-path: ellipse(920px 50% at 50% 50%);
    }
    .plac-help_row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
    .plac-help__pic {
        position: relative;
        right: unset;
        bottom: unset;
        top: -80px;
    }
    .plac-help_r::before {
        bottom: 85px;
        left: 50%;
    }
    .plac-help_r {
        width: auto;
        text-align: center;
    }
    .plac-help {
        padding-top: 0;
    }
    .plac-help_row::after {
        content: '';
        position: absolute;
        -webkit-filter: blur(250px);
                filter: blur(250px);
        width: 300px;
        height: 300px;
        border-radius: 50%;
        top: 95px;
    }
    .plac-help__abs {
        right: 50%;
        -webkit-transform: translateX(50%);
            -ms-transform: translateX(50%);
                transform: translateX(50%);
    }
    
    .plac-help_row::before {
        display: none;
    }
    .plac-help__text {
        max-width: 100%;
        margin-right: 0;
        margin-top: 20px;
    }
    .plac-content__b {
        right: 375px;
    }



    .cons-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding-left: 0;
        padding-right: 0;
    }
    .cons__text {
        max-width: 100%;
    }
    .cons__bg {
        width: 900px;
        height: auto;
        top: -50px;
    }
    .cons-l {
        height: 210px;
        margin-top: 20px;
    }
    .cons-l__pic {
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
    }
    
    
}

@media(max-width:760px) {
    .connect-r {
        padding-left: 20px;
        padding-right: 20px;
    }
    .connect-r .connect-box__title {
        max-width: 170px;
        margin-left: auto;
        margin-right: auto;
    }
    .connect-l .connect-box__title {
        max-width: 210px;
        margin-left: auto;
        margin-right: auto;
    }
    .connect-l, .connect-r {
        padding-left: 20px;
        padding-right: 20px;
    }
    .connect-row {
        grid-gap: 10px;
    }
    .connect-box {
        height: 460px;
    }
    



    .con__title {
        font-size: 40px;
    }
    .con-top__pic {
        width: 390px;
        min-width: 390px;
        height: auto;
    }
    .con-block {
        top: -10px;
        margin-left: 0;
    }
    .con__abs {
        width: 795px;
        height: auto;
    }
    .con-mid_l {
        display: none;
    }

    .con-b {
        padding-top: 80px;
    }


    .con-b__title {
        font-size: 32px;
        line-height: 35px;
    }
    .con-scheme {
        margin-top: 75px;
    }
    .con-b_box {
        height: 215px;
    }
    .con-b_box__abs {
        height: 250px;
        width: auto;
    }



    .staf-b {
        width: 350px;
        height: 350px;
        margin-right: auto;
    }

    .staff__pic {
        max-width: 100%;
        max-height: 100%;
        height: auto;
        width: auto;
    }
    .staff__abs {
        top: 113px;
        left: 43px;
        width: 80%;
        height: auto;
    }
    .staf-page {
        background-image: url('../img/staf-mob.png');
    }


    .our__title {
        font-size: 40px;
    }
    .our__text, .our-inner__text {
        font-size: 18px;
        line-height: 35px;
    }
    
}
@media(max-width:595px) {
    .send {
        font-size: 14px;
    }
    .error {
        padding-left: 20px;
        font-size: 12px;
        
    }
    .inp-wrapper .error {
        top: -20px;
    }
    .header {
        padding-top: 25px;
    }
    .menu {
        max-width: 100%;
    }
    .menu-list__item {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }



    .connect-r__abs2 {
        display: none;
    }
    .connect-box {
        height: 360px;
    }
    .connect-box {
        padding-top: 20px;
    }
    .connect-box__title {
        font-size: 14px;
    }
    .connect-l .connect-box__title {
        max-width: 175px;
    }
    .connect-r .connect-box__title {
        max-width: 115px;
    }

    .home {
        padding-bottom: 25px;
        padding-top: 55px;
    }
    .home__title {
        font-size: 25px;
        
    }
    .home__subtitle {
        font-size: 15px;
        line-height: 21px;
        margin-top: 16px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .connect {
        padding-top: 0;
    }
    .connect__title {
        font-size: 15px;
        line-height: 138.2%;
    }
    .connect-row {
        margin-top: 27px;
    }


    .hero-consult {
        padding-bottom: 27px;
    }
    .hero-consult_content {
        padding-left: 40px;
        padding-right: 40px;
        border-radius: 25px;
    }
    .hero-consult_content::before {
        width: 150px;
        height: 150px;
        top: unset;
        left: 30px;
        bottom: -50px;
    }
    .hero-consult_content::after {
        width: 110px;
        height: 110px;
        left: 50px;
        bottom: -40px;
    }
    .hero-consult__title {
        font-size: 25px;
    }
    .hero-consult__subtitle {
        font-size: 14px;
        line-height: 150%;
        margin-top: 5px;
    }
    .hero-form_row {
        grid-gap: 20px;
    }
    .hero-form__inp {
        font-size: 15px;
        padding: 10px 20px;
    }
    .hero-form__send {
        width: 51px;
        min-width: 51px;
        height: 29px;
    }
    .hero-form__send img {
        width: 30px;
        height: auto;
    }
    .hero-form textarea {
        padding: 0 6px;
        height: 30px;
    }
    .hero-form label {
        padding: 9px 14px;
    }



    .con__abs {
        width: 640px;
        height: auto;
    }
    .con-top__pic {
        width: 295px;
        min-width: 295px;
        height: auto;
    }
    .con__title {
        font-size: 30px;
        margin-top: 140px;
    }
    .con-block {
        padding: 40px 20px;
    }
    .con-mid__text {
        font-size: 16px;
        line-height: 29px;
    }
    .con-scheme {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    .con-b_box__abs {
        display: none;
    }
    .con-b__title {
        font-size: 25px;
        line-height: 29px;
    }
    .con-scheme {
        margin-top: 30px;
    }
    .con-b_box {
        min-height: 150px;
        height: auto;
        padding-bottom: 20px;
        padding-top: 20px;
    }


    
    .corp {
        padding-bottom: 80px;
    }
    .corp__title {
        font-size: 25px;
    }
    .corp__subtitle, .corp__text {
        font-size: 16px;
    }
    .corp-l {
        width: 50px;
        min-width: 50px;
        height: 50px;
        font-size: 26px;
    }
    .corp-r {
        font-size: 16px;
    }
    .corp-step::before {
        left: 14px;
        width: 24px;
        top: -20px;
        bottom: -20px;
        border-radius: 7px;
    }
    .corp__text {
        margin-top: 30px;
    }
    .corp__text::before {
        width: 25px;
        height: 25px;
    }
    .corp-row_n .corp-r::before {
        width: 18px;
        height: 18px;
    }
    .corp-b {
        margin-top: 65px;
    }
    .corp-b__block {
        font-size: 14px;
        padding: 10px 9px;
        margin-bottom: 30px;
    }
    .corp-b__text {
        font-size: 14px;
    }
    .corp-b__text a {
        font-size: 20px;
    }
    .corp-row {
        margin-bottom: 30px;
    }



    .plac {
        padding-top: 95px;
        padding-bottom: 95px;
    }
    .plac__title {
        font-size: 25px;
    }
    .plac__subtitle {
        font-size: 20px;
    }
    .plac-top {
        padding-left: 0;
    }
    .plac__text, .plac-b__text, .plac-help__text {
        font-size: 16px;
        line-height: 24px;
    }
    .plac-box {
        font-size: 16px;
        line-height: 24px;
        padding: 20px;
    }
    .plac-help__pic {
        width: 250px;
        height: auto;
    }
    .plac-help__abs {
        width: 320px;
        height: auto;
    }
    .plac-step__text {
        font-size: 18px;
        line-height: 26px;
    }
    .plac-step_r::before, .plac-step_l::before {
        display: none;
    }
    .plac-foot__abs {
        width: 250px;
        height: auto;
    }
    .plac-foot {
        padding-top: 40px;
    }
    .plac-foot__text, .plac-foot__b {
        font-size: 18px;
        line-height: 26px;
    }
    .plac-content {
        padding-top: 70px;
        padding-bottom: 110px;
    }


    .res {
        padding-top: 70px;
        padding-bottom: 50px;
    }
    .res__title {
        font-size: 25px;
    }
    .res__text {
        font-size: 16px;
        line-height: 25px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .res__link {
        font-size: 20px;
    }



    .staf-page {
        padding-top: 50px;
    }
    .staf__title {
        font-size: 25px;
        margin-bottom: 20px;
    }
    .staf__text {
        font-size: 16px;
        line-height: 35px;
        margin-top: 15px;
    }


    .prof__pic {
        width: 33vw;
        top: unset;
        bottom: 0;
        left: 7vw;
    }
    .prof-abs {
        left: 0;
        right: 0;
    }
    
    



    

    .footer {
        padding-top: 19px;
        padding-bottom: 22px;
    }
    .footer-logo {
        display: none;
    }
    .footer__text {
        font-size: 15px;
        line-height: 21px;
        margin-top: 0;
        margin-bottom: 8px;
    }
    .footer-form {
        font-size: 15px;
        padding: 4px 40px 4px 16px;
        margin-bottom: 19px;
    }
    .footer-form__inp {
        font-size: 15px;
    }
    .footer-form__btn {
        width: 23px;
        height: 23px;
        right: 3px;
    }
    .footer-form__btn img {
        width: 15px;
        height: auto;
    }
    .copyright {
        font-size: 12px;
        line-height: 22px;
    }



    .cons__title {
        font-size: 25px;
    }
    .cons__text {
        font-size: 16px;
        margin-top: 45px;
    }
    .cons__bg {
        width: 630px;
        height: auto;
    }
    .cons-rad span {
        font-size: 16px;
        margin-left: 10px;
    }
    .cons-top {
        padding: 20px;
    }
    .cons-bottom {
        padding: 20px;
    }
    .cons-lbl span {
        font-size: 16px;
    }
    .cons__inp {
        margin-top: 5px;
        height: 50px;
        font-size: 16px;
    }
    .cons__mess {
        height: 170px;
    }
    .cons__btn {
        width: 100%;
        font-size: 20px;
        height: 50px;
    }
    .cons-mid {
        text-align: center;
        padding: 10px;
    }
    .cons {
        padding-top: 50px;
    }


    .prof__subtitle {
        margin-left: -4.87vw;
    }
    .prof__title {
        width: auto;
    }
    .prof-r {
        margin-bottom: 41.042vw;
    }
    .prof-abs p {
        position: relative;
        font-size: 3vw;
    }



    .our__bg {
        display: none;
    }
    .our__mob {
        display: block;
        position: absolute;
        top: -50px;
        right: 62px;
        z-index: -1;
        height: 700px;
    }
    .our-box {
        padding: 22px 14px 25px;
    }
    .our__title {
        font-size: 25px;
    }
    .our__text {
        font-size: 15px;
        line-height: 21px;
    }
    .our-b {
        height: 150px;
        margin-top: 27px;
        padding: 14px 6px 11px;
    }
    .our-inner {
        padding: 19px 14px 25px 21px;
    }
    .our-inner span, .our-inner span::before, .our-inner span::after {
        width: 7px;
        height: 7px;
    }
    .our-inner span::before {
        left: -44px;
    }
    .our-inner span::after {
        right: -44px;
    }
    .our-inner__text {
        font-size: 15px;
        line-height: 21px;
    }


    .what__title {
        font-size: 25px;
    }
    .what__abs {
        left: 82%;
        top: -76px;
        bottom: -63px;
        height: calc(100% + 139px);
        width: auto;
    }
    .what-row {
        margin-top: 76px;
    }
    .what-inner {
        grid-gap: 35px;
    }
    .what-block {
        height: 70px;
    }
    .what-box {
        padding: 12px 8px 7px 12px;
        font-size: 15px;
        line-height: 123.5%;
    }
    .what-wr>span {
        left: 77%;
        font-size: 15px;
        line-height: 123.5%;
        top: -33px;
    }


    .prof-foot__text {
        font-size: 15px;
        margin-bottom: 211px;
        margin-top: 30px;
    }
    .prof-foot__link {
        max-width: 230px;
        margin-left: auto;
        margin-right: auto;
        font-weight: 500;
        font-size: 15px;
    }
    .prof-foot__bg {
        top: 0;
        width: 685px;
        height: auto;
    }
    .prof-foot__logo {
        width: 155px;
        right: 25px;
    }




    .organ {
        padding-top: 50px;
    }
    .organ__title {
        font-size: 25px;
    }
    .organ__text {
        font-size: 15px;
        line-height: 21px;
        margin-top: 35px;
    }
    .organ-mid__title, .sector__title {
        font-size: 20px;
    }
    .organ-grid {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 20px 1fr;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        margin-top: 40px;
    }
    .organ-box {
        margin: 0;
        width: 100%;
        height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .organ-box p {
        font-size: 15px;
        line-height: 21px;
    }


    .sector {
        padding-bottom: 60px;
    }
    .sector-row {
        margin-top: 40px;
        -ms-grid-columns: 1fr 12px 1fr;
        grid-template-columns: repeat(2, 1fr);
    }
    .sector__text {
        font-size: 15px;
        line-height: 21px;
        margin-top: 60px;
    }

}
@media(max-width:480px) {
    .connect-box {
        height: 65vw;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* .our__mob {
        height: auto;
    } */
}
@media(max-width:420px) {
    .connect-box__title {
        font-size: 13px;
    }
    .connect-r .connect-box__title {
        max-width: 110px;
    }


    .con__abs {
        width: 480px;
        height: auto;
    }
    .con__title {
        font-size: 25px;
        margin-top: 110px;
    }
    .con-top__pic {
        width: 210px;
        min-width: 210px;
        height: auto;
    }
}

@media(max-width:395px) {
    .logo {
        width: 100px;
        min-width: 100px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .logo img {
        width: 100%;
        height: auto;
    }
    .hero-form_row {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 21px;
    }

    .menu-list__link {
        font-size: 25px;
    }

    .corp-b__text {
        font-size: 12px;
    }
    .corp-b__text a {
        font-size: 15px;
    }


    .our__mob {
        height: 850px;
    }

}
@media(max-width:370px) {
    .connect-row {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    .connect-box {
        height: 115vw;
    }

    .our__title {
        font-size: 23px;
    }



    .organ-grid, .sector-row {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

}
@media(min-width:1441px) {
    .prof-row {
        padding-right: 0;
    }
    .prof__pic {
        margin-left: 90px;
        position: static;
        width: 35.486vw;
        min-width: 35.486vw;
        -ms-flex-item-align: start;
            align-self: flex-start;
        height: auto;
    }
    .prof-r {
        margin-bottom: 31.042vw;
    }
}
.example {
    display: -ms-grid;
    display: grid;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
    background: -o-linear-gradient(top, white, black);
    background: linear-gradient(to bottom, white, black);
}