:root {
    --clr-black: #1a1a1a;
    --clr-black-2: #2a2a2a;
    --clr-white: #fff;
    --clr-green-1:#ccde53;
    --clr-green-2:#a6b739;
    --clr-grey-1: #f1f1f1;
    --clr-grey-2: #c5c5c5;
    --clr-grey-3: #a3a3a3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--clr-black);
    font-size: 19px;
    font-weight: 500;
    overflow-x: hidden;
    letter-spacing: -0.5px;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    display: block;
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--clr-black);
    display: block;
}

.flex-s-c {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.flex-e-c {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.flex-s-s {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
.flex-b-c {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.flex-c-c {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.column-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
}
.col-1 {
    grid-area: 1 / 1 / 2 / 2;
}
.col-2 {
    grid-area: 1 / 2 / 2 / 3;
}
.col-3 {
    grid-area: 1 / 3 / 2 / 4;
}
.col-4 {
    grid-area: 1 / 4 / 2 / 5;
}
.col-2parts {
    grid-area: 1/2/2/4;
   }
.col-2parts-menu {
    grid-area: 1/3/2/5;
}
.col-3parts {
    grid-area: 1/2/2/5;
   }
section {
    margin: 70px 0;
}
section.main {
    margin-top: 20px;
}
.green-circle, .black-circle{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 7px;
    background: var(--clr-green-2);
}
.black-circle {
    background: var(--clr-black);
}
.span-green {
    color: var(--clr-green-2);
}
.lid__phone-call-mobile, .svyaz, .main__mobile-vs, .main__image-mobile {
    display: none;
}
/****************HEADER******************/
header {
    font-size: 17px;
}
header .column-grid {
    border-bottom: 1px solid var(--clr-black);
    padding-bottom: 10px;
}
.logo-description {
    font-size: 16px;
    line-height: 100%;
}
.logo {
    height: 50px;
    margin-right: 10px;
}
.header__menu__links {
    padding: 5px 17px;
    border-radius: 50px;
    border: 1px solid var(--clr-black);
}
header .col-2 .flex-b-c, header .flex-e-c {
   height: 100%;
}
.header__menu__links:hover {
    background: var(--clr-black);
    color: var(--clr-white);
    transition: background 0.7s;
}
header .col-3 {
    grid-area: 1 / 3 / 2 / 5;
}
.header__location {
    line-height: 100%;
    text-align: end;
}
.menu {
    width: 50px;
    height: 50px;
    background: url(./images/menu.png) ;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    position: relative;
    transition: background 0.7s;
}
.menu:hover {
    width: 50px;
    height: 50px;
    background: url(./images/menu-hover.png) ;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}
.call-number {
    padding: 7px 20px 7px 7px;
    background-color: var(--clr-green-1);
    color: var(--clr-black);
    font-weight: 600;
    border-radius: 50px;
    margin: 0 10px 0 15px;
    transition: background 0.7s;
    font-size: 18px;
}
.call-number img {
    width: 35px;
    margin-right: 5px;
}
.call-number:hover {
    background: var(--clr-black);
    color: var(--clr-white);
}
/***************************SECTION MAIN***************************/
.h1__span {
    font-size: 70px;
    letter-spacing: -5px;
    font-weight: 800;
    display: block;
    margin-left: 45px;
}
.h1__span-big {
    font-size: 165px;
    letter-spacing: -10px;
    font-weight: 800;
    display: block;
    line-height: 80%;
    margin-right: 30px;
}
.main p {
    font-size: 20px;
}
.main__image {
    width: 100%;
    height: 420px;
    background: url(./images/main.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100%;
    border-radius: 20px;
    margin-top: 10px;
}
/***********************SECTION ABOUT*****************/
.block-title {
    font-size: 24px !important;
    font-weight: 500;
}

.about .col-2 {
    grid-area: 1/2/2/4;
}
.about__bigtext {
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 20px;
}
.about .flex-s-s p {
    width: 50%;
}
.about .flex-s-s img {
    width: 48%;
    margin-left: 20px;
}
.about img {
    width: 100%;
    border-radius: 10px;
}
/***********************SECTION SERVICE***************/
.service {
    padding: 70px 0;
    background: var(--clr-green-1);
}

h2 {
    width: 90%;
    font-size: 46px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: -3px;
    line-height: 100%;
    margin-bottom: 30px;
}
h3, .service__number {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -1px;
}
.service__number {
    font-size: 26px;
}
.service__item {
    padding: 30px 0;
    border-top: 1px solid var(--clr-black);
}
.service__item:last-child {
    border-bottom: 1px solid var(--clr-black);
}
.service__item__description {
    width: 90%;
    margin-top: 10px;
    opacity: 0.7;
}
/**************SECTION CRANES**************/

.cranes img {
    width: 100%;
    height: 250px;
    border-radius: 5px;
}
.cranes .flex-b-c {
    border-bottom: 1px solid var(--clr-grey-2);
    padding: 15px 0 5px 0;
}
.cranes .column-grid:last-child {
    margin-top: 30px;
}
/************SECTION PRICE****************/
.price {
    padding: 70px 0;
    background: var(--clr-grey-1);
}
.price h2 {
    margin-bottom: 50px;
}
.price__number {
    margin-right: 30px;
}

.price p {
    font-size: 24px;
    font-weight: 500;
}
.price .flex-b-c {
    padding: 20px 0;
    border-bottom: 1px solid var(--clr-black);
}
.price .col-3parts  > :nth-child(2) {
    border-top: 1px solid var(--clr-black);
}
.price__price-popular {
    font-size: 16px !important;
    font-weight: 500;
}
.star {
    width: 15px;
    margin-right: 5px;
}
.price__dopinfo {
    font-size: 18px !important;
    margin-top: 50px;
    opacity: 0.7;
}
/********SECTION LID*********/
.lid__lid-wrap {
    background: var(--clr-black);
    padding: 50px;
    border-radius: 20px;
    color: var(--clr-white);
}
.lid__image {
    width: 45%;
}
.lid__lid-wrap__text {
    width: 50%;
}
.lid__lid-wrap__text p {
   color: var(--clr-grey-3);
}
.lid__lid-wrap__text .span-green {
    color: var(--clr-green-1);
}
.lid__lid-wrap__text img {
    width:35px;
    margin-right: 5px;
}
.lid__phone-call {
    padding: 5px 20px 5px 7px;
    background: var(--clr-green-1);
    border-radius: 50px;
    margin-top: 50px;
    width: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    font-weight: 600;
    font-size: 20px;
    transition: background 0.5s;
}
.lid__phone-call:hover {
    background: var(--clr-green-2);
}
/****************SECTION ADVANTAGES**************/
.advantages .column-grid:last-child .col-1, .advantages .col-2, .advantages .col-3, .advantages .col-4 {
    background: var(--clr-grey-1);
    padding: 30px;
    border-radius: 10px;
}
.advantages .col-2parts {
    padding: 30px;
    border-radius: 10px;
    background: var(--clr-green-1);
}
.advantages .column-grid:last-child {
    margin-top: 15px;
}

.advantages__number {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 50px;
}
.advantages__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}
.advantages__text {
    opacity: 0.7;
    font-size: 17px;
}
/*******************SECTION PROJECTS**************/
.projects {
    padding: 70px 0;
    background: var(--clr-grey-1);
    overflow: hidden;
}
.projects__block__title {
    font-size: 18px;
    font-weight: 600;
    margin: 5px 0;
}
.projects__block__text {
    font-size: 16px;
    opacity: 0.7;
}
.owl-carousel {
    cursor: grab;
}
.owl-carousel img {
    border-radius: 10px;
}
.projects .col-3parts {
    position: relative;
}
.scroll {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--clr-black);
    z-index: 10;
    top: 180px;
    left: 660px;
    color: var(--clr-white);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.7s;
}
.scroll-active {
    opacity: 0;
}
.owl-theme .owl-nav {
    margin: 0;
    position: absolute;
    top: -75px;
    right: 0px;
    font-size: 32px;
}
.owl-next,
.owl-prev {
    opacity: 0.5 !important;
}
.owl-next:hover,
.owl-prev:hover {
    background: none !important;
    opacity: 1 !important;
    color: var(--clr-black) !important;
}

.projects__block {
    width: 340px;
}
.projects__block-1 {
    width: 690px;
}
/****************SECTION CLIENTS***********/

.clients__wrap {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}
.block {
    border: 1px solid var(--clr-grey-2);
    border-radius: 5px;
}
.block img {
    width: 100%;
    height: 100%;
}
/**************SECTION CONTACTS*************/
.contacts {
    padding: 70px 0;
    background: var(--clr-grey-1);
    margin-bottom: 0 !important;
}
.contacts img {
    width: 100%;
    border-radius: 10px;
}
.contacts__title {
    font-size: 15px;
    opacity: 0.4;
}
.contacts__block {
    margin-bottom: 30px;
}
.contacts__block:last-child {
    margin-bottom: 0;
}

/************FOOTER***************************/
footer {
    padding: 70px 0;
    background: var(--clr-black-2);
}
footer p, footer a {
    color: var(--clr-white);
}

.footer__title {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
footer li a {
    opacity: 0.6;
    font-size: 16px;
    font-weight: 400;
    padding: 5px 0;
    line-height: 100%;
}
footer li a:hover {
    color: var(--clr-green-1);
    opacity: 1;
}
.footer__lid-title {
    font-size: 22px;
    text-transform: uppercase;
}
.footer__lid-description {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.6;
    margin: 15px 0;
}
footer .col-4 img {
    width: 30px !important;
    margin-right: 5px;
}
footer .col-4 a {
    color: var(--clr-black);
    margin-top: 0;
    font-size: 16px;
    transition: background 0.5s;
}
footer .col-4 a:hover {
    background: var(--clr-green-2);
}
.footer__copyrights {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--clr-grey-3);
    opacity: 0.6;
    color: var(--clr-white);
    font-size: 14px;
    font-weight: 300;
}
.footer__copyrights a {
    color: var(--clr-white) !important;
    font-size: 14px !important;
    font-weight: 300;
    text-align: right;
    letter-spacing: 0;
}
.footer__copyrights a:hover {
    color: var(--clr-green-1) !important;
    background: none !important;
}
.footer__copyrights .span-green {
    font-size: 18px;
    font-weight: 700;
}
/********************MPDAL MENU***************************/
.modal-menu-wrap {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--clr-black-2);
    z-index: 10000;
    overflow-y: scroll;
    overflow-x: hidden;
    display: none;
}
.modal-menu-wrap-active {
    display: block;
    animation: menuShow 1s;
}

@keyframes menuShow {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframe menuShow {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframe menuShow {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-menu-wrap::-webkit-scrollbar {
    display: none;
}

.modal-menu-wrap::-webkit-scrollbar-track {
    display: none;
}

.modal-menu-wrap::-webkit-scrollbar-thumb {
    display: none;
}
.close {
    width: 30px;
    height: 30px;
    background: url(./images/close.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}
.close:hover {
    transform: rotate(180deg);
    transition: transform 0.5s;
}

.modal-menu-wrap-top {
    padding: 0 5px 10px 0;
    border-bottom: 1px solid var(--clr-grey-3);
}
.modal-menu-wrap-top .logo-description {
    color: var(--clr-white);
}
.modal-menu-wrap .green-circle {
    width: 10px;
    height: 10px;
}
.modal-menu-wrap-body span, .modal-menu-wrap-body p {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 300;
}
.modal-menu-wrap-body span {
    margin-right: 10px;
    font-weight: 600;
    font-size: 16px;
}
.modal-menu-wrap-body p {
    color: var(--clr-white);
    opacity: 0.4;
}
.modal-menu-wrap-body-block-title {
    margin-bottom: 15px;
}
.modal-menu-wrap-body {
   padding: 40px 0;
}
.modal-menu-wrap a {
    color: var(--clr-white);
    padding: 7px 0;
    font-weight: 400;
}
.modal-menu-wrap a:hover {
    color: var(--clr-green-1);
}
.modal-menu-wrap-body__contacts {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--clr-grey-3);
}
h4 {
    text-transform: uppercase;
    font-size: 22px;
    color: var(--clr-white);
    letter-spacing: 0;
    font-weight: 500;
}
.modal-menu-wrap-body__contacts__phone-call img {
    width: 35px;
    margin-right: 5px;
}
.modal-menu-wrap-body__contacts__phone-call {
    margin-top: 20px;
    background: var(--clr-green-1);
    border-radius: 50px;
    width: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    color: var(--clr-black) !important;
    font-weight: 500 !important;
    transition: background 0.5s;
    padding: 6px 20px 6px 6px !important;
}
.modal-menu-wrap-body__contacts__phone-call:hover {
    background: var(--clr-green-2);
}
/***************DOP PAGES***************/

.dop-pages__h1 {
    font-size: 46px;
    width: 70%;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: -3px;
    line-height: 100%;
}
.dop-pages__wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.dop-pages__wrap__block p {
    margin-bottom: 20px;
}
.dop-pages__wrap__block p:last-child {
    margin-bottom: 0;
}
/*************MOBILE***************/
@media screen and (max-width: 1439px) {
    .container {
        max-width: 1280px;
    }
    body {
        font-size: 18px;
    }
    .logo {
        height: 45px;
    }
    header {
        font-size: 15px;
    }
    .header__menu__links {
        padding: 3px 14px;
    }
    .call-number img {
        width: 30px;
    }
    .call-number {
        padding: 5px 15px 5px 6px;
        font-size: 16px;
    }
    .menu {
        width: 45px;
        height: 45px;
    }
    header .column-grid {
        padding-bottom: 7px;
    }
    .h1__span-big {
        font-size: 149px;
    }
    .h1__span {
        font-size: 60px;
        margin-left: 40px;
    }
    .main__image {
        height: 400px;
    }
    .main p {
        font-size: 17px;
    }
    section {
        margin: 60px 0;
    }
    section.main {
        margin-top: 20px;
    }
    .about__bigtext {
        font-size: 21px;
    }
    .block-title {
        font-size: 22px !important;
    }
    .service, .price, .projects, .contacts, footer {
        padding: 60px 0;
    }
    h2, .dop-pages__h1 {
        font-size: 40px;
    }
    
    h3 {
        font-size: 26px;
    }
    .service__number {
        font-size: 24px;
    }
    h4 {
        font-size: 20px;
    }
    .service__item {
        padding: 25px 0;
    }
    .price p {
        font-size: 22px;
    }
    .advantages__number {
        margin-bottom: 40px;
    }
    .advantages__title, .advantages__number {
        font-size: 21px;
    }
    .advantages .col-2parts, .advantages .column-grid:last-child .col-1, .advantages .col-2, .advantages .col-3, .advantages .col-4 {
        padding: 25px;
    }
    .projects__block {
        width: 300px;
    }
    .projects__block-1 {
        width: 610px;
    }
    .lid__phone-call {
        font-size: 18px;
    }
    .scroll {
        left: 580px;
    }
    .footer__lid-title {
        font-size: 20px;
    }
    .footer__title {
        font-size: 15px;
    }
    .modal-menu-wrap-body__contacts__phone-call {
        padding: 5px 15px 5px 5px !important;
    }
    .modal-menu-wrap-body__contacts__phone-call img {
        width: 30px;
    }
    .price h2 {
        margin-bottom: 40px;
    }
    .cranes img {
        height: 220px;
     }
}
@media screen and (max-width: 1279px) {
    .container {
        max-width: 1024px;
    }
   
    body {
        font-size: 17px;
    }
    .column-grid, .clients__wrap {
        gap: 12px;
    }
    .advantages .column-grid:last-child {
        margin-top: 12px;
    }
    section {
        margin: 50px 0;
    }
    .service, .price, .projects, .contacts, footer {
        padding: 50px 0;
    }
    header .col-2 {
        display: none;
    }
    .logo {
        height: 40px;
    }
    .logo-description {
        font-size: 14px;
    }
    .menu {
        width: 45px;
        height: 40px;
    }
   
    .h1__span-big {
        font-size: 110px;
        letter-spacing: -7px;
        margin-right: 20px;
    }
    .main p {
        font-size: 16px;
    }
    .h1__span {
        font-size: 45px;
        margin-left: 30px;
        letter-spacing: -3px;
    }
    .main__image {
        height: 380px;
    }
    .about__bigtext {
        font-size: 23px;
    }
    .about .col-4 {
        display: none;
    }
    .about .col-2 {
        grid-area: 1 / 2 / 2 / 5;
    }
    .about .col-2 .flex-s-s p {
        font-size: 19px;
    }
    .service__item__description {
        width: 93%;
    }
    .block-title {
        font-size: 20px !important;
    }
    h2, .dop-pages__h1 {
        font-size: 36px;
        margin-bottom: 25px;
    }
    h3 {
        font-size: 24px;
    }
    .service__number {
        font-size: 22px;
    }
    .price h2 {
        margin-bottom: 30px;
    }
    .price p {
        font-size: 20px;
    }
    .price .flex-b-c {
        padding: 15px 0;
    }
    .cranes p {
        font-size: 16px;
    }
    .advantages .col-2parts, .advantages .column-grid:last-child .col-1, .advantages .col-2, .advantages .col-3, .advantages .col-4 {
        padding: 15px;
    }
    .advantages__title, .advantages__number {
        font-size: 18px;
    }
    .projects__block {
        width: 240px;
    }
    .projects__block-1 {
        width: 490px;
    }
    .projects__block__title {
        font-size: 16px;
    }
    .projects__block__text {
        font-size: 14px;
        opacity: 0.7;
    }
    .scroll {
        width: 70px;
        height: 70px;
        left: 460px;
        top: 140px;
        font-size: 12px;
    }
    .owl-theme .owl-nav {
        font-size: 26px;
        top: -65px;
    }
    .price__dopinfo {
        margin-top: 30px;
    }
    .advantages__text {
        font-size: 16px;
    }
    .contacts .col-2 {
        grid-area: 1 / 2 / 2 / 4;
    }
    .contacts .col-3 {
        grid-area: 1 / 4 / 2 / 5;
        margin-left: -35px;
    }
    .contacts__block {
        margin-bottom: 20px;
    }
    .close {
        width: 25px;
        height: 25px;
    }
    .modal-menu-wrap-body {
        padding: 30px 0;
    }
    .modal-menu-wrap-body__contacts {
        margin-top: 25px;
        padding-top: 25px;
    }
    .modal-menu-wrap-body-block-title {
        margin-bottom: 10px;
    }
    .modal-menu-wrap-top {
        padding-bottom: 7px;
    }  
    .cranes img {
        height: 170px;
     }
}
@media screen and (max-width: 1023px) {
    .container {
        max-width: 960px;
    }
    body {
        letter-spacing: 0 !important;
    }
    header {
        font-size: 14px;
    }
    .call-number {
        padding: 4px 10px 4px 5px;
        font-size: 15px;
        margin: 0 5px 0 10px;
    }
    header .column-grid, .modal-menu-wrap-top {
        padding: 5px 0;
    }
    .about__bigtext {
        font-size: 22px;
    }
    .h1__span-big {
        font-size: 105px;
    }
    .h1__span {
        font-size: 40px;
    }
    h2, .dop-pages__h1 {
        font-size: 34px;
        letter-spacing: -2px;
    }
    h3 {
        font-size: 23px;
    }
    .service__number {
        font-size: 21px;
    }
    .price p {
        font-size: 19px;
    }
    .lid__lid-wrap {
        padding: 50px 30px;
    }
    .lid .lid__phone-call {
        margin-top: 40px;
    }
    .projects__block {
        width: 222px;
    }
    .projects__block-1 {
        width: 455px;
    }
    .scroll {
        left: 425px;
    }
    footer li a, .footer__lid-description {
        font-size: 14px;
    }
    .footer__title {
        font-size: 13px;
    }
    .footer__lid-title {
        font-size: 16px;
    }
    .modal-menu-wrap-body .col-2 {
        grid-area: 1/1/2/3;
        padding-left: 10px;
    }
    footer .logo-description {
        display: none;
    } 
    .advantages .col-2parts {
        grid-area: 1/1/2/3;
    }
    .advantages .column-grid .col-4 {
        grid-area: 1/3/2/5;
    }
    .advantages .column-grid:last-child .col-1 {
        grid-area: 2/1/3/3;
    }
    .advantages .column-grid:last-child .col-2 {
        grid-area: 2/3/3/5;
    }
    .advantages .column-grid:last-child .col-3 {
        grid-area: 3/1/4/3;
    }
    .advantages .column-grid:last-child .col-4 {
        grid-area: 3/3/4/5;
    }
    .advantages .column-grid:last-child {
        margin-top: 0;
    }
    .advantages .col-2parts, .advantages .column-grid:last-child .col-1, .advantages .col-2, .advantages .col-3, .advantages .col-4 {
        padding: 20px;
    }
    .advantages__title, .advantages__number {
        font-size: 20px;
    }
    .advantages__number {
        margin-bottom: 20px;
    }
    .cranes img {
        height: 160px;
     }
  
}
@media screen and (max-width: 959px) {
    .container {
        max-width: 820px;
        padding: 0 15px;
    }
    .h1__span-big {
        font-size: 85px;
    }
    .h1__span {
        margin-left: 25px;
        font-size: 35px;
    }
    .main p {
        font-size: 14px;
    }
    header .col-3 {
        grid-area: 1 / 2 / 2 / 5;
    }
    section {
        margin: 40px 0;
    }
    .service, .price, .projects, .contacts, footer {
        padding: 40px 0;
    }
    .about .col-1,
    .service .col-1,
    .cranes .column-grid:first-child .col-1,
    .price .col-1,
    .advantages .column-grid:first-child .col-1,
    .projects .column-grid:first-child .col-1,
    .clients .col-1,
    .contacts .col-1,
    footer .col-1 {
        grid-area: 1 / 1 / 2 / 5;
        margin-bottom: 10px;
    }
    .cranes .column-grid:first-child {
        gap: 12px;
    }
   
    .about .col-2 {
        grid-area: 2 / 1 / 3 / 5;
    }
    .block-title {
        font-weight: 600;
    }
    .about__bigtext {
        font-size: 23px;
    }
    .col-3parts {
        grid-area: 2 / 1 / 3 / 5;
    }
    .service__item {
        padding: 20px 0;
    }
    h2, .dop-pages__h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }
     .dop-pages__wrap {
        display: block;
    }
    .dop-pages__wrap__block p {
        margin-bottom: 15px;
    }
    .cranes .column-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 12px;
    }
    .cranes .column-grid .col-1 {
        grid-area: 1 / 1 / 2 / 2;
    }
    .cranes .column-grid .col-2 {
        grid-area: 1 / 2 / 2 / 3;
    }
    .cranes .column-grid .col-3 {
        grid-area: 2 / 1 / 3 / 2;
    }
    .cranes .column-grid .col-4 {
        grid-area: 2 / 2 / 3 / 3;
    }
    .lid__image {
        width: 49%;
    }
    .lid h2 {
        font-size: 30px;
    }
    .lid .lid__phone-call {
        margin-top: 30px;
        font-size: 16px;
        padding: 4px 15px 4px 5px;
    }
    .lid__lid-wrap__text img {
        width: 30px;
    }
    .lid__lid-wrap {
        padding: 40px 20px;
    }
    .projects__block {
        width: 255px;
    }
    .projects__block-1 {
        width: 550px;
    }
	.scroll {
		display:none;
	}
    .owl-theme .owl-nav {
       top: -60px;
    }
    .clients__wrap {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
    .contacts .col-2 {
        grid-area: 2 / 1 / 3 / 3;
    }
    .contacts .col-3 {
        grid-area: 2 / 3 / 3 / 5;
        margin-left: 0;
    }
    .contacts img {
      height: 220px;
      width: auto;
    }
    .contacts h2 {
       margin-bottom: 10px;
    }
    footer .col-2 {
        grid-area: 2 / 1 / 3 / 3;
    }
    footer .col-3 {
        grid-area: 2 / 3 / 3 / 5;
    }
    footer .col-4 {
        grid-area: 3 / 1 / 4 / 5;
        margin-top: 20px;
        padding-top: 30px;
        border-top: 1px solid var(--clr-grey-3);
    }
    .footer__lid-title {
        font-size: 20px;
    }
    .footer__title {
        font-size: 15px;
    }
    footer li a, .footer__lid-description {
        font-size: 16px;
    }
    .footer__copyrights .column-grid {
        display: block;
    }
    .footer__copyrights a {
        text-align: left;
    }
    .footer__copyrights {
        opacity: 1;
    }
    .footer__copyrights p, .footer__copyrights a {
        opacity: 0.7;
    }
    .footer__lid-description {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .cranes img {
        height: 290px;
     }
}
@media screen and (max-width: 819px) {
    .container {
        max-width: 640px;
    }
    .header__location {
        display: none;
    }
    .main p {
        display: none;
    }
    .h1__span-big {
        margin-right: 0;
        font-size: 93px;
    }
    .h1__span  {
        font-size: 40px;
    }
    .main__image {
        height: 340px;
    }
    .about .col-2 .flex-s-s p {
        font-size: 18px;
    }
    .about__bigtext {
        font-size: 20px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 22px;
    }
    .service__number  {
        font-size: 20px;
    }
    .price p {
        font-size: 18px;
    }
    .lid__lid-wrap .flex-b-c {
        flex-direction: column;
    }
    .lid__lid-wrap__text, .lid__image {
        width: 100%;
        text-align: center;
    }
    .lid h2 {
        width: 100%;
    }
    .lid__lid-wrap__text .lid__phone-call {
        display: none;
    }
    .lid__image {
        margin: 30px 0;
    }
    .lid__lid-wrap__text p {
        font-size: 19px;
    }
    .lid__phone-call-mobile img {
        width: 35px;
        margin-right: 5px;
    }
    .lid__phone-call-mobile {
        display: block;
        padding: 7px 20px 7px 7px;
        background: var(--clr-green-1);
        border-radius: 50px;
        width: fit-content;
        width: -webkit-fit-content;
        width: -moz-fit-content;
    }
    .projects__block {
        width: 240px;
    }
    .projects__block-1 {
        width: 400px;
    } 
    .modal-menu-wrap-body .column-grid {
        display: block;
    }
    .modal-menu-wrap-body .col-2 {
        margin-bottom: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid var(--clr-grey-3);
    }
    .cranes img {
        height: 225px;
     }
}
@media screen and (max-width: 639px) {
    .container {
        max-width: 414px;
    }

       .call-number {
        display: none;
    }
    .main .flex-s-c, .main__mobile-vs {
        display: block;
    }
    .main__mobile-vs {
        padding: 10px;
        background: var(--clr-green-1);
        border-radius: 5px;
        width: 100%;
        margin: 20px 0;
    }
    .vr-line {
        width: 1px;
        height: 60px;
        background: var(--clr-black);
        opacity: 0.6;
    }
    .main__mobile-vs__block__title {
        display: block !important;
        font-size: 16px !important;
        text-align: center !important;
    }
    .main__mobile-vs__block__description {
        font-size: 26px !important;
        font-weight: 700 !important;
        text-align: center !important;
        display: block !important;
    }
    .main__mobile-vs__block {
        width: 49%;
    }
    .h1__span-big {
        font-size: 55px;
        letter-spacing: -2px;
        text-align: center;
    }
    .h1__span {
        margin: 0;
        text-align: center;
        font-size: 80px;
        letter-spacing: -1px;
        line-height: 120%;
    }
    .main__image {
        display: none;
    }
	.main__image-mobile {
		width:100%;
		display:block;
		border-radius:10px;
	}
    section {
        margin: 30px 0;
    }
    .service, .price, .projects, .contacts, footer {
        padding: 30px 0;
    }
    .about .col-2 .flex-s-s {
        display: block;
    }
    .about .col-2 .flex-s-s p {
        width: 100%;
    }
    .about .flex-s-s img {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
    h2, .dop-pages__h1 {
        font-size: 26px;
        width: 100%;
    }
    .dop-pages__h1 {
        margin-bottom: 20px;
    }
    .cranes p {
        font-size: 14px;
    }
    .price__number {
        display: none;
    }
    .popular {
        display: none;
    }
    .advantages .column-grid, .contacts .column-grid {
        display: block;
    }
    .advantages .column-grid >div {
        margin: 10px 0;
    }
    .projects__block {
        width: 300px;
    }
    .projects__block-1 {
        width: 300px;
    }
    .contacts img {
        width: 100%;
        margin-top: 20px;
        height: auto;
    }
    footer {
        padding-bottom: 80px;
    }
    footer .column-grid {
        display: block;
    }
    footer .col-3 {
        margin-top: 20px;
        padding-top: 30px;
        border-top: 1px solid var(--clr-grey-3);
    }
    footer .col-2 {
        margin-top: 30px;
    }
    footer li a {
        padding: 7px 0;
    }
    .modal-menu-wrap a {
        font-size: 20px;
    }
    .modal-menu-wrap a {
        padding: 10px 0;
    }
    /*SVYAZ*/
    .svyaz {
        display: block;
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        border-top-right-radius: 5px;
        border-top-left-radius: 5px;
        z-index: 1000;
        padding: 3px 0;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
        background: #eeeeee;
    }

    .svyaz a {
        font-size: 16px;
    }

    .svyaz-block {
        width: 200px;
        opacity: 0.8;
    }

    .svyaz-block img {
        width: 25px;
        margin-right: 5px;
    }

    .bottom-menu {
        width: 40px;
        height: 40px;
        background: url(./images/menu-mobile.png);
        background-position: center;
        background-size: 100%;
        background-repeat: no-repeat;
    }
    .advantages h2 {
        margin-top: 20px;
    }
    .lid h2 {
        font-size: 26px;
    }
    .dop-pages__h1 {
        width: 100%;
        font-size: 28px;
    }
    .cranes img {
        height: 140px;
     }
	    .clients__wrap {
        grid-template-columns: repeat(2, 1fr);
    }
.contacts__block a {margin: 2px 0;}
}

@media screen and (max-width: 413px) {
    .container {
        max-width: 395px;
    }
    .h1__span-big {
        font-size: 50px !important;
    }
    .h1__span {
        font-size: 75px !important;
    }
    .main__mobile-vs__block__description {
        font-size: 24px !important;
    }
  
    .cranes .flex-b-c {
        padding-top: 10px;
    }
    .cranes img {
        height: 130px;
     }
   
}
@media screen and (max-width: 394px) {
    .container {
        max-width: 375px;
    }
    .h1__span-big {
        font-size: 50px;
    }
    .h1__span {
        font-size: 70px !important;
    }
    h2, .lid h2, .dop-pages__h1 {
        font-size: 24px;
    }
    h3 {
        font-size: 20px;
    }
    .service__number {
        font-size: 18px;
    }
    .lid__phone-call-mobile {
        padding: 5px 15px 5px 5px;
    }
    .clients__wrap {
        gap: 10px;
    }
    .cranes .column-grid {
        gap: 25px 10px;
    }
    .cranes .column-grid:last-child {
        margin-top: 25px;
    }
    .cranes img {
        height: 125px;
     }
}
@media screen and (max-width: 374px) {
    .container {
        max-width: 360px;
        padding: 0 10px;
    }
    .h1__span-big {
        font-size: 50px !important;
    }
    .h1__span {
        font-size: 65px !important;
    }
    .main__mobile-vs__block__description {
        font-size: 22px !important;
    }
    .main__mobile-vs__block__title {
        font-size: 15px !important;
    }
    .main__mobile-vs {
        margin: 15px 0 20px 0;
        padding: 7px;
    }
    .vr-line {
        height: 55px;
    }
    .cranes .column-grid {
        display: block;
    }
    .cranes h2 {
        margin: 20px 0 0 0;
    }
    .cranes p {
        font-size: 17px;
    }
    .cranes .column-grid>div {
        margin-bottom: 30px;
    }
    .projects__block {
        width: 280px;
    }
    .cranes img {
        height: auto;
     }
	   .owl-theme .owl-nav {
       top: -57px;
    }
}
@media screen and (max-width: 359px) {
    .container {
        max-width: 320px;
    }
    body {
        font-size: 17px;
    }
    .h1__span-big {
        font-size: 42px !important;
    }
    .h1__span {
        font-size: 60px !important;
    }
    .main__mobile-vs__block__title {
        font-size: 13px !important; 
    }
  
    h2, .lid h2 {
        font-size: 22px;
    }
    .price p {
        font-size: 17px;
    }
    .lid__phone-call-mobile img {
        width: 32px;
    }
    .advantages__title, .advantages__number {
        font-size: 18px;
    }
    .projects__block {
        width: 220px;
    }
    .clients__wrap {
        grid-template-columns: repeat(3, 1fr);
    }
}
