body {
    padding: 110px 0 0;
    margin: 0;
    font-family: "Nunito", sans-serif;
    color: #32315b;
    background: #e7ecf6;
}
:root {
  --blue: #040cad;
  --dark: #010f72;
  --bg: #576aff;
  --light: #dae0f5;
  --gray: #7e7e97;
}
* {
	box-sizing: border-box;
	outline: none;
    transition: .3s;
}
a {
    text-decoration: none;
    color: #32315b;
}
.hidden {
    display: none;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
.row {
    padding: 0 15px;
}
.container {
    max-width: 1762px;
    margin: 0 auto;
}
.flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
    flex-wrap: wrap;
}
.span-2 {
    grid-column: span 2;
}
.grid {
    display: grid;
    gap: 30px;
}
.grid-2col {
    grid-template-columns: repeat(2, 1fr);
}
.grid-3col {
    grid-template-columns: repeat(3, 1fr);
}
.grid-4col {
    grid-template-columns: repeat(4, 1fr);
}
.grid-5col {
    grid-template-columns: repeat(5, 1fr);
}

.mtop-20 {
    margin: 20px 0 0;
}
.mtop-30 {
    margin: 30px 0 0;
}
.mtop-40 {
    margin: 40px 0 0;
}
.mtop-60 {
    margin: 60px 0 0;
}

.mbot-20 {
    margin: 0 0 20px;
}

.a-center {
    text-align: center;
}
.a-left {
    text-align: left;
}
.a-right {
    text-align: right;
}

