@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,700&display=swap&subset=cyrillic');

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}



html, body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: #333;
}
body {
    min-width: 100%;
    min-height: 100vh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
}
a {
    color: #5f985a;
    transition: all 0.2s ease-in-out;
}
a:hover {
    color: #75BA70;
}



.mainMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 16rem;
    height: 100vh;
    color: #333;
    padding: 8rem 2rem;
    box-sizing: border-box;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: background-color 0.2s ease-in-out;
}
.logo {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: #777;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;

}

.logo svg {
    position: absolute;
    width: 14.5rem;
  left: -2.25rem;
  top: -3.725rem;
  height: auto;
    flex-shrink: 0;
}
.logo div {
    font-size: 2.375rem;
    line-height: 0.8;
    margin-left: 0.5rem;
    letter-spacing: -0.125rem;
    font-weight: 300;
  z-index: 2;
}
.logo div.logoSVG {
  width: 3.5rem;
  height: 3.5rem;
  position: relative;
  z-index: 1;
  margin-left: 0;
}
.logo div span {
    font-weight: 400;
}
.menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.menu a {
    color: #333;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    padding: 1rem 0;
    font-size: 1.25rem;
    position: relative;
}
.menu a:after {
    position: absolute;
    content: '';
    bottom: 0.75rem;
    left: 0;
    height: 0.125rem;
    width: 0;
    background-color: #8aba66;
    transition: width 0.2s ease-in-out;
}
.menu a:hover:after {
    width: 100%;
}

.quickContacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 1rem;
}
.quickContacts a {
    color: #222;
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    transition: all 0.2s ease-in-out;
}
.quickContacts a:hover {
    color: #8aba66;
}
.mainMenu .socIcons {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 2rem;
}
.mainMenu .socIcons svg {
    height: 2rem;
    margin-right: 1rem;
}
.mainMenu.white {
    background-color: #fff;
}
.mainMenu.trans {
    background-color: transparent;
}
.mainMenu.trans .logo,
.mainMenu.trans .logo div,
.mainMenu.trans .menu a,
.mainMenu.trans .quickContacts a {
    color: #fff;
}
.mainMenu.trans .quickContacts a:hover {
    color: #8aba66;
}
.mainMenu.noTrans {
    background-color: #fff;
}
.mainMenu.noTrans .logo,
.mainMenu.noTrans .logo div,
.mainMenu.noTrans .menu a,
.mainMenu.noTrans .quickContacts a {
    color: #777;
}
.mainMenu.noTrans .quickContacts a:hover {
    color: #8aba66;
}
.mainMenu.black {
    background-color: #333;
}
.mainMenu.black .logo div {
    color: #fff;
}
.mainMenu.black .menu a {
    color: #fff;
}
.mainMenu.black .quickContacts a {
    color: #fff;
}
.mainMenu.black .quickContacts a:hover {
    color: #8aba66;
}


.burger {
    width: 4rem;
    height: 4rem;
    position: fixed;
    left: 0;
    top: 0;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    display: none;
}
.burger span {
    position: absolute;
    left: 1rem;
    width: 2rem;
    height: 1px;
    background-color: slategrey;
    transform-origin: 0 0;
    transition: all 0.2s ease-out;
    opacity: 1;
}
.burger span:nth-of-type(1) {
    top: 35%;
}
.burger span:nth-of-type(2) {
    top: 50%;
}
.burger span:nth-of-type(3) {
    top: 65%;
}
.burger.burgerOpen span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 25%;
    width: 2.75rem;
    left: 1rem;
}
.burger.burgerOpen span:nth-of-type(2) {
    opacity: 0;
}
.burger.burgerOpen span:nth-of-type(3) {
    transform: rotate(-45deg);
    width: 2.75rem;
    top: 74%;
}
.mobileLangSelect {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    margin-left: -0.5rem;
}
.mobileLangSelect a {
    font-size: 1rem;
    padding: 0.5rem;
    font-weight: 200;
    color: #999;
    text-decoration: none;
}
.mobileLangSelect a.mobileCurrentLang {
    color: #8aba66;
}







