@import url('https://fonts.googleapis.com/css2?family=Inter+Tight&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --bark-color: #000000;
    --primary-color: #425D90;
    --accent-color: #c9a84c;
    --accent-hover: #b8953e;
    --text-color: #333333;
    --text-light: #777777;
    --bg-light: #f5f6f8;
    --white: #ffffff;
    --font-family-base: "Rubik", sans-serif;
    --transition: all 0.3s ease;
}

.h1, .h2, .h3, .h4, .h5, h6 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.6;
}

body,html{
    overflow-x: hidden;
}
body {
    font-family: var(--font-family-base);
    color: var(--text-color);
    line-height: 1.6;
}

/* all */
a{
    transition: all .15s ease-in-out;
    text-decoration: none;
}
.cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.big-number{
    font-size: 24px;
    font-weight: 500;
    color: #cca876;
}
h2.title{
    font-size: 48px;
    font-weight: 600;
}
.text-center{
    text-align: center;
}
.subtitle{
    font-size: 24px;
    font-weight: 500;
    color: #cca876;
}
.img_skos {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%, 0 75%);
}
.img_skos_two{
    clip-path: polygon(75% 0, 100% 25%, 100% 100%, 75% 100%, 25% 100%, 0 75%, 0 0);
}
.img_skos_2 {
    clip-path: polygon(25% 0%, 100% 0, 100% 100%, 25% 100%, 0 75%, 0 25%);
}
.img_skos_3 {
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%, 0 25%);
}
input[type="text"]:not(.form-control), input[type="email"]:not(.form-control), input[type="url"]:not(.form-control), input[type="date"]:not(.form-control), input[type="password"]:not(.form-control), input[type="search"]:not(.form-control), input[type="tel"]:not(.form-control), input[type="number"]:not(.form-control), select:not(.form-select):not(.form-control) {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.25;
    color: #495057;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
input[type="text"]:not(.form-control):focus,input[type="email"]:not(.form-control):focus,input[type="url"]:not(.form-control):focus,input[type="date"]:not(.form-control):focus,input[type="password"]:not(.form-control):focus,input[type="search"]:not(.form-control):focus,input[type="tel"]:not(.form-control):focus,input[type="number"]:not(.form-control):focus,select:not(.form-select):not(.form-control):focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0
}
.li_ok li .icon{
    width: 30px;
    display: flex;
    position: relative;
    top: 5px;
}
.fa-solid--check {
    display: inline-block;
    width: 1em;
    height: 1em;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='black' d='m173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69L432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}
.hero-form-builder-btn {
    padding: 13px 20px;
    background: var(--primary-color);
    font-size: 18px;
    border: 1px solid var(--primary-color);
    font-weight: 500;
    transition: all .15s ease-in-out;
    color: #fff;
    text-decoration: none;
    display: block;
    text-align: center;
}
.hero-form-builder-btn:hover {background: transparent;color: #000;border-color: #000;}
.hero-form-builder-btn:focus{border: 1px solid #000;color: #000;}
/* top bar */
.top-bar{
    background-color: var(--bark-color);
}
.top-bar .link{
    color: #AAAAAA;
    text-decoration: none;
    font-size: 0.875rem;
}
.top-bar .social-elements .link{
    font-size: 1.1rem;
}

/* header */
/* ===== header base ===== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    transition: box-shadow .35s ease, padding .35s ease;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
}

header::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
    z-index: 1;
}

header.menu-open::before {
    opacity: 1;
    pointer-events: auto;
}

header .container-xxl.d-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding .35s ease;
    position: relative;
    z-index: 2;
}

header.is-scrolled {
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    position: fixed;
    width: 100%;
}

header.is-scrolled .container-xxl.d-flex {
    padding-top: 8px;
    padding-bottom: 8px;
}

header.is-scrolled .header_logo img {
    height: 52px;
}

header .header_logo img {
    height: 80px;
    transition: height .35s ease;
    display: block;
}

/* ===== desktop menu ===== */
.mobile-close {
    display: none;
}

nav.menu {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 10;
}

.menu-item {
    position: relative;
}

.menu-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #1f1f1f;
    font-size: 18px;
    padding: 10px 0;
    white-space: nowrap;
}

.menu-item > a:hover{
    color: var(--primary-color);
}

.menu-item.active > a {
    color: #3b5bdb;
    font-weight: 600;
}

.menu-item.has-children > a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #444;
    border-bottom: 2px solid #444;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform .25s ease;
}

.menu-item.has-children:hover > a::after {
    transform: rotate(225deg);
    margin-top: 4px;
}

.menu-item-childs {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    width: max-content;
    max-width: 400px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    border-radius: 4px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.menu-item.has-children:hover .menu-item-childs,
.menu-item.has-children:focus-within .menu-item-childs {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item-child a {
    display: block;
    padding: 5px 24px;
    color: #1f1f1f;
    text-decoration: none;
    font-size: 18px;
    transition: background .2s ease, padding-left .2s ease;
}

.menu-item-child a:hover {
    padding-left: 30px;
    color: var(--primary-color);
}

/* ===== burger ===== */
.burger {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 20;
}

.burger span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #1f1f1f;
    transition: transform .3s ease, opacity .3s ease, top .3s ease;
}

.burger span:nth-child(1){ top: 0; }
.burger span:nth-child(2){ top: 8px; }
.burger span:nth-child(3){ top: 17px; }

.burger.is-active span:nth-child(1){ top: 8px; transform: rotate(45deg); }
.burger.is-active span:nth-child(2){ opacity: 0; }
.burger.is-active span:nth-child(3){ top: 8px; transform: rotate(-45deg); }

/*  HERO */
.hero {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    min-height: 500px;
}
.hero .title{
    font-size: 48px;
}
.hero .subtitle{
    font-size: 24px;
}
.hero-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 500px;
}

.hero-content {
    flex: 0 0 50%;
    width: 100%;
    max-width: 550px;
    position: relative;
    z-index: 2;
    padding: 40px 0;
}
.hero-content .hero-phone a{
    font-size: 36px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
}
.hero-content .hero-phone p{
    font-size: 18px;
}
.hero-form input.hero-form-control {
    padding: 13px 15px;
    border-radius: 0;
    font-size: 90%;
}
.hero-form .form-agreement a{
    font-size: 12px;
    color: #000;
    text-decoration: none;
}

.hero-image {
    position: absolute;
    top: 0;
    right: -7px;
    bottom: 0;
    width: 50vw;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*popular-services*/
.popular-services{
    padding-top: 100px;
}
.popular-services h2{
    font-size: 48px;
}
.services-item img{
    max-width: 160px;
}
.services-item{
    border: 5px solid transparent;
    transition: all .2s;
    padding: 10px;
}
.services-item:hover {border-color: var(--primary-color);transform: scale(1.05)}
a.services-item{
    font-size: 24px;
    color: #000;
    text-decoration: none;
}
/* about-us */
.about-us{
    padding-top: 100px;
}
.about-us .title-container h3{
    font-size: 48px;
    color: #000;
}
.about-us .title-container h3 span{
    font-size: 62px;
    color: var(--primary-color);
    font-weight: 600;
}
.about-us h4{
    font-size: 42px;
}
.about-us ul.li_ok{
    padding: 0;
}
.about-us ul.li_ok li {
    padding-left: 10px;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 18px;

}

.works.about-us ul.li_ok li span.fa-solid--check.blue,
.about-us ul.li_ok li span.fa-solid--check{
    margin-right: 10px;
    color: var(--primary-color);
}
.about-us ul.li_ok li::marker {
    content: '';
}
.about-us .hero-form-builder-btn{
    max-width: 400px;
}

.about-us .img_skos_two{
    max-width: 540px;
    width: 100%;
}
.about-us .title-signature{
    max-width: 320px;
}

/* list us */
.list-us h4{
    font-size: 42px;
}
.list-us p{
    font-size: 24px;
}
.list-us a.phone{
    font-size: 18px;
    color: var(--primary-color);
    text-decoration: none;
}
.list-us img{
    max-width: 540px;
}
.list-us ul.li_ok{
    padding: 0;
}
.list-us ul.li_ok li {
    padding-left: 10px;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 18px;
}
.list-us ul.li_ok li span{
    margin-right: 10px;
    color: var(--primary-color);
}
.list-us ul.li_ok li::marker {
    content: '';
}
.list-us .hero-form-builder-btn{
    max-width: 400px;
}
.list-us .img_skos_two{
    max-width: 540px;
    width: 100%
}
.list-us .tegs a{
    display: inline-block;
    background: #959595;
    color: #fff;
    margin: 5px;
    padding: 8px 20px;
    text-align: left;
    max-width: 450px;
    font-size: 18px;
    text-decoration: none;
    transition: all .15s ease-in-out;
}
.list-us .tegs a:hover {background: #f5f5f5;color: #000;}
/* parallax form */
.parallax-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    top: -40%;
    left: 0;
    width: 100%;
    height: 180%;

    background-image: url('../img/parallax.jpg');
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: 1;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.parallax-content {
    position: relative;
    z-index: 3;
}
.parallax-content form{
    max-width: 600px;
}
.parallax-content .parallax-head{
    color: #fff;
}
.parallax-content h6{
    font-size: 42px;
}
.parallax-content p{
    font-size: 18px;
}
.parallax-content button{
    padding: 9px 15px !important;
}

.parallax-content button:hover{
    background: transparent;color: #fff;border-color: #fff;
}

.parallax-content button:focus{
    border: 1px solid #000;color: #fff;
}
/* Footer */
footer{
    background: #000000;
    color: #ffffff;
}
footer .block-title{
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 30px;
    color: #fff;
}
footer ul{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer ul li{
    display: block;
}
footer .link-el{
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}
footer .footer_logo  img {
    filter: invert(100%);
    max-width: 290px;
    width: 100%;
}
footer .teg-ya{
    font-size: 64px;
    font-weight: 500;
    color: #fff;
}
footer form .hero-form-builder-btn{
    padding: 9px;
}
footer form .hero-form-builder-btn:hover{
    background: transparent;color: #fff;border-color: #fff;
}

footer form .hero-form-builder-btn:focus{
    border: 1px solid #000;color: #fff;
}
footer hr{
    color: #868686;
}
.sp-scroll-up {
    display: none;
    position: fixed;
    bottom: 60px;
    right: 30px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background: rgba(100, 100, 100, 0.4);
    border-radius: 100%;
    z-index: 1000;
    transition: all 0.3s ease
}

.sp-scroll-up:hover,.sp-scroll-up:active,.sp-scroll-up:focus {
    color: #fff;
    background: #000
}

/* ===== page ====== */
/* Banner block */
.parallax-section-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    min-height: 700px;
}
.parallax-section-banner h1{
    font-size: 36px;
}
.parallax-section-banner p.addon-title{
    font-size: 24px;
}
.parallax-section-banner .link{
    font-weight: 500;
    text-decoration: none;
    color: #fff;
}
.parallax-section-banner .parallax-bg {
    position: absolute;
    top: -40%;
    left: 0;
    width: 100%;
    height: 180%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: 1;
}

.parallax-section-banner .parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.parallax-section-banner .parallax-content {
    position: relative;
    z-index: 3;
    width: 100%;
}
.parallax-section-banner .main-form{
    border: 1px solid #fff;
}
.parallax-section-banner .main-form .max-title{
    font-size: 36px;
    font-weight: 600;
}

/* advantages */
.services h2,
.choice h2,
.advantages h2{
    font-size: 48px;
    font-weight: 600;
}
.advantages .item{
    text-align: center;
    box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 0.2);
    padding: 40px 15px;
}
.advantages .title-item{
    color: #425d90;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
}
.advantages .item p{
    font-size: 18px;
    margin: 0;
}
/* choice */
.choice .icon{
    height: 100px;
}
.choice .icon svg{
    color: var(--primary-color)
}
.choice .title-item{
    font-size: 18px;
    color: #cba776;
    font-weight: bold;
    text-align: center;
}
.choice .item p{
    margin-bottom: 0;
}
/* services */
.services .item{
    height: 100%;
    background: #f5f5f5;;
}
.services .item .head{
    background: var(--primary-color);
    color: #fff;
    padding: 10px;
    text-align: center;
}
.services .item .head h3{
    font-size: 24px;
    margin: 0;
}
.services.image-services .item .head h3{
    font-size: 16px;
}
.id_9 .services.image-services .item .head h3{
    font-size: 18px;
}
.id_9 .services.image-services .item .head{
    min-height: 65px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.services.image-services .item .text p{
    font-size: 12pt;
}
.services.image-services .image-box{
    height: 200px;
}
.services .item .text{
    padding: 15px;
}
.services .item .text p{
    margin: 0;
}
.services .button a.link-btn{
    display: block;
    text-align: center;
    background: #CCA876;
    color: #fff;
    font-weight: 500;
    padding: 17px 20px;
    font-size: 18px;
    text-decoration: none;
    transition: all .15s ease-in-out;
}
.services .button a.link-btn:hover {background: #000;color: #fff}

/* Works */
.works.about-us .img_skos_two{
    max-width: 100%;
}
.id_9 .works.about-us .img_skos_two{
    max-height: 400px;
}
.works.about-us ul.li_ok li{
    font-weight: normal;
}
.works.about-us ul.li_ok li span.fa-solid--check{
    color: #CCA876;
}
.works.about-us ul.li_ok li span.fa-solid--number{
    font-weight: 500;
    color: var(--primary-color);
}
/* horizontal form */
.horizontal-form{
    color: #fff;
    background: var(--primary-color);
}
.horizontal-form h2{
    font-size: 48px;
    font-weight: 600;
}
.horizontal-form p{
    font-size: 18px;
}
.horizontal-form form input.hero-form-control  {
    padding: 17px 10px;
    border-color: transparent;
    border-radius: 0;
}
.horizontal-form form button.hero-form-builder-btn{
    background: #cca876;
    color: #fff;
    border: 0;
    width: 100%;
}
.horizontal-form form button.hero-form-builder-btn:hover{
    background: #fff;
    color: #000;
}
.horizontal-form form a.policy{
    font-size: 12px;
    color: #fff;
    text-decoration: none;
}

/* id_4 */
.id_5 h2,
.id_4 h2{
    font-size: 48px;
    font-weight: 600;
}
.id_4 .hero-content .title{
    font-size: 62px;
    color: var(--primary-color);
}
.id_4 .hero-content{
    max-width: 565px;
}
.id_4 .hero-content .hero-phone a{
    font-size: 48px;
    color: #cca876;
    font-weight: bold;
}

.id_4 .services-plan .link,
.id_4 .services .link,
.id_5 .services .link,
.id_6 .services .link{
    font-size: 24px;
    font-weight: 500;
    color: #cca876;
    text-decoration: none;
}
.id_4 .services-plan p,
.id_4 .services p,
.id_5 .services p,
.id_6 .services p{
    font-size: 18px;
}
.id_4 .services .link:hover,
.id_5 .services .link:hover,
.id_6 .services .link:hover{
    color: #000;
}
.id_4 .services .item .image-content,
.id_5 .services .item .image-content{
    height: 275px;
}
.id_6 .services .item .image-content{
    height: 180px;
}
.id_4 .services .item .title-content,
.id_5 .services .item .title-content,
.id_6 .services .item .title-content,
.id_10 .services .item .title-content{
    background: var(--primary-color);
    color: #fff;
    padding: 15px 20px;
    margin: 0px;
    min-height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.id_4 .services .item .title-content h6,
.id_5 .services .item .title-content h6,
.id_6 .services .item .title-content h6,
.id_10 .services .item .title-content h6{
    font-size: 18px;
    line-height: 1.2;
}
.id_5 .services .item .modal-btn{
    display: block;
    width: 100%;
    padding: 20px 10px;
    text-align: center;
    font-size: 18px;
    line-height: 1.2;
    color: var(--primary-color);
    font-weight: 500
}
.id_5 .services .item .modal-btn:hover{
    background: #000;
    color: #fff;
}
.id_4 .about{
    background-image: url("../img/background.png");
    background-repeat: repeat;
    background-size: inherit;
    background-attachment: inherit;
    background-position: 0 0;
}
.id_4 .about .left-group{
    color: #fff;
    background: var(--primary-color);
}
.id_4 .about ul li,
.id_4 .about p{
    font-size: 18px;
}

.id_4 .services-plan a.modal-btn,
.id_4 .about a.modal-btn {
    background: #cca876;
    color: #fff;
    font-weight: 500;
    padding: 17px 20px;
    font-size: 18px;
    display: inline-block;
    text-align: center;
}

.id_4 .about a.modal-btn:hover,.id_4 .services-plan a.modal-btn:hover {background: #000;color: #fff}
.id_4 .image-author img{
    max-width: 555px;
    width: 100%;
}
.id_4 .about-us .subtitle{
    font-size: 24px;
    font-weight: 500;
    color: #cca876;
}
.id_4 .about-us ul.li_ok li,
.id_5 .about-us ul.li_ok li{
    font-weight: 500;
}
.id_5 .about-us .call-link{
    font-size: 24px;
    font-weight: 500;
    color: #cca876;
}
.id_5 .about-us .call-link:hover{
    color: #000;
}
.services-plan .list-group{
    border-radius: 0;

}
.services-plan .item {
    border: 1px solid var(--primary-color);
}
.services-plan .list-group li{
    border-color: var(--primary-color);
    padding: 15px;
    border-left: 0;
    border-right: 0;
}
.services-plan .list-group-item:first-child{
    border-top: none;
}
.services-plan .list-group-item:last-child{
    border-bottom: none;
}
.services-plan .item .head h3{
    background: var(--primary-color);
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}


.faq-container {
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 10px 0;
}


.faq-icon {
    font-size: 20px;
    font-weight: bold;
    color: #c49045;
    width: 25px;
    margin-right: 15px;
    text-align: center;
    flex-shrink: 0;
    transition: color 0.2s ease;
}


.faq-title {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}


.faq-content {
    display: none;
    padding-left: 40px;
    margin-top: 10px;
}

.faq-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

.custom-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;


    height: 60px;
    padding: 15px 20px;


    border: 1px solid #c49045;
    border-radius: 2px;
    background-color: #ffffff;


    color: #1a1a1a;
    font-size: 18px;
    font-weight: 400;


    transition: all 0.25s ease-in-out;
}


.custom-card:hover {
    background-color: #fcf9f5;
    box-shadow: 0 4px 12px rgba(196, 144, 69, 0.1);
    cursor: pointer;
}
.cta-banner {
    border: 6px solid #3f5a8a;
    padding: 40px 30px;
    background-color: #ffffff;
}


.cta-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 35px;
}


.cta-desc strong {
    font-weight: 700;
}


.cta-phone-text {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 500;
}


.cta-phone-number {
    font-size: 42px;
    font-weight: 700;
    color: #3f5a8a;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.cta-phone-number:hover {
    color: #2b3e60;
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 25px 20px;
        border-width: 4px;
    }

    .cta-desc {
        margin-bottom: 20px;
        font-size: 15px;
    }

    .cta-phone-number {
        font-size: 32px;
        align-self: center;
    }
}

.inheritance-block {
    color: #1a1a1a;
    line-height: 1.6;
}


.title-will {
    font-size: 20px;
    font-weight: 700;
    color: #c49045;
    margin-bottom: 15px;
}

.title-no-will {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.intro-text {
    font-size: 16px;
    color: #333333;
}


.custom-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    counter-reset: custom-counter;
}

.custom-list li {
    position: relative;
    counter-increment: custom-counter;
    padding-left: 45px;
    margin-bottom: 18px;
    font-size: 16px;
    color: #1a1a1a;
    display: flex;
    align-items: flex-start;
}


.custom-list li::before {
    content: counter(custom-counter) ".";
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 16px;
    font-weight: 700;
    width: 30px;
    text-align: right;
}


.gold-list li {
    color: #c49045;
}
.gold-list li::before {
    color: #c49045;
}


.blue-list li::before {
    color: #3f5a8a;
}


.list-text {
    color: #1a1a1a;
}
.gold-list .list-text {

    color: #c49045;
}

.gold-list.gold-blue .list-text{
    color: #1a1a1a;
}

.custom-list li strong {
    font-weight: 700;
}

@media (max-width: 576px) {
    .custom-list li {
        padding-left: 35px;
        font-size: 15px;
    }
    .custom-list li::before {
        font-size: 15px;
        width: 22px;
    }
}

/* hero width */
.hero.width .hero-content h1{
    color: var(--primary-color);
}
.hero.width p.subtitle{
    font-size: 32px;
}
.hero.width p{
    font-size: 24px;
}
.bg-block .link-btn,
.hero.width .link-btn{
    background: #cca876;
    display: inline-block;
    color: #fff;
    font-weight: 500;
    padding: 17px 20px;
    font-size: 16px;
}
.hero.width .link-btn:hover,.bg-block .link-btn:hover {background: #000;color: #fff}
.bg-block{
    background: #425D8F;
    background: linear-gradient(90deg, rgba(66, 93, 143, 1) 50%, rgba(255, 255, 255, 1) 50%);
}
.bg-block .item-right{
    background-color: #fff;
}
.bg-block .item-left{
    background-color: var(--primary-color);
    color: #fff;
}
.bg-block h3{
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
}
.bg-block .item-left h3{
    color: #ffffff;
}
.bg-block .item-right h3{
    font-size: 39px;
}
.bg-block .item-left .subtitle{
    font-size: 36px;
}

.font-custom {
    color: #1a1a1a;
}


.step-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    border: 2px solid #c49045;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #c49045;
    margin-bottom: 15px;
}

.step-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}


.info-card {
    padding: 45px 40px;
    background-color: #ffffff;
}

.card-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
}

.card-p {
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 15px;
}
.card-p:last-child {
    margin-bottom: 0;
}


.card-gold-border {
    border: 1px solid #c49045;
    outline: 4px solid #c49045;
    outline-offset: -12px;
}

.card-blue-border {
    border: 6px solid #3f5a8a;
}

.card-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.card-list li {
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #333333;
}

.check-icon {
    width: 18px;
    height: 18px;
    fill: #3f5a8a;
    flex-shrink: 0;
    margin-right: 12px;
    margin-top: 3px;
}

.btn-gold-action {
    background-color: #CCA876;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 28px;
    border-radius: 2px;
    border: none;
    transition: background-color 0.2s ease;
}

.btn-gold-action:hover {
    background-color: #000;
    color: #ffffff;
}

.bottom-notice {
    font-size: 15px;
    line-height: 1.6;
    color: #444444;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .info-card {
        padding: 30px 20px;
    }
    .card-title {
        font-size: 24px;
    }
    .card-gold-border {
        outline-offset: -8px;
    }
}
.map-promo-card {
    border: 1px solid #3f5a8a;
    outline: 4px solid #3f5a8a;
    outline-offset: -12px;
    padding: 50px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.promo-text {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.35;
    color: #333333;
    margin-bottom: 25px;
}

.promo-phone {
    font-size: 36px;
    font-weight: 500;
    color: #3f5a8a;
    text-decoration: none;
}

.debt-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    height: 100%;
}