header.header {
    position: fixed;
    top: 15px;
    width: 100%;
    left: 0;
    z-index: 9;
}
.top-wrap.flex {
    background: #fff;
    border-radius: 15px;
}
.top-wrap.flex {
    background: #fff;
    border-radius: 15px;
    padding: 15px 30px;
}
ul.mod-menu.mod-list.nav {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.top-phone a {
    font-weight: 700;
    color: var(--blue);
    font-size: 18px;
}
ul.mod-menu.mod-list.nav a:hover {
    color: var(--blue);
}
.m-btn a {
    padding: 7px 7px 7px 30px;
    background: #fff;
    display: flex;
    width: fit-content;
    border-radius: 30px;
    align-items: center;
    gap: 20px;
    font-weight: 500;
    color: var(--blue);
    font-size: 16px;
}
.m-btn.dark a {
    background: var(--blue);
    color: #fff;
}
.m-btn a:after {
    content: "";
    display: block;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--bg) url(/images/arrow.svg) center no-repeat;
    background-size: 13px;
    transform: rotate(135deg);
    transition: .3s;
}
.m-btn.dark a:after {
    background: #fff url(/images/arrow-b.svg) center no-repeat;
    background-size: 13px;
}
.m-btn a:hover:after {
    transform: rotate(180deg);
}
section#usls {
    padding: 130px 0 0;
}
.bl-title-top span {
    width: fit-content;
    background: var(--light);
    color: var(--blue);
    display: inline-block;
    border-radius: 45px;
    padding: 18px 40px;
}
.bl-title {
    font-size: 46px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.17;
    padding: 0 40px;
}
.r-ic-in {
    width: 35px;
    height: 35px;
    background-color: var(--blue);
}
.usl:hover .r-ic-in {
    background-color: #fff;
}
.r-ic-in img {
    display: none;
}
.r-ic {
    width: 72px;
    height: 72px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.usl:hover .r-ic {
    background: var(--bg);
}
.usl {
    padding: 40px 40px 60px;
    background: #fff;
    border-radius: 20px;
    aspect-ratio: 1/1;
    position: relative;
}
.usl:hover {
    background: var(--blue);
}
.cell-title {
    font-size: 24px;
    color: var(--dark);
    line-height: 1.17;
    font-weight: 700;
}
.usl:hover .cell-title {
    color: #fff;
}
.bl-title-sub {
    font-size: 18px;
    color: var(--dark);
    padding: 0 40px;
}
.usl:hover .cell-tx {
    color: #fff;
}
.rmore {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
}
.rmore:after {
    content:"";
    display: block;
    height: 13px;
    width: 13px;
    background: var(--blue);
    -webkit-mask: url('/images/arrow.svg') center/contain no-repeat;
    mask: url('/images/arrow.svg') center/contain no-repeat;
    transform: rotate(135deg);
}
.usl:hover .rmore:after {
    background: #fff;
}
.rmore a {
    color: var(--blue);
    font-weight: 500;
}
.usl:hover .rmore a {
    color: #fff;
}
.usl .rmore {
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 9;
    transform: translateZ(10px);
}
.usl-wr {
    position: relative;
    transform-style: preserve-3d;
    transform: translateZ(0px);
}
.usl-wr:hover {
    transform: translateZ(3px);
}
.usl-wr:after {
    content: "";
    position: absolute;
    width: 70%;
    height: 50%;
    background: var(--blue);
    transform: translateX(-50%) translateZ(-1px);
    left: 50%;
    bottom: -16%;
    border-radius: 50%;
    filter: blur(55px);
    opacity: 0;
    transition: 1s;
}
.usl-wr:hover:after {
    opacity: .6;
}
.usl-grid {
    transform-style: preserve-3d;
}
section#why {
    padding: 130px 0 0;
}
.why-cell {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
}
.why-cell.grid.grid-2col.span-2.w1 {
    background: var(--blue) url(/images/fon-space.jpg);
    color: #fff;
    background-size: 115%;
    background-position: 0px 37%;
}
.wc-c {
    background: rgb(255 255 255 / 85%);
    border-radius: 10px;
    padding: 20px;
    color: var(--blue);
    transform: translateY(15px);
}
.wc-c:nth-child(odd) {
    transform: translateY(-15px);
}
.wcc-title {
    font-size: 36px;
    font-weight: 700;
}
.wcc-tx {
    line-height: 1.17;
    width: calc(100% - 30px);
}
.wcc-bottom.flex {
    margin-top: 10px;
}
.why-cell.span-2.w-2 {
    background: #fff url(/images/18.jpg) no-repeat;
    background-size: 76%;
    background-position: 139% 58%;
}
.w-2 .cell-tx {
    max-width: 44%;
}
section#projects {
    margin: 130px 0 0;
}
.project {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.project-bottom.flex {
    position: absolute;
    bottom: 40px;
    left: 0;
    padding: 0 40px;
    align-items: unset;
    min-height: 85px;
}
.project-bottom .cell-title {
    color: #fff;
    width: calc(100% - 90px);
}
.btn-circ span, .btn-circ a {
    display: block;
    width: 54px;
    height: 54px;
    background: #fff;
    border-radius: 50%;
    padding: 16px;
    transform: rotate(-90deg);
}
.projects {
    gap: 45px;
    margin: 60px 0 0;
}
.project-image:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--blue), transparent);
    opacity: .7;
}
.owl-nav.disabled {
    display: none;
}
.owl-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 40px 0 0;
}
button.owl-dot {
    height: 5px;
    width: 50px;
    background: var(--dark);
    border: none;
    border-radius: 2px;
}
button.owl-dot.active {
    background: var(--blue);
}
section#faq {
    margin: 130px 0 0;
}
.acc-item {
    background: #fff;
    padding: 20px 60px;
    border-radius: 20px;
    cursor: pointer;
}
.acc-quest {
    font-size: 20px;
    padding-right: 30px;
    position: relative;
    cursor: pointer;
    font-weight: 700;
    color: var(--dark);
}
.acc-icon {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
    text-align: center;
    padding-left: 1px;
}
.acc-item.black .acc-icon {
    transform: rotate(45deg);
}
.acc-answ {
    display: none;
    padding: 40px 0 0;
    transition: none;
}
.accordeon {
    max-width: 1140px;
    margin: 70px auto 0;
}
section#bottomform {
    margin: 130px 0 0;
}
.bf-cell .bl-title {
    padding: 0;
    color: #fff;
    text-wrap: balance;
}
.bf-cell .bl-title-sub {
    padding: 0;
    color: #fff;
}
.bf-grid {
    background: var(--blue) url(/images/fon-world.png) no-repeat;
    border-radius: 20px;
    padding: 40px;
    background-size: 70%;
    background-position: -20% 57%;
}
body .ba-form-acceptance-field .ba-form-acceptance-html {
    font-size: 12px;
    color: #fff;
}
body .ba-form-acceptance-field .ba-form-acceptance-html a {
    color: #fff;
    border-bottom: 1px dashed;
}
body .ba-form-submit-wrapper .ba-form-submit-btn-wrapper {
    display: none;
}
section#footer {
    margin: 130px 0 0;
}
.foot-grid {
    background: #fff;
    border-radius: 20px 20px 0 0;
    padding: 40px 40px 0;
    gap: 60px;
}
.b-logo+p {
    font-size: 18px;
}
.stx {
    font-size: 12px;
    color: var(--gray);
}
.fcol-title {
    font-size: 18px;
    font-weight: 700;
}
ul.f-nav {
    list-style: none;
    padding: 0;
    line-height: 1.17;
    margin-top: 40px;
}
ul.f-nav li {
    margin: 0 0 10px;
}
ul.f-nav li a:hover {
    color: var(--blue);
}
.cont-item.flex {
    justify-content: unset;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.17;
    flex-wrap: nowrap;
}
.socs.flex a {
    display: flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light);
}
.socs.flex {
    gap: 7px;
}
.copy.grid.grid-4col {
    font-size: 12px;
    color: var(--gray);
    background: #fff;
    padding: 20px 40px;
    border-radius: 0 0 20px 20px;
    align-items: center;
    gap: 20px;
}
.sep {
    border-top: 3px solid var(--light);
    width: 100%;
    grid-column: span 4;
}
.copy-col img {
    display: inline-block;
}
a.scrollup {
    position: fixed;
    right: 30px;
    bottom: 150px;
    transform: rotate(-135deg);
    background: var(--light);
}
header.header.scrolled {
    top: 0;
}
.scrolled .top-wrap.flex {
    border-radius: 0 0 15px 15px;
    box-shadow: 0px 2px 18px #040cad2e;
}