@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@100;400;700&display=swap");
:root {
  --black: #2c2c2b;
  --blue: #bbcbdc;
  --grey: #e8e8e8;
  --drk-grey: #747474;
  --white: #f0f0f0;
  --text-multiplier: 1;
}
@media (min-width: 48rem) {
  :root {
    --text-multiplier: 1.5;
  }
}
@media (min-width: 320px) {
  :root {
    --text-multiplier: 0.8;
  }
}
@media (min-width: 600px) {
  :root {
    --text-multiplier: 0.9;
  }
}
@media only screen and (min-width: 768px) {
  :root {
    --text-multiplier: 1;
  }
}
@media only screen and (min-width: 992px) {
  :root {
    --text-multiplier: 0.9;
  }
}
@media only screen and (min-width: 1200px) {
  :root {
    --text-multiplier: 1;
  }
}
@media only screen and (min-width: 1920px) {
  :root {
    --text-multiplier: 1.5;
  }
}
h1 {
  font-size: calc(2rem * var(--text-multiplier));
}
h2 {
  font-size: calc(1.75rem * var(--text-multiplier));
}
h3 {
  font-size: calc(1.5rem * var(--text-multiplier));
}
h4 {
  font-size: calc(1.25rem * var(--text-multiplier));
}
p {
  font-size: calc(1rem * var(--text-multiplier));
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}
html {
  margin: 0;
  padding: 0;
  height: 95%;
  max-width: 100vw;
  overflow-x: auto;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}
body {
  font-size: calc(1rem * var(--text-multiplier));
  font-family: "Barlow", sans-serif;
  background: var(--grey);
  margin: 0;
  padding: 0;
  height: 95%;
  position: relative;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}
