body {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #2A7CE0;

}
*,
*:before,
*:after {
    box-sizing: border-box;
}
h1, h2, h3, h4, h5 {
    margin: 0;
}

hr {
    display: block;
    width: 100%;
    height: 1px;
    margin: 40px 0;

    border: 0;
    background-color: #e5e5e5;
}

/*PAGE*/
.page {
    overflow: hidden;
}


/*container*/
.container {
    width: 100%;
    max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto;

}




/*header*/
.header {
    width: 100%;
    height: 10%;
    /*padding: -50px 0;*/
    padding-top: 30px;

    background-color: #2A7CE0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);


    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;

    /*transform: translate3d(0, 0, 0);*/


}

.header_inner {
    display: block;
    justify-content: space-between;
    align-items: center;
    font-size: 40px;
    font-weight: bolder;

}
/*.header.fixed {*/
/*    padding: 10px 0;*/

/*    background-color: 2A7CE0;*/
/*    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);*/

/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    z-index: 2000;*/


/*    transform: translate3d(0, 0, 0);*/
/*}*/
.header.active {
    background-color: #2A7CE0;
}

.header_logo {
    color: white;
    position: relative;
    top: -25px;
    left: 100px;
    right: 0;

    cursor: pointer;

    transform: translate3d(0, 0, 0);
}

.header_img {
    position: relative;
    top: -85px;
    left: 25px;
    right: 0;

    cursor: pointer;

    transform: translate3d(0, 0, 0);

}

/*navigation*/
.nav {
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 250px;

    top: -155px;
    left: 80px;
    right: 0;


}



.nav_link {
    display: inline-block;
    vertical-align: top;
    margin: 0 10px 20px 20px;
    top: 20px;
    left: 200px;
    position: relative;



    color: white;
    text-decoration: none;

    transition: color .1s linear;
}

.nav_link:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;

    background-color: #fce38a;
    opacity: 0;

    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;

    transition: opacity .1s linear;
}

.nav_link:hover {
    color: #fce38a;
}

.nav_link:hover:after,
.nav_link.active:after {
    opacity: 1;
}
.nav_link.active {
    color: #fce38a;
}

/*Nav_toggle*/
.nav_toggle {
    width: 30px;
    padding: 10px 0;
    display: none;

    font-size: 0;
    color: #2A7CE0;

    border: 0;
    background: none;
    cursor: pointer;

    position: absolute;
    top: 15px;
    right: 30px;
    z-index: 1;
}

.nav_toggle:focus {
    outline: 0;
}

.nav_toggle_item {
    display: block;
    width: 100%;
    height: 3px;

    background-color: white;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 8px;

    transition: background .2s linear;

}

.nav_toggle.active .nav_toggle_item {
    background: none;

}

.nav_toggle_item:before,
.nav_toggle_item:after {
    content: '';
    width: 100%;
    height: 3px;

    background-color: white;

    position: absolute;
    left: 0;
    z-index: 1;

    transition: transform .2s linear;
}

.nav_toggle_item:before {
    top: -8px;
}
.nav_toggle_item:after {
    bottom: -8px;
}
.nav_toggle.active .nav_toggle_item:before {
    transform-origin: left top;
    transform: rotate(45deg) translateX(-2px);
}
.nav_toggle.active .nav_toggle_item:after {
    transform-origin: left bottom;
    transform: rotate(-45deg) translateX(-3px);
}

/*Intro*/
.intro {
    margin-bottom: -150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
    min-height: 820px;
    position: relative;

    /*background: url("../img/2022-01-11 at 15.54 1.jpg") left 100px top 35px*/
    /*no-repeat;*/

}

.intro_inner {
    color: #2A7CE0;
    width: 100%;
    max-width: 100%;
    margin: 10px auto;
    text-align: center;

}



.intro_title {
    margin-top: -5%;
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;


}

.intro_subtitle {
    margin-top: 1%;
    font-size: 40px;
    color: #2A7CE0;
    font-family: 'Montserrat', sans-serif;

}

.intro_subtitle:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin: 60px auto;

    background-color: black;
}

