:root {
    --color-1: #1f2a44;
    --color-2: #d5e8f8;
}

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-1);
    background: var(--color-2);
    min-width: 1300px;
}

a {
    color:#000;
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1260px;
    }
}

header {
    position: sticky;
    top:0;
    z-index: 3;
    padding: 15px 0;
    background: var(--color-1);
    color:#fff;
    border-bottom: 1px solid var(--color-2);
}

header a {
    color:#fff;
}

header a:hover {
    color:#fff;
    text-decoration: none;
}

header .phone a, header .city {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .phone a:before, header .city:before {
    content:'';
    display: block;
    width: 16px;
    height: 16px;
    background: url('./images/phone.svg') center center no-repeat;
    background-size: 100%;
}

header .city:before {
    background: url('./images/map.svg') center center no-repeat;
    background-size: 100% 100%;
}

header .logo {
    margin-right: 20px;
}

header .language {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .language-item {
    text-transform: uppercase;
}

header .language-item.active {
    font-weight: 600;
}

header .menu {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

header .menu-item {
    cursor: pointer;
}

.logo {
    font-weight: 700;
    font-size: 36px;
}

.main-screen {
    height: calc(100vh - 80px);
    background: var(--color-1);
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

#particles-js {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-screen .mini-title {
    margin-bottom: 100px;
}

.main-screen .main-title {
    font-size: 100px;
    font-weight: 700;
    margin-bottom: 20px;
}

.main-screen .mini-title, .main-screen .main-title, .main-screen .sub-title {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.6s ease-out forwards;
}

.main-screen .sub-title {
    font-size: 30px;
    text-transform: uppercase;
}

.main-screen .mini-title {
    animation-delay: 0.5s;
}

.main-screen .main-title {
    animation-delay: 1s;
}

.main-screen .sub-title {
    animation-delay: 1.5s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.screen {
    padding: 80px 0;
}

.block-h2 {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

.block-h3 {
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
}

img {
    max-width: 100%;
}

.mission-screen {

}

.mission-screen .block-h2 {
    margin-bottom: 30px;
}

.sub-text {
    text-align: center;
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.diagram-screen {
    overflow: hidden;
}

.diagram-screen .advantages {
    padding-left: 58px;
}

.diagram-screen .adv-item {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
}

.diagram-screen .adv-item:last-child {
    margin-bottom: 0;
}

.diagram-screen .adv-item:before {
    content: '';
    display: block;
    min-width: 60px;
    height: 60px;
}

.diagram-screen .adv-item:nth-child(1):before {
    background: url('./images/adv-1.svg') center center no-repeat;
    background-size: 100%;
}

.diagram-screen .adv-item:nth-child(2):before {
    background: url('./images/adv-2.svg') center center no-repeat;
    background-size: 100%;
}

.diagram-screen .adv-item:nth-child(3):before {
    background: url('./images/adv-3.svg') center center no-repeat;
    background-size: 100%;
}

.diagram-screen .adv-item:nth-child(4):before {
    background: url('./images/adv-4.svg') center center no-repeat;
    background-size: 100%;
}

.diagram-screen .adv-item:nth-child(5):before {
    background: url('./images/adv-5.svg') center center no-repeat;
    background-size: 100%;
}

.diagram-screen .adv-item:nth-child(6):before {
    background: url('./images/adv-6.svg') center center no-repeat;
    background-size: 100%;
}

.diagram-screen .img-block {
    position: relative;
    padding: 20px 0;
    background: var(--color-1);
    padding-right: 60px;
    border-radius: 0 50px 50px 0;
}

.diagram-screen .img-block:after {
    content: '';
    display: block;
    width: 2000px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 100%;
    background: var(--color-1);
}

.why-we {
    overflow: hidden;
}

.why-we .sub-text {
    margin-bottom: 80px;
}

.why-we .work-method .title {
    font-size: 24px;
}

.why-we .work-method .all-time {
    font-weight: 600;
    font-size: 34px;
    margin-bottom: 20px;
}

.why-we .work-method.right .advantages {
    margin: auto 0;
}

.why-we .work-method .adv-item {
    margin-bottom: 15px;
    padding-left: 40px;
}

.why-we .work-method.left {
    padding-left: 40px;
}

.why-we .work-method.left .line-scale {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 0;
    transition: height 2s ease-out .8s;
    background: linear-gradient(to top, #1f2a44, #53669a, #9ab5f8);
    border-radius: 5px 5px 0 0;
}

.why-we .work-method.left.active .line-scale {
    height: 90%;
}

.why-we .work-method.left .adv-item {
    background: url('./images/time.svg') 0px 5px no-repeat;
    background-size: 28px;
}

.why-we .work-method.right {
    background: var(--color-1);
    padding: 30px 0 30px 60px;
    color: #fff;
    border-radius: 50px 0 0 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.why-we .work-method.right:after {
    content: '';
    display: block;
    width: 2000px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    background: var(--color-1);
}

.why-we .work-method.right .name {
    font-size: 20px;
}

.why-we .work-method.right .adv-item {
    margin-bottom: 30px;
    padding-left: 60px;
    background: url('./images/chack.svg') 0px 5px no-repeat;
    background-size: 40px;
}

.why-we .work-method.right .adv-item:last-child {
    margin-bottom: 0;
}

.why-we .work-method.right .time {
    font-size: 16px;
}

.why-we .work-method .name {
    font-weight: 600;
}

.why-we .work-method .time {
    font-size: 14px;
}

.main-advantages {
    background: var(--color-1);
    margin-top: 40px;
}

.main-advantages .block-h2 {
    color: #fff;
    margin-bottom: 60px;
}

.m-adv-item {
    padding: 20px;
    padding-right: 50px;
    border-radius: 30px;
    width: 350px;
    background: #fff;
    position: relative;
    text-align: right;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    height: 120px;
}

.m-adv-item:after {
    content:'01';
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    background: url('./images/arrow.png') center center no-repeat;
    background-size: 100%;
    position: absolute;
    right: -40px;
    top:50%;
    margin-top: -30px;
}

.m-adv-item:nth-child(2):after {
    content:'02';
}

.m-adv-item:nth-child(3):after {
    content:'03';
}

.main-advantages .left {
    display: flex;
    align-items: end;
    flex-direction: column;
}

.main-advantages .left .m-adv-item:nth-child(2) {
    margin-right: 100px;
}

.main-advantages .right .m-adv-item {
    padding-right: 20px;
    padding-left: 50px;
    text-align: left;
}

.main-advantages .right .m-adv-item:after {
    content:'04';
    right: auto;
    left: -40px;
    background: url('./images/arrow-2.png') center center no-repeat;
    background-size: 100%;
}


.main-advantages .right .m-adv-item:nth-child(2):after {
    content:'05';
}

.main-advantages .right .m-adv-item:nth-child(3):after {
    content:'06';
}

.main-advantages .right .m-adv-item:nth-child(2) {
    margin-left: 100px;
}

.main-advantages .circle {
    width: 250px;
    height: 250px;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-2);
    background: url('./images/circle.png') center center no-repeat;
    background-size: 100%;
}

footer .qr-code {
    width: 330px;
    margin: 0 auto 80px;
}

footer .logo {
    text-align: center;
    font-size: 100px;
}

.protection .prot-item {
    text-align: center;
    margin-bottom: 60px;
}

.protection .prot-item .title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.protection .prot-item.min .title {
    font-size: 16px;
}

.protection .prot-item.min .text {
    font-size: 12px;
}

footer .bottom {
    padding: 15px 0;
    border-top: 1px solid var(--color-1);
    margin-bottom: 0;
}

footer .phone, footer .mail {
    display: flex;
    align-items: center;
    gap:5px;
}

footer .phone:before, footer .mail:before {
    content:'';
    display: block;
    width: 16px;
    height: 16px;
    background: url('./images/phone-blue.svg') center center no-repeat;
    background-size: 100%;
}

footer .mail:before {
    background: url('./images/mail.svg') center center no-repeat;
    background-size: 100%;
}

.new-advantages {
    background: var(--color-1);
    margin-top: 40px;
    color: #fff;
}

.new-advantages .block-h2 {
    margin-bottom: 60px;
}

.new-advantages .top, .new-advantages .bottom {
    display: flex;
    position: relative;
    align-items: start;
}

.new-advantages .top:after, .new-advantages .bottom:after {
    content:'';
    display: block;
    width: 780px;
    height: 100px;
    position: absolute;
    top:46px;
    left:50%;
    margin-left: -396px;
    background: url('./images/line.png') center center no-repeat;
    background-size: 100%;
    z-index: 1;
}

.new-advantages .bottom:after {
    transform: rotate(180deg);
    margin-left: -388px;
    top: auto;
    bottom: 35px;
}

.new-advantages .n-adv-item {
    width: 33.33%;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.n-adv-item .text {
    font-weight: 600;
    font-size: 20px;
}

.n-adv-item .number {
    font-size: 40px;
    font-weight: 500;
    background: linear-gradient(to bottom, #a2b7e9, #182f65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.new-advantages .top .n-adv-item:nth-child(1), .new-advantages .top .n-adv-item:nth-child(3) {
    margin-top: 100px;
}

.new-advantages .bottom .n-adv-item:nth-child(2) {
    margin-top: 110px;
}

.new-advantages .n-adv-item .icon {
    width: 90px;
    height: 90px;
    border: 1px solid var(--color-2);
    border-radius: 20px;
    background: url('./images/adv.svg') center center no-repeat, var(--color-1);
    background-size: 44px;
    position: relative;
    z-index: 2;
}

.new-advantages .block-logo {
    display: block;
    text-align: center;
    line-height: 1;
    font-size: 80px;
    font-weight: 700;
}

/* ===== АНИМАЦИЯ ПРИ СКРОЛЛЕ ===== */

.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all .7s ease;
}

.animate.active {
    opacity: 1;
    transform: translateY(0);
}

.diagram-screen .img-block.animate,
.why-we .work-method.left.animate {
    opacity: 0;
    transform: translateX(-100px);
    transition: all .7s ease;
}

.diagram-screen .advantages.animate,
.why-we .work-method.right.animate{
    opacity: 0;
    transform: translateX(100px);
    transition: all .7s ease;
}

.diagram-screen .img-block.animate.active,
.diagram-screen .advantages.animate.active,
.why-we .work-method.left.animate.active,
.why-we .work-method.right.animate.active {
    opacity: 1;
    transform: translateX(0);
}

