:root {
    --blue: #00ccff;
    --greyLight: #898989;
    --grey: #253640;
    --greyHard: #3e4f59;
}

*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-family: 'PT Sans', sans-serif;
}


.container {
    width: 100%;
    max-width: 1400px;
    padding: 0 30px;
    margin: 0 auto;
}


.header__wrapper {

}

.header {
    background: url(/images/header-bg.png);
    background-size: cover;
    background-position: center;
    padding-top: 20px;
}

.header__block {
    display: flex;
    background: rgb(55 55 55 / 80%);
    border-radius: 20px;
    padding: 15px 30px;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: calc(100% - 60px);
    max-width: 1340px;
    z-index: 5;
}

.header__block-left {

}

.header__block-center {
}

.header__block-right {
    text-align: right;
}

.header__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header__nav-li {
    padding: 0 30px;
    position: relative;
}

.header__nav > .header__nav-li:first-child {
    padding-left: 0;
}

.header__nav > .header__nav-li:last-child {
    padding-right: 0;
}

.header__nav > .header__nav-li:last-child::after {
    content: none;
}

.header__nav-li::after {
    content: '';
    display: block;
    height: 16px;
    background: #ffffff;
    width: 2px;
    position: absolute;
    right: -1px;
    top: 5px;
}

.header__nav > .header__nav-li:last-child {
    border-right: none;
}

.header__nav-link {
    color: var(--blue);
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    line-height: 24px;
    transition: .2s;
}

.header__nav-link:hover {
    color: #ffffff;
}

.header__rubble-icon {
    background: var(--blue);
    width: 50px;
    height: 50px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.header__rates {
    display: flex;
}

.header__rates-values {
    display: flex;
    color: #ffffff;
    font-weight: bold;
    margin: 0 -10px 0 0px;
}

.header__rates-values > div {
    margin: 0 5px;
}

.header__rates-values img {
    width: 20px;
    display: inline-block;
}

.header__rates-value > * {
    display: inline-block;
    vertical-align: middle;
}

.header__logo {
    max-width: 150px;
}

.header__rates-title {
    color: var(--greyLight);
    line-height: 20px;
    margin: 0 0 3px 10px;
    font-size: 16px;
}

.header__title {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 660px;
    text-align: right;
}

.header__title-btn {
    background: #00a5d4;
    width: 180px;
    height: 50px;
    line-height: 47px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    transition: .2s;
    display: inline-block;
    margin-top: 10px;
}

.header__title-btn:hover {
    background: #0ec7fb;
}

.header__title-text {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    line-height: 34px;
}

.header__title-text_color-blue {
    color: var(--blue);
}


.about-company {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    flex-wrap: wrap
}

.about-company > div {
    padding: 30px;
    background: #ffffff;
    width: 280px;
    margin: 20px 15px;
    transition: .2s;
}

.about-company__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    cursor: pointer;
}

.about-company__item-sq {
    width: 40px;
    height: 40px;
    background: var(--blue);
    padding: 10px;
    transition: .4s;
}

.about-company__item-middle {
    font-size: 34px;
}

.about-company__item-title {
    color: var(--grey);
    line-height: 20px;
    font-size: 16px;
}

.about-company > div:hover {
    background: #00c0e2;
}

.about-company > div:hover .about-company__item-sq {
    background: var(--greyHard);
}

.about-company > div:hover .about-company__item-title,
.about-company > div:hover .about-company__item-middle {
    color: #ffffff;
}


.parallax {
    background-image: url("/images/car-parallax-blur.png");
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


@media only screen and (max-device-width: 1366px) {
    .parallax {
        background-attachment: scroll;
    }
}


.services {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 100px 0;
}

.services > div {
    padding: 40px 30px;
    background: #ffffff;
    width: 270px;
    margin: 0 20px;
    transition: .2s;
    text-align: center;
}

.services__item:hover {
    background: #00badf;
}

.services__item:hover svg {
    fill: #ffffff;
}

.services__item:hover .services__item-title {
    color: #ffffff;
}

.services__item:hover .services__item-description {
    color: #ffffff;
}

.services svg {
    margin: 0 auto;
    fill: #000000;
}

.services__item-title {
    font-weight: bold;
    margin-top: 20px;
    color: #3e4f59;
}

.services__item-description {
    font-size: 12px;
    line-height: 24px;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #3e4f59;
    height: 100px;
}

.services__item-btn {
    display: block;
    width: 90px;
    height: 44px;
    line-height: 40px;
    border: 2px #5c6a73 solid;
    text-decoration: none;
    color: #000;
    background: #fff;
    font-size: 14px;
    margin: 20px auto 0 auto;
    transition: .2s;
}

.services__item-btn:hover {
    opacity: .8;
}


.about-crm {
    display: flex;
}

.about-crm > div {
    width: 50%;
}

.about-crm > div:first-child {

}

.about-crm > div:last-child {
    background: #00c0e2;
}


.about-crm__video {
    position: relative;
    height: 300px;
    background: black;
    width: 440px;
    margin-top: 30px;
}

.about-crm__video-icon {
    background: #00c0e2;
    position: absolute;
    top: -24px;
    left: 30px;
    width: 50px;
    height: 50px;
    border: 8px #fff solid;
    text-align: center;
    line-height: 42px;
}

.about-crm__video-icon > svg {
    width: 20px;
    height: 20px;
    display: inline-block;
    fill: #fff;
}

.about-crm__left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding: 60px 80px 60px 80px
}