.mainScreen {
    height: 100vh;
    width: 100%;
    background-color: #ccc;
    box-sizing: border-box;
    position: relative;
}
.mainScreenSlider {
    width: 100%;
    height: 100%;
}
.mainScreen .slide {
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.mainScreen .slide .content {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 5;
}
.mainScreen .slide .content:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.3) 100%);
    content: '';
    z-index: 4;
    pointer-events: none;
}
.plashka {
    position: absolute;
    bottom: 6rem;
    left: 24rem;
    padding: 2rem;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    width: 30%;
    z-index: 5;
    pointer-events: none;
}
.plashka h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 0.25rem #000000;
}
.plashka h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 0.25rem #000000;
}
.plashka p {
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 1rem;
}
.slick-next, .slick-prev {
    width: 2rem;
    height: 2rem;
    background-color: transparent;
    position: absolute;
    bottom: 2rem;
    font-size: 0.001rem;
    color: transparent;
    outline: none;
    border: none;
    cursor: pointer;
}
.slick-prev {
    right: 6rem;
    z-index: 1;
    -webkit-tap-highlight-color: transparent;
}
.slick-next {
    right: 3rem;
    z-index: 1;
    -webkit-tap-highlight-color: transparent;
}
.slick-prev:before,
.slick-next:before,
.slick-prev:after,
.slick-next:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 2px;
    height: 1rem;
    background-color: #fff;
    transform-origin: center 0;
}
.slick-prev:hover:before,
.slick-next:hover:before,
.slick-prev:hover:after,
.slick-next:hover:after {
    background-color: #8aba66;
}
.slick-prev:before,
.slick-prev:after {
    left: 0.5rem;
}
.slick-next:before,
.slick-next:after {
    right: 0.5rem;
}
.slick-prev:before {
    transform: rotate(220deg);
}
.slick-prev:after {
    transform: rotate(-40deg);
}
.slick-next:before {
    transform: rotate(140deg);
}
.slick-next:after {
    transform: rotate(40deg);
}





.moveForward {
    position: absolute;
    bottom: 1.75rem;
    left: calc(50% - 1rem);
    color: #fff;
    text-decoration: none;
    z-index: 11;
    -webkit-tap-highlight-color: transparent;
}
.moveForward svg {
    width: 2rem;
}


.about {
    padding: 6rem 2rem 6rem 18rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.about .content {
    width: 40rem;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.about .content h2 {
    text-align: center;
    font-size: 2rem;
    padding-bottom: 0.25rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid #8aba66;
    display: inline-block;
}
.about .content p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.25;
    width: 100%;
}


.services {
    padding: 6rem 2rem 6rem 18rem;
    background-color: #f6f6f6;
    border-bottom: 1px solid #eee;
}
.services .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.services h2 {
    font-size: 2rem;
    padding-bottom: 0.25rem;
    margin-bottom: 5rem;
    border-bottom: 2px solid #8aba66;
    display: inline-block;
}
.servicesProcess {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}
.servicesProcess a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 2rem;
    text-decoration: none;
}
.servicesProcess a img {
    margin-bottom: 2rem;
    width: 9rem;
    height: 9rem;
    object-fit: contain;
    object-position: center;
}
.servicesProcess a h3 {
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 1rem;
}
.servicesProcess a p {
    max-width: 16rem;
    color: #777;
    line-height: 1.25;
}
.servicesSpacer {
    height: 2px;
    width: 4rem;
    margin: 5rem 1rem 8.5rem 0;
    background-color: #88af7b;
}



.projects {
    width: 100%;
    padding-left: 16rem;
    box-sizing: border-box;
}
.project {
    height: 50vh;
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: #f9f9f9;
}
.project:nth-of-type(2n){
    background-color: #f6f6f6;
    flex-direction: row;
}

.projectPic {
    width: 50%;
    height: 100%;
    background-color: #eee;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.projectContent {
    width: 50%;
    height: 100%;
    padding: 2rem;
    box-sizing: border-box;
    border-bottom: 1px solid #eee;
}
.projectContent h2 {
    margin-bottom: 1rem;
}
.projectContent h5 {
    margin-bottom: 2rem;
    color: #777777;
    font-weight: 300;
}
.projectContent p {
    line-height: 1.25;
    margin-bottom: 1rem;
}

.newsWidget {
    padding: 6rem 2rem 6rem 18rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}
.newsWidget .content {
    /*width: 40rem;*/
    display: flex;
    flex-direction: column;
    align-items: center;

}
.newsWidget .content h2 {
    text-align: center;
    font-size: 2rem;
    padding-bottom: 0.25rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid #8aba66;
    display: inline-block;
}
.widgetContainer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 66rem;
}
.blogpost {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 20rem;
    background-color: #fff;
    height: 20rem;
    margin: 0 1rem 2rem 1rem;
    text-decoration: none;
    box-shadow: 0 0 1rem -0.25rem rgba(0,0,0,0.25);
}
.blogpost img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}
.blogpost .date {
    height: 2rem;
    padding: 0 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #999;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #eee;
    font-size: 0.875rem;
}
.blogpost .heading {
    height: 2rem;
    padding: 1rem;
    box-sizing: border-box;
    line-height: 1.25;
    text-align: left;
    width: 100%;
}
.blogpost .heading h4 {
    width: 100%;
    color: #333;
    font-weight: 400;
    text-align: left;
}
.toBlog {
    margin-top: 2rem;
}



