@import url('https://cdn.lns.bz/fonts/Rubik:300.css');
@import url('https://cdn.lns.bz/fonts/Rubik:400.css');
@import url('https://cdn.lns.bz/fonts/Rubik:700.css');

body {
  padding: 0;
  margin: 0;
  font-family: "Rubik", serif;
  font-size: 18px;
}

.container-wrapper {
  overflow: hidden;
}

.container {
  width: 960px;
  padding: 0 10px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}

a {
  color: #0073d6;
  text-decoration: none;
}

header {
  border-bottom: 1px solid #DCDCDC;
}

header .container {
  padding-top: 64px;
  padding-bottom: 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

header .logo-wrapper {
    line-height: 0;
}

header .logo-wrapper img {
    width: 150px;
}

header .menu-wrapper {
  align-self: center;
}

header .menu {
  display: flex;
  justify-content: flex-end;
}

header .menu-item {
  color: #0073d6;
  font-size: 14px;
  font-weight: normal;
  margin-left: 25px;
}

h1 {
  color: #2e343a;
  font-size: 60px;
  font-weight: normal;
  width: 710px;
  margin: 0 auto 40px;
}

.after-title-text {
  color: #747a81;
  font-weight: 300;
  width: 610px;
  margin: 0 auto;
}

main .container-wrapper.title {
  padding-top: 70px;
  padding-bottom: 70px;
}

main .container-wrapper.services {
  padding-bottom: 180px;
}

main .container-wrapper.services .container {
  display: flex;
  flex-wrap: wrap;
  text-align: initial;
  padding: 0;
}

main .service-item {
  width: 300px;
  margin: 0 10px;
  padding-bottom: 50px;
  align-self: flex-start;
  height: 1%;
}

/*main .service-item:nth-child(1) {
  margin-top: 110px;
}

main .service-item:nth-child(3) {
  margin-top: 150px;
}

main .service-item:nth-child(4) {
  margin-top: -90px;
}

main .service-item:nth-child(5) {
  margin-top: -245px;
}

main .service-item:nth-child(7) {
  margin-top: -130px;
}

main .service-item:nth-child(8) {
    margin-top: -260px;
}

main .service-item:nth-child(10) {
    margin-top: -130px;
}

main .service-item:nth-child(11) {
    margin-top: -230px;
}*/

main .service-item .service-image {
  position: relative;
  line-height: 0;
  background: rgba(29, 49, 64, 0.65);
  overflow: hidden;
}

main .service-item .service-image img {
  width: 300px;
  opacity: 1;
  transition: all 0.25s ease;
}

main .service-item .service-image img.dark {
  width: 300px;
  opacity: 0.5;
  transition: all 0.25s ease;
}

main .service-item.active .service-image img {
  transform: scale(1.1);
  transition: all 0.25s ease;
}

main .service-item .read-more {
  color: white;
  font-size: 16px;
  font-weight: normal;
  background-color: #0073D6;
  padding: 9px 19px;
  border-radius: 40px;
  line-height: initial;
  cursor: pointer;
  
  position: absolute;
  bottom: 60px;
  right: 20px;
  
  display: inline-block;
  opacity: 0;
  transition: all 0.3s ease;
}

main .service-item.active .read-more {
  bottom: 30px;
  right: 20px;
  opacity: 1;
  transition: all 0.3s ease;
}

main .service-item .service-title {
  color: #2e343a;
  font-size: 20px;
  font-weight: 600;
  margin: 25px 0;
  position: relative;
}

main .service-item.new .service-title:after {
  content: url("../images/new.png");
  position: absolute;
  top: -4px;
  line-height: 0;
}

main .service-item .service-descr {
  color: #747a81;
  font-weight: 300;
  line-height: 25px;
}


main .container-wrapper.news {
    padding-bottom: 60px;
}

main .container-wrapper.news .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
}

main .container-wrapper.news .container .caption {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    text-align: center;
}

main .container-wrapper.news .container .caption h3 {
    margin: 0 0 30px;
    font-size: 30px;
    font-weight: 500;
    color: #2e343a;
}

main .container-wrapper.news .container .caption span {
    width: 620px;
    font-weight: 300;
    color: #747a81;
}

main .container-wrapper.news .container .news-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
}

