html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background: transparent;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

* {
  box-sizing: border-box;
}

body {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  -webkit-text-size-adjust: none;
  background-color: #f8f6f6;
  text-align: center;
  box-sizing: border-box;
}

.wrapper {
  max-width: 1140px;
  max-width: 1440px;
  margin: auto;
  height: 100%;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: black;
}

.header-top__languages {
  z-index: 1;
  display: flex;
  align-items: center;
  margin: 0 0 0 auto;
  position: absolute;
  top: 10px;
  right: 5%;
}
.header-top__languages a {
  width: 40px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.2s;
  margin-left: 5px;
  padding-top: 2px;
}
.header-top__languages a.active {
  background: #344b8e;
  color: white;
}

.rubryca_logo {
  position: relative;
  padding: 60px 0 0;
}
.rubryca_logo .l-cube {
  width: 51px;
  height: 51px;
  position: absolute;
  transition: transform 0.25s, opacity 0.25s;
  transition-delay: 0.25s;
  display: inline-block;
}

.rubryca_block:hover .logo-cube-1 {
  animation: logo_1 0.6s 1 linear;
}
.rubryca_block:hover .logo-cube-2 {
  animation: logo_2 0.6s 1 linear;
}
.rubryca_block:hover .logo-cube-3 {
  animation: logo_3 0.6s 1 linear;
}
.rubryca_block:hover .logo-cube-4 {
  animation: logo_4 0.6s 1 linear;
}

.logo-cube {
  position: absolute;
  width: 24px;
  height: 24px;
  display: inline-block;
  transition: all 0.5s;
  transform-origin: 50% 50%;
}

.logo-cube-1 {
  background: #BFDDE7;
  left: 0;
  top: 0;
}

.logo-cube-2 {
  background: #0A2B53;
  right: 0;
  top: 0;
}

.logo-cube-3 {
  background: #5B9CCA;
  left: 0;
  bottom: 0;
}

.logo-cube-4 {
  background: #ADBEC5;
  right: 0;
  bottom: 0;
}