.about-crm__left > div {
    width: 440px;
}

.about-crm__left-title {
    color: #3e4f59;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    font-size: 24px;
}

.about-crm__left-description {
    color: #3e4f59;
    font-size: 14px;
    margin-bottom: 50px;
}


.about-crm__right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding: 60px 80px 60px 80px;
}

.about-crm__right > div {
    width: 100%;
}


.about-crm__form-wrapper {
    background: #0b96b1;
    padding: 60px 40px;
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
}

.about-crm__right-title {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    font-size: 24px;
}

.about-crm__right-description {
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    font-size: 18px;
}

.about-crm__form-title {
    color: #ffffff;
    font-size: 20px;
}

.about-crm__form-input {
    color: #97a9b3;
    height: 64px;
    padding: 0 20px;
    width: 100%;
    font-size: 18px;
    border: 1px #000 solid;
    outline: 0;
}

.about-crm__form-row {
    margin-bottom: 20px;
}


.about-crm__form-input::-webkit-input-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.about-crm__form-input::-moz-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.about-crm__form-input:-moz-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.about-crm__form-input:-ms-input-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.about-crm__form-input:focus::-webkit-input-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-crm__form-input:focus::-moz-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-crm__form-input:focus:-moz-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-crm__form-input:focus:-ms-input-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}


.about-crm__form-forgot-password {
    text-decoration: none;
    text-align: right;
    display: inline-block;
    color: #fff;
    border-bottom: 1px #fff solid;
    line-height: 18px;
    font-size: 18px;
}

.about-crm__form-forgot-password:hover {
    border-bottom: 1px #0b96b1 solid;
}

.about-crm__form-links {
    display: flex;
    justify-content: flex-end;
}

.about-crm__form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.about-crm__form-buttons > * {
    width: 100%;
}

.about-crm__form-btn-register,
.about-crm__form-btn-login {
    text-align: center;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    border: none;
    height: 53px;
    line-height: 50px;
    background: #00c0e2;
    font-size: 18px;
    transition: .2s;
}

.about-crm__form-btn-register:hover,
.about-crm__form-btn-login:hover {
    opacity: .8;
}

.about-crm__form-btn-register {
    background: #253640;
}


.map {
    display: flex;
    margin: 100px 0 130px 0;
}

.map > div {
}

.map > div:first-child {

    width: 40%;
    background: #00c0e2;
}

.map > div:last-child {
    width: 60%;
}


.map__right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding: 60px 0px 60px 80px;
}

.map__right > div {
    background: url(/images/map.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: calc(100% + 300px);
    position: relative;
    width: 100%;
    top: 40px;
}

.map__left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding: 60px 80px 60px 0
}

.map__left > div {
    width: 440px;
}

.map__title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    font-size: 24px;
}

.map__description {
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
    font-size: 18px;
    line-height: 22px;
}

.map__btn {
    height: 48px;
    line-height: 44px;
    width: 180px;
    color: #000;
    border: 1px #000 solid;
    text-decoration: none;
    display: block;
    text-align: center;
    background: #ffffff;
    font-size: 18px;
    margin: 0 auto;
    transition: .2s;
}

.map__btn:hover {
    opacity: .8;
}

.map__wrapper-title {
    color: #000000;
    font-weight: bold;
    margin-top: 100px;
    margin-bottom: 100px;
    text-align: center;
    font-size: 24px;
}


.articles {

}

.articles__items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 80px 0;
}

.articles__items > div {
    width: calc(50% - 20px);
    color: #3e4f59;
    margin: 20px 0;
    background: #ffffff;
    transition: .2s;
}