.debt-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
}

.debt-list svg {
    width: 18px;
    height: 18px;
    fill: #c49045;
    flex-shrink: 0;
    margin-right: 12px;
}

.company-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.company-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #555555;
    margin-bottom: 25px;
}

.contact-detail {
    margin-bottom: 15px;
}

.contact-detail strong {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
    display: block;
    margin-bottom: 2px;
}

.contact-detail p {
    font-size: 15px;
    color: #444444;
    margin: 0;
}

.contact-detail a {
    color: #444444;
    text-decoration: none;
}

.map-wrapper {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    height: 350px;
}

.map-wrapper iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .map-promo-card {
        padding: 35px 25px;
    }
    .promo-text {
        font-size: 22px;
    }
    .promo-phone {
        font-size: 28px;
    }
    .company-title {
        font-size: 28px;
    }
}
.org-card {
    border: 1px solid #c49045;
    background-color: #ffffff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.org-logo-wrapper {
    height: 90px;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.org-logo {
    max-height: 100%;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
}

.org-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.org-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #444444;
    margin: 0;
}

.chat-card {
    background-color: #0088cc;
    padding: 40px 30px;
    color: #ffffff;
}

.telegram-icon-circle {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.telegram-icon-circle svg {
    width: 28px;
    height: 28px;
    fill: #0088cc;
    margin-left: -2px;
}

.chat-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.chat-desc {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
}

.btn-chat-action {
    display: inline-block;
    background-color: #ffffff;
    color: #0088cc;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 2px;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-align: center;
}

.btn-chat-action:hover {
    background-color: #e6f4fc;
    color: #006699;
}

@media (max-width: 768px) {
    .org-card, .chat-card {
        padding: 30px 20px;
    }
    .org-logo-wrapper {
        height: 70px;
        margin-bottom: 20px;
    }
}

.id_9 .list-items .item{
    font-size: 14px;
}
.id_9 .hero-content{
    padding: 0;
}
.info-card-shadow {
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.info-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.4;
    text-align: center;
}

.info-card-bullet-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.info-card-bullet-list li {
    position: relative;
    padding-left: 18px;
    font-size: 16px;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 12px;
}

.info-card-bullet-list li:last-child {
    margin-bottom: 0;
}

.info-card-bullet-list li::before {
    content: ">";
    position: absolute;
    left: 0;
    top: 0;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.6;
}

.gradient-consult-card {
    background: linear-gradient(135deg, #00b0ff 0%, #0066ff 100%);
    padding: 40px 35px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.25);
}

.gradient-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin: 0;
}

