﻿@charset "UTF-8";
:root {
    --bg-color: #fff;
    --black-color: #000;
    --gunmetal-color: #1f2938;
    --gray-color: #d9d9d9;
    --green-color: #1B8A55;
    --amber-color: #fdcd00;
    --silver-color: #999ea5;
    --lightgray-color: #d3d3d3;
    --charcoal-color: #5a5858;
    --platinum-color: #eeeeee;
    --eerie-color: #151515;
}

/*=====================Общие правила========================*/

html, body {
    height: 100%;
}
body {
    min-width: 360px;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    line-height: 26px;
    font-weight: 400;
    font-style: normal;
    background-color: var(--bg-color);
    color: var(--black-color);
}
.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
img {
    max-width: 100%;
    height: auto;
}
main.main-content {
    flex: 1 1 auto;
}

/*=====================Конец общих правил=======================*/

/*=====================Шапка сайта=======================*/

.header-top {
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    box-shadow: 0 0 0 1px var(--gray-color);
    position:fixed;
    z-index:1000;
    width:100%;
}

.header-top a {
    text-decoration: none;
    color: var(--black-color);
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 60px;
    height: auto;
}

.logo-title {
    font-size: 23px;
    font-weight: 700;
    margin: 0;
}

.logo-subtitle {
    font-size: 15px;
    font-weight: 400;
    margin: 0;
}

.messenger {
    display: flex;
    font-weight: 700;
}

.messenger a {
    display: flex;
    align-items: center;
    border: 1px solid var(--silver-color);
    border-radius: 20px;
    padding: 4px 15px;
    margin: 12px 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.messenger a.telegram:hover {
    border: 1px solid #00acee;
    transition: all .3s;
}

.messenger a.whatsapp:hover {
    border: 1px solid #009b00;
    transition: all .3s;
}

.messenger a .bi {
    font-size: 20px;
    margin-right: 5px;
}

.messenger a.telegram {
    color: #00acee;
}

.messenger a.whatsapp {
    color: #009b00;
}

.phone {
    font-size: 20px;
    font-weight: 600;
    margin-top: 16px;
}

.phone a:hover {
    color: var(--green-color);
    transition: all .3s;
}

.phone a .bi {
    padding-right: 10px;
}

.search{
    padding-top: 15px;
}
.bi-search{
    font-size: 22px;
}
.bi-search:hover{
    color: var(--green-color);
}
#search{
    font-weight:700;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transition: all .2s;
    transform: scale(0);
    padding: 17px 350px 17px 350px;
    background-color: var(--bg-color);
    z-index:1;
}
#search.active{
    transform: scale(1);
}
.close-search{
    border: none;
}
.close-search:hover{
    color: var(--green-color);
}

#search .btn-success {
    border-radius: 0 6px 6px 0 !important;
}

.header-bottom {
    margin-top: 28px;
}

.modal-title {
    font-size: 26px;
    font-weight:600;
}

.form-check-label a {
    color: var(--green-color);
    text-decoration: none;
}

.top-navbar a {
    font-size: 18px;
    font-weight: 600;
}

.top-navbar a:hover {
    color: var(--green-color);
    transition: all .3s;
}

.has-megamenu {
    position: static;
    z-index:1;
}

.megamenu {
    top: auto;
    left: 0;
    right: 0;
    margin: auto;
}

.top-navbar .dropdown-menu {
    box-shadow: 0 4px 18px -2px rgba(0, 0, 0, .1);
    top: 50px;
}

.megamenu {
    padding: 30px 40px 30px 40px;
    border-radius: 4px;
}

.megamenu .title {
    border-bottom: 1px solid var(--black-color);
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    color: var(--black-color);
    padding-bottom: 10px;
}

.megamenu li {
    margin-bottom: 5px;
}

.megamenu a {
    color: var(--black-color);
    font-size: 16px;
    text-decoration: none;
    font-weight: 400;
    transition: all .3s;
}