/*About*/
.about {
    margin: 50px;
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about_item {
    margin: auto;
    width: 33.33333%;
    padding: 0 40px;
}

.about_inner {
    position: relative;
    background-color: #ffffff;
}

/*Social*/

.social {
    display: flex;
    justify-content: center;
}

.social_item {
    width: 55px;
    height: 55px;
    padding: 10px;
    background-color: #2A7CE0;
    border-right: 1px solid white;

    font-size: 30px;
    text-decoration: none;
    color: white;
    line-height: 1;

    transition: background .1s
    linear, color .1s linear;
}


.social_item:last-child {
    border-right: 0;
}

.social_item:hover {
    color: #ffffff;
    background-color: #f38181;
}



/*button*/
.btn {
    display: inline-block;
    vertical-align: top;
    padding: 8px 30px;

    border: 3px solid #2A7CE0;

    font-size: 14px;
    font-weight: bold;
    color: #2A7CE0;
    text-transform: uppercase;
    text-decoration: none;

    transition: background .1s linear,
    color .1s linear;

}

.btn:hover {
    background-color: #2A7CE0;
    color: white;
}


.section {
    padding: -100px 0;
}
.section--gray {
    padding: 50px 0;
    background-color: #e6e6e6;
}

.section--map {
    max-width: 100%;
    padding: 10px 0;
    background: #2A7CE0;
}

.section_header {
    width: 100%;
    max-width: 950px;
    margin: 50px auto 70px;

    text-align: center;
}


.section_suptitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #2A7CE0;
    text-transform: uppercase;
}

.section_title {
    font-size: 18px;
    color: #2A7CE0;

}

.section_title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin: 30px auto;

    background-color: #333333;
}

.section_text {
    font-size: 15px;
    color: black;
}


/*Statistics*/

.statistics {
    background-color: #2A7CE0;
}

.stat {
    display: flex;
    flex-wrap: wrap;
}

.stat_item {
    flex: 1 1 0;
    padding: 30px 25px;

    border-left: 1px solid #fff;

    text-align: center;
    color: white;
}

.stat_item:last-child {
    border-right: 1px solid #fff;

}

.stat_count {
    margin-bottom: 10px;

    font-size: 72px;
    font-weight: 700;
    line-height: 1;
}

.stat_text {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;

}

/*Services*/
.services {
    display: flex;
    flex-wrap: wrap;
}

.services_item {
    flex: 1 1 0;
    width: 33.33333%;
    padding: 0 35px 40px 85px;
    position: relative;
    margin-bottom: 10px;
}

/*.services_item--border {*/
/*    border-bottom: 1px solid #e5e5e5;*/
/*}*/

.services_icon {
    position: absolute;
    top: 0;
    left: 20px;
    z-index: 1;
}

.services_title {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #2A7CE0;
    text-transform: uppercase;
}

.services_text {
    font-size: 15px;
    color: black;
}




