/* media queries */
/* menu */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
::-webkit-scrollbar {
  display: none;
}
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
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: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a:visited,
a:link,
a:active {
  text-decoration: none;
  color: black;
}
a:hover {
  text-decoration: none;
}
#splash-screen {
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
#splash-screen #splash-screen-logo {
  background-size: contain;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 55px;
}
#splash-screen .loader {
  border: 0 solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #009119;
  border-bottom: 16px solid #cf000b;
  width: 100px;
  height: 100px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  opacity: 0.5;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.main-menu {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
  height: 60px;
}
.main-menu .main-menu-left {
  display: inline-block;
  vertical-align: middle;
  margin-top: 5px;
}
.main-menu .menu-logo-container {
  display: inline-block;
  margin-left: 1em;
  vertical-align: middle;
}
.main-menu .menu-logo-container .menu-logo-desktop {
  width: 10em;
  height: 3em;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1200px) {
  .main-menu {
    line-height: inherit;
  }
  .main-menu .hamburger-menu-icon {
    display: none;
  }
  .main-menu .mobile-menu-container {
    display: none;
  }
  .main-menu .menu-new-energy {
    padding: 0.8em 1.5em;
    background-color: white;
    border-radius: 32px;
    border: 2px solid #009119;
    color: #009119;
    display: inline-block;
    margin-left: 4em;
    vertical-align: middle;
    font-size: 15px;
    font-weight: 600;
  }
  .main-menu .menu-new-energy:not(.active):hover {
    background-color: #009119;
    color: white;
  }
  .main-menu .menu-new-energy:not(.active):active {
    background-color: #006511;
    border-color: #006511;
    color: white;
  }
  .main-menu .menu-new-energy.active {
    background-color: #009119;
    border-color: #009119;
    color: white;
  }
  .main-menu .nav-container {
    margin-right: 1em;
    float: right;
    text-align: right;
    display: inline-block;
  }
  .main-menu .nav-container nav {
    text-transform: uppercase;
    display: inline-block;
    margin-left: 1em;
  }
  .main-menu .nav-container nav a {
    font-weight: 100;
    font-family: "Quicksand";
    display: inline-block;
    padding: 1em 0;
    margin: 0.3em 0.5em;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px), only screen and (max-width: 767px) {
  .main-menu {
    line-height: 60px;
  }
  .main-menu .menu-new-energy {
    display: none;
  }
  .main-menu .nav-container {
    display: none;
  }
  .main-menu ul.mobile-menu-container {
    overflow-x: hidden;
    height: calc(100vh - 60px);
    background-color: black;
    border-top: 1px solid black;
    overflow-y: scroll;
    position: relative;
    line-height: 1em;
  }
  .main-menu ul.mobile-menu-container li {
    display: grid;
    border-bottom: 1px solid black;
  }
  .main-menu ul.mobile-menu-container li a {
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: white;
    padding: 1em;
    height: 3em;
  }
  .main-menu ul.mobile-menu-container li.mobile-menu-languages {
    display: block;
  }
  .main-menu ul.mobile-menu-container li.mobile-menu-languages a {
    height: 3em;
    display: inline-block;
  }
  .main-menu .hamburger-menu-icon {
    width: 30px;
    height: 30px;
    display: inline-block;
    float: right;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: calc((60px - 30px) / 2) 1em;
  }
}
@media only screen and (min-width: 1200px) {
  .NewEnergy-mobile {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px), only screen and (max-width: 767px) {
  .NewEnergy-desktop {
    display: none;
  }
}
@media only screen and (min-width: 1200px), only screen and (min-width: 768px) and (max-width: 1199px), only screen and (max-width: 767px) {
  .NewEnergy-container {
    display: flex;
    flex-direction: column;
  }
  .NewEnergy-container .main-menu {
    flex-basis: 60px;
    -webkit-box-shadow: 0 4px 6px -6px black;
    -moz-box-shadow: 0 4px 6px -6px black;
    box-shadow: 0 4px 6px -6px black;
    position: relative;
  }
  .NewEnergy {
    flex-grow: 1;
    font-family: Quicksand;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
  }
  .NewEnergy .NewEnergy-content,
  .NewEnergy .NewEnergy-images {
    height: calc(100vh - 60px);
    display: inline-block;
    vertical-align: top;
  }
  .NewEnergy .NewEnergy-content {
    width: 40%;
    padding: 70px;
    padding-right: 200px;
    overflow: auto;
  }
  .NewEnergy .NewEnergy-content .NewEnergy-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
  }
  .NewEnergy .NewEnergy-images {
    width: 60%;
  }
  .NewEnergy .NewEnergy-images > div {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 33.33%;
  }
  .NewEnergy .NewEnergy-images > div:last-child {
    background-position: 0 90%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px), only screen and (max-width: 767px) {
  .NewEnergy .NewEnergy-content,
  .NewEnergy .NewEnergy-images {
    height: auto;
    display: block;
    width: 100%;
  }
  .NewEnergy .NewEnergy-images {
    height: 75vh;
  }
  .NewEnergy .NewEnergy-content {
    width: 100%;
    padding: 50px;
  }
}
@media only screen and (min-width: 1200px), only screen and (min-width: 768px) and (max-width: 1199px), only screen and (max-width: 767px) {
  .NewPartnership-container {
    display: flex;
    flex-direction: column;
  }
  .NewPartnership-container .main-menu {
    flex-basis: 60px;
    -webkit-box-shadow: 0 4px 6px -6px black;
    -moz-box-shadow: 0 4px 6px -6px black;
    box-shadow: 0 4px 6px -6px black;
    position: relative;
  }
  .NewPartnership {
    flex-grow: 1;
    font-family: Quicksand;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
  }
  .NewPartnership .NewPartnership-content,
  .NewPartnership .NewPartnership-images {
    height: calc(100vh - 60px);
    display: inline-block;
    vertical-align: top;
  }
  .NewPartnership .NewPartnership-content {
    width: 40%;
    padding: 70px;
    padding-right: 200px;
    overflow: auto;
  }
  .NewPartnership .NewPartnership-content .NewPartnership-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
  }
  .NewPartnership .NewPartnership-content.full {
    padding-left: 200px;
    width: 100%;
  }
  .NewPartnership .NewPartnership-content.width-80 {
    width: 80%;
  }
  .NewPartnership .NewPartnership-content.width-20 {
    width: 20%;
  }
  .NewPartnership .NewPartnership-images {
    width: 60%;
  }
  .NewPartnership .NewPartnership-images > div {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 50%;
  }
  .NewPartnership .NewPartnership-images > div:last-child {
    background-position: 0 90%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px), only screen and (max-width: 767px) {
  .NewPartnership .NewPartnership-content,
  .NewPartnership .NewPartnership-images {
    height: auto;
    display: block;
    width: 100%;
  }
  .NewPartnership .NewPartnership-images {
    height: 75vh;
  }
  .NewPartnership .NewPartnership-content {
    width: 100%;
    padding: 50px;
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
}
.sections-container {
  width: 100vw;
  top: 60px;
  height: calc(100vh - 60px);
  position: relative;
}
.sections-container .section {
  width: 100%;
  height: 100%;
  position: relative;
}
.sections-container .section > .picture {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.sections-container .section > .content {
  z-index: 1;
  position: relative;
  padding: 1em 1.5em;
  box-sizing: border-box;
  width: 100%;
}
.sections-container .section > .content h1 {
  font-size: 1.6em;
  margin-bottom: 0.7em;
}
.sections-container .section > .content p {
  margin: 1em 0em;
  font-size: 0.9em;
  line-height: 1.5em;
}
.sections-container .section > .content p:first-child {
  column-count: 2;
  column-gap: 2.5em;
}
.sections-container .section > .content b {
  font-weight: bold;
}
.sections-container .section > .content ul {
  padding: 2em;
  list-style-position: inside;
  line-height: 1.2em;
  margin-top: 1.5em;
  text-transform: uppercase;
  font-size: 0.9em;
  padding: 0em 1em;
}
.sections-container .section > .content ul li {
  padding: 0.7em 0.5em;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.18);
}
.sections-container .section > .content a {
  text-transform: uppercase;
}
.section.home > .content {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  padding: 0;
  height: 100%;
  color: white;
  text-align: right;
}
.section.home > .content a {
  width: 450px;
  height: 250px;
  position: relative;
  margin: 2em 0 0 auto;
  color: white;
  display: block;
}
.section.home > .content a .news-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
}
.section.home > .content a .news-image span {
  display: block;
  text-align: left;
  padding: 0 1em 0 80px;
  top: 2.2em;
  position: relative;
  margin: 0;
  font-size: 32px;
  line-height: 68px;
}
.section.home > .content a .news-image span:last-child {
  font-size: 29px;
  line-height: 32px;
  text-decoration: underline;
  text-transform: none;
}
.section.home > .content > span {
  position: absolute;
  bottom: 3em;
  font-size: 0.9em;
  right: 2em;
}
@media only screen and (min-width: 1200px) {
  .section.home > .content {
    font-size: 3.5em;
    line-height: 1.1em;
    width: 60%;
    bottom: 3em;
  }
}
@media only screen and (max-width: 767px) {
  .section.home > .content {
    font-size: 1.3em;
    line-height: 1.1em;
    width: 60%;
    bottom: 1em;
  }
  .section.home > .content > span {
    font-size: 0.8em;
  }
  .section.home > .content a {
    width: 175px;
    height: 100px;
  }
  .section.home > .content a .news-image span {
    padding: 0 1em 0 30px;
    font-size: 14px;
    line-height: 20px;
  }
  .section.home > .content a .news-image span:last-child {
    font-size: 13px;
    line-height: 15px;
    text-decoration: underline;
    text-transform: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 1199px) and (orientation : portrait) {
  .section.home > .picture {
    background-position: 30%;
  }
  .section.home > .content {
    width: 80%;
    font-size: 1.8em;
  }
  .section.home > .content a {
    width: 250px;
    height: 150px;
  }
  .section.home > .content a .news-image span {
    padding: 0 1em 0 30px;
    font-size: 21px;
    line-height: 33px;
  }
  .section.home > .content a .news-image span:last-child {
    font-size: 18px;
    line-height: 21px;
    text-decoration: underline;
    text-transform: none;
  }
}
@media only screen and (max-width: 767px) and (orientation : portrait) {
  .section.home > .picture {
    background-position: 30%;
  }
  .section.home > .content {
    width: 80%;
  }
}
.section.company > .content {
  position: absolute;
  padding: 1em 1.5em;
  font-size: 1.07em;
}
.section.company > .content > span p {
  margin: 0.5em 0;
}
.section.company > .content > span p.company-text-1 {
  margin: 0.5em 0;
  column-count: 1;
}
.section.company > .content > span p a b {
  font-size: 1.1em;
}
@media only screen and (min-width: 1200px) {
  div.section.company > .picture {
    height: 73%;
  }
  div.section.company > .content {
    height: 27%;
    bottom: 0;
  }
  div.section.company > .content > h1 {
    margin: 0.2em 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  div.section.company > .picture {
    height: 67%;
  }
  div.section.company > .content {
    height: 33%;
    bottom: 0;
  }
  div.section.company > .content > h1 {
    margin: 0.2em 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) and (orientation : portrait) {
  div.section.company > .picture {
    height: 73%;
  }
  div.section.company > .content {
    height: 27%;
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  div.section.company > .picture {
    height: 35%;
  }
  div.section.company > .content {
    bottom: 0;
    height: 65%;
    font-size: 0.8em;
  }
  div.section.company > .content > h1 {
    margin: 0.5em 0;
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 767px) and (orientation : portrait) {
  div.section.company > .picture {
    height: 50%;
  }
  div.section.company > .content {
    height: 50%;
    bottom: 0;
  }
}
.section.products {
  /*  > .picture {
      height: @slice;
      background-size: 80%;
      background-position: center 56px;
      background-color: #e1eafa;
      display: none;
    }*/
}
.section.products > .content {
  position: absolute;
  top: 0%;
  bottom: 0;
  overflow: hidden;
  background-color: #ffffff;
}
.section.products > .content > h1 {
  margin: 0.3em;
}
.section.products > .content .product-category {
  padding: 0em 0.5em 0.5em 0.5em;
  width: calc(33% - 1px);
  border-right: 1px solid #9e9b97;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: top;
  height: 20em;
  position: relative;
  margin-bottom: 0.5em;
}
.section.products > .content .product-category .product-category-picture {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.section.products > .content .product-category:last-child {
  border: 0;
}
.section.products > .content .product-category h2 {
  font-weight: bold;
  margin-bottom: 0.7em;
}
.section.products > .content .product-category .product-list {
  position: absolute;
  bottom: 0;
  left: 0.5em;
  right: 0.5em;
}
.section.products > .content .product-category .product {
  text-indent: 0.5em;
  font-size: 0.9em;
  margin-bottom: 0.3em;
  width: 100%;
  border-bottom: 1px dotted #ada5a4;
  padding: 0.3em 0em;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) and (orientation : landscape) {
  div.section.products > .content .product-category {
    height: 19em;
  }
  div.section.products > .content .product-category .product-category-picture {
    height: 130px;
  }
  div.section.products > .content .product-category h2 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) and (orientation : portrait) {
  div.section.products > .content .product-category {
    width: calc(50% - 3px);
    height: 17em;
  }
  div.section.products > .content .product-category .product-category-picture {
    height: 100px;
  }
}
@media only screen and (max-width: 767px) {
  div.section.products > .content {
    padding: 0.5em 1em;
    font-size: 0.8em;
  }
  div.section.products > .content > h1 {
    margin: 0.2em 0;
    font-size: 0.8em;
  }
  div.section.products > .content .product-category {
    height: 8.5em;
    margin-bottom: 0.8em;
  }
  div.section.products > .content .product-category .product-category-picture {
    width: 100%;
    height: 45px;
    object-fit: cover;
  }
  div.section.products > .content .product-category h2 {
    font-weight: bold;
    font-size: 0.7em;
    margin-bottom: 0.2em;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  div.section.products > .content .product-category .product-list {
    position: absolute;
    bottom: 0;
    left: 0.2em;
    right: 0.2em;
  }
  div.section.products > .content .product-category .product {
    text-indent: 0.2em;
    font-size: 0.4em;
    margin-bottom: 0.2em;
    width: 100%;
    border-bottom: 1px dotted #ada5a4;
    padding: 0.2em 0em;
    text-transform: uppercase;
  }
}
@media only screen and (max-width: 767px) and (orientation : portrait) {
  div.section.products > .content .product-category {
    width: calc(50% - 2px);
    height: 11em;
  }
  div.section.products > .content .product-category .product-category-picture {
    height: 70px;
  }
}
@media only screen and (min-width: 1200px) {
  .section.engineering > .picture {
    background-position: 77.5% center;
    width: 50%;
    right: 0;
  }
  .section.engineering > .content {
    position: absolute;
    top: 2em;
    width: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  div.section.engineering > .picture {
    height: 50%;
    background-position: right 0;
  }
  div.section.engineering > .content {
    position: absolute;
    height: 50%;
    bottom: 0;
    font-size: 1.5em;
  }
  div.section.engineering > .content span b {
    font-size: 0.6em;
    margin-bottom: 0.3em;
  }
  div.section.engineering > .content span ul {
    margin: 0;
    padding-left: 0.3em;
    column-count: 2;
    column-gap: 2.5em;
  }
  div.section.engineering > .content span ul li {
    padding: 0.3em;
    font-size: 0.6em;
  }
  div.section.engineering > .content > h1 {
    margin: 1em 0;
    font-size: 1.1em;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) and (orientation : portrait) {
  div.section.engineering > .picture {
    height: 63%;
    background-position: right;
  }
  div.section.engineering > .content {
    height: 37%;
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  div.section.engineering > .picture {
    height: 30%;
    background-position: right 15%;
  }
  div.section.engineering > .content {
    height: 70%;
    bottom: 0;
    position: absolute;
    font-size: 0.8em;
  }
  div.section.engineering > .content span b {
    font-size: 0.6em;
    margin-bottom: 0.3em;
  }
  div.section.engineering > .content span ul {
    margin: 0;
    padding-left: 0.3em;
    column-count: 2;
    column-gap: 2.5em;
  }
  div.section.engineering > .content span ul li {
    padding: 0.3em;
    font-size: 0.6em;
  }
  div.section.engineering > .content > h1 {
    margin: 1em 0;
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 767px) and (orientation : portrait) {
  div.section.engineering > .picture {
    height: 60%;
    background-position: right;
  }
  div.section.engineering > .content {
    height: 40%;
    bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .section.procurement {
    overflow: hidden;
  }
  .section.procurement > .picture {
    width: 50%;
    left: 0;
    background-size: auto 136%;
    background-position: 11.5% bottom;
  }
  .section.procurement > .content {
    position: absolute;
    top: 2em;
    right: 0;
    width: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  div.section.procurement > .picture {
    height: 50%;
    background-size: auto 285%;
    background-position: 0% 90%;
    background-repeat: no-repeat;
  }
  div.section.procurement > .content {
    height: 50%;
    position: absolute;
    bottom: 0;
    font-size: 1.5em;
  }
  div.section.procurement > .content span b {
    font-size: 0.6em;
    margin-bottom: 0.3em;
  }
  div.section.procurement > .content span ul {
    margin: 0;
    padding-left: 0.3em;
    column-count: 2;
    column-gap: 2.5em;
  }
  div.section.procurement > .content span ul li {
    padding: 0.3em;
    font-size: 0.6em;
  }
  div.section.procurement > .content > h1 {
    margin: 1em 0;
    font-size: 1.1em;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) and (orientation : portrait) {
  div.section.procurement > .picture {
    background-size: auto 160%;
    height: 55%;
  }
  div.section.procurement > .content {
    height: 45%;
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  div.section.procurement > .picture {
    height: 30%;
    background-size: auto 800%;
    background-position: 0% 87%;
  }
  div.section.procurement > .content {
    position: absolute;
    height: 70%;
    bottom: 0;
    font-size: 0.8em;
  }
  div.section.procurement > .content span b {
    font-size: 0.6em;
    margin-bottom: 0.3em;
  }
  div.section.procurement > .content span ul {
    margin: 0;
    padding-left: 0.3em;
    column-count: 2;
    column-gap: 2.5em;
  }
  div.section.procurement > .content span ul li {
    padding: 0.3em;
    font-size: 0.6em;
  }
  div.section.procurement > .content > h1 {
    margin: 1em 0;
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 767px) and (orientation : portrait) {
  div.section.procurement > .picture {
    height: 50%;
    background-size: auto 136%;
    background-position: 11.5% bottom;
  }
  div.section.procurement > .content {
    height: 50%;
    bottom: 0;
  }
}
.section.quality .show-mobile {
  display: none;
}
.section.quality .hide-mobile {
  display: inline-block;
}
.section.quality > .content {
  position: absolute;
  font-size: 1.07em;
}
.section.quality > .content > span p {
  margin: 0.5em 0;
}
.section.quality > .content > span p.qualita-text-1 {
  margin: 0.5em 0;
  column-count: 1;
}
.section.quality > .content > span p a b {
  font-size: 1.1em;
}
@media only screen and (min-width: 1200px), only screen and (min-width: 768px) and (max-width: 1199px) {
  div.section.quality > .picture {
    height: 70%;
  }
  div.section.quality > .content {
    height: 30%;
    bottom: 0;
  }
  div.section.quality > .content > h1 {
    margin: 0.5em 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) and (orientation : portrait) {
  div.section.quality > .picture {
    height: 75%;
    background-position: 35%;
  }
  div.section.quality > .content {
    height: 25%;
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  div.section.quality > .picture {
    height: 35%;
    background-position: left 17%;
  }
  div.section.quality > .content {
    bottom: 0;
    height: 65%;
    font-size: 0.8em;
  }
  div.section.quality > .content > h1 {
    margin: 1em 0;
    font-size: 1.1em;
  }
  div.section.quality .show-mobile {
    display: inline-block;
  }
  div.section.quality .hide-mobile {
    display: none;
  }
}
@media only screen and (max-width: 767px) and (orientation : portrait) {
  div.section.quality > .picture {
    height: 50%;
    background-position: left;
  }
  div.section.quality > .content {
    bottom: 0;
    height: 50%;
    font-size: 0.8em;
  }
  div.section.quality > .content > h1 {
    margin: 1em 0;
    font-size: 1.1em;
  }
  div.section.quality > .content > span p a > b {
    font-size: 0.75em;
  }
}
.section.projects > .picture {
  background-color: #404a59;
}
.section.projects > .content {
  padding: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
}
.section.projects > .content .project {
  position: absolute;
  height: 10em;
  padding-top: 3em;
  width: 100%;
  bottom: 0;
  left: 0;
  line-height: 1.2em;
  color: white;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #323232);
}
.section.projects > .content .project div {
  padding: 1em 1.5em;
  column-count: 2;
  column-gap: 2.5em;
}
.section.projects > .content .project p {
  column-count: 1;
}
@media only screen and (min-width: 1200px) {
  .section.projects > .content .project {
    position: absolute;
    height: 100%;
    width: 15em;
    top: 0;
    bottom: 0;
    left: 25em;
    padding-top: 0;
    line-height: 1.2em;
    color: white;
    background: transparent;
  }
  .section.projects > .content .project div {
    padding: 1em 1.5em;
    column-count: 1;
  }
}
@media only screen and (max-width: 767px) and (orientation : landscape) {
  .section.projects > .content .project {
    position: absolute;
    height: 100%;
    padding-right: 3em;
    width: 15em;
    top: 0;
    bottom: 0;
    left: 0;
    line-height: 1.2em;
    color: white;
    background: linear-gradient(to left, rgba(0, 0, 0, 0), #323232);
  }
  .section.projects > .content .project div {
    padding: 1em 1.5em;
    column-count: 1;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  div.section.projects > .content .project div p {
    margin: 0;
  }
}
@media only screen and (max-width: 767px) and (orientation : landscape) {
  div.section.projects > .content .project {
    height: 100%;
    width: 7em;
    padding: 0;
  }
  div.section.projects > .content .project div {
    column-count: 1;
    font-size: 0.6em;
    line-height: 1.1em;
  }
}
@media only screen and (max-width: 767px) and (orientation : portrait) {
  div.section.projects > .content .project {
    padding-top: 5em;
  }
  div.section.projects > .content .project div {
    margin: 0;
    font-size: 0.6em;
    line-height: 1.1em;
    column-gap: 1.2em;
    padding: 1em;
  }
  div.section.projects > .content .project div p {
    margin: 0;
  }
}
.section.news > .content {
  position: absolute;
  font-size: 1.07em;
}
.section.news > .content > span p {
  margin: 0.5em 0;
}
.section.news > .content > span p.news-text-1 {
  margin: 0.5em 0;
  column-count: 1;
}
.section.news > .content > span p a b {
  font-size: 1.1em;
}
@media only screen and (min-width: 1200px) {
  div.section.news > .picture {
    height: 85%;
  }
  div.section.news > .content {
    height: 15%;
    bottom: 0;
  }
  div.section.news > .content > h1 {
    margin: 0.2em 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  div.section.news > .picture {
    height: 83%;
  }
  div.section.news > .content {
    height: 17%;
    bottom: 0;
  }
  div.section.news > .content > h1 {
    margin: 0.2em 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) and (orientation : portrait) {
  div.section.news > .picture {
    height: 86.5%;
  }
  div.section.news > .content {
    height: 13.5%;
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  div.section.news > .picture {
    height: 60%;
  }
  div.section.news > .content {
    height: 40%;
    bottom: 0;
    font-size: 0.8em;
  }
  div.section.news > .content > h1 {
    margin: 1em 0;
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 767px) and (orientation : portrait) {
  div.section.news > .picture {
    height: 75%;
  }
  div.section.news > .content {
    height: 25%;
    bottom: 0;
  }
}
.section.contacts > .picture {
  height: 100%;
  background-position: center;
}
.section.contacts > .content {
  position: absolute;
  bottom: 0;
  padding: 1em 1.5em;
}
.section.contacts > .content p:first-child {
  column-gap: inherit;
  column-count: auto;
}
.section.contacts > .content > .info-container {
  width: 60%;
  align-content: left;
  display: inline-block;
  vertical-align: middle;
}
.section.contacts > .content > .logo-container {
  width: 40%;
  display: inline-block;
  vertical-align: bottom;
}
.section.contacts > .content > .logo-container > div {
  text-align: right;
}
.section.contacts > .content > .logo-container > a .logo {
  opacity: 0.8;
  width: 4em;
  height: 1.5em;
  margin: 0.5em 0 1em auto;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 768px) and (max-width: 1199px), only screen and (max-width: 767px) {
  .section.contacts > .content > .info-container {
    font-size: 0.7em;
  }
  .section.contacts > .content > .info-container p {
    column-count: 1;
  }
  .section.contacts > .content > .info-container h1 span {
    font-size: 1.6em;
  }
  .section.contacts > .content > .logo-container {
    font-size: 0.6em;
  }
  .section.contacts > .content > .logo-container .logo {
    width: 2.7em;
    height: 1em;
  }
}
body {
  scroll-behavior: smooth;
  font-family: 'Quicksand', sans-serif;
}
.language-ru {
  font-family: 'Montserrat', sans-serif;
}
* {
  box-sizing: border-box;
}

/*# sourceMappingURL=main.f48eef4a.css.map*/