.btn-rounded-white {
    display: inline-block;
    width: 100%;
    background-color: #ffffff;
    color: #0066ff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-rounded-white:hover {
    background-color: #ffffff;
    color: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .info-card-shadow, .gradient-consult-card {
        padding: 30px 20px;
    }
    .info-card-title {
        font-size: 16px;
        margin-bottom: 18px;
    }
    .gradient-card-title {
        font-size: 18px;
    }
}
.services.primary{
    background-color: var(--primary-color);
}
.services.primary h2{
    color: #fff;
}
.services.primary .item{
    background: none;
}
.services.primary .item .image-content{
    height: 250px;
}
.legal-steps-block {
    max-width: 900px;
    line-height: 1.7;
    color: #1a1a1a;
}

.steps-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    counter-reset: legal-counter;
}

.steps-list > li {
    position: relative;
    counter-increment: legal-counter;
    padding-left: 45px;
    margin-bottom: 25px;
    font-size: 18px;
}

.steps-list > li::before {
    content: counter(legal-counter) ".";
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 18px;
    font-weight: 700;
    color: #c49045;
    width: 30px;
    text-align: right;
}

.step-content {
    font-weight: 500;
    color: #1a1a1a;
}

.docs-sublist {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.docs-sublist li {
    position: relative;
    padding-left: 45px;
    font-size: 17px;
    color: #1a1a1a;
}

.docs-sublist li::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border: 1px solid #c49045;
    border-radius: 50%;
    background-color: transparent;
}