.articles__items > div:hover {
    background: #00c0e2;
    color: #ffffff;
}


.articles__title {
    font-weight: bold;
    margin-top: 100px;
    text-align: center;
    font-size: 24px;
}

.articles__item {
    display: flex;
    min-height: 230px;
}

.articles__item > div {
    width: 50%;
}

.articles__item > div:first-child {
    background-size: cover;
    background-position: center;
    position: relative;
}

.articles__item > div:last-child {
    padding-left: 30px;
}


.articles__item-title {
    font-weight: bold;
    font-size: 18px;
    margin: 30px 0;
}

.articles__item-description {
    font-size: 14px;
    margin: 30px 0;
}

.articles__item-date {
    width: 40px;
    height: 40px;
    background: #00c0e2;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 13px;
    color: #ffffff;
    text-align: center;
    line-height: 15px;
}

.articles__item-date {
    display: flex;
    justify-content: center;
    align-items: center;
}

.articles__item-date-day {
    font-weight: bold;
    font-size: 18px;
}


.top-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #00BAF0;
    background: linear-gradient(to left, #f46b45, #eea849);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #FFF;
    height: 50px;
    padding: 1em;
}

.menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu > li {
    margin: 0 1rem;
    overflow: hidden;
}

.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu-toggle {
    display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #fff;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.menu-button::before {
    content: '';
    margin-top: -8px;
}

.menu-button::after {
    content: '';
    margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
}


.header__nav-mobile {
    display: none;
}

.header__nav-mobile-link {
    color: var(--blue);
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    transition: .2s;
    line-height: 51px;
    display: inline-block;
}

@media (max-width: 800px) {

    .header__nav-mobile {
        display: block;
    }

    .header__nav-desktop {
        display: none;
    }


    .menu-button-container {
        display: flex;
        height: 40px;
        width: 40px;
    }

    .menu {
        position: absolute;
        top: 0;
        left: 0;
        flex-direction: column;
        width: calc(100% - 60px);
        justify-content: center;
        align-items: center;
        margin: 0 30px;
        margin-top: 90px;
    }

    #menu-toggle ~ .menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
        margin-bottom: -1px;
    }

    #menu-toggle:checked ~ .menu li {
        border: 1px solid #656565;
        height: 55px;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
        background: rgb(55 55 55 / 80%);
        line-height: 50px;
        cursor: pointer;
        border-radius: 14px;
    }

    .menu > li {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: white;
        background-color: #222;
    }

    .menu > li:not(:last-child) {
        border-bottom: 1px solid #444;
    }
}


.footer-bottom__wrapper {
    background: #1f2a31;
    padding: 50px;

}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: #ffffff;

}

.footer__social {
    display: flex;
}

.footer__social > a {
    background: #3e4f59;
    width: 30px;
    height: 30px;
    margin: 0 5px;
    text-align: center;
}

.footer__social > a svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    margin: 0 auto;
    padding: 5px;
}


.footer-top__wrapper {
    background: #3e4f59;
    padding: 50px;
}


.footer-top {
    display: flex;
    justify-content: space-between;
    color: #ffffff;
    margin: 0 -20px;
}

.footer-top > div {
    margin: 0 20px;
}

.footer-top > div:nth-child(1) {
    width: 25%;
}

.footer-top > div:nth-child(2) {
    width: 25%;
}

.footer-top > div:nth-child(3) {
    width: 50%;
}

.footer__nav {
    margin: 0;
    padding: 0;
    list-style: none;
    margin: -9px 0 0 0;
}

.footer-top__addr {
    display: flex;
    margin: 0 -20px;
    margin-bottom: 20px;
}

.footer-top__addr > div {
    width: 50%;
    margin: 0 20px;
}