/*About2 Завершенные обьекты*/
.about2 {
    margin: 80px -15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about2--partners img {
    max-width: 100%;
}

.about_item2 {
    margin-top: -50px;
    margin-bottom: 50px;
    width: 30%;
    position: relative;

    background-color: #2A7CE0;
}

.about_item2:hover .about_img2 {
    transform: translate3d(-10px, -10px, 0);
}

.about_item2:hover .about_img2 img {
    opacity: .1;
}

.about_item2:hover .about_text2 {
    opacity: 1;
}

.about_img2 {
    background: linear-gradient(to bottom,
    #f38181, #fce38a);

    transition: transform .2s linear;
}

.about_img2 img {
    display: block;
    max-width: 100%;
    transition: opacity .1s linear;
}

.about_text2 {
    width: 100%;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    opacity: 0;

    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
    transform: translate3d(0, -50%, 0);

    transition: opacity .2s linear;
}



/*Reviews*/

.reviews {
    position: relative;
    justify-content: center;

}

.reviews .slick-slider {
    padding: 0 110px;

}

.reviews_item {
    min-height: 210px;
    padding-left: 255px;
    position: relative;
}

.reviews_photo {
    /*width: 210px;*/
    /*height: 210px;*/

    /*border: 2px solid #ffffff;*/
    /*border-radius: 50%;*/

    position: absolute;
    top: 0;
    left: 250px;
    /*z-index: 1;*/
}

/*.reviews_text {*/
/*    margin-bottom: 15px;*/
/*    font-size: 24px;*/
/*    font-style: italic;*/
/*    font-weight: bold;*/
/*    color: #2A7CE0;*/
/*}*/

/*.reviews_author {*/
/*    font-size: 24px;*/
/*    font-style: italic;*/
/*    font-weight: bold;*/
/*    color: #333333;*/
/*}*/

/*.reviews_author:before {*/
/*    content: '';*/
/*    display: inline-block;*/
/*    vertical-align: middle;*/
/*    width: 60px;*/
/*    height: 3px;*/
/*    margin-right: 10px;*/

/*    background-color: #f38181;*/
/*}*/


.slick-arrow {
    display: block;
    font-size: 0;
    color: #333333;

    border: 0;
    background: none;
    cursor: pointer;

    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
}
.slick-arrow:focus {
    outline: 0;
}

.slick-arrow:after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;

    border-top: 2px solid #333333;
    border-left: 2px solid #333333;
}


.slick-prev {
    left: 50px;
    transform: rotate(-45deg);
}


.slick-next {
    right: 50px;
    transform: rotate(137deg);
}



/*Logos*/

.logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*Works*/
/*.works {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*}*/

/*.works_col {*/
/*    flex: 1 1 0;*/
/*}*/

/*.works_item {*/
/*    margin: 8px;*/
/*    position: relative;*/

/*    background: linear-gradient(to bottom, #f38181, #fce38a);*/
/*}*/

/*.works_item:hover .works_image {*/
/*    opacity: .1;*/

/*}*/

/*.works_item:hover .works_info {*/
/*    opacity: 1;*/

/*}*/

/*.works_image {*/
/*    display: block;*/
/*    max-width: 100%;*/
/*    height: auto;*/

/*    transition: opacity .2s linear;*/
/*}*/

/*.works_info {*/
/*    width: 100%;*/
/*    padding: 0 15px;*/

/*    text-align: center;*/
/*    color: #ffffff;*/
/*    opacity: 0;*/

/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 0;*/
/*    z-index: 1;*/

/*    transform: translate3d(0, -50%, 0);*/

/*    transition: opacity .2s linear;*/
/*}*/
/*.works_title {*/
/*    margin-bottom: 5px;*/

/*    font-size: 14px;*/
/*    text-transform: uppercase;*/
/*}*/

/*.works_text {*/
/*    font-size: 14px;*/
/*    font-weight: 600;*/
/*    font-style: italic;*/

/*}*/

/*Map*/

.map {
    text-align: center;
}
.map_title {
    font-size: 14px;
    color: white;
    font-weight: 700;

    text-transform: uppercase;
}

/*.map_title:after {*/
/*    content: '';*/
/*    display: block;*/
/*    width: 60px;*/
/*    height: 3px;*/
/*    margin: 15px auto 0;*/

/*    background-color: white;*/
/*}*/

.map_title a {
    color: inherit;
    text-decoration: none;
}

.map_title a:hover {
    text-decoration: underline;
}


/* Footer */

.footer {
    padding-top: 65px;

    justify-content: center;
    background-color: #f8f8f8;
}

.footer_inner {
    justify-content: center;
    margin-left: 100px;
    padding-bottom: 65px;
}

.footer_col--first {
    max-width: 100%;
    justify-content: center;
}

/*.footer_col--second {*/
/*    width: 29%;*/
/*}*/

/*.footer_col--third {*/
/*    width: 22%;*/
/*}*/

.footer_logo {
    margin-bottom: 10px;

    font-size: 16px;
    font-weight: bolder;
    color: #2A7CE0;
}

.footer_text {
    margin-bottom: 10px;

    font-size: 15px;
    font-weight: bolder;
    color: #2A7CE0;
}
.footer_social {
    margin-bottom: 25px;
}

.footer_social-header {
    padding-bottom: 15px;
    font-size: 14px;
    color: black;

    /*border-bottom: 1px solid #cccccc;*/


}

.footer_social-header b {
    font-size: 18px;
}
.footer_social-content {
    padding-top: 15px;

    font-size: 14px;
    color: #999999;
    font-style: italic;
    font-weight: 400;
}
.footer_social-content a {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;

    font-size: 20px;
    color: #2A7CE0;
}

.footer_title {
    margin: 30px 0;
    font-size: 14px;
    color: black;
    text-transform: uppercase;
}

/*!*Blogs*!*/

/*.blogs_item {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    margin-bottom: 30px;*/

/*}*/

/*.blogs_img {*/
/*    width: 120px;*/
/*    height: 80px;*/
/*}*/

/*.blogs_content {*/
/*    padding-left: 20px;*/

/*}*/

/*.blogs_title {*/
/*    display: block;*/
/*    margin-bottom: 5px;*/

/*    color: black;*/
/*    font-size: 12px;*/
/*    line-height: 1.4;*/
/*    text-transform: uppercase;*/
/*    text-decoration: none;*/
/*}*/

/*.blogs_title:hover {*/
/*    text-decoration: underline;*/
/*}*/

/*.blogs_date {*/
/*    font-size: 13px;*/
/*    color: black;*/
/*    font-style: italic;*/
/*    font-weight: 300;*/
/*}*/

/*!*Instagram*!*/

/*.instagram {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    justify-content: space-between;*/
/*}*/
/*.instagram_item {*/
/*    width: 32.33333%;*/
/*    border-bottom: 1px solid white;*/

/*}*/
/*.instagram_item img {*/
/*    display: block;*/
/*}*/



/*Subscribe*/

.subscribe {
    display: flex;
    width: 100%;
    max-width: 380px;
}

.subscribe_input {
    width: 60%;
    height: 40px;
    padding: 12px;

    background: white;
    border: 1px solid #999999;
    border-right: 0;

    font-size: 15px;
    line-height: 1.1;
    color: black;
    font-style: italic;
    font-weight: 300;
}

.subscribe_input::placeholder {
    color: #cccccc;
}

.subscribe_input:focus {
    outline: 0;
    border-color: #2A7CE0;

}

.subscribe_btn {
    width: 40%;
    padding: 12px 30px;
    height: 40px;

    background-color: #2A7CE0;
    border: 0;
    cursor: pointer;

    font-size: 14px;
    line-height: 1.1;
    color: white;
    font-weight: bolder;
    text-transform: uppercase;

    transition: background .1s linear;

}
.subscribe_btn:hover {
    background-color: #1a58ff;
}

/*Copyright*/
.copyright {
    padding: 20px 0;

    border-top: 1px solid #999999;

    font-size: 14px;
    color: black;
    text-align: center;
}

.copyright span {
    font-weight: bolder;
    color: #2A7CE0;
}

@media (max-width: 1230px) {
    /*Intro*/
    .intro_subtitle {
        font-size: 52px;
    }
    .intro_title {
        font-size: 50px;
    }
    /*Reviews*/
    .reviews_text {
        font-size: 20px;
    }

         /*Services*/
    .services_item {
        max-width: 100%;
        padding-bottom: 0;
    }
    .services_item--border {
        border-bottom: 0;
    }

    .section_header {
        margin-top: 50px;
    }


}

/*для компов*/

@media (max-width: 990px) {
    /*Header*/
    .header {
        height: 10%;
    }
    .header_logo {
        color: white;
        position: relative;
        top: -37px;
        left: 63px;
        right: 0;

        cursor: pointer;

        transform: translate3d(0, 0, 0);
    }

    .header_img {
        position: relative;
        top: -97px;
        left: 10px;
        right: 0;

        cursor: pointer;

        transform: translate3d(0, 0, 0);

    }
    /*Nav*/
    .nav {
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 60px;

    top: -167px;
    left: 30px;
    right: 0;


    }
    /*Intro*/
    .intro_subtitle {
        font-size: 32px;
    }
    .intro_title {
        font-size: 30px;
    }
    /*Statistic*/
    .stat {
        justify-content:center;
    }
    .stat_item {
        flex: none;
        width: 33.33333%;
        padding-top: 30px;
        padding-bottom: 30px;
        border: 0;
    }
    .stat_item:last-child {
        border: 0;
    }
     /*Services*/
    .services_item {
        width: 50%;
        padding-bottom: 0;
    }
    .services_item--border {
        border-bottom: 0;
    }
    /*Reviews*/
    .reviews .slick-slider {
        padding: 0 60px;
    }
    .reviews_photo {
        width: 150px;
        height: 150px;
    }
    .reviews_item {
        padding-left: 175px;
    }


}


/*для планшетов*/

@media (max-width: 770px) {
    /*Intro*/
    .intro {
        margin-top: -50px;
        margin-bottom: -220px;
        min-height: 650px;
    }

    /*Header*/
    .header {
        padding: 10px 0;
        height: 9%;
    }
    .header_logo {
        color: white;
        position: relative;
        top: -15px;
        left: 80px;
        right: 0;

        cursor: pointer;

        transform: translate3d(0, 0, 0);
    }

    .header_img {
        display: block;
        top: -75px;
        left: 25px;
        right: 0;

        cursor: pointer;

    }

    /*Nav*/
    .nav {
        display: none;
        width: 100%;

        position: absolute;
        top: 100%;
        left: -60px;
        background-color: #2A7CE0;
    }
    .nav.active {
        display: block;
    }

    .nav_link {
        display: block;
        margin: 0;
        padding: 8px 0;
    }

    .nav_toggle {
        display: block;
    }


    /*Section*/
    .section {
        padding: 40px 0;
    }
    /*about*/
    .about {
        margin-top: 20px;
        justify-content: center;

    }
    .about_item {
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
    }
    .about_item:last-child {
        margin-bottom: 0;
    }

    /*Slider*/
    .slider_text {
        display: none;
    }
    .slider_item.active:before {
        width: 50%;
    }
    /*Services*/
    .services_item {
        width: 50%;
        justify-content: center;
    }
    .services_item--border {
        border-bottom: 0;
    }
    /*Services*/
    .services_item {
        width: 100%;
        /*padding-left: 50px;*/
    }
    .services_icon {
        /*left: 0;*/
    }
    /*about2завершенные обьекты*/
    .about2 {
        margin-top: -10px;
        justify-content: center;
    }
    .about_item2 {
        width: 100%;
        max-width: 180px;
        margin-top: -5px;
        margin-bottom: 10px;
        padding: initial;

    }
    .section_suptext {
        text-align: center;
    }
    .about2--partners {
        width: 100%;
        max-width: 200px;
        margin-top: 0;
        margin-left: 15%;
    }
      /*Reviews*/
    .reviews_photo {
        position: static;
        margin: 0 auto;
    }
    .reviews_item {
        padding-left: 0;
    }
    .slick-arrow {
        top: 18%;
    }
    /*Work*/
    .works {
        flex-wrap: wrap;
    }
    .works_col {
        flex: none;
        width: 50%;
    }

}

/*для мобилки*/
@media (max-width: 575px) {
    /*!*Intro*!*/
    /*.intro {*/
    /*    margin-top: -150px;*/
    /*    margin-bottom: -350px;*/
    /*    min-height: 650px;*/
    /*}*/

    /*Header*/
    .header {
        height: 8%;
    }
    .header_inner {
        font-size: 30px;
        font-weight: bolder;
    }
    .header_logo {
        display: block;
        color: white;
        position: relative;
        top: -5px;
        left: 55px;
        right: 0;

        cursor: pointer;

        transform: translate3d(0, 0, 0);
    }

    .header_img {
        display: block;
        top: -60px;
        left: 0;
        right: 0;

        cursor: pointer;

    }


    .intro_subtitle {
        font-size: 25px;
    }
    .intro_title {
        font-size: 30px;
    }
            /*Nav*/
    .nav {
        display: none;
        width: 100%;

        position: absolute;
        top: 100%;
        left: -60px;
        background-color: #2A7CE0;
    }
    .nav.active {
        display: block;
    }

    .nav_link {
        display: block;
        margin: 0 auto;
        padding: 8px;
        top: auto;
        left: 25px;
    }

    .nav_toggle {
        display: block;
    }


    /*Section*/
    .section_header {
        margin-bottom: 50px;
    }

    .section_suptitle {
        font-size: 20px;
    }

    .section_title {
        font-size: 24px;
    }

    .section_title:after {
        margin: 20px auto;
    }


    /*Statistic*/

    .stat_item {
        width: 100%;
        border-bottom: 1px solid #999999;
    }
        .stat_item:last-child {
        border: 0;
    }
        .stat_count {
            font-size: 40px;
        }
    /*Work*/
    .works_col {
        flex: none;
        width: 100%;
        justify-content: center;
    }
     /*Subscribe*/
    .subscribe {
        flex-wrap: wrap;
        max-width: none;
    }
    .subscribe_input {
        margin-bottom: 10px;
        border-right: 1px solid #999999;
    }
    .subscribe_input,
    .subscribe_btn {
        width: 100%;

    }

}

