*,
ul,
ol,
p {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plumb';
    font-weight: 500;
    font-size: 24px;
    color: #070D3F;
    background-color: #F4F4F4;
}

.wrapper {
    overflow: hidden;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.section_title {
    font-weight: 700;
    font-size: 54px;
    line-height: 61px;
    text-transform: uppercase;
    color: #266EDD;
    margin: 0 0 80px 0;
}

.section_title.lined {
    position: relative;
}

.section_title.lined span {
    padding: 0 50px 0 0;
}

.section_title.lined::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 100%;
    background: rgba(7, 13, 63, 0.5);
    height: 4px;
    z-index: -1;
    transform: translate(0, -50%);
}

.desc {
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
}


/* HEADER */

header {
    border-bottom: 1px solid #E4E7FB;
    width: 100%;
    top: 0;
    transition: .4s all linear;
}

header .header_row {
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .header_row .logo {
    display: flex;
}

header .mobile_menu {
    display: none;
}

header .logo svg path {
    transition: .3s all ease;
}

header .logo svg .green_path {
    fill: #26CCB4 !important;
}

header .header_row .header_nav {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 31.25px;
    padding: 0 0 5px 0;
}

header .header_row .header_nav li {
    display: flex;
}

header .header_row .header_nav li:last-child {
    display: none;
}

header .header_row .header_nav a {
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #E4E7FB;
    transition: .5s all ease;
}

header .header_row .header_nav a:hover {
    opacity: .5;
}

header .header_row .header_nav a:active {
    color: #fff;
    opacity: 1;
}

.header-fixed {
    /* padding: 111px 0 0 0; */
}

.header-fixed header {
    position: fixed;
    background: #E4E7FB;
    animation: slideDown 0.35s ease;
    z-index: 10;
}

.header-fixed header .header_row .header_nav a {
    color: #070D3F;
}

.header-fixed header .logo svg .green_path {
    fill: #26CCB4 !important;
}

.header-fixed header .logo svg path {
    fill: #266EDD;
}

.header-fixed header .header_row .header_nav a:hover {
    opacity: .7;
}

.header-fixed header .header_row .header_nav a:active {
    color: #266EDD;
    opacity: 1;
}

.header-fixed header .header_row .header_nav a.active {
    color: #266EDD;
    opacity: 1;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}


/* HERO */

.banner {
    background-image: url(/local/templates/edisontheme/img/banner.jpg);
    background-repeat: no-repeat;
    background-position: top;
}

.header-fixed .banner {
    /* background-position-y: 86%; */
}

.hero {
    padding: 65px 0 114px 0;
}

.hero .hero_left {
    width: 76%;
}

.hero .hero_title {
    font-weight: 700;
    font-size: 140px;
    line-height: 157px;
    color: #FFFFFF;
}

.hero .subtitle {
    font-weight: 700;
    font-size: 83px;
    line-height: 89px;
    -webkit-text-stroke: 1.5px #fff;
    color: transparent;
}

.hero .advantages {
    display: flex;
    align-items: center;
    gap: 50px;
    font-size: 35px;
    line-height: 41px;
    color: #E4E7FB;
    padding: 40px 0 127px 0;
}

.hero .advantages div {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 50px 0 0;
    border-right: 1px solid #E4E7FB;
}

.hero .advantages div:last-child {
    border: none;
}

.hero .desc {
    color: #E4E7FB;
    padding: 0 0 20px 0;
}

.hero .desc:last-child {
    padding: 0;
}


/* IPOTEKA */

.ipoteka {
    padding: 110px 0 0 0;
}

.ipoteka .section_title::after {
    display: none;
}

.ipoteka .ipoteka_row {
    display: flex;
    gap: 37px;
    align-items: flex-start;
}

.ipoteka .desc {
    color: #070D3F;
    padding: 0 0 30px 0;
    font-weight: 500;
}

.ipoteka .ipoteka_list {
    list-style: none;
}

.ipoteka .ipoteka_list li {
    font-size: 20px;
    line-height: 23px;
    color: #266EDD;
    position: relative;
    padding: 0 0 20px 14px;
}

.ipoteka .ipoteka_list li:last-child {
    padding: 0 0 0 14px;
}

.ipoteka .ipoteka_list li::after {
    position: absolute;
    content: "";
    border-radius: 50%;
    width: 8px;
    height: 8px;
    background-color: #266EDD;
    top: 9px;
    left: 0;
}

.ipoteka .ipoteka_list li p {
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #070D3F;
    padding: 10px 0 0 0;
}


/* STEPS */

.steps {
    padding: 110px 0 0 0;
}

.steps .section_title.lined span {
    background-color: #F4F4F4;
    display: block;
    width: fit-content;
}

.steps .video_row {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 0 60px 0;
}

.steps .video_row .video_left {
    border-left: 3px solid #266EDD;
    padding: 0 0 0 10px;
}

.video_row .video_left .video_about {
    font-size: 24px;
    line-height: 26px;
    padding: 0 0 30px;
}

.video_row .video_left .video_desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
}