@media (max-width: 768px) {
    .steps-list > li {
        padding-left: 35px;
        font-size: 16px;
        margin-bottom: 20px;
    }
    .steps-list > li::before {
        font-size: 16px;
        width: 22px;
    }
    .docs-sublist li {
        padding-left: 35px;
        font-size: 15px;
    }
    .docs-sublist li::before {
        left: 15px;
    }
}
.ya_section-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.ya_section-subtitle {
    font-size: 15px;
    color: #666666;
    margin-bottom: 25px;
}

.ya_inline-link {
    color: #3f5a8a;
    text-decoration: none;
    font-weight: 700;
}

.ya_status-card {
    background-color: #F5F5F5;
}

.ya_status-header {
    background-color: #cca876;;
    color: #ffffff;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    min-height: 100px;
    display: flex;
    align-items: center;
}

.ya_status-body {
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #444444;
}

.ya_grid-card {
    background-color: #F5F5F5;
}

.ya_grid-header {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 15px;
    font-weight: 500;
    line-height: 1.3;
    font-size: 18px;
    min-height: 100px;
    display: flex;
    align-items: center;
}

.ya_grid-body {
    padding: 15px;
    font-size: 13px;
    line-height: 1.5;
    color: #555555;
    font-size: 16px;
}

.ya_prob-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ya_prob-number {
    width: 80px;
    height: 80px;
    border: 2px solid #CCA876;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    color: #CCA876;
    margin-bottom: 12px;
}