.footer-top__title {
    font-weight: bold;
    font-size: 20px;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-top__title::after {
    content: '';
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 1px;
    border-bottom: 1px #445c6b solid;
}

.footer-top__title-text {
    position: relative;
    padding: 0 0 0 30px;
}

.footer-top__title-text::after {
    content: '';
    position: absolute;
    display: block;
    top: 8px;
    left: 0;
    width: 14px;
    height: 14px;
    background: #00c0e2;
}

.footer-top__title-logo {
    width: 150px;
}

.footer-top__description {
    color: #ffffff;
    font-size: 16px;
}

.footer__nav-link {
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    line-height: 40px;
    transition: .2s;
}

.footer__nav-link:hover {
    text-decoration: underline;
}


.feedback {
    background: #00c0e2;
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
    border-radius: 8px;
    padding: 40px 80px;
    margin-bottom: 100px;
}

.feedback__title {
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
}

.feedback__description {
    text-align: center;
    color: #fff;
    font-size: 18px;
    line-height: 20px;
    max-width: 450px;
    margin: 40px auto 50px auto;
}


.feedback__btn {
    background: #3e4f59;
    color: #fff;
    height: 60px;
    width: 420px;
    line-height: 50px;
    margin: 0 auto;
    display: block;
    margin-top: 40px;
    font-size: 20px;
    border: 0;
    cursor: pointer;
    transition: .2s;    
}

span.feedback__btn {
    text-align: center;
    line-height: 60px;
}

.feedback__btn:hover {
    opacity: .8;
}


.footer-feedback__wrapper {
    background: #00c0e2;
    padding: 50px;
}

.footer-feedback {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.footer-feedback > div {
    margin: 0 20px;
}

.footer-feedback__btn {
    background: #3e4f59;
    color: #fff;
    height: 60px;
    width: 410px;
    line-height: 61px;
    margin: 0 auto;
    display: block;
    font-size: 20px;
    border: 0;
    cursor: pointer;
    transition: .2s;
    text-decoration: none;
    text-align: center;
}

.footer-feedback__btn:hover {
    opacity: .8;
}

.footer-feedback__title {
    font-weight: bold;
    font-size: 20px;
}


.calculate {
    display: flex;
    margin: 70px 0 50px 0;
}

.calculate > div {
}

.calculate > div:first-child {
    width: 45%;
    background: #00c0e2;
}

.calculate > div:last-child {
    width: 40%;
}


.calculate__right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 140%;
    padding: 0 20px;
    overflow-x: auto;
    font-size: 20px;
}

.calculate__right > div {
    width: 100%;
}

.calculate__left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding: 15px 50px 0px 50px;
}

.calculate__left > div {
    width: 100%;
}

.calculate__title {
    font-weight: bold;
    margin-top: 100px;
    margin-bottom: 100px;
    text-align: center;
    font-size: 24px;
}


h3.calculate__left-title {
    color: #fff;
    font-size: 20px;
    text-align: center;
    margin: 30px 0;
}

h4.calculate__left-title {
    color: #fff;
    font-size: 18px;
    text-align: center;
    margin: 30px 0;
}

.about-crm__form-input_calculate {
    max-width: 150px;
    text-align: center;
}

.calculate__inputs {
    display: flex;
    justify-content: center;
    margin: 0 -10px;
}

.calculate__inputs > div {
    margin: 0 10px;
    text-align: center;
    color: #ffffff;
}

.calculate__input-label {
    margin-bottom: 5px;
    font-size: 18px;
}

.calculate__result {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    align-items: center;
}

.calculate__result-title {
    color: #ffffff;
    font-size: 20px;
    padding-right: 20px;
}

.calculate__result-input {
    background: #3e4f59;
    text-align: center;
    font-weight: bold;
    border: 1px #000 solid;
    height: 40px;
    color: #fff;
    font-size: 24px;
    width: 110px;
}

.calculate__description {
    color: #ffffff;
    font-size: 16px;
    line-height: 18px;
    border-collapse: collapse;
}

.calculate-table, .calculate-table th, .calculate-table td {
    border: 1px #000000 solid;
    padding: 0;
    border-collapse: collapse;
    border-spacing: 0;
}

.calculate-table tr td:first-child {
    width: 90px;
    color: #ffffff;
}


.calculate-table tr:nth-child(odd) td {
    background: #ffffff;
}

.calculate-table tr:nth-child(even) td {
    background: #f5f5f5;
}

.calculate-table tr td.bg_white {
    background: #ffffff;
}

.calculate-table tr:nth-child(even) td:first-child {
    background: #0097af;
}

.calculate-table tr:nth-child(odd) td:first-child {
    background: #00c6e5;
}

.calculate-table tr td {
    height: 35px;
}


.calculate-table {
    width: 100%;
    min-width: 565px;
}

.calculate-table thead th {
    background: #0098b0;
    font-size: 12px;
    padding: 2px 10px;
    color: #ffffff;
}

.calculate-table td {
    vertical-align: middle;
    text-align: center;
}


.calculate-table-header {
    display: flex;
    justify-content: space-between;
    margin: 0 0px;
    margin-bottom: 15px;
}

.calculate-table-header > div {
    width: 100%;
    margin: 0 5px;
}