.video_row .video_right {
    position: relative;
    display: flex;
}

.video_row .video_right::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    left: 0;
    background: #070D3F;
    opacity: 0;
    transition: .5s all ease;
}

.video_row .video_right .play_circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .3s all ease;
    width: 53px;
    height: 53px;
    cursor: pointer;
}

.video_row .video_right img {
    transition: .5s all ease;
    opacity: 1;
}

.video_row .video_right video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    transition: .5s all ease;
    cursor: pointer;
}

.video_row .video_right:hover:after {
    opacity: .8;
    transition: .5s all ease;
}

.video_row .video_right:hover .play_circle {
    opacity: 1;
    width: 130px;
    height: 130px;
    z-index: 2;
}

.video_row .video_right .play_circle:active {
    opacity: 0;
}

.video_row .video_right.play::after {
    opacity: 0;
    z-index: -1;
}

.video_row .video_right.play .play_circle {
    opacity: 0;
}

.video_row .video_right.play video {
    opacity: 1;
}

.steps .grid {
    display: grid;
    gap: 30px;
    padding: 0 0 30px 0;
}

.steps .grid.grid_one {
    grid-template-columns: 22.9% 48.5% auto;
    /* 261 555 258 */
}

.steps .grid.grid_two {
    grid-template-columns: 74% auto;
    /* 843 auto */
}

.steps .grid.grid_three {
    grid-template-columns: auto 32% auto;
    /* 358 358 358 */
    padding: 0;
}

.steps .grid .grid_item {
    isolation: isolate;
    display: grid;
    border: 2px solid #437FEC;
    position: relative;
    padding: 75px 15px 20px;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
}

.steps .grid .grid_item.img {
    background: transparent;
}

.steps .grid .grid_item .for_border {
    background: #F4F4F4;
}

.steps .grid .grid_item .grid_number {
    font-weight: 700;
    font-size: 54px;
    line-height: 41px;
    leading-trim: both;
    text-edge: cap;
    text-transform: uppercase;
    color: #266EDD;
    display: inline;
    top: -5px;
    left: -2px;
    position: absolute;
    background-color: #f4f4f4;
    padding: 5px 10px 20px 5px;
}

.steps .grid.grid_two .grid_item:nth-child(1) .grid_name {
    padding: 0;
    line-height: 13px;
}

.steps .grid.grid_three .grid_item:nth-child(3) .grid_name {
    padding: 0;
}

.steps .grid .grid_item .grid_name {
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    color: #266EDD;
    padding: 0 0 15px 0;
}

.steps .grid .grid_item li {
    list-style: none;
    position: relative;
    padding: 0 0 0 12px;
    margin: 0 -1px 10px 0;
}

.steps .grid .grid_item li:last-child {
    margin: 0;
}

.steps .grid .grid_item li:after {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 0;
    top: 50%;
    background: #266EDD;
    transform: translate(0%, -50%);
}


/* PAYMENTS */

.payments {
    padding: 110px 0 0 0;
}

.payments .section_title.lined span {
    background-color: #F4F4F4;
}

.payments .copmanies {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 10px 6px 40px 0;
}

.payments .copmanies .company {
    background: #F4F4F4;
    border: 2px solid rgba(7, 13, 63, 0.5);
    padding: 20px 15px;
    width: calc(25% - 22.5px);
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 35px;
    justify-content: center;
    transition: .5s all ease;
}

.payments .copmanies .company:nth-child(n+9) {
    display: none;
}

.payments .copmanies .company img {
    filter: saturate(0);
    transition: .3s all ease;
}