footer {
    width: 100%;
    background-color: #222;
    color: #fff;
    padding: 2rem 2rem 2rem 18rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}
.copymadeby {
    display: flex;
}
.madeBy {
    opacity:0.5;
    transition: all 0.2s ease-in-out;
    margin-left: 2rem;
}
.madeBy:hover {
    opacity: 1;
}
.toTop {
    color: #fff;
    text-decoration: none;
    margin-right: 1rem;
}
.toTop svg {
    height: 0.75rem;
    margin-left: 0.5rem;
    position: relative;
    top: 0.125rem;
}






.servicePage {
    background-color: #fff;
}
.servicePage .content {
    padding: 2rem 2rem 6rem 18rem;
    box-sizing: border-box;
}
.servicePage h1,
.servicePage h2,
.servicePage h3,
.servicePage h4,
.servicePage h5,
.servicePage h6,
.servicePage p {
    margin-bottom: 1rem;
    line-height: 1.5rem;
}
.chapter {
    padding-top: 2rem;
    display: flex;
    flex-direction: row;
}
.chapter .pic {
    width: 40%;
    margin-left: 2rem;
    padding-right: 1rem;
    box-sizing: border-box;
}
.chapter .pic img {
    width: 100%;
}
.chapter .text {
    width: calc(60% - 2rem);
}