a.btn {
  position: relative;
  top: 10px;
  margin: 15px 0;
  padding: 10px 20px;
  border-radius: 40px;
  float: inline-end;
  font-size: 16px;
  color: var(--grey);
  text-decoration: none;
  border: var(--black) 1px solid;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s;
  vertical-align: middle;
}
a.btn img {
  width: 20px;
  vertical-align: middle;
  margin-left: 5px;
}
a.btn:hover {
  background: var(--grey);
  color: var(--black);
  border: var(--black) 1px solid;
}
header {
  padding: 10px 0;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  z-index: 5;
}
@media only screen and (max-width: 600px) {
  header {
    position: relative;
  }
}
header img.logo {
  height: 50px;
}
@media only screen and (max-width: 600px) {
  header img.logo {
    z-index: 110;
    padding: 10px 0 0 15px;
    display: block;
  }
}
header::after {
  content: "";
  width: 100%;
  height: 150px;
  position: absolute;
  top: -50px;
  left: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(27, 27, 27, 0.8) 0%, rgba(27, 27, 27, 0) 100%);
}
header .menu-header {
  font-family: var(--font-family);
}
@media only screen and (min-width: 800px) {
  header .menu-header {
    border: 2px solid var(--grey);
    border-radius: 40px;
  }
}
@media only screen and (max-width: 600px) {
  header .menu-header {
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    background: var(--black);
    z-index: 10;
    transition: transform 1s ease;
    transform: translateY(-110%);
  }
}
header .menu-header.active {
  transform: translateY(-20px);
  position: fixed;
}
@media only screen and (max-width: 600px) {
  header .menu-header .langs {
    display: inline-flex;
    list-style: none;
    padding-left: 20px;
  }
  header .menu-header .langs li {
    font-size: 1.5rem;
    margin: 15px;
  }
  header .menu-header .langs li a {
    color: var(--blue);
    text-decoration: none;
  }
}
header .menu-icon {
  height: 30px;
  width: 30px;
  position: absolute;
  z-index: 101;
  right: 20px;
  top: 25px;
  cursor: pointer;
  display: none;
  z-index: 100;
}
@media only screen and (max-width: 600px) {
  header .menu-icon {
    display: block;
  }
}
header .menu-icon__line {
  height: 2px;
  width: 30px;
  display: block;
  background-color: var(--black);
  margin-bottom: 4px;
  z-index: 1;
  transition: transform 0.2s ease, background-color 0.5s ease;
}
header .menu-icon__line-left {
  width: 15px;
}
header .menu-icon__line-right {
  width: 15px;
  float: right;
}
header .nav-active {
  position: fixed;
}
header .nav-active .menu-icon__line {
  background-color: var(--grey);
  transform: translateX(0px) rotate(-45deg);
}
header .nav-active .menu-icon__line-left {
  transform: translateX(1px) rotate(45deg);
}
header .nav-active .menu-icon__line-right {
  transform: translateX(-2px) rotate(45deg);
}
header .menu ul {
  list-style: none;
  display: inline-flex;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 600px) {
  header .menu ul {
    display: block;
    padding: 50px 20px;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 340px) {
  header .menu ul {
    display: block;
    padding: 10px;
    font-size: 1.25rem;
  }
}
header .menu ul li {
  margin: 8px 15px;
  white-space: nowrap;
  text-decoration: none;
  text-transform: uppercase;
}
@media only screen and (max-width: 600px) {
  header .menu ul li {
    width: auto;
    margin: 20px 0;
    font-size: 1.5rem;
  }
}
header .menu ul li a {
  text-decoration: none;
  padding: 10px 10px;
  color: var(--grey);
  font-weight: 400;
  font-family: var(--font-family);
  position: relative;
  display: block;
  padding: 4px 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s;
}
header .menu ul li a:after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grey);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}
header .menu ul li a:hover {
  color: var(--blue);
}
header .menu ul li a:hover::after, header .menu ul li a.active:after {
  transform: scaleX(1);
  transform-origin: left;
}
header .langs {
  display: inline-flex;
  list-style: none;
  padding-left: 20px;
}
header .langs li {
  font-size: 1rem;
  margin: 15px;
}
header .langs li a {
  color: var(--grey);
  text-decoration: none;
}
.hero {
  width: 100%;
  height: 80vh;
  background: var(--blue);
  overflow: hidden;
}
.hero .splide__slide {
  height: 80vh;
}
.hero .splide__slide .text {
  position: absolute;
  top: 20%;
  left: 10vw;
  color: var(--grey);
}
.hero .splide__slide .text h2 {
  text-transform: uppercase;
  font-size: 2.5rem;
}
.hero .splide__slide .text .description {
  width: 90%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 15px;
}
.hero .splide__slide a.btn {
  color: var(--grey);
  border: 1px solid var(--grey);
  float: left;
}
.hero .splide__slide a.btn:hover {
  color: var(--black);
  background: var(--grey);
}
.hero .splide__slide span {
  position: absolute;
  bottom: 0;
  left: 10vw;
  height: 10vh;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 5px 20px;
  color: var(--grey);
  z-index: 10;
  border-left: 3px solid var(--blue);
}
.hero .splide__slide img {
  width: 100vw;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.hero .splide__slide img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.layout-page header {
  position: relative;
}
.layout-page header::after {
  content: "";
  width: 100%;
  height: 150px;
  position: absolute;
  top: -50px;
  left: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(27, 27, 27, 0.8) 0%, rgba(27, 27, 27, 0) 100%);
}
.layout-page .page-title {
  width: 100%;
  margin: 60px auto 0px auto;
  position: relative;
}
.layout-page .page-title h2 {
  font-size: 2rem;
  padding: 20px 0;
  margin: 0;
}
.layout-page p {
  display: block;
  text-align: justify;
}
.layout-page .list-links {
  box-sizing: content-box;
  margin-bottom: 80px;
  padding-left: 10px;
}
@media only screen and (max-width: 600px) {
  .layout-page .list-links {
    margin-bottom: 40px;
  }
}
.layout-page .list-links h4.title {
  text-transform: uppercase;
  padding: 0;
}
.layout-page .list-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.layout-page .list-links ul li {
  margin: 5px 0;
  padding-bottom: 10px;
  font-size: 1.1rem;
  width: 100%;
  border-bottom: 1px solid var(--drk-grey);
  line-height: 1.5;
}
.layout-page .list-links ul li span {
  vertical-align: middle;
}
.layout-page .list-links ul li img {
  width: 24px;
  margin: 0;
  margin-right: 10px;
  vertical-align: middle;
}
.layout-page .list-links ul li a {
  text-decoration: none;
  vertical-align: middle;
  width: 100%;
  display: block;
  color: var(--black);
}
.layout-page .page-slides li {
  overflow: hidden;
  border-radius: 17px;
}
.layout-page .page-slides li img {
  width: 100%;
}
.layout-page table {
  margin: 20px auto;
  width: 100%;
  border-collapse: collapse;
}
.layout-page table td, .layout-page table th {
  padding: 10px 20px;
  font-size: 1.25rem;
  border: 3px solid var(--drk-grey);
  text-align: center;
}
.layout-page table tr:first-child td {
  border-top: 0;
}
.layout-page table tr:last-child td {
  border-bottom: 0;
}
.layout-page table tr td:first-child, .layout-page table tr th:first-child {
  border-left: 0;
}
.layout-page table tr td:last-child, .layout-page table tr th:last-child {
  border-right: 0;
}
.layout-page.page-contacts .inner {
  padding: 0px 10px;
}
.layout-page.page-contacts .inner h3 {
  font-size: 1.5rem;
}
.layout-page.page-contacts .inner span {
  font-size: 1.25rem;
}
.layout-page.page-contacts .map iframe {
  margin-top: 50px;
  width: 100vw;
  height: 30vh;
}
section {
  padding: 50px 0;
}
@media only screen and (max-width: 600px) {
  section {
    padding: 20px;
  }
}
section:nth-child(odd) {
  background: var(--white);
}
section.splide {
  padding: 20px 0;
}
section h3 {
  text-transform: uppercase;
}
section p {
  text-align: justify;
}
section a.btn {
  bottom: 20px;
  background: var(--black);
}
@media only screen and (max-width: 600px) {
  section.about {
    margin-top: 50px;
  }
}
section.about .video-div {
  position: relative;
}
section.about .video-div .play-button {
  padding: 30px;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section.projects .projects-slides li.splide__slide .title {
  height: 100%;
}
section.projects .projects-slides li.splide__slide a {
  text-decoration: none;
  color: var(--black);
}
section.projects .projects-slides li.splide__slide h3 {
  padding: 5px 0;
  margin: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 600px) {
  section.projects .projects-slides li.splide__slide h3 {
    font-size: 0.8rem;
  }
}
section.projects .projects-slides li.splide__slide p {
  padding: 5px 0;
  margin: 0;
  text-align: justify;
}
section.projects .projects-slides li.splide__slide .cover {
  position: relative;
  border-radius: 37px;
  overflow: hidden;
}
section.projects .projects-slides li.splide__slide .cover img {
  width: 100%;
  background-size: cover;
}
@media only screen and (max-width: 600px) {
  section.projects .projects-slides li.splide__slide .cover {
    border-radius: 17px;
  }
}
section.projects .projects-slides li.splide__slide .gallery {
  padding: 0;
  margin-bottom: 10px;
  position: relative;
  border-radius: 27px;
  overflow: hidden;
}
section.projects .projects-slides li.splide__slide .gallery img {
  width: 100%;
  position: relative;
}
section.projects .projects-slides li.splide__slide:hover .arrow {
  top: 15px;
  right: 25px;
}
section.services .services-slides {
  padding: 0;
}
section.services .services-slides li.splide__slide {
  display: inline;
  border-radius: 37px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 600px) {
  section.services .services-slides li.splide__slide {
    border-radius: 17px;
  }
}
section.services .services-slides li.splide__slide .title {
  position: absolute;
  bottom: 10px;
  left: 5px;
  color: var(--grey);
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  z-index: 1;
}
section.services .services-slides li.splide__slide .title h4 {
  padding: 10px 20px;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
}
section.services .services-slides li.splide__slide .title p {
  padding: 3px 0;
  margin: 0;
}
section.services .services-slides li.splide__slide .title img {
  position: relative;
}
@media only screen and (max-width: 600px) {
  section.services .services-slides li.splide__slide {
    border-radius: 27px;
  }
  section.services .services-slides li.splide__slide .title {
    left: 0;
  }
  section.services .services-slides li.splide__slide .title h4 {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 5px 15px;
    font-size: 0.8rem;
  }
  section.services .services-slides li.splide__slide .title p {
    display: none;
  }
}
section.services .services-slides li.splide__slide img.cover {
  width: 130%;
}
section.services .services-slides li.splide__slide .overlay {
  width: 100%;
  height: 20%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #1b1b1b;
  background: linear-gradient(0deg, #1b1b1b 0%, rgba(36, 36, 36, 0) 100%);
}
@media only screen and (max-width: 600px) {
  section.services .services-slides li.splide__slide .overlay {
    width: 50%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #1b1b1b;
    background: linear-gradient(90deg, #1b1b1b 0%, rgba(36, 36, 36, 0) 100%);
  }
}
section.services .services-slides li.splide__slide:hover .arrow {
  top: 15px;
  right: 15px;
}
section.markets .markets-slides {
  padding: 0;
}
section.markets .markets-slides li.splide__slide {
  width: 100%;
  display: inline;
  border-radius: 37px;
  position: relative;
  overflow: hidden;
}
section.markets .markets-slides li.splide__slide img {
  width: 100%;
}
@media only screen and (max-width: 600px) {
  section.markets .markets-slides li.splide__slide {
    border-radius: 17px;
  }
}
section.markets .markets-slides li.splide__slide .title {
  position: absolute;
  bottom: 10px;
  left: 5px;
  color: var(--grey);
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  z-index: 1;
}
section.markets .markets-slides li.splide__slide .title h4 {
  padding: 10px 20px;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
}
@media only screen and (max-width: 600px) {
  section.markets .markets-slides li.splide__slide .title h4 {
    padding: 5px;
    font-size: 0.8rem;
  }
}
section.markets .markets-slides li.splide__slide .title p {
  padding: 3px 0;
  margin: 0;
}
section.markets .markets-slides li.splide__slide .title img {
  position: relative;
}
section.markets .markets-slides li.splide__slide .overlay {
  width: 100%;
  height: 30%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #1b1b1b;
  background: linear-gradient(0deg, #1b1b1b 0%, rgba(36, 36, 36, 0) 100%);
}
section.markets .markets-slides li.splide__slide:hover .arrow {
  top: 15px;
  right: 15px;
}
section .arrow {
  position: absolute;
  top: -40px;
  right: -40px;
  height: 47px;
  width: 47px;
  border-radius: 50%;
  background: var(--blue);
  transition: all 0.4s;
  z-index: 10;
}
section .arrow img {
  width: 100%;
  transform: scale(0.45);
}
@media only screen and (max-width: 600px) {
  section .arrow {
    visibility: hidden;
  }
}
section.list-items {
  background: var(--grey);
  box-sizing: border-box;
  padding: 5px;
}
section.list-items .item {
  display: block;
  border-radius: 37px;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 10px;
}
section.list-items .item img {
  width: 100%;
}
section.list-items .item .arrow {
  position: absolute;
  top: -40px;
  right: -40px;
  height: 47px;
  width: 47px;
  border-radius: 50%;
  background: var(--blue);
  transition: all 0.4s;
}
section.list-items .item .arrow img {
  transform: scale(0.45);
}
section.list-items .item .title {
  position: absolute;
  bottom: 10px;
  left: 5px;
  color: var(--grey);
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  z-index: 1;
}
section.list-items .item .title h4 {
  padding: 10px 20px;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
}
section.list-items .item .title p {
  padding: 3px 0;
  margin: 0;
}
section.list-items .item .title img {
  position: relative;
}
section.list-items .item .overlay {
  width: 100%;
  height: 30%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #1b1b1b;
  background: linear-gradient(0deg, #1b1b1b 0%, rgba(36, 36, 36, 0) 100%);
}
section.list-items .item:hover .arrow {
  top: 15px;
  right: 15px;
}
footer {
  margin: 20px auto;
  background: var(--drk-grey);
  color: var(--grey);
  font-weight: 400;
  font-size: 14px;
}
footer h4 {
  font-weight: 400;
  text-transform: uppercase;
}
footer p {
  font-size: 0.7rem;
  width: 80%;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer ul li {
  font-size: 1rem;
  padding: 5px 0;
}
footer ul li img {
  width: 24px;
  vertical-align: middle;
  margin-right: 15px;
  filter: invert(99%) sepia(50%) saturate(19%) hue-rotate(220deg) brightness(114%) contrast(94%);
}
footer ul li a {
  color: var(--white);
  text-decoration: none;
}
footer ul li a:hover {
  text-decoration: underline;
}
footer .bottom {
  padding: 10px 0;
}
footer .bottom .develop img {
  height: 12px;
  margin-left: 5px;
}