.payments .copmanies .company a {
    font-size: 16px;
    line-height: 19px;
    color: #070D3F;
    transition: .3s all ease;
}

.payments .copmanies .company:hover {
    border-color: #266EDD;
    background: #fff;
}

.payments .copmanies .company:hover img {
    filter: none;
}

.payments .copmanies .company:hover a {
    color: #266EDD;
}

.show_all {
    font-size: 16px;
    line-height: 19px;
    display: inline-block;
    padding: 16px 41px;
    color: #fff;
    background: #266EDD;
    border-radius: 5px;
    text-decoration: none;
    transition: .5s all ease;
}

.show_all:hover {
    background: #070D3F;
}


/* SLIDER */

.slider {
    padding: 110px 0;
}

.slider .section_title.lined span {
    background-color: #F4F4F4;
}

.slider .slides {
    padding: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    transition: .3s all ease;
    margin: 0 12px 0 -6px;
}

.slider .slides .slide:nth-child(n+6) {
    display: none;
}

.slides .slide_header {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    line-height: 23px;
    color: rgba(7, 13, 63, 0.6);
    padding: 18.7px 50px 18.7px 10px;
    border-bottom: 2px solid #9597AB;
    position: relative;
    transition: .3s all ease;
}

.slides .slide_header .slide_question {
    text-align: left;
}

.slides .slide:first-child .slide_header {
    border-top: 2px solid #9597AB;
}

.slides .slide_header .slide_after {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translate(0, -50%);
    transition: .5s all ease;
    cursor: pointer;
    transform-origin: 10px 0px;
}


/* SLIDE HOVER */

.slides .slide_header:hover {
    color: #070D3F;
    background: #FFFFFF;
}

.slides .slide_header:hover .slide_after rect {
    fill: #070D3F;
}


/* SLIDE OPEN */

.slides .slide.open {
    border: 2px solid #266EDD;
}

.slides .slide.open .slide_header {
    background: #266EDD;
    color: #fff;
    opacity: 1;
    border: 0px;
}

.slides .slide.open .slide_header:hover {
    background: #266EDD;
    color: #fff;
}

.slides .slide.open .slide_header .slide_after {
    rotate: 45deg;
}

.slides .slide.open .slide_header .slide_after rect {
    fill: #fff;
}

.slides .slide.open .slide_header:hover .slide_after rect {
    fill: #E4E7FB;
}

.slides .slide_body {
    display: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #070D3F;
    background: #FFFFFF;
    padding: 25px 15px;
}


/* ORGANIZATIONS */

.organization {
    padding: 110px 0;
    background: #070D3F;
}

.organization .section_title {
    color: #FFFFFF;
    text-align: center;
}

.organization .section_title span {
    background: #070D3F;
    padding: 0 50px;
    position: relative;
    z-index: 2;
}

.organization .section_title.lined::after {
    background: #E4E7FB;
    opacity: 0.5;
    z-index: 1;
}

.organization .org_row {
    padding: 0 97px 56px 97px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.organization .org_row span {
    font-size: 24px;
    line-height: 26px;
    color: #E4E7FB;
    padding: 0 0 30px 0;
}

.organization .org_row .org_desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: rgba(228, 231, 251, 0.8);
}

.organization .org_row .org_right {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 38px 30px;
}

.organization .org_row .org_item {
    width: calc(33.33% - 20px);
    text-align: center;
    padding: 0 62px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.organization .org_row .org_item img {
    opacity: .5;
}

.organization .org_row .org_item .org_title {
    font-size: 16px;
    line-height: 19px;
    color: #E4E7FB;
    text-align: center;
}

.tabs {
    margin: 0 102px;
    padding: 0 0 13px 0;
    color: #E4E7FB;
    display: flex;
    align-items: center;
    list-style: none;
    justify-content: space-between;
    border-bottom: 1px solid rgba(228, 231, 251, 0.5);
    position: relative;
}

.tabs .tab_header {
    font-size: 20px;
    line-height: 23px;
    color: rgba(228, 231, 251, 0.5);
    opacity: 1;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: .5s all ease;
}

.tabs .tab_header::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 4px;
    background: rgba(228, 231, 251, 0.5);
    left: 0;
    bottom: -14px;
    transition: .5s all ease;
}


/* active */

.tabs .tab.active .tab_header {
    color: #fff;
}

.tabs .tab.active .tab_header::after {
    background: #fff;
    width: 100%;
}