.calculate-table-header__table-title {
    border: 1px #d8d8d8 solid;
    background: rgb(1, 118, 131);
    background: linear-gradient(0deg, rgba(1, 118, 131, 1) 0%, rgba(40, 227, 254, 1) 100%, rgba(25, 87, 178, 1) 100%);
    color: #fff;
    font-weight: bold;
    text-align: center;
    height: 35px;
    line-height: 35px;
    padding: 0 20px;
}

.calculate-table-header__table-value {
    border: 1px #d8d8d8 solid;
    margin-top: -1px;
    text-align: center;
    height: 35px;
    line-height: 35px;
    padding: 0 20px;
    white-space: nowrap;
}

.calculate-table-header__title-text {
    font-size: 26px;
    color: #00c6e5;
    font-weight: bold;
    margin: -4px 0 0 0;
    line-height: 27px;
    text-align: right;
}

.calculate-table-header__title-logo {
    text-align: right;
}

.calculate__table-wrapper {
    overflow-x: auto;
    width: 100%;
}


.modal {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: flex-end;
}

.modal-content {
    background-color: #fff;
    margin: 0px auto 130px auto;
    padding: 20px;
    width: 50%;
    font-size: 20px;
    display: flex;
    margin-top: 45vh;
    align-items: center;
    justify-content: center;

}


.tooltip-img {
    display: none;
}

[data-tooltip="img"].active .tooltip-img {
    display: block;
}

[data-tooltip="img"] {
    position: relative;
}

[data-tooltip="img"] .tooltip-img {
    position: absolute;
    left: -60px;
    top: -158px;
}

[data-tooltip="img"] .tooltip-img img {
    width: 150px;
    height: 150px;
    min-width: 150px;
    min-height: 150px;
}


@media all and (max-width: 1100px) {

    .about-crm {
        flex-direction: column;
        align-items: center;
    }

    .about-crm > div {
        width: 100%;
    }

    .about-crm__left > div {
        margin: 0 auto;
    }

    .about-crm__form-wrapper {
        margin: 0 auto;
    }

    .map__right > div {
        height: 100%;
        top: 0;
    }

    .articles__items {
        flex-direction: column;
    }

    .articles__items > div {
        width: 100%;
    }

    .articles__item > div:first-child {
        width: 320px;
    }

    .calculate {
        flex-direction: column;
    }

    .calculate > div:first-child,
    .calculate > div:last-child {
        width: 100%;
    }

    .calculate > div:first-child {
        margin-bottom: 40px;
    }
}


@media all and (max-width: 1000px) {

    .header__block-center {
        display: none;
    }

    .map {
        margin: 30px 0 0px 0;
        align-items: center;
        flex-direction: column;
    }

    .map > div:first-child,
    .map > div:last-child {
        width: 100%;
    }

    .map__left {
        justify-content: center;
    }

    .map__left,
    .map__right,
    .map__form-wrapper {
        padding: 30px;
    }

    .map__right {
        height: 640px;
        padding: 0;
        margin: 0;
    }

    .footer-top {
        flex-wrap: wrap;
    }

    .footer-top > div:nth-child(1) {
        width: 50%;
    }

    .footer-top > div:nth-child(2) {
        width: 50%;
    }

    .footer-top > div:nth-child(3) {
        width: 100%;
    }

    .footer-top {
        margin: 0 -60px;
    }

    .footer-top > div {
        padding: 0 20px;
        margin: 0;
    }

    .footer-feedback {
        flex-direction: column;
    }

    .footer-feedback > div {
        margin: 10px 0px;
    }

    .footer-feedback__btn {
        width: 280px;
        font-size: 14px;
    }
}

@media all and (max-width: 700px) {
    .map__right {
        height: 350px;
    }

    .articles__item > div:first-child {
        width: 100%;
        height: 200px;
    }

    .articles__item {
        flex-wrap: wrap;
    }

    .articles__item > div:last-child {
        padding: 0;
        width: 100%;
    }

    .feedback__btn {
        width: 100%;
    }

    .feedback {
        padding: 40px 30px;
    }

    .calculate__inputs {
        flex-wrap: wrap;
    }

    .calculate-table-header {
        flex-wrap: wrap;
    }

    .calculate-table-header > div {
        margin-bottom: 20px;
    }
}


@media all and (max-width: 550px) {
    .about-crm__left,
    .about-crm__right,
    .about-crm__form-wrapper {
        padding: 30px;
    }

    .about-crm__video {
        width: 100%;
    }

    .footer-top > div:nth-child(1) {
        width: 100%;
    }

    .footer-top > div:nth-child(2) {
        width: 100%;
    }
}