main .container-wrapper.news .container .news-block .news-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 300px;
    padding-bottom: 30px;
}

main .container-wrapper.news .container .news-block .news-item img {
    width: 100%;
    margin-bottom: 20px;
}

main .container-wrapper.news .container .news-block .news-item .n-description {
    font-weight: 500;
    color: #0f7ed8;
}

main .container-wrapper.news .container .news-block .news-item .n-note {
    width: 230px;
    margin: 15px 0 25px 20px;
    border-bottom: 1px solid #c0c2c4;
    position: relative;
}

main .container-wrapper.news .container .news-block .news-item .n-note::before, .n-note::after {
    content: '';
    position: absolute;
    left: 40px;
    bottom: -20px;
    border: 10px solid transparent;
    border-top: 10px solid #c0c2c4;
    border-left: 10px solid #c0c2c4;
}

main .container-wrapper.news .container .news-block .news-item .n-note::after {
    left: 41px;
    bottom: -18px;
    border-top: 10px solid white;
    border-left: 10px solid white;
}

main .container-wrapper.news .container .news-block .news-item .people {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

main .container-wrapper.news .container .news-block .news-item .people img.round {
    width: 43px;
    height: 42px;
    margin: 0;
    border-radius: 100px;
}

main .container-wrapper.news .container .news-block .news-item .people .p-information {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    align-self: center;
    width: 230px;
    height: 32px;
    font-size: 12px;
    color: #84898d;
}

main .container-wrapper.news .container .news-block .news-item .people .p-information .name {
    font-weight: 700;
}

main .container-wrapper.contacts {
  padding-top: 220px;
  padding-bottom: 220px;
}

/*
main .contacts {
  background: url("../images/contacts-bg-2020.png") no-repeat center;
  background-size: cover;
  color: #fff;
}
*/

main .contacts h3 {
  font-size: 39px;
  font-weight: 400;
  color: #fff;
}

main .contacts .contacts-block-wrapper {
  width: 635px;
  margin: 0 auto;
  background-color: rgba(124, 119, 114, 0.85);
  border-radius: 15px;
  padding: 50px 70px 70px 70px;
  box-sizing: border-box;
  position: relative;
  text-align: left;
  font-weight: 300;
  color: #fff;
}

main .contacts .contacts-block-wrapper .contacts-column {
  display: inline-block;
}

main .contacts .contacts-block-wrapper .column-left {
  width: 170px;
}

main .contacts .contacts-block-wrapper .column-right {
  color: #fff;
}

/*main .contacts .contacts-block-wrapper:before {*/
  /*content: url("../images/circle.png");*/
  /*position: absolute;*/
  /*left: 271px;*/
  /*top: -39px;*/
/*}*/

footer {
  background-color: #7C7772;
  padding: 35px;
    flex-direction: column;
    justify-content: center;
    margin-top: auto;
    box-sizing: border-box;
    /*
    position: fixed;
    */
    bottom: 0;
    width: 100%;
}

footer .copyright {
  color: white;
  font-size: 14px;
}


.help-text-wrapper {
  display: flex;
  align-items: center;
}

.help-text {
  font-size: 20px;
  padding: 35px 43px;
  box-sizing: border-box;
  background-color: white;
  border-radius: 15px;
}

.help-text-before {
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-right: 18px solid white;
}

.help-contacts a {
  display: block;
}

.help-contacts .email {
  padding-left: 40px;
/*  background: url("/images/email.png") left center;*/
}

.help-contacts .email a {
  text-decoration: underline;
}

.help-contacts .phone {
  padding-left: 18px;
/*  background: url("/images/phone.png") 2% center;*/
}

.help-contacts .email,
.help-contacts .phone {
  background-repeat: no-repeat;
  box-sizing: border-box;
}




/******** VACANCY ********/

.flex-col{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.work-with-us{
    padding-top: 62px;
    padding-bottom: 47px;
    background: white;
}

.work-with-us h1{
    margin-bottom: 24px;
}

.work-with-us .after-title-text,
.vacancy .after-title-text{
    color: #888888;
    line-height: 25px;
}

.work-with-us .after-title-text{
    width: 690px;
}

.work-with-us img{
    width: 100%;
}

.work-with-us img.team{
    max-width: 846px;
    margin-top: 68px;
    margin-bottom: 75px;
}

.work-with-us .work-with-us-wrapper{
    width: 100%;
    height: 615px;
    display: flex;
    justify-content: space-between;
}

.work-with-us .work-with-us-wrapper .col{
    display: flex;
    flex-direction: column;
}

.work-with-us .work-with-us-wrapper .col-1{
    justify-content: space-between;
    align-items: flex-end;
}

.work-with-us .work-with-us-wrapper img.about-us{
    max-width: 131px;
}

.work-with-us .work-with-us-wrapper img.documents{
    max-width: 218px;
}

.work-with-us .work-with-us-wrapper .col-1,
.work-with-us .work-with-us-wrapper .col-3{
    width: 220px;
}

.work-with-us .work-with-us-wrapper .col-2{
    width: 460px;
    height: 505px;
    margin-top: 23px;
    justify-content: space-between;
    align-items: center;
}

.work-with-us .work-with-us-wrapper .col-2 p{
    margin: 0;
    font-weight: 300;
    line-height: 25px;
    text-align: justify;
    color: #84898d;
}

.work-with-us .work-with-us-wrapper .col-2 a{
    text-decoration: underline;
    color: #0f7ed8;
}

.work-with-us .work-with-us-wrapper .col-3{
    justify-content: center;
}

.work-with-us .work-with-us-wrapper .col-3 img{
    max-width: 206px;
}

.vacancy{
    padding-top: 76px;
    padding-bottom: 68px;
    background: #eaeaea;
}

.vacancy h1{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 18px;
}

.vacancy .after-title-text{
    width: 640px;
    margin-bottom: 32px;
}

.vacancy .vacancy-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.vacancy .vacancy-wrapper .vacancy-item{
    width: 100%;
    margin-bottom: 9px;
}

.vacancy .vacancy-wrapper .vacancy-item .vacancy-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 33px 0 20px;
    height: 79px;
    border: 1px solid #dcdcdc;
    background: white;
    cursor: pointer;
}

.vacancy .vacancy-wrapper .vacancy-item.close .vacancy-title{
    cursor: auto;
}

.vacancy .vacancy-wrapper .vacancy-item h3:after{
    position: absolute;
    top: -7px;
    right: -60px;
    height: 16px;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 400;
    color: white;
    text-align: center;
    box-sizing: border-box;
}

.vacancy .vacancy-wrapper .vacancy-item.active h3:after{
    content: "активная";
    width: 60px;
    background: #009350;
}

.vacancy .vacancy-wrapper .vacancy-item.close h3:after{
    content: "закрыта";
    width: 55px;
    right: -59px;
    background: #ababab;
}

.vacancy .vacancy-wrapper .vacancy-item .vacancy-title h3{
    position: relative;
    margin-right: 60px;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    color: #0f7ed8;
}

.vacancy .vacancy-wrapper .vacancy-item .vacancy-title span{
    position: relative;
    font-weight: 300;
    color: #0f7ed8;
}

.vacancy .vacancy-wrapper .vacancy-item.active .vacancy-title span:after{
    position: absolute;
    right: -15px;
}

.vacancy .vacancy-wrapper .vacancy-item.active .vacancy-title span.arrow-up:after{
    content: "↑";
}

.vacancy .vacancy-wrapper .vacancy-item.active .vacancy-title span.arrow-down:after{
    content: "↓";
}

.vacancy .vacancy-wrapper .vacancy-item .vacancy-description{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 36px 20px 32px 20px;
    background: #f7f7f7;
    border: 1px solid #e2e2e2;
    border-top: none;
}

.vacancy .vacancy-wrapper .vacancy-item.close .vacancy-title span,
.vacancy .vacancy-wrapper .vacancy-item .vacancy-description{
    display: none;
}

.vacancy .vacancy-wrapper .vacancy-item .vacancy-description.vac-1{
    display: flex;
}

.vacancy .vacancy-wrapper .vacancy-item .vacancy-description .col{
    display: flex;
    flex-direction: column;
    text-align: left;
}

.vacancy .vacancy-wrapper .vacancy-item .vacancy-description .col-1{
    width: 580px;
    justify-content: space-between;
}

.vacancy .vacancy-wrapper .vacancy-item .vacancy-description .col-1 h4{
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    color: #1e2b37;
}

.vacancy .vacancy-wrapper .vacancy-item .vacancy-description .col-1 .requirements h4{
    margin-top: 30px;
}

.vacancy .vacancy-wrapper .vacancy-item .vacancy-description .col-1 ul{
    margin: 0;
    padding-left: 0;
    list-style-position: inside;
}

.vacancy .vacancy-wrapper .vacancy-item .vacancy-description .col-1 li{
    font-weight: 300;
    line-height: 25px;
    color: rgba(57, 66, 75, 0.7);
}

.vacancy .vacancy-wrapper .vacancy-item .vacancy-description .col-2{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    margin-top: 5px;
    margin-right: 60px;
}

.vacancy .vacancy-wrapper .vacancy-item .vacancy-description .col-2 .work-description{
    display: flex;
    flex-direction: column;
    margin-bottom: 43px;
}

.vacancy .vacancy-wrapper .vacancy-item .vacancy-description .col-2 .work-description span{
    font-weight: 300;
    line-height: 25px;
    color: #84898d;
}

.vacancy .vacancy-wrapper .vacancy-item .vacancy-description .col-2 a.to-respond{
    display: inline-block;
    width: 200px;
    height: 42px;
    padding: 13px 20px 12px 20px;
    border-radius: 21px;
    font-size: 14px;
    color: white;
    background: #0073d6;
    text-align: center;
    box-sizing: border-box;
}




/****** MEDIA QUERIES ******/
@media screen and (max-width: 970px) {
  .container {
    width: 100%;
  }
  
  main .container-wrapper.services .container {
    justify-content: center;
  } 
  
  main .service-item {
    width: 250px !important;
  }
  
  main .service-item .service-image img {
    max-width: 250px !important;
  }
    main .container-wrapper.news .container .news-block{
        width: 620px;
    }



    .work-with-us .work-with-us-wrapper{
        height: auto;
        flex-direction: column;
        align-items: center;
    }

    .work-with-us img.team{
        margin: 50px 0;
    }

    .work-with-us .work-with-us-wrapper .col-1{
        display: none;
    }

    .work-with-us .work-with-us-wrapper img.about-us,
    .work-with-us .work-with-us-wrapper img.documents{
        margin-bottom: 20px;
    }

    .work-with-us .work-with-us-wrapper .col-2{
        width: 70%;
    }

    .work-with-us .work-with-us-wrapper .col-2{
        height: auto;
    }

    .work-with-us .work-with-us-wrapper .col-2 p{
        margin-bottom: 20px;
    }

    .work-with-us .work-with-us-wrapper .col-3{
        width: 100%;
        align-items: center;
    }

    .vacancy .vacancy-wrapper .vacancy-item .vacancy-description .col-2{
        margin-right: 0;
        margin-left: 10px;
    }
}
@media screen and (max-width: 820px) {
  body {
    font-size: 14px;
  }
  
  main .service-item:nth-child(n) {
    margin-top: 0;
    padding-bottom: 20px;
  }
  
/*  main .service-item:nth-child(9) {
    display: none;
  }*/
  
  /*main .service-item:nth-child(8) {*/
    /*margin-top: 15px;*/
  /*}*/
  
  main .container-wrapper.services {
    padding-bottom: 30px;
  }
  
  main .container-wrapper.contacts {
    padding-top: 100px;
    padding-bottom: 90px;
  }
  

}


@media screen and (max-width: 720px) {

    .work-with-us .after-title-text{
        width: auto;
    }

    .work-with-us .work-with-us-wrapper .col-2{
        width: 90%;
    }

    .vacancy .vacancy-wrapper .vacancy-item .vacancy-description{
        flex-direction: column;
        align-items: flex-start;
    }

    .vacancy .vacancy-wrapper .vacancy-item .vacancy-description .col-1{
        width: auto;
    }

    .vacancy .vacancy-wrapper .vacancy-item .vacancy-description .col-2{
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
        align-items: flex-start;
    }

    .vacancy .vacancy-wrapper .vacancy-item .vacancy-description .col-2 .to-respond{
        align-self: center;
    }
}

@media screen and (max-width: 650px) {
  main .container-wrapper.title {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  h1 {
    font-size: 44px;
    width: 100%;
  }
  
  .after-title-text {
    width: 100%;
  }
  
  main .contacts .contacts-block-wrapper {
    width: 85%;
    padding: 30px 40px 40px 40px;
    text-align: center;
  }
  
  main .contacts .contacts-block-wrapper::before {
    left: 42%;
  }
  
  main .contacts h3 {
    font-size: 24px;
  }
  
  main .contacts .contacts-block-wrapper .contacts-column {
    display: block;
    width: auto;
    margin-bottom: 15px;
  }
  
  
  header .container {
    padding-top: 35px;
    padding-bottom: 25px;
  }


    main .container-wrapper.news .container .caption span{
        width: auto;
    }

    main .container-wrapper.news .container .news-block{
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .work-with-us{
        padding-top: 50px;
    }

    .vacancy{
        padding: 50px 0;
    }

    .vacancy .after-title-text{
        width: auto;
    }
}

@media screen and (max-width: 540px) {
  header .container {
    padding: 30px 0 20px;
  }
  
  header .container {
    display: inherit;
  }
  
  header .menu-wrapper {
    margin-top: 20px;
  }
  
  header .menu {
    justify-content: space-around;
  }
  
  header .menu-item {
    margin: 0;
  }
  
  main .service-item {
    width: 70%;
  }
  
  main .service-item .service-image img {
    width: 100%;
    max-width: 100%;
  }


    .work-with-us .work-with-us-wrapper .col-2{
        width: 100%;
    }

    .vacancy .vacancy-wrapper .vacancy-item .vacancy-title span{
        display: none;
    }
}

@media screen and (max-width: 430px) {
  h1 {
    font-size: 32px;
  }
  
  main .contacts .contacts-block-wrapper {
    text-align: left;
  }


    .work-with-us img.team{
        margin: 30px 0;
    }

    .work-with-us .work-with-us-wrapper .col-3 img{
        max-width: 150px;
    }

    .vacancy .vacancy-wrapper .vacancy-item .vacancy-title h3,
    .vacancy .vacancy-wrapper .vacancy-item .vacancy-description .col-1 h4{
        font-size: 18px;
    }

}

@media screen and (max-width: 410px) {

    .vacancy .vacancy-wrapper .vacancy-item .vacancy-description{
        font-size: 14px;
    }

    .vacancy .vacancy-wrapper .vacancy-item .vacancy-title h3,
    .vacancy .vacancy-wrapper .vacancy-item .vacancy-description .col-1 h4{
        font-size: 16px;
    }

    .vacancy .vacancy-wrapper .vacancy-item .vacancy-description .col-2 .work-description{
        margin-bottom: 20px;
    }

}

@media screen and (min-width: 1540px) {
  .container {
    width: 1200px;
  }

  main .service-item {
    width: 360px !important;
  }

  main .service-item .service-image img {
    width: 360px !important;
    max-width: 360px !important;
  }


    main .container-wrapper.news .container .news-block .news-item{
        width: 360px;
    }

    main .container-wrapper.news .container .news-block .news-item .n-note,
    main .container-wrapper.news .container .news-block .news-item .people .p-information{
        width: 290px;
    }

    main .container-wrapper.news .container .news-block .news-item .people .p-information{
        font-size: 14px;
    }
}

/*@media screen and (min-width: 1900px) {*/
  /*.container {*/
    /*width: 1325px;*/
  /*}*/

  /*main .service-item {*/
    /*width: 400px;*/
    /*margin: 0 20px;*/
  /*}*/

  /*main .service-item .service-image img {*/
    /*width: 400px;*/
    /*max-width: 400px;*/
  /*}*/
/*}*/



/******** ADDONS ********/


.contacts .contacts-column.column-left  a {color: #fff; }


.inner-page h1 {
  font-size: 24pt;
  text-align: justify;
  max-width: 610px;
}
.inner-page .after-title-text {
  text-align: justify;
  color: #747a81;
  font-weight: 300;
  line-height: 25px;
  font-size: 18px;
}


abbr[title], acronym[title] {
    text-decoration: underline;
    cursor: pointer;
}