.tabs .tab .tab_header:hover:after {
    width: 100%;
}

.tabs .tab .tab_header:active {
    color: #fff;
}

.tabs .tab .tab_header:active::after {
    background: #fff;
    width: 100%;
}

.tabs .tab .tab_body {
    display: none;
    position: absolute;
    top: 37px;
    left: 0;
}

.tabs .tab .tab_about {
    font-size: 20px;
    line-height: 23px;
    opacity: 0.8;
    padding: 40px 0 20px 0;
}

.tabs .tab p {
    opacity: 0.8;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    padding: 0 0 10px 0;
}

.tabs .tab .learn_more {
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    opacity: 0.8;
    padding: 10px 0;
}

.tabs .tab a {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #E4E7FB;
    display: flex;
    padding: 0 0 12px 0;
    width: max-content;
    transition: .3s all ease;
    opacity: .8;
}

.tabs .tab a:hover {
    font-weight: 500;
    opacity: 1;
}

.tabs .tab h3 {
    padding: 0 0 10px 0;
    font-size: 20px;
    line-height: 23px;
    opacity: 0.8;
}

.tabs .tab ul {
    padding: 0 0 0 18px;
}

.tabs .tab ul li {
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    padding: 0 0 10px 0;
}

.tabs .tab ul li:last-child {
    padding: 0;
}

.tabs .tab ul li p {
    padding: 10px 0;
    opacity: 1;
}


/* FOOTER */

footer {
    background: #070D3F;
    border-top: 2px solid #E4E7FB;
}

footer .footer_row {
    padding: 30px 0;
}

footer .footer_row .footer_top,
footer .footer_row .footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .footer_row .footer_top {
    margin-bottom: 30px;
}

footer .footer_row .footer_logo {
    display: flex;
}

footer .footer_row .devs {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #E4E7FB;
}

footer .footer_row .footer_link {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #E4E7FB;
    padding: 0 71px 0 0;
    opacity: .8;
}

footer .footer_row .footer_link:hover {
    opacity: 1;
}

footer .footer_row .contacts div {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 5px 10.5px 0px;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}

footer .footer_row .contacts div:last-child {
    padding: 0;
}

footer .right.footer_link {
    text-decoration: none;
}

footer .right.footer_link:hover {
    text-decoration: underline;
}


/* MEDIA */