.ya_prob-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #1a1a1a;
    max-width: 260px;
}

.ya_service-li {
    display: flex;
    align-items: flex-start;
    font-size: 18px;
    line-height: 1.5;
    color: #333333;
    font-weight: 500
}

.ya_service-li svg {
    width: 28px;
    height: 28px;
    fill: #3f5a8a;
    flex-shrink: 0;
    margin-right: 12px;
    margin-top: 2px;
}

.ya_cta-section {
    background-color: #3f5a8a;
    padding: 60px 0;
    margin-top: 60px;
}

.ya_cta-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

.ya_cta-desc {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

.ya_cta-phone {
    font-size: 28px;
    font-weight: 700;
}

.ya_cta-phone a {
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .ya_section-title {
        font-size: 22px;
    }
    .ya_cta-title {
        font-size: 24px;
    }
    .ya_cta-phone {
        font-size: 22px;
    }
}
/* ===== mobile ===== */
@media (max-width: 991px) {
    .burger {
        display: block;
    }
    .burger.is-active{
        z-index: 1;
    }
    nav.menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85%;
        height: 100%;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 70px 0 20px;
        overflow-y: auto;
        transition: right .35s ease;
        z-index: 10;
        box-shadow: -8px 0 24px rgba(0,0,0,.15);
    }

    nav.menu.is-active {
        right: 0;
    }

    .menu-item {
        width: 100%;
    }

    .menu-item > a {
        padding: 16px 24px;
        font-size: 18px;
        justify-content: space-between;
        border-bottom: 1px solid #f0f0f0;
    }

    .menu-item.has-children > a::after {
        transform: rotate(45deg);
        margin-top: 0;
    }

    .menu-item.has-children.is-open > a::after {
        transform: rotate(225deg);
    }

    .menu-item-childs {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #fafafa;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height .35s ease;
        width: 100%;
        max-width: 100%;
    }

    .menu-item.has-children.is-open .menu-item-childs {
        max-height: 600px;
        padding: 4px 0 8px;
    }

    .menu-item-child a {
        white-space: nowrap;
        padding: 12px 40px;
        font-size: 15px;
    }

    .mobile-close {
        display: block;
        position: absolute;
        top: 18px;
        right: 20px;
        width: 32px;
        height: 32px;
        border: none;
        background: none;
        cursor: pointer;
        z-index: 20;
    }

    .mobile-close span {
        position: absolute;
        top: 15px;
        left: 4px;
        right: 4px;
        height: 2px;
        background: #1f1f1f;
    }

    .mobile-close span:first-child { transform: rotate(45deg); }
    .mobile-close span:last-child { transform: rotate(-45deg); }

    .hero-content{
        max-width: 100%;
        flex: 0 0 100%;
    }
    .id_4 .hero-content .title{
        margin-bottom: 1rem;
    }
    .hero .title{
        font-size: 24px;
    }
    .subtitle,
    .hero-content .hero-phone p,
    .hero-content .hero-phone a,
    .hero .subtitle{
        font-size: 16px !important;
    }
    .hero {
        padding: 0 0;
    }
    .popular-services{
        padding: 0;
    }
    .id_4 .hero-content .title,
    .id_4 h2,
    .list-us h4,
    .about-us h4,
    .about-us .title-container h3 span,
    .about-us .title-container h3{
        font-size: 24px;
    }
    .popular-services h2{
        font-size: 24px;
        max-width: 90%;
    }
    .big-number,
    .popular-services h6{
        font-size: 18px;
    }
    .big-number{
        display: block;
    }
    .about-us .title-signature{
        margin: auto;
    }
    .about-us .title-signature img{
        max-width: 250px;
    }
    .id_4 .about a.modal-btn,
    .list-us img{
        width: 100%
    }
    .list-us p,
    .list-us ul.li_ok li,
    .about-us ul.li_ok li{
        font-size: 16px;
        font-weight: normal;
    }
    h2.title,
    .id_5 h2,
    .id_5 .about-us.works h2,
    .id_4 .hero-content .hero-phone a,
    .horizontal-form h2,
    .services h2,
    .choice h2,
    .advantages h2,
    .parallax-section-banner .main-form .max-title,
    .parallax-section-banner h1{
        font-size: 23px;
    }

    .id_4 .services-plan p, .id_4 .services p, .id_5 .services p, .id_6 .services p,
    .id_4 .about-us .subtitle,
    .id_4 .about ul li, .id_4 .about p,
    .id_4 .services-plan p, .id_4 .services p,
    .horizontal-form  p,
    .parallax-content p,
    .parallax-section-banner p.addon-title{
        font-size: 16px;
    }
    .id_4 .hero-content,
    .about-us.works{
        padding: 0;
    }
    .id_4 .services-plan .link,
    .id_4 .services .link{
        display: block;
    }
    .id_6 .hero-content{
        padding-bottom: 0;
    }
    .bg-block{
        background: none;
    }
    .bg-block h3{
        font-size: 23px !important;
    }
    .bg-block p{
        font-size: 14px
    }

    .id_8.hero,
    .id_8 .hero-wrapper{
        min-height: auto;

    }
    .id_8 .hero-content{
        padding: 40px 0 0;
    }
    .id_8.hero.width p{
        font-size: 16px
    }
    .btn-gold-action,
    .bg-block .link-btn, .hero.width .link-btn{
        width: 100%
    }
}
.width_banner{
    background-image: url("../img/arbitrazhnyj-yurist//imgi_10_main-img.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    min-height: 700px;
    position: relative;
}
.width_banner:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
}
.width_banner>*{
    position: relative;
    color: #fff;
}
.width_banner p{
    font-size: 24px;
    font-weight: 500;
}
.width_banner .link{
    color: #fff;
}
.width_banner .link-btn {background: #cca876;display: block;color: #fff;font-weight: 500;padding: 17px 20px;font-size: 18px; max-width: 260px;}
.width_banner .link-btn:hover {background: #000;color: #fff}

.card-items .img-items{
    height: 180px;
    border-right: 8px solid #FFD700;
}

.card-items .text-content{
    background: #595959;
    height: 100%;
    display: flex;
    align-items: center;
    padding:15px;
    color: #fff;
}
.ya_case-card {
    position: relative;
    background-color: #f7f7f8;
    padding: 30px 25px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ya_case-title {
    font-size: 23px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 20px;
}

.ya_case-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

.ya_case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(142, 147, 158, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ya_case-card:hover .ya_case-overlay {
    opacity: 1;
    visibility: visible;
}

.ya_btn-more {
    display: inline-block;
    background-color: #CBA776;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 2px;
    transform: translateY(10px);
    transition: transform 0.3s ease, background-color 0.2s ease;
}

.ya_case-card:hover .ya_btn-more {
    transform: translateY(0);
}

.ya_btn-more:hover {
    background-color: #b07f38;
    color: #ffffff;
}

.ya_modal-box {
    max-width: 600px;
    padding: 30px;
    border-radius: 8px;
    background: #ffffff;
}

.ya_modal-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.ya_modal-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #444444;
    margin: 0;
}

@media (max-width: 768px) {
    .ya_case-card {
        padding: 25px 20px;
    }
    .ya_case-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
}
.ya_modal-box p{
    font-size: 18px;
}
.ya_modal-box strong{
    font-size: 24px;
}
.modal-items .link-btn{
    background: #cca876;
    display: block;
    color: #fff;
    font-weight: 500;
    padding: 17px 20px;
    font-size: 18px;
}

.modal-items .link-btn:hover {background: #000;color: #fff}
.blue_banner{
    background-color: var(--primary-color);
    text-align: center;
    color: #fff;
}
.blue_banner h2{
    font-size: 36px;
    font-weight: 500;
}
.blue_banner p{
    font-size: 24px;
}
.ya_step-card {
    background-color: #ffffff;
    padding: 10px 0;
}

.ya_step-body {
    gap: 15px;
}

.ya_step-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #3f5a8a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ya_step-content {
    flex-grow: 1;
}

.ya_step-title {
    font-size: 23px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.25;
}

.ya_step-desc {
    font-size: 16px;
    line-height: 1.55;
    color: #333333;
    margin: 0;
}

.ya_step-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60px;
    background-color: #d1ab75;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    padding: 10px 15px;
    border-radius: 2px;
    line-height: 1.25;
    transition: background-color 0.2s ease;
}

.ya_step-btn:hover {
    background-color: #be9762;
    color: #ffffff;
}

@media (max-width: 991px) {
    .ya_step-card {
        margin-bottom: 15px;
    }
}
.author_block{
    background-color: #F5F5F5;
}
.author_block p{
    font-size: 18px;
}
.author_block p strong{
    font-weight: 500;
    line-height: 1.2;
    font-size: 16px;
}
.ya_services-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 40px 0;
}

.ya_services-list li {
    position: relative;
    padding-left: 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.ya_services-list li::before {
    content: ">";
    position: absolute;
    left: 0;
    top: 0;
    color: #1a1a1a;
    font-size: 18px;
}

.ya_quote-box {
    border: 6px solid #3f5a8a;
    padding: 30px 40px;
    font-size: 24px;
    color: #1a1a1a;
    line-height: 1.4;
    background-color: #ffffff;
}

.ya_btn-consult {
    display: inline-block;
    background-color: #d1ab75;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 2px;
    transition: background-color 0.2s ease;
}

.ya_btn-consult:hover {
    background-color: #be9762;
    color: #ffffff;
}

.ya_map-wrapper {
    width: 100%;
    overflow: hidden;
}

.ya_contacts-card {
    background-color: #3f5a8a;
    color: #ffffff;
    padding: 50px 45px;
}

.ya_contacts-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
}

.ya_contacts-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.ya_contacts-info p:last-child {
    margin-bottom: 0;
}

.ya_contacts-info a {
    color: #ffffff;
    text-decoration: none;
}

.ya_contacts-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .ya_services-list li {
        font-size: 15px;
    }
    .ya_quote-box {
        padding: 20px 15px;
        font-size: 16px;
        border-width: 3px;
    }
    .ya_btn-consult {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
    .ya_contacts-card {
        padding: 35px 25px;
    }
    .ya_contacts-title {
        font-size: 20px;
    }
    .ya_contacts-info p {
        font-size: 14px;
    }
}
@media (max-width: 991px) {
    .card-items .img-items{
        border: 0;
    }
    .card-items .text-content h6{
        font-size: 16px;
    }
    .blue_banner h2,
    .width_banner h1{
        font-size: 18px;
    }
    .blue_banner p,
    .width_banner p{
        font-size: 16px;
    }
    .width_banner .link-btn{
        max-width: 100%;
    }
    .width_banner{
        min-height: auto;
        padding: 30px 0;
    }
}
.about-images .item img{
    height: 250px;
}
.ya_partner-card {
    background-color: #f0f0f0;
    border-radius: 8px;
    padding: 35px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ya_partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.ya_partner-logo {
    max-width: 100%;
    max-height: 80px;
    mix-blend-mode: darken;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 576px) {
    .ya_partner-card {
        padding: 25px 20px;
        min-height: 110px;
    }
    .ya_partner-logo {
        max-height: 65px;
    }
}
.kontakty{
    font-size: 18px;
}
.kontakty a{
    color: #000;
}
.ya_cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 20px 25px;
    z-index: 9999;
    border: 1px solid #e0e0e0;
}

.ya_cookie-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ya_cookie-text {
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
    margin: 0;
}

.ya_cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.ya_cookie-btn {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.ya_cookie-btn-accept {
    background-color: #3f5a8a;
    color: #ffffff;
}

.ya_cookie-btn-accept:hover {
    background-color: #314770;
}

.ya_cookie-btn-reject {
    background-color: #f0f0f0;
    color: #666666;
}

.ya_cookie-btn-reject:hover {
    background-color: #e2e2e2;
    color: #333333;
}

@media (max-width: 600px) {
    .ya_cookie-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 15px;
    }

    .ya_cookie-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .ya_cookie-actions {
        width: 100%;
    }

    .ya_cookie-btn {
        flex: 1;
        text-align: center;
    }
}
.ya_thanks-page {
    background-color: #f8fafd;
}

.ya_thanks-card {
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 550px;
    width: 100%;
}

.ya_thanks-icon-circle {
    width: 80px;
    height: 80px;
    background-color: #e8f4ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

.ya_thanks-icon-circle svg {
    width: 42px;
    height: 42px;
    fill: #2e7d32;
}

.ya_thanks-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.ya_thanks-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 30px;
}

.ya_thanks-btn {
    display: inline-block;
    background-color: #3f5a8a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.ya_thanks-btn:hover {
    background-color: #314770;
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .ya_thanks-card {
        padding: 35px 20px;
    }
    .ya_thanks-title {
        font-size: 22px;
    }
    .ya_thanks-desc {
        font-size: 14px;
    }
    .ya_thanks-icon-circle {
        width: 65px;
        height: 65px;
    }
    .ya_thanks-icon-circle svg {
        width: 34px;
        height: 34px;
    }
}
.ya_map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}
.grecaptcha-badge {
    visibility: hidden !important;
}