.megamenu a:hover {
    color: var(--green-color);
    text-decoration: underline;
}

.form-check-label {
    font-size: 14px;
}

.form-check-label a {
    font-size: 14px;
}

/*=====================Конец шапки сайта=======================*/

/*=====================Контент=======================*/

.top-content {
    background: url("../images/bg.webp") no-repeat center bottom;
}

.content-card {
    margin-top: 30px;
}

.top-content img {
    padding-top: 10px;
    width: 70%;
    height: auto;
    display: block;
}

.top-content h1 {
    color: var(--bg-color);
    font-size: 52px;
    font-weight: 700;
    text-transform: uppercase;
}

.top-content .text {
    color: var(--bg-color);
    font-size: 26px;
    font-weight: 400;
    text-transform: uppercase;
    padding-bottom: 30px;
}

.top-content p {
    color: var(--bg-color);
    font-weight: 400;
    font-size: 20px;
}

.top-content .bi {
    color: var(--green-color);
    font-size: 22px;
    padding-right: 20px;
}

.top-content .btn-success {
    margin-top: 40px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 40px 16px 40px;
}

.main-midel{
    background:
    url("../images/services-bg.webp") no-repeat,
    url("../images/diagonal-noise.svg");
    background-size: 480px auto, auto;
    padding: 50px 0 80px 0;

}
.main-midel h2{
    font-size: 36px;
    line-height: 1.2;
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
}
.main-midel .item{
    position: relative;
    transition: all .3s;
    height: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 9px;
}
.main-midel .item:hover{
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.main-midel .item-header{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.main-midel .item-icon {
    width: 84px;
    height: 84px;
    background: #1F2938;
    border-radius: 12px 56px 56px 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.main-midel .item-num {
    font-size: 24px;
    font-weight: 900;
    color: #ccc;
}
.main-midel .item-body {
    padding-top: 30px;
}
.main-midel .item-title h3{
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -.02em;
    text-transform: uppercase;
}
.main-midel .item-description {
    margin-top: 15px;
    line-height: 1.4;
}
.main-content-midel{
    padding-bottom: 30px;
}
.min-content-top{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.main-specialist, .main-dela, .main-news{
    background-image: url(../images/diagonal-noise.svg);
    padding-bottom: 60px;
}
.main-uslugi, .main-reviews, .main-faq{
    padding-bottom: 50px;
}
.accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
    border-radius: 10px;
    padding: 20px;
}
.main-specialist h2, .main-uslugi h2, .main-dela h2, .main-reviews h2, .main-prizyv h2, .main-faq h2, .main-news h2, .main-articles h2{
    padding-top: 50px;
    padding-bottom: 30px;
    text-transform: uppercase;
}
.iucon-carousel, .iucon-carousel-dela{
    padding-top: 90px;
    padding-right: 15px;
}

.main-midel .item:before {
    content: "";
    position: absolute;
    width: 35px;
    height: 35px;
    bottom: -6px;
    right: -6px;
    border-bottom: 12px solid #d3d3d3;
    border-right: 12px solid #d3d3d3;
}

.about-section {
    padding: 95px 0 85px;
}

.about-section .section-img {
    width: 520px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.about-section .img-wrapper {
    display: inline-block;
    position: relative;
    padding-bottom: 80px;
}

.about-section .img-wrapper:before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    top: -20px;
    right: -20px;
    border-top: 12px solid #d3d3d3;
    border-right: 12px solid #d3d3d3;
}

.about-section .section-img img {
    border-radius: 30px 0 0 30px;
}

.about-section .item-experience {
    width: 160px;
    height: 160px;
    background: #EEEEEE;
    border-radius: 0 30px 0 30px;
    padding: 10px;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -80px;
    bottom: 0;
    z-index: 2;
    text-align: center;
    font-size: 14px;
    display: flex;
    flex-direction: column;
}

.about-section .item-experience .item-num {
    font-size: 46px;
    line-height: 1;
    font-weight: 700;
    color: #1C8A55;
    margin-bottom: 4px;
}

.about-section .section-content h2 {
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 26px;
}

.about-section .section-description {
    font-size: 18px;
    font-weight: 400;
}

.call-to-action-section {
    background: var(--gunmetal-color) url("../images/call-to-action.webp") no-repeat right top;
    padding: 95px 0;
    color: var(--bg-color);
    background-size: 680px 800px, auto;
}

.call-to-action-section .content-item h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

.content-item-subtitle {
    margin: 50px 0 30px;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
}

.call-to-action-steps .item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 50px;
}

.call-to-action-steps .item-num {
    font-weight: 700;
    font-size: 90px;
    line-height: .815;
    opacity: 0.3;
    width: 115px;
}

.call-to-action-steps .item-title {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    padding-top: 23px;
}

.call-to-action-section .form-item {
    background-color: var(--bg-color);
    border-radius: 9px;
    padding: 37px 45px;
    color: var(--black-color);
    width: 75%;
}

.call-to-action-section .form-item-title {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 10px;
}

.call-to-action-section .form-item-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: var(--silver-color);
}

.form-group .form-control {
    display: block;
    width: 100%;
    height: 70px;
    padding: 0 15px;
    border: 2px solid #EBEFF4;
    background: #EBEFF4;
    color: var(--silver-color);
    text-shadow: none;
    font-size: 16px;
    line-height: 1.42857143;
    margin-bottom: 20px;
    border-radius: 9px;
}

.agreement label {
    display: inline;
}

.form-check-label {
    padding-left: 5px;
    color: var(--silver-color);
}

.form-item .btn {
    padding: 20px 50px 20px 50px;
    width: 100%;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.agreement {
    position: relative;
    margin-bottom: 30px;
    color: #838383;
    line-height: 1.4;
    font-size: 14px;
}

.main-uslugi-block {
    background-image: url(../images/diagonal-noise.svg);
    padding: 50px 10px;
}

.main-uslugi-block h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 30px;
}

.uslugi-nav {
    background-color: var(--bg-color);
    padding: 40px;
    border-radius: 15px;
}

.uslugi-nav .toggle-btn.active {
    background-color: var(--gunmetal-color);
    border-color: var(--gunmetal-color);
    color: #fff;
}

.uslugi-nav .toggle-btn {
    margin: 10px 10px 30px 0;
    padding: 20px 50px;
    font-size: 24px;
    font-weight: 700;
}

.uslugi-nav .card {
    border-radius: 10px;
}

.uslugi-nav .card-body:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.main-reviews h2 {
    padding-top: 50px;
    padding-bottom: 30px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 36px;
}

.main-reviews a {
    color: var(--green-color);
    text-decoration: none;
    font-size: 16px;
}

.reviews-card{
    border: 2px solid #ededed;
    transition: all .3s;
    padding: 20px 30px 20px 30px;
    margin: 5px 20px 5px 5px;
    border-radius: 10px;
}
.reviews-card:hover{
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    border: 2px solid #ffffff;
}
.reviews-img{
    width: 50px;
    height: 50px;
    position: fixed;
}
.reviews-img img{
    border-radius: 50%;
}
.review-name, .review-reiting{
    padding: 1px 0 0 60px;
}
.reviews-details p{
    color: var(--text-color);
    line-height: 20px;
    font-weight: 400;
    font-size: 14px;
    padding-top: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.main-reviews .btn-success {
    color: var(--bg-color) !important;
    margin-top: 40px;
    margin-bottom: 0;
    padding: 15px 40px;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
}

.bi-star-fill{
    color: #fc0;
    font-size: 14px;
}

.main-reviews .btn-primary, .main-news .btn-primary, .main-articles .btn-primary{
    margin-top: 40px;
    margin-bottom: 0;
}
.steps-section-img img {
    border-radius: 60px 60px 60px 40%;
}



.main-specialist h2 {
    font-weight: 700;
    font-size: 36px;
    text-transform: uppercase;
}
.iucon-carousel, .iucon-carousel-dela{
    padding-top: 60px;
    padding-right: 15px;
}
.bi-chevron-left, .bi-chevron-right{
    background-color: #1F2938;
    color: var(--bg-color);
    padding: 13px 15px;
    border-radius: 5px;
    font-size: 20px;
    margin: -1px;
}
.owl-prev, .owl-next{
    border: none;
}
.spatialists-card{
    transition: all .3s;
    background-color: var(--bg-color);
    padding: 30px 30px 10px 30px;
    margin: 5px 20px 5px 5px;
    border-radius: 10px;
}
.spatialists-card:hover{
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.spatialists-card img{
    border-radius: 10px;
}
.spatialists-details{
    margin-top: 15px;
}
.spatialists-details a{
    color: var(--text-color);
    font-weight: bold;
    font-size: 23px;
    line-height: 1.2;
    transition: all ease 300ms;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-decoration: none;
}
.spatialists-details a:hover{
    color: var(--green-color);
}
.spatialists-details p{
    font-size: 16px;
    line-height: 1.3;
    color: #858585;
    margin-top: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.main-prizyv h2 {
    padding-top: 60px;
    padding-bottom: 50px;
    font-weight: 700;
    font-size: 36px;
    text-transform: uppercase;
}

.main-faq h2 {
    padding-top: 60px;
    font-weight: 700;
    font-size: 36px;
    text-transform: uppercase;
}

.steps-section-img img {
    border-radius: 60px 60px 60px 40%;
}
.steps-section-steps .items {
    padding-top: 35px;
    margin-left: -180px;
}
.steps-section-steps .item {
    width: 100%;
    background: #fff;
    box-shadow: -8px 28px 92px rgba(70,41,41,.1);
    border-radius: 8px 50px 50px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 31px;
    padding-bottom: 33px;
    padding-left: 35px;
    padding-right: 33px;
    margin-bottom: 24px;
}
.steps-section-steps .item1 a {
    font-weight: bold;
    font-size: 20px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    color: var(--green-color);
    text-decoration: none;
}

.steps-section-steps a:hover {
    color: var(--eerie-color);
}

.steps-section-steps .item-num {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    background: #1C8A55;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -.04em;
    text-transform: uppercase;
    color: #fff;
    position: relative;
}
.steps-section-steps .items .item:not(:last-child) .item-num:before {
    content: "";
    position: absolute;
    bottom: -88px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 84px;
    background-image: url(../images/dotted-line.svg);
    background-repeat: no-repeat;
}
.steps-section-steps .application-link {
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
    margin-left: -20px;
}

.accordion-button {
    font-size: 20px;
}

.main-prizyv .btn-success {
    padding: 15px 40px;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 40px;
    margin-top: 10px;
    border: none;
    text-transform: uppercase;
}

.main-content-body {
    background-image: url(../images/diagonal-noise.svg);
    padding: 80px 0;
}

.com-content-article__body {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 10px;
}

.com-content-article__body h2 {
    font-size: 30px;
    padding: 20px 0;
}

.com-content-article__body h3 {
    font-size: 26px;
    padding: 15px 0;
}

.com-content-article__body a {
    color: var(--green-color);
    text-decoration: none;
}

.com-content-article__body a:hover {
    color: var(--eerie-color);
}

.uslugi {
    border: 2px solid #ededed;
    margin: 0;
    padding: 25px 25px 10px 25px;
}

.main-articles h2 {
    font-weight: 700;
    font-size: 36px;
    text-transform: uppercase;
}

.uslugi img {
    width: 100%;
}

.uslugi p {
    margin-top: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.main-articles .btn-success {
    padding: 15px 40px;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 40px;
    margin-top: 10px;
    border: none;
    text-transform: uppercase;
}

.footer {
    background: #1F2938;
    padding-top: 20px;
    font-size: 18px;
}
.footer .row{
    border-bottom:2px solid #ededed;
}
.footer a{
    color:#ededed;
    text-decoration: none;
}
.geo{
    font-size:18px;
    border-right:2px solid #ededed;
    border-left:2px solid #ededed;
    line-height:1.8;
    color: #ededed;
    font-weight: 500;
}
.geo .bi{
    font-size: 16px;
}
.top-meny{
    font-size:16px;
    padding-bottom:20px;
    font-weight: 500;
    display: flex;
}
.footer a:hover{
    color:#ff2d00;
}

.logo-bottom{
    background: url(../images/logo-bottom.svg)no-repeat top 9px left 20px;
}
.logo-bottom a{
    font-size: 18px;
    color: #ededed;
    line-height: 35px;
    text-decoration: none;
    font-weight: 400;
    padding-top: 10px;
}
.logo-bottom a:hover{
    color:#fff;
}
.logo-bottom span{
    font-size: 31px;
    font-weight: 600;
}
.soc a{
    margin-top: 12px;
    margin-right: 5px;
    width: 60px;
    height: 78px;
}
.nav-item .bi{
    font-size: 17px;
    padding-right: 5px;
}
.static{
    font-weight: 400;
    background:var(--black-color);
    color:#ededed;
    text-align:center;
    padding-top:20px;
    font-size:18px;
}

.block4 {
    background-color: #e9edf0;
    text-align: center;
}

.block4 h2 {
    font-weight: 700;
    font-size: 34px;
    color: #000;
    padding: 15px 5px 10px 5px;
}

.zayvka{
    background:url(../images/bg4.webp)no-repeat center;
    background-size: cover;
    padding:70px 0px 50px 30px;
}
.zayvka p{
    font-weight: 400;
    color:#fff;
    font-size:18px;
    line-height:35px;
}
.zayvka a{
    font-weight: 700;
    color:#fff;
    text-decoration: none;
}
.zayvka a:hover{
    color:#ff2d00;
}

.knopka .btn-danger  {
    text-transform: uppercase;
    background: linear-gradient(to top, #971505, #f8331c);
    text-shadow: black -1px 2px;
    font-size: 16px;
    padding: 13px 25px 13px 25px;
    border-radius: 5px;
    border: none;
    margin-right: 30px;
    font-weight: 700;
}

.knopka .btn-danger:hover {
    background: linear-gradient(to top, #f8331c, #971505);
}

.knopka .btn-outline-light  {
    text-transform: uppercase;
    background: none;
    text-shadow: black -1px 2px;
    font-size: 16px;
    padding: 10px 25px 10px 25px;
    border-radius: 5px;
    margin-right: 30px;
    font-weight: 700;
    border: 2px solid #fff;
}

.knopka .btn-outline-light:hover {
    background: linear-gradient(to top, #000, #000);
    color: var(--bg-color);
}

.bread {
    margin: -50px 0 0 0;
}

.bread a {
    font-size: 14px;
    text-decoration: none;
    color: var(--black-color);
}

.bread a:hover {
    color: var(--green-color);
}

.main-otvery h2 {
    padding-top: 40px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 36px;
}

.com-content-category-blog__item:last-child .item-content {
    margin-bottom: 0;
}

.alert-light {
    color: var(--black-color);
}

.alert-light h2 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 10px;
}

.com-content-category-blog__item .item-content{
    background-color: var(--bg-color);
    padding: 30px 30px 15px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.lenta-content {
    background-color: var(--bg-color);
}

.com-content-category-blog__item .item-content a {
    text-decoration: none;
    color: var(--black-color);
}

.com-content-category-blog__item .item-content p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.com-content-category-blog__item .item-content a:hover {
    color: var(--green-color);
}

.category-desc {
    margin-bottom: 30px;
}

.com-content-category-blog__item .btn-secondary {
    text-transform: uppercase;
    background: none;
    font-size: 15px;
    padding: 12px 45px;
    border-radius: 5px;
    font-weight: 700;
    border: 1px solid var(--lightgray-color);
    color: var(--black-color);
    margin-top: 10px;
}

.main-content-body h1 {
    font-size: 34px;
    padding-bottom: 20px;
}

.pagenavigation .pagination, .pager .pagination {
    justify-content: space-between;
    margin: 30px 0 0 0;
}

.pagenavigation .btn-secondary {
    background-color: var(--bg-color);
    font-size: 16px;
    padding: 8px 30px;
    border-radius: 5px;
    font-weight: 400;
    color: var(--black-color);
}

.pagenavigation .btn-secondary:hover {
    color: var(--green-color);
}

.b-city {
    color: var(--green-color);
    font-size: 16px;
}

.vopros {
    font-weight: 700;
    font-size: 24px;
}

.foto-yurista {
    padding-bottom: 30px;
}

.foto-yurista .reviews-imges img {
    width: 80px;
    height: 80px;
    position: absolute;
    border-radius: 50%
}

.foto-yurista .review-name-yurist {
    padding-left: 100px;
    padding-top: 15px;
    font-size: 16px;
}

.foto-yurista .yurist-reiting {
    padding-left: 100px;
}

.call-to-action .form-item {
    background-color: var(--bg-color);
    border-radius: 9px;
    padding: 37px 45px;
    color: var(--black-color);
    border: 2px solid #ededed;
    margin: 30px 0;
}

.call-to-action .form-control {
    display: block;
    width: 100%;
    height: 60px;
    padding: 0 15px;
    border: 2px solid #EBEFF4;
    background: #EBEFF4;
    color: var(--silver-color);
    text-shadow: none;
    font-size: 16px;
    line-height: 1.42857143;
    margin-bottom: 20px;
    border-radius: 9px;
}

.call-to-action .form-group textarea {
    height: 100px;
    padding-top: 20px;
}

.call-to-action .form-title {
    padding-bottom: 40px;
    font-weight: 700;
    font-size: 26px;
}

/*=====================Конец контента=======================*/


/*=====================Адаптация=======================*/

@media (max-width: 1300px) {
	
	.top-content h1 {
		font-size: 50px;
	}

    .top-content img {
        width: 73%;
    }

    #search{
        padding: 17px 20px 17px 25px;
    }

    .phone {
        font-size: 18px;
    }

    .messenger a {
        font-size: 13px;
    }

    .messenger a .bi {
        font-size: 18px;
    }

    .logo img {
        width: 55px;
        height: auto;
    }

    .logo-title {
        font-size: 24px;
    }

    .logo-subtitle {
        font-size: 13px;
    }

    .main-midel{
        background: url("../images/diagonal-noise.svg");
        padding: 25px 0 55px 0;
    }

    .call-to-action-section {
        background: var(--gunmetal-color);
    }

    .call-to-action-section .form-item {
        width: 100%;
    }

    footer .navbar-expand .navbar-nav, .nav .navbar-expand-md .navbar-nav {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .logo-bottom{
        background: url(../images/logo-bottom.svg)no-repeat top 9px left 0;
    }

}

@media screen and (max-width:1240px){
    .footer .container-xxl .row .col-4{display:flex;width:50%;justify-content:center;}
    .logo-bottom{display:inline-flex;width:auto;}
    .logo-bottom a{margin:0 0 0 80px;}
    .footer .container-xxl .row .col-4:last-child{width:100%;border-top:2px solid #fdfdfd;}
    .footer .container-xxl .row .col-4:first-child{border-right:2px solid #fdfdfd;}
    .footer .geo{width:100%;display:flex;border:0px;justify-content:center;}
    .footer .soc{padding:20px 0;}
}

@media (max-width: 1200px) {

    .top-content img {
        width: 80%;
    }

    .top-content h1 {
        font-size: 40px;
    }

    .top-content .text {
        font-size: 22px;
    }

    .call-to-action-section .form-item {
        width: 95%;
    }

    .about-section {
        padding: 40px 0;
    }
}

@media screen and (max-width:992px){
    .bi-chevron-left, .bi-chevron-right {
        font-size: 16px;
    }
    .steps-section-steps .item-body {
        font-size: calc(8px + 8 * ((100vw - 320px)/ 926));
    }
    .steps-section-steps .item {
        margin-bottom: calc(15px + 9 * ((100vw - 320px)/ 926));
        padding-right: calc(10px + 23 * ((100vw - 320px)/ 926));
        padding-left: calc(10px + 25 * ((100vw - 320px)/ 926));
        padding-bottom: calc(10px + 23 * ((100vw - 320px)/ 926));
        padding-top: calc(10px + 21 * ((100vw - 320px)/ 926));
        font-size: calc(10px + 8 * ((100vw - 320px)/ 926));
    }
}

@media (max-width: 1100px) {

    .top-content img {
        width: 90%;
    }

    .steps-section-steps .item-body {
        font-size: 17px;
    }

    .steps-section-steps .item1 a {
        font-size: 18px;
    }
}

@media (max-width: 960px) {

    .messenger a {
        border: none;
        padding: 0;
        font-size: 0;
    }
    .messenger a .bi {
        margin: 0;
        font-size: 26px;
    }

    .header-bottom {
        margin-top: 22px;
    }

    .content-card {
        margin: 0;
    }

    .call-to-action-section .content-item h2 {
        font-size: 26px;
    }

    .content-item-subtitle {
        font-size: 20px;
    }

    .call-to-action-steps .item-num {
        font-size: 65px;
        width: 80px;
    }

    .call-to-action-steps .item-title {
        font-size: 16px;
        padding-top: 0;
    }

    .call-to-action-section .form-item-description {
        font-size: 14px;
    }

    .call-to-action-section .form-item {
        padding: 20px;
    }

    .form-group .form-control {
        font-size: 14px;
        height: 50px;
    }

    .call-to-action-section {
        padding: 75px 0;
    }

    .call-to-action-section .form-item-title {
        font-size: 26px;
    }

    .call-to-action-steps .item {
        margin-bottom: 40px;
    }

    .call-to-action-section .form-item {
        width: 100%;
    }

    .steps-section-steps .item-body {
        font-size: 14px;
    }

    .steps-section-steps a {
        font-size: 14px;
    }

    .main-prizyv .btn-success {
        font-size: 14px;
    }
}

@media (max-width: 800px) {

    .uslugi-nav .toggle-btn {
        padding: 10px 30px;
        font-size: 18px;
    }

}

@media (max-width: 767px) {

    .steps-section-steps .items {
        margin-left: 0;
    }

    .footer .container-xxl .row .col-4{
        width:100%;
    }
    .footer .geo{
        padding:20px 0;
    }
    .footer .container-xxl .row .col-4:first-child{
        border-right:0px;
        border-bottom:2px solid #fdfdfd;
    }
    .logo-bottom{
        padding-bottom:20px;
    }

    .block4 h2 {
        font-size: 25px;
    }
}

@media (max-width: 580px) {
    .logo-title {
        font-size: 0;
    }

    .logo-subtitle {
        font-size: 0;
    }

    .top-content h1 {
        font-size: 42px;
    }

    .top-content .text {
        font-size: 20px;
    }

    .top-content p {
        font-size: 18px;
    }

    .top-content .bi {
        font-size: 20px;
    }

    .top-content .btn-success {
        font-size: 14px;
    }

    .main-midel h2{
        font-size: 30px;
    }

    .about-section .section-content h2 {
        font-size: 30px;
    }

    .call-to-action-section .form-item {
        width: 100%;
    }

    .call-to-action-section .form-item {
        padding: 30px;
    }

    .spatialists-details a{
        font-size: 30px;
    }

    .spatialists-details p{
        font-size: 22px;
    }

    .steps-section-steps .item-body {
        font-size: 16px;
    }

    .steps-section-steps a {
        font-size: 16px;
    }

    .main-prizyv .btn-success {
        font-size: 16px;
    }

    .call-to-action .form-item {
        padding: 20px;
    }

}

@media (max-width: 430px) {

    .top-content h1 {
        font-size: 36px;
    }

    .top-content .text {
        font-size: 15px;
    }

    .top-content p {
        font-size: 13px;
    }

    .top-content .bi {
        font-size: 15px;
    }

    .call-to-action-section .form-item {
        width: 100%;
        padding: 37px 20px;
        }

    .call-to-action-section .form-item-description {
        font-size: 15px;
    }

    .call-to-action-section .content-item h2 {
        font-size: 24px;
    }

    .content-item-subtitle {
        font-size: 16px;
        margin: 24px 0;
    }

    .call-to-action-steps .item-title {
        font-size: 14px;
        padding-top: 0;
    }

    .call-to-action-steps .item-num {
        font-size: 50px;
        width: 50px;
    }

    .call-to-action-section {
        padding: 30px 0 60px 0;
    }

    .spatialists-details a{
        font-size: 22px;
    }

    .spatialists-details p{
        font-size: 16px;
    }

    .main-prizyv h2 {
        font-size: 26px;
    }

    .steps-section-steps .items {
        margin-left: 0;
    }

    .steps-section-steps .item-body {
        font-size: 14px;
    }

    .steps-section-steps a {
        font-size: 14px;
    }

    .main-prizyv .btn-success {
        font-size: 14px;
    }

    .main-faq h2 {
        font-size: 26px;
        padding: 10px 0;
    }

    .accordion-button {
        font-size: 16px;
    }

    .accordion-body {
        font-size: 16px;
    }

    .footer .soc{
        max-width: 100%;
    }
    .footer .soc a:not(:last-child){
        padding-right:5px;
    }

    .knopka {
        display: flex;
        flex-direction: column;
    }

    .knopka .btn-danger {
        margin: 20px 0 20px 0;
    }

    .knopka .btn-outline-light {
        margin: 0;
    }

    .zayvka {
        padding: 30px 10px;
    }

    .top-content h1 {
        font-size: 32px;
    }

}

@media (max-width: 400px) {
    .phone {
        font-size: 15px;
    }

    .messenger a .bi {
        font-size: 18px;
    }

    .logo img {
        width: 36px;
    }

    .top-content h1 {
        font-size: 28px;
    }

    .top-content .text {
        font-size: 16px;
    }

    .top-content p {
        font-size: 14px;
    }

    .top-content .bi {
        font-size: 16px;
    }

    .main-midel h2{
        font-size: 26px;
    }

    .about-section .section-content h2 {
        font-size: 26px;
    }

    .spatialists-details a{
        font-size: 24px;
    }

    .spatialists-details p{
        font-size: 16px;
    }

    .steps-section-steps .item-body {
        font-size: 12px;
    }

    .steps-section-steps a {
        font-size: 12px;
    }

    .main-prizyv .btn-success {
        font-size: 12px;
    }

    .main-articles h2 {
        font-size: 26px;
    }

    .block4 h2 {
        font-size: 23px;
    }

}

@media (max-width: 360px) {
    .phone {
        font-size: 13px;
    }

    .main-specialist h2 {
        font-size: 24px;
    }

    .steps-section-steps .item-body {
        font-size: 12px;
    }

    .steps-section-steps a {
        font-size: 12px;
    }

    .main-prizyv .btn-success {
        font-size: 12px;
    }

    .logo-bottom a {
        font-size: 16px;
    }
    .logo-bottom span {
        font-size: 30px;
    }

}