@media only screen and (max-width: 1200px) {
    .header-fixed header .header_nav svg rect {
        fill: #070D3F;
    }
    header {
        position: relative;
        background: #266edd;
    }
    .hero {
        background-color: #266edd;
    }
    .banner {
        background: none;
    }
    .header-fixed .banner {
        /* background-position-y: 61%; */
    }
    .section_title {
        text-align: center;
        padding: 0 0 20px 0;
        font-size: 48px;
        line-height: 54px;
        margin: 0 0 50px 0;
    }
    .section_title.lined span {
        padding: 0;
        background-color: transparent !important;
    }
    .section_title.lined::after {
        top: 100%;
        width: 200px;
        left: 50%;
        transform: translate(-50%, 50%);
    }
    header {
        position: relative;
    }
    header .mobile_menu {
        position: absolute;
        width: 100%;
        background: #E4E7FB;
        top: 91px;
        left: 0;
        z-index: 2;
    }
    header .mobile_menu ul {
        list-style: none;
        padding: 50px 15px;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    header .mobile_menu ul li a {
        font-size: 20px;
        line-height: 23px;
        color: #070D3F;
        text-decoration: none;
    }
    header .header_nav li svg {
        position: relative;
        transition: .3s all ease;
    }
    header .header_nav li svg.active {
        height: 26px;
    }
    header .header_nav li svg rect {
        transition: .3s all ease;
    }
    header .header_nav li svg.active rect:nth-child(2) {
        width: 0;
        transform: translate(10px, 0px);
        transition: .3s all ease;
    }
    header .header_nav li svg.active rect:first-child {
        rotate: 45deg;
        transform-origin: 27%;
        transition: .3s all ease;
    }
    header .header_nav li svg.active rect:last-child {
        transform-origin: 18%;
        rotate: -45deg;
        transition: .3s all ease;
    }
    header .header_row .logo svg {
        width: 143px;
        height: 40px;
    }
    header .header_row .header_nav li {
        display: none;
    }
    header .header_row .header_nav li:last-child {
        display: block;
    }
    .hero {
        padding: 75px 0 100px 0;
    }
    .hero .hero_left {
        width: 100%;
        text-align: center;
    }
    .hero .hero_title {
        font-size: 110px;
        line-height: 124px;
    }
    .hero .subtitle {
        font-size: 65px;
        line-height: 73px;
    }
    .hero .advantages {
        padding: 40px 0 177px 0;
        gap: 37.5px;
        font-size: 30px;
        line-height: 35px;
    }
    .hero .advantages div {
        padding: 0 37.5px 0 0;
    }
    .hero .desc {
        text-align: left;
        padding: 0;
    }
    .hero .desc:last-child {
        display: none;
    }
    .ipoteka {
        padding: 70px 0 0 0;
    }
    .ipoteka .ipoteka_row {
        flex-direction: column;
        gap: 30px;
    }
    .ipoteka .section_title::after {
        display: block;
    }
    .ipoteka .ipoteke_right {
        width: 100%;
    }
    .ipoteka .ipoteke_right img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }
    .steps {
        padding: 70px 0 0 0;
    }
    .steps .video_row .video_left {
        display: none;
    }
    .video_row .video_right {
        width: 100%;
    }
    .video_row .video_right img {
        width: 100%;
    }
    .video_row .video_right video {
        width: 100%;
    }
    .steps .grid.grid_two {
        grid-template-columns: 100%;
    }
    .steps .grid.grid_one {
        grid-template-columns: 100%;
    }
    .steps .grid.grid_three {
        grid-template-columns: 100%;
    }
    .steps .grid img {
        width: 100%;
        object-fit: cover;
        height: 360px;
    }
    .steps .grid .grid_item {
        padding: 75px 15px 20px;
    }
    .payments {
        padding: 70px 0 0 0;
    }
    .payments .container {
        text-align: center;
    }
    .payments .copmanies .company {
        width: calc(50% - 15px);
    }
    .slider {
        padding: 70px 0;
    }
    .slider .container {
        text-align: center;
    }
    .organization {
        padding: 70px 0;
    }
    .organization .org_row {
        flex-direction: column;
        gap: 30px;
        padding: 0 0 30px 0;
    }
    .organization .org_row span {
        font-weight: 500;
        font-size: 20px;
        line-height: 23px;
        color: #E4E7FB;
        padding: 0;
    }
    .organization .org_row .org_desc {
        font-weight: 500;
        font-size: 20px;
        line-height: 23px;
        color: #E4E7FB;
    }
    .organization .org_row br {
        display: none;
    }
    .organization .org_row .org_item {
        width: calc(16.6% - 25px);
        padding: 0;
    }
    .organization .tabs {
        margin: 0;
        flex-direction: column;
        align-items: flex-start;
        border: none;
    }
    .organization .tabs .tab {
        position: relative;
        width: 100%;
        border-bottom: 1px solid #E4E7FB;
    }
    .organization .tabs .tab:first-child {
        border-top: 1px solid #E4E7FB;
    }
    .tabs .tab_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 11px 30px;
    }
    .tabs .tab.active .tab_header {
        background: #fff;
        color: #266EDD;
    }
    .tabs .tab_header::after,
    .tabs .tab_header::before {
        content: "";
        position: absolute;
        width: 20px;
        height: 1px;
        background: #E4E7FB;
        left: calc(100% - 30px);
        top: 50%;
        transform: translate(-100%, -50%);
        transition: .3s all ease;
    }
    .tabs .tab .tab_header:hover:after,
    .tabs .tab .tab_header:hover::before {
        width: 20px;
    }
    .tabs .tab_header::after {
        rotate: 90deg;
        transform-origin: -50%;
    }
    .tabs .tab_header::before {
        rotate: 0deg;
        height: 0.3px;
    }
    .tabs .tab.active .tab_header::after {
        rotate: 135deg;
        transform-origin: -50%;
        background: #266EDD;
        width: 20px;
    }
    .tabs .tab.active .tab_header::before {
        rotate: 45deg;
        height: 1px;
        background: #266EDD;
        transform-origin: -56%;
    }
    .tabs .tab .tab_body {
        position: unset;
        padding: 20px 30px;
    }
    .tabs .tab.active {
        border: 1px solid #FFFFFF;
    }
    .tabs .tab .tab_about {
        padding: 0 0 20px 0;
    }
    .steps .grid.grid_two .grid_item:nth-child(1) .grid_name {
        padding: 0 0 15px 0;
        line-height: 23px;
    }
    .slider .slides {
        margin: 0 0 0 6px;
    }
    .organization .org_row .org_item img {
        width: 75%;
    }
    footer .right.footer_link {
        border-bottom: 2px solid;
        padding: 0;
    }
}