.projectPage {
    padding: 2rem 2rem 2rem 18rem;
    box-sizing: border-box;;
}
.projectPreview {
    display: flex;
    flex-direction: row;
}
.mainProjectPic {
    width: 30%;
    height: 30vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.projectLead {
    width: 70%;
    padding: 2rem;
    box-sizing: border-box;
}



.projectPage h1,
.projectPage h2,
.projectPage h3,
.projectPage h4,
.projectPage h5,
.projectPage h6,
.projectPage p {
    margin-bottom: 1rem;
    line-height: 1.25;
}
.projectPage h5 {
    color: #777;
    font-weight: 300;
}

.galleryContainer {
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.galleryContainer a {
    width: 25%;
    padding: 0 1rem;
    box-sizing: border-box;
    margin-bottom: 2rem;
}
.galleryContainer a img {
    width: 100%;
    height: 15rem;
    object-fit: cover;
}
.blogPage {
    padding: 2rem 2rem 2rem 18rem;
    box-sizing: border-box;
    min-height: calc(100vh - 4.9rem);
    background-color: #fafafa;
}
.blogPostPage {
    padding: 2rem 2rem 2rem 18rem;
    background-color: #f6f6f6;
}
.blogPostPage .content {
    max-width: 40rem;
    margin: 0 auto;
}
.blogPostPage .content img {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}
.blogPostPage h1,
.blogPostPage h2,
.blogPostPage h3,
.blogPostPage h4,
.blogPostPage h5,
.blogPostPage p {
    margin-bottom: 1rem;
    line-height: 1.5;
}
.blogPostPage h5 {
    color: #777;
    font-weight: 300;
}
.blogPostPage li {
    line-height: 1.5rem;
    margin: 0 0 0.5rem 2rem;
    list-style-type: disc;
}


.team .content {
    padding: 2rem 2rem 2rem 18rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    box-sizing: border-box;
}
.team .content .teamMember {
    width: calc(25% - 2rem);
    margin: 0 1rem 3rem 1rem;
}
.teamMember img {
    width: 100%;
    height: calc((100vw - 16rem)/4 - 4rem);
    object-fit: cover;
    object-position: center;
}
.teamMember h3 {
    margin: 1rem 0;
    line-height: 1.25;
}
.teamMember h4 {
    color: #999999;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 500;
}
.teamMember p {
    line-height: 1.25;
}
.teamMemberDescription {
    font-size: 0.875rem;
}



@media all and (max-width: 1400px) {
    html, body {
        font-size: 14px;
    }

}
@media all and (max-width: 1200px) {
    .mainMenu {
        /*display: none;*/
        width: 100vw;
        height: 4rem;
        background-color: #fff;
        padding: 0;
        border-bottom: 1px solid #f6f6f6;
    }
    .mainMenu.trans,
    .mainMenu.black {
        background-color: #fff;
    }
    .mobileDropdown {
        display: none;
        position: absolute;
        left: 0;
        top: 4rem;
        width: 100vw;
        height: calc(100vh - 4rem);
        background-color: white;
        padding: 2rem;
        box-sizing: border-box;
    }
    .mobileDropdown.visible {
        display: block;
    }
    .burger {
        display: block;
    }



    .logo {
        top: 0;
        left: 50%;
        transform: translate(-50%,0);
        padding: 0.25rem 0;
      margin-left: -1rem;
      align-items: center;

    }
    .mainMenu.trans .logo div,
    .mainMenu.black .logo div {
        color: #333;
    }
    .mainMenu .menu a,
    .mainMenu .quickContacts a {
        color: #333 !important;
    }
    .logo svg {
        width: 10rem;
      top: -2rem;
      left: -0.25rem;
    }
    .logo div {
        font-size: 1.5rem;
        margin-left: 0.5rem;
        letter-spacing: -0.125rem;
        font-weight: 300;
    }

    .menu,
    .quickContacts {
        align-items: center;
    }
    .menu a {
        font-size: 2rem;
        font-weight: 200;
    }
    .quickContacts a {
        font-size: 1.5rem;
        font-weight: 200;
        color: #999;
    }
    .mainMenu .socIcons {
        justify-content: center;
    }
    .mainMenu .socIcons svg {
        height: 3rem;
        margin: 0 1rem;

    }
    .mobileLangSelect {
        margin-top: 1.5rem;
        justify-content: center;
        margin-left: 0;
    }
    .mobileLangSelect a {
        font-size: 1.5rem;
        padding: 1rem;
    }
    .mobileLangSelect a.mobileCurrentLang {
        color: #8aba66;
    }


    .langSelect {
        display: none;
    }


    .plashka {
        left: 1rem;
        width: calc(100vw - 2rem);
        box-sizing: border-box;
        padding: 1rem;
    }
    .plashka h1 {
        font-size: 2rem;
    }
    .plashka h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .slick-prev {
        right: 5rem;
    }
    .slick-next {
        right: 2rem;
    }

    .about {
        padding: 6rem 2rem 2rem 2rem;
    }
    .about .content p {
        font-size: 1rem;
    }

    .services {
        padding: 2rem;
    }
    .servicesProcess {
        flex-wrap: wrap;
    }
    .services h2 {
        margin-bottom: 2rem;
    }
    .servicesSpacer {
        background-color: transparent;
        margin-bottom: 2rem;
    }

    .projects {
        padding: 4rem 0 0 0;
    }

    .project,
    .project:nth-of-type(2n){
        flex-direction: column;
        height: auto;
    }
    .projectContent {
        width: 100%;
    }
    .projectPic {
        width: 100%;
        height: 30vh;
    }


    .newsWidget {
        padding: 4rem 2rem;
    }
    .blogPage, .blogPostPage {
        padding: 6rem 2rem;
    }
    .widgetContainer {
        flex-direction: column;
    }
    .blogpost {
        margin: 0 0 2rem 0;
        width: 100%;
    }
    .toBlog {
        margin-top: 0;
    }

    footer {
        padding: 2rem;
    }
    .copymadeby {
        flex-direction: column;
    }
    .madeBy {
        margin: 1rem 0 0 0;
    }

    .services .content {
        padding: 6rem 2rem;
    }
    .servicePage .content {
        padding: 2rem 2rem 4rem 2rem;
    }
    .chapter {
        flex-direction: column;
    }
    .chapter .text {
        width: 100%;
    }
    .chapter .pic {
        width: 100%;
        padding-right: 0;
        margin-left: 0;
    }


    .projectPage {
        padding: 5rem 1rem;
        box-sizing: border-box;;
    }
    .projectPreview {
        flex-direction: column;
        padding: 1rem;
        box-sizing: border-box;;

    }
    .projectPic {
        width: 100%;
        height: 30vh;
    }
    .projectLead {
        width: 100%;
        padding: 2rem 0;
        box-sizing: border-box;
    }

    .galleryContainer a {
        width: 50%;
    }
    .galleryContainer a img {
        height: 15vh;
    }
    .blogPostPage {
        padding: 6rem 2rem 2rem 2rem;
    }
    .mainProjectPic {
        width: 100%;
    }
    .team .content {
        padding: 4rem;
    }
    .team .content .teamMember {
        width: calc(50% - 2rem);
    }
    .team .content .teamMember img {
        height: calc((100vw - 16rem)/2 - 2rem);
    }
}
@media all and (max-width: 780px) {
    .team .content {
        padding: 2rem;
    }
    .team .content .teamMember {
        width: 100%;
    }
    .team .content .teamMember img {
        height: calc(100vw - 4rem);
    }
    .servicesProcess {
        flex-direction: column;
        align-items: center;
    }
}