@keyframes logo_1 {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  50% {
    transform: translate(-7px, -7px) rotate(30deg);
  }
  50% {
    transform: translate(-7px, -7px) rotate(60deg);
  }
  70% {
    transform: translate(-7px, -7px) rotate(75deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(90deg);
  }
}
@keyframes logo_2 {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  30% {
    transform: translate(7px, -7px) rotate(30deg);
  }
  50% {
    transform: translate(7px, -7px) rotate(60deg);
  }
  70% {
    transform: translate(7px, -7px) rotate(75deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(90deg);
  }
}
@keyframes logo_3 {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  30% {
    transform: translate(-7px, 7px) rotate(30deg);
  }
  50% {
    transform: translate(-7px, 7px) rotate(60deg);
  }
  70% {
    transform: translate(-7px, 7px) rotate(75deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(90deg);
  }
}
@keyframes logo_4 {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  30% {
    transform: translate(7px, 7px) rotate(30deg);
  }
  50% {
    transform: translate(7px, 7px) rotate(60deg);
  }
  70% {
    transform: translate(7px, 7px) rotate(75deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(90deg);
  }
}
header {
  min-height: 700px;
  position: relative;
}
header .wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1440px;
  padding: 0 5%;
  padding-top: 50px;
}

.header_column {
  width: 50%;
}

.header_bg-img {
  background: url(../img/header-bg.svg);
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  transform: rotate(0deg);
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.logo_link {
  text-decoration: none;
  color: black;
  width: 60%;
}

.site_name {
  display: flex;
  height: 300px;
  font-family: "Open Sans", sans-serif;
}

h1.title {
  font-size: 60px;
  padding: 0 13px;
  line-height: 65px;
  letter-spacing: 2px;
  text-align: left;
  font-weight: normal;
}

.logo-img {
  padding: 50px 0 0;
}
.logo-img img {
  height: 70%;
}

.header-text {
  text-align: left;
  padding-left: 10px;
}

.header-info {
  padding: 0;
  margin: 0;
  font-size: 20px;
  font-weight: normal;
}

.header_img {
  background: url(../img/header-img.svg);
  display: block;
  min-width: 600px;
  margin-top: 120px;
  margin-left: 35px;
  height: 500px;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .header_img {
    margin-top: 150px;
    margin-left: 0;
  }
}
@media (max-width: 820px) {
  .header_column {
    width: 100%;
  }

  .header_img {
    margin-top: 30px;
    margin-left: 0;
  }
}
@media (max-width: 450px) {
  header {
    height: 800px;
    background: #E0E8FD;
  }
  header .wrapper {
    padding-top: 30px;
  }

  .logo-img img {
    height: 70%;
  }

  .site_name {
    height: 200px;
  }

  h1.title {
    padding-top: 20px;
    font-size: 35px;
    line-height: 40px;
  }

  .header_img {
    min-width: 0;
  }

  .header_bg-img {
    display: none;
  }
}
@media (max-width: 430px) {
  .logo-img img {
    height: 60%;
  }

  h1.title {
    font-size: 30px;
    line-height: 35px;
  }
}
@media (max-width: 320px) {
  header {
    height: 700px;
  }

  .logo-img img {
    height: 45%;
  }

  h1.title {
    font-size: 25px;
    line-height: 30px;
  }

  .header-info {
    font-size: 16px;
  }
}
h2 {
  font-weight: 400;
  font-size: 30px;
}

.rubryca_project {
  background: linear-gradient(90deg, #EFF3F6 0%, #EAF2F7 50%);
}

.project_item-wide {
  width: 100%;
  transition: 0.5s;
}
.project_item-wide:hover {
  box-shadow: 10px 10px 76px 0px rgba(0, 0, 0, 0.1) inset;
  -webkit-box-shadow: 10px 10px 76px 0px rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow: 10px 10px 76px 0px rgba(0, 0, 0, 0.1) inset;
}
.project_item-narrow {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rubryca_project-main p {
  font-size: 20px;
}
.rubryca_project-main h3 {
  margin: 0;
}

.rubryca_sideprojects-block {
  display: flex;
  flex-wrap: wrap;
}

.rubryca_sideprojects-item {
  width: 50%;
  height: 150px;
  text-decoration: none;
  color: black;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
}
.rubryca_sideprojects-item:hover {
  box-shadow: 10px 10px 76px 0px rgba(0, 0, 0, 0.1) inset;
  -webkit-box-shadow: 10px 10px 76px 0px rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow: 10px 10px 76px 0px rgba(0, 0, 0, 0.1) inset;
}
.rubryca_sideprojects-item:hover .sideproject_text {
  top: 0;
}
.rubryca_sideprojects-item:hover .mask {
  top: 0;
}
.rubryca_sideprojects-item img {
  margin-top: 15px;
  height: 80%;
}

.mask {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: 0.5s;
  background: rgba(59, 58, 58, 0.8);
  top: -400px;
}

.sideproject_text {
  margin-top: 20px;
  width: 100%;
  position: absolute;
  top: -400px;
  transition: 0.5s;
  color: white;
}
.sideproject_text h4 {
  font-size: 30px;
  margin: 0;
}
.sideproject_text p {
  margin: 10px auto;
  font-size: 20px;
}

.urban_block {
  background-color: #7b0f87;
}

.ekorubryka_block {
  background-color: #00944e;
}

.nebaiduja_block {
  background: #F8C242;
}

.erubryka_block {
  background: #3A6A92;
}

.projects_narrow-box {
  display: flex;
}

.project_item-narrow {
  position: relative;
  width: 50%;
  height: 300px;
  overflow: hidden;
}
.project_item-narrow:hover {
  box-shadow: 10px 10px 76px 0px rgba(0, 0, 0, 0.1) inset;
  -webkit-box-shadow: 10px 10px 76px 0px rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow: 10px 10px 76px 0px rgba(0, 0, 0, 0.1) inset;
}
.project_item-narrow:hover .mask {
  top: 0;
}
.project_item-narrow:hover .narrow_item-text {
  top: 0;
}
.narrow_project-name {
  height: 100px;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.narrow_project-name h3 {
  font-size: 70px;
  font-weight: 400;
  margin: 0;
  color: white;
}

.narrow_item-text {
  margin-top: 40px;
  width: 100%;
  position: absolute;
  top: -400px;
  transition: 0.5s;
  color: white;
  padding: 0 20px;
}
.narrow_item-text p {
  font-size: 20px;
}
.narrow_item-text h4 {
  font-size: 30px;
  margin: 0;
}

.narrow_project-logo img {
  height: 100px;
}

.openschool_block {
  background-color: #7CA7CB;
}

.urbanspace_block {
  background-color: #7DCE82;
}

@media (max-width: 1024px) {
  .project_item-narrow {
    height: 250px;
  }
  .narrow_project-name h3 {
    font-size: 50px;
  }
}
@media (max-width: 820px) {
  .rubryca_sideprojects-block {
    flex-direction: column;
  }

  .rubryca_sideprojects-item {
    width: 100%;
  }

  .projects_narrow-box {
    flex-direction: column;
  }

  .project_item-narrow {
    width: 100%;
    height: 300px;
  }
}
@media (max-width: 450px) {
  .project_item-narrow {
    height: 200px;
  }

  .narrow_project-name h3 {
    font-size: 40px;
  }

  .narrow_project-logo img {
    height: 50px;
  }

  .narrow_item-text {
    margin-top: 0;
  }
  .narrow_item-text p {
    font-size: 16px;
  }
}
@media (max-width: 430px) {
  .years {
    margin: 0 auto;
  }

  .rubryca_sideprojects-item img {
    height: 60%;
    margin-top: 20px;
  }

  .sideproject_text p {
    font-size: 16px;
  }
}
@media (max-width: 320px) {
  .rubryca_logo {
    transform: scale(0.9);
  }

  .rubryca_project-main p {
    font-size: 16px;
    padding: 0 5%;
  }
  .rubryca_project-main h3 {
    font-size: 18px;
  }

  .rubryca_sideprojects-item img {
    height: 65%;
  }

  .narrow_project-name h3 {
    font-size: 35px;
  }
}
.contacts_section {
  background-color: #3c5499;
}
.contacts_section .wrapper {
  color: white;
  padding-bottom: 40px;
}
.contacts_section h3 {
  text-transform: uppercase;
  text-decoration: underline 2px;
}

.contact_block {
  display: flex;
  min-height: 200px;
}

.contact_block-column {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact_block-column a {
  color: white;
}

.contact_block-item {
  display: flex;
  justify-content: left;
  height: 100px;
  padding-top: 10px;
  padding-left: 10%;
  transition: 0.2s;
}
.contact_block-item:hover {
  background-color: #2e4177;
}
.contact_block-item p {
  font-size: 20px;
  line-height: 20px;
  text-align: left;
}
.contact_block-item i {
  margin-right: 20px;
  padding-top: 15px;
  font-size: 50px;
}

.contact_text {
  padding-top: 20px;
}
.contact_text p {
  margin: 0;
}
.contact_text em {
  font-size: 14px;
  line-height: 14px;
  padding: 0;
}

.contact_block-leader {
  border-left: 0.5px solid white;
  display: flex;
  width: 100%;
  height: 200px;
  transition: 0.2s;
}
.contact_block-leader:hover {
  background-color: #2e4177;
}

.contact_block-img {
  margin: 10px 20px;
  width: 180px;
  height: 180px;
  background-color: rgba(0, 0, 0, 0.27);
  border: 1px solid #fff8f8;
  border-radius: 50%;
  overflow: hidden;
}
.contact_block-img img {
  height: 100%;
  width: 100%;
}

.contact_block-text {
  padding: 35px 0;
  text-align: left;
}
.contact_block-text h6 {
  font-size: 30px;
  margin: 0;
}

@media (max-width: 1024px) {
  .contact_block-text h6 {
    font-size: 25px;
  }
}
@media (max-width: 820px) {
  .contact_block {
    flex-direction: column;
  }

  .contact_block-column {
    width: 100%;
  }

  .contact_block-item {
    padding-left: 20%;
    width: 100%;
    border-top: 1px solid white;
  }

  .contact_block-leader {
    padding-left: 15%;
    padding-top: 10px;
    border-left: 0;
  }

  .leader_link {
    border-left: none;
    border-top: 1px solid white;
  }

  .contacts_section .wrapper {
    padding-bottom: 15px;
  }
}
@media (max-width: 430px) {
  .contact_block-item {
    padding-left: 5%;
  }
  .contact_block-item p {
    line-height: 20px;
  }

  .contact_block-leader {
    flex-direction: column;
    height: 100%;
    padding-left: 0;
    padding-top: 25px;
  }

  .contacts_section .wrapper {
    padding-bottom: 0;
  }

  .contact_block-img {
    margin: 0 auto;
  }

  .contact_block-text {
    margin: 0 auto;
  }
}
footer {
  background-color: #344b8e;
  height: 70px;
}
footer a {
  height: 100%;
}
footer p {
  margin: 0;
  color: white;
  padding: 24px 0;
}

/*# sourceMappingURL=style.css.map */