@media only screen and (max-width: 767px) {
    .header-fixed .banner {
        /* background-position-y: 39%; */
    }
    .banner {
        background-size: 394%;
    }
    .header-fixed .banner {
        /* background-position-y: 103%; */
    }
    .hero {
        padding: 20px 0;
    }
    .hero .hero_title {
        font-size: 50px;
        line-height: 56px;
    }
    .hero .subtitle {
        font-size: 28px;
        line-height: 31px;
        -webkit-text-stroke: 0.3px #fff;
    }
    .hero .advantages {
        padding: 60px 0 30px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 21px;
        font-size: 20px;
        line-height: 23px;
    }
    .hero .advantages img {
        width: 25px;
        height: 25px;
    }
    .hero .advantages div {
        border-right: none;
        position: relative;
        gap: 10px;
    }
    .hero .advantages div::after {
        position: absolute;
        content: "";
        bottom: -10px;
        left: 0;
        height: 1px;
        width: 50px;
        background: #E4E7FB;
    }
    .hero .advantages div:last-child:after {
        display: none;
    }
    .section_title {
        font-size: 28px;
        line-height: 31px;
        padding: 0 0 19px 0;
        margin: 0 0 40px 0;
    }
    .desc {
        line-height: 21px;
        font-size: 18px;
    }
    .ipoteka .desc {
        padding: 0 0 20px 0;
    }
    .ipoteka .ipoteka_list li {
        padding: 0 0 15px 14px;
    }
    .ipoteka .ipoteka_list li p {
        font-size: 16px;
        line-height: 22px;
    }
    .ipoteka .ipoteke_right img {
        width: 100%;
        height: 138px;
        object-fit: cover;
    }
    .steps .video_row {
        padding: 0 0 30px 0;
    }
    .steps .grid {
        gap: 20px;
    }
    .steps .grid .grid_item {
        padding: 55px 13px 20px;
        font-size: 16px;
        line-height: 22px;
    }
    .steps .grid .grid_item .grid_number {
        font-size: 48px;
        line-height: 30px;
    }
    .show_all {
        width: 100%;
    }
    .payments .copmanies {
        gap: 20px;
        padding: 0 0 30px 0;
    }
    .payments .copmanies .company {
        width: 100%;
    }
    .slider .slides {
        padding: 0 0 30px 0;
    }
    .organization .org_row {
        padding: 0 0 40px 0;
    }
    .organization .org_row .org_right {
        gap: 15px 30px;
        justify-content: center;
    }
    .organization .org_row .org_desc {
        font-size: 18px;
        line-height: 21px;
    }
    .organization .org_row span {
        font-size: 18px;
        line-height: 21px;
    }
    .organization .org_row .org_item {
        width: calc(44% - 15px);
    }
    .organization .org_row .org_item img {
        width: 70px;
        height: 70px;
    }
    footer .footer_row .footer_top {
        flex-direction: column;
    }
    footer .footer_row .footer_top {
        gap: 30px;
        align-items: center;
    }
    footer .footer_row .footer_bottom {
        gap: 15px;
        flex-direction: column-reverse;
    }
    footer .footer_row .footer_link {
        padding: 0;
    }
    .ipoteka .ipoteka_list li {
        font-size: 18px;
    }
    .slides .slide_header {
        font-size: 18px;
    }
    .organization .org_row .org_item img {
        width: 61%;
        height: auto;
    }
    .organization .org_row .org_item .org_title {
        font-size: 14px;
    }
    .organization .org_row .org_right {
        gap: 8px 16px;
    }
    .tabs .tab_header {
        padding: 11px 35px 11px 15px;
    }
    .tabs .tab_header::after,
    .tabs .tab_header::before {
        left: calc(100% - 20px);
    }
}

@media (min-width: 0px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (min-width: 767px) {
    .container {
        max-width: 738px;
        padding: 0;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}