@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;
}
.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);
}

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: 0;
    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 .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%;
}
.works.about-us ul.li_ok li{
    font-weight: normal;
}
.works.about-us ul.li_ok li span.fa-solid--check{
    color: #CCA876;
}
/* 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{
    font-size: 24px;
    font-weight: 500;
    color: #cca876;
    text-decoration: none;
}
.id_4 .services-plan p,
.id_4 .services p,
.id_5 .services p{
    font-size: 18px;
}
.id_4 .services .link:hover,
.id_5 .services .link:hover{
    color: #000;
}
.id_4 .services .item .image-content,
.id_5 .services .item .image-content{
    height: 275px;
}
.id_4 .services .item .title-content,
.id_5 .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{
    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;
}
/* ===== 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;
        margin: 0;
    }
    .hero-content .hero-phone p,
    .hero-content .hero-phone a,
    .hero .subtitle{
        font-size: 16px;
    }
    .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;
    }
    .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 .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;
    }
}