html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #343434;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: top;
}

.separator {
  position: absolute;
  display: none;
  z-index: 1;
}

.news_header {
  padding-top: 10px;
}

.submenubig.opened {
  height: 430px;
}

.submenubig {
  -webkit-transition: 1s;
  transition: 1s;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 100px;
  height: 0px;
  width: 100%;
  background: rgba(52, 52, 52, 0.8);
  padding-left: 270px;
}
.submenubig ul {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  list-style: none;
  padding: 0;
  margin: 0;
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.submenubig ul li {
  margin-bottom: 40px;
}
.submenubig ul a {
  font-size: 150%;
  font-weight: lighter;
}

.hassubmenu:hover .submenu {
  display: block !important;
}

.scroll-downs {
  position: fixed;
  bottom: 140px;
  left: 60px;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  margin: auto;
  width: 34px;
  height: 55px;
}

.lastprojects, .pr_info {
  position: relative;
  text-align: center;
  margin: auto;
}
.lastprojects .bx-wrapper, .pr_info .bx-wrapper {
  margin: auto;
  max-width: 100% !important;
  width: 100% !important;
}
.lastprojects .bx-controls, .pr_info .bx-controls {
  top: 40%;
  pointer-events: none !important;
  position: absolute;
  z-index: 10000;
  width: calc(100% - 100px) !important;
  margin: 0 40px;
  left: 0;
}
.lastprojects .bx-controls .bx-controls-direction, .pr_info .bx-controls .bx-controls-direction {
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.lastprojects .bx-controls .bx-controls-direction a, .pr_info .bx-controls .bx-controls-direction a {
  pointer-events: all;
  width: 50px;
  text-indent: -99999px;
  height: 50px;
  background: black;
  border-radius: 1000px;
}
.lastprojects .bx-controls .bx-controls-direction a.bx-next, .pr_info .bx-controls .bx-controls-direction a.bx-next {
  background: url("/_assets/images/arrow_next.png") no-repeat center #000;
  background-size: 30px;
}
.lastprojects .bx-controls .bx-controls-direction a.bx-prev, .pr_info .bx-controls .bx-controls-direction a.bx-prev {
  background: url("/_assets/images/arrow_prev.png") no-repeat center #000;
  background-size: 30px;
}

.b:after {
  content: "";
  width: 100% !important;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 50vh;
  z-index: 30;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}
.b .text {
  z-index: 100;
  left: 30px;
  position: absolute;
  bottom: 78px;
  font-size: 250%;
  color: white;
  font-weight: bold;
}
.b .text2 {
  z-index: 100;
  left: 30px;
  position: absolute;
  bottom: 50px;
  font-size: 130%;
  color: white;
  font-weight: lighter;
}

.hb {
  position: relative;
  width: 25%;
  z-index: 1;
  z-index: 2;
  trasnform: scale(0.97);
}

#wrap {
  position: absolute;
  left: 0;
  z-index: 1002;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0%;
  overflow: hidden;
}

.c {
  position: relative;
  display: block;
  max-width: 90%;
}

.c img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 2;
}

.mousey {
  width: 3px;
  padding: 10px 15px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: 0.75;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff;
  -webkit-animation-name: scroll;
          animation-name: scroll;
  -webkit-animation-duration: 2.2s;
          animation-duration: 2.2s;
  -webkit-animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
          animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

canvas {
  -o-object-fit: cover !important;
     object-fit: cover !important;
  width: 99vw !important;
  overflow: hidden;
  left: 0;
  height: calc(100vh - 100px) !important;
  position: absolute;
  top: 0;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    opacity: 0;
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    opacity: 0;
  }
}
.lang_changer {
  position: absolute;
  right: 190px;
  top: 42px;
  z-index: 1004;
}
.lang_changer:hover {
  -webkit-transform: scale(1.2) !important;
          transform: scale(1.2) !important;
}
.lang_changer a {
  font-weight: bold;
  color: white;
  text-decoration: none;
}

#slider {
  width: 100vw;
  height: 100vh;
  background: url("../images/banners/1.jpg") center no-repeat;
  background-size: cover;
}

.fix {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
  position: fixed;
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 1003;
  top: 0;
}
.fix .socials_header {
  opacity: 0;
  pointer-events: none;
  padding-right: 50px;
  position: relative;
}
.fix .socials_header ul {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin: 0;
}
.fix .socials_header li {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}
.fix .socials_header li:hover {
  opacity: 0.6;
}
.fix .socials_header a {
  text-decoration: none;
  font-weight: bold;
  color: white;
}
.fix .socials_header a.lang {
  margin-top: 4px;
}
.fix .socials_header svg {
  fill: white;
}
.fix.hideme {
  top: -100px;
}
.fix .socials_header {
  opacity: 1;
  pointer-events: all;
}
.fix.fx:before {
  background: #343434;
  opacity: 0.8;
}
.fix:before {
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  content: "";
  position: absolute;
  height: 100px;
  width: 100%;
  left: 0;
  top: 0;
  background: #343434;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}
.fix .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  cursor: pointer;
  text-decoration: none;
}
.fix .logo .name {
  font-weight: bold;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  color: white;
  margin-bottom: -4px;
  font-size: 120%;
  margin-left: 2px;
  width: 180px;
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.fix .logo .name img {
  margin-bottom: 1px;
}
.fix .logo img {
  height: 40px;
}
.fix .lines {
  margin-top: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.fix .lines nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: -3px;
}
.fix .lines nav ul li a {
  color: white;
  display: block;
  text-decoration: none;
  position: relative;
  padding: 0px 15px;
}
.fix .lines nav ul li a:hover, .fix .lines nav ul li a.selected {
  opacity: 0.8;
}
.fix .lines nav ul li a:hover:after, .fix .lines nav ul li a.selected:after {
  width: calc(100% - 30px);
}
.fix .lines nav ul li a:after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: "";
  position: absolute;
  background: #fff;
  width: 0;
  bottom: -5px;
  height: 1px;
  right: 15px;
}
.fix .lines span {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 40px;
}

.banner {
  height: 100vh !important;
  overflow: hidden;
}
.banner .words {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  padding-right: 100px;
  right: 0px;
  z-index: 1000;
}
.banner .words h1 {
  color: #fff;
  line-height: 1;
  font-size: 450%;
  font-weight: 200;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  padding-left: 10px;
  text-align: right;
  margin-bottom: 50px;
  letter-spacing: 1px;
}
.banner .words h1.black {
  position: absolute;
  width: 105px;
  overflow: hidden;
  color: black;
  white-space: nowrap;
  z-index: 1;
}

.projects {
  position: relative;
  min-height: 600px !important;
  margin-top: 30px;
}
.projects a {
  margin: 0px 20px;
  width: 500px;
  text-decoration: none;
  color: white;
}
.projects a .readMore {
  position: absolute;
  bottom: 32px;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.3137254902);
  display: inline-block;
  color: white;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.projects a .readMore span {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.projects a .projectaloine .img_c {
  overflow: hidden;
  width: 500px;
  height: 300px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.projects a .projectaloine img {
  -webkit-transition: 0.7s;
  transition: 0.7s;
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 100;
}
.projects a .projectaloine .pr_name {
  position: relative;
  z-index: 100;
  mix-blend-mode: difference;
  font-weight: bold;
  color: white;
  margin-top: 10px;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.projects a .projectaloine .pr_caption {
  margin-top: 6px;
  opacity: 0.8;
}
.projects a:hover .readMore {
  background: #000000;
}
.projects a:hover .readMore span {
  margin-left: 10px;
}
.projects a:hover .img_c img {
  border-radius: 20px;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.projects .logosslider {
  position: relative;
  z-index: 100;
  margin: 150px 0px 60px 100px;
}

.mobile_lang {
  display: none;
}

.whitespace {
  background: #fff;
  min-height: 500px;
  padding: 50px 100px;
}
.whitespace h1 {
  font-size: 120%;
  margin-bottom: 10px !important;
}
.whitespace .newslist {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2vw 1fr 2vw 1fr 2vw 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2vw;
  position: relative;
  z-index: 1001;
}
.whitespace .newslist .img_c {
  position: relative;
}
.whitespace .newslist .img_c .readMore {
  position: absolute;
  bottom: 0;
  left: 0;
}
.whitespace .newslist a {
  color: black;
  padding: 10px 0px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  -webkit-transition: 1s;
  transition: 1s;
}
.whitespace .newslist a .readMore {
  position: absolute;
  bottom: 39px;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.3137254902);
  display: inline-block;
  color: white;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.whitespace .newslist a .readMore span {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.whitespace .newslist a .img_c {
  overflow: hidden;
}
.whitespace .newslist a img {
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.whitespace .newslist a:hover .readMore {
  background: #000000;
}
.whitespace .newslist a:hover .readMore span {
  margin-left: 10px;
}
.whitespace .newslist a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.whitespace .newslist a:hover:after {
  width: 100%;
  background: #000000;
}
.whitespace .newslist a:after {
  -webkit-transition: 1s;
  transition: 1s;
  bottom: -10px;
  width: 40px;
  content: "";
  position: absolute;
  height: 4px;
  background: rgba(0, 0, 0, 0.2509803922);
}
.whitespace .newslist img {
  width: 100%;
  height: 30vh;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.whitespace h1 {
  margin: 0;
  padding: 0;
}

.mobilemenyu {
  display: none;
}

.bx-viewport {
  min-height: 500px !important;
}

.socials .wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.socials .wrapper .icon {
  position: relative;
  background: #ffffff;
  border-radius: 50%;
  padding: 15px;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -webkit-transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.socials .wrapper .icon:hover .white svg {
  fill: white;
}
.socials .wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.socials .wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #ffffff;
  bottom: -3px;
  left: 50%;
  -webkit-transform: translate(-50%) rotate(45deg);
          transform: translate(-50%) rotate(45deg);
  -webkit-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.socials .wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.socials .wrapper .icon:hover span,
.socials .wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
.socials .wrapper .facebook:hover,
.socials .wrapper .facebook:hover .tooltip,
.socials .wrapper .facebook:hover .tooltip::before {
  background: #1877F2;
  color: #ffffff;
}
.socials .wrapper .twitter:hover,
.socials .wrapper .twitter:hover .tooltip,
.socials .wrapper .twitter:hover .tooltip::before {
  background: #1DA1F2;
  color: #ffffff;
}
.socials .wrapper .instagram:hover,
.socials .wrapper .instagram:hover .tooltip,
.socials .wrapper .instagram:hover .tooltip::before {
  background: #E4405F;
  color: #ffffff;
}
.socials .wrapper .github:hover,
.socials .wrapper .github:hover .tooltip,
.socials .wrapper .github:hover .tooltip::before {
  background: #333333;
  color: #ffffff;
}
.socials .wrapper .youtube:hover,
.socials .wrapper .youtube:hover .tooltip,
.socials .wrapper .youtube:hover .tooltip::before {
  background: #CD201F;
  color: #ffffff;
}

header .bx-controls {
  z-index: 1000;
  position: absolute;
  bottom: 50px;
  left: 0px;
  width: 100%;
}
header .bx-controls .bx-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .bx-controls .bx-pager .bx-pager-item {
  width: 7px;
  height: 7px;
  border-radius: 30px;
}
header .bx-controls .bx-pager .bx-pager-item:hover {
  -webkit-transform: scale(2);
          transform: scale(2);
}
header .bx-controls .bx-pager .bx-pager-item:hover a {
  -webkit-transform: scale(2);
          transform: scale(2);
}
header .bx-controls .bx-pager .bx-pager-item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
  width: 7px;
  height: 7px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  background: rgba(255, 255, 255, 0.5647058824);
  border-radius: 10px;
  text-indent: -999999px;
}
header .bx-controls .bx-pager .bx-pager-item a.active {
  background: #ffffff !important;
}
header .imgslider img {
  width: 100vw !important;
  height: 100vh !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.lastprname {
  display: none;
}

footer {
  position: relative;
  height: 100vh;
  background-size: 200px;
  background-attachment: fixed;
  color: white;
}
footer.noanim {
  height: 200px !important;
  border-top: 1px solid #444444;
}
footer.noanim .center_logo {
  display: none !important;
}
footer a {
  color: white;
  text-decoration: none;
  margin: 0px 15px;
}
footer .footer_content {
  position: absolute;
  bottom: 40px;
  left: 50%;
  width: 300px;
  margin-left: -150px;
  text-align: center;
}
footer .footer_content .copy {
  text-align: center;
  opacity: 0.6;
  margin-bottom: 10px;
}
footer .center_logo {
  position: absolute;
  left: 50%;
  margin-left: -300px;
  width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 50%;
  margin-top: -77px;
}
footer .center_logo .center_text {
  letter-spacing: 10px;
  opacity: 0;
  margin-top: 20px;
}
footer .center_logo .center_text.go {
  -webkit-transition: 4s;
  transition: 4s;
  letter-spacing: 3px;
  opacity: 1;
}
footer .center_logo .text img {
  margin-left: 20px;
  height: 100px;
  margin-bottom: 10px;
}
footer .center_logo .logo_anim {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
footer .center_logo .logo_anim .logo {
  -webkit-transition: 2s;
  transition: 2s;
  opacity: 1 !important;
  width: 60px;
  height: 100px;
}
footer .center_logo .logo_anim .logo.start {
  width: 420px !important;
  height: 455px !important;
  -webkit-transition: 0s;
  transition: 0s;
  opacity: 0 !important;
  -webkit-filter: blur(200px);
          filter: blur(200px);
}
footer .center_logo .logo_anim .logo img {
  height: 100px;
}
footer .center_logo .logo_anim .text {
  font-size: 320%;
  font-weight: bold !important;
  width: 0px;
  overflow: hidden;
  margin-bottom: -15px;
  margin-left: 10px;
}
footer .center_logo .logo_anim .text.textcome {
  -webkit-transition: 2s;
  transition: 2s;
  width: 395px;
}

.inside .contactblock a {
  color: white;
  font-size: 120%;
  text-decoration: none;
}
.inside .textblock {
  padding: 0 40px;
  text-align: justify;
  line-height: 1.6;
}
.inside .team {
  min-height: 100vh;
  color: white;
  margin: 200px auto 100px auto;
  max-width: 1400px;
}
.inside .team img {
  width: 100%;
  margin: 50px 0;
}
.inside .projectsinside {
  min-height: 100vh;
  color: white;
  margin: 200px auto 100px auto;
  max-width: 1400px;
}
.inside .stats {
  background: #eaeaea;
  display: -ms-grid;
  display: grid;
  font-size: 90%;
  padding: 20px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
.inside .stats a {
  text-decoration: none;
}
.inside .stats .view,
.inside .stats .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.inside .stats .view span,
.inside .stats .share span {
  margin-right: 10px;
  opacity: 0.6;
  font-size: 70%;
}
.inside .stats .share {
  text-align: right;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.inside .newslist {
  gap: 20px !important;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr !important;
  grid-template-columns: 1fr 1fr 1fr !important;
}
.inside .newslist img {
  height: 260px !important;
}
.inside .newstext img {
  width: 100%;
  height: auto;
}
.inside .newstext .txtblock {
  margin: 0 auto 100px auto !important;
  text-align: left;
  color: black !important;
}
.inside .whitespaceinside {
  border-radius: 30px;
  background: #fff;
  max-width: 1200px;
  margin: 120px auto 100px auto;
  padding-top: 40px;
  padding-bottom: 20px;
}
.inside .whitespace {
  margin: 200px auto 100px auto;
  max-width: 1400px;
  padding: 0 !important;
  background: rgb(52, 52, 52) !important;
  color: white;
  min-height: 100vh;
}
.inside .whitespace a {
  color: white !important;
}
.inside .banner {
  position: relative;
  width: 100%;
}
.inside .banner h1 {
  position: absolute;
  bottom: 100px;
  color: white;
  font-weight: lighter;
  margin: 0;
  margin-left: 100px;
  padding: 0;
  z-index: 1000;
  font-size: 400%;
}
.inside .banner:after {
  content: "";
  width: 100%;
  bottom: 0px;
  left: 0px;
  position: absolute;
  height: calc(100vh - 200px);
  background: rgb(0, 0, 0);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(52, 52, 52)), color-stop(30%, rgb(52, 52, 52)), to(rgba(52, 52, 52, 0)));
  background: linear-gradient(0deg, rgb(52, 52, 52) 0%, rgb(52, 52, 52) 30%, rgba(52, 52, 52, 0) 100%);
}
.inside .banner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: calc(100vh - 100px);
}
.inside .projects {
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr !important;
  grid-template-columns: 1fr 1fr 1fr !important;
}
.inside .projects a {
  margin: 0;
  width: 100% !important;
}
.inside .projects a .img_c {
  position: relative;
  width: 100% !important;
  height: 260px !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.inside .projects a .img_c .readMore {
  bottom: 0;
  z-index: 1000;
}
.inside .txtblock {
  text-align: center;
  max-width: 1000px;
  margin: 100px auto 0px auto;
  color: white;
  font-size: 120%;
}
.inside .txtblock h1 {
  font-size: 40px;
}
.inside .img {
  margin: 100px auto;
  text-align: center;
}
.inside .img h2 {
  font-size: 40px;
  color: white;
}
.inside .pr_info {
  overflow: hidden;
}
.inside .pr_info .movee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
.inside .pr_info .movee img {
  width: 600px;
  height: auto;
}

.whitespace.roles {
  padding: 40px !important;
  background: #fff !important;
  margin: 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  min-height: inherit !important;
}
.whitespace.roles a {
  color: black !important;
}

.roles {
  color: black !important;
  min-height: 300px;
  height: auto !important;
}
.roles a {
  color: black;
  text-decoration: none;
  padding: 20px 30px;
  background: #eaeaea;
  border-radius: 20px;
  display: inline-block;
  width: 300px;
}
.roles .rol {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 100px 1fr 100px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 100px;
  margin-bottom: 100px;
}
.roles .rol .w {
  opacity: 0.5;
  font-size: 80%;
  display: block;
}
.roles .rol .d {
  font-size: 130%;
}
.roles a {
  text-align: center;
  margin: auto;
  display: block;
  color: black !important;
  font-size: 200%;
}

@media screen and (max-width: 1160px) {
  .lines span {
    width: 40px;
  }
  .banner .words {
    width: 270px;
    margin-right: 130px;
  }
  .banner .words h1 {
    font-size: 300%;
  }
  .banner .words h1.black {
    width: 70px;
  }
  .banner .bd_c .bd {
    margin-top: 70px;
    -webkit-transform: translateX(70px);
            transform: translateX(70px);
    width: 400px;
    height: calc(100vh - 170px);
  }
  .blueline {
    width: calc(100vw - 415px);
  }
  .bigarc svg {
    width: 400px;
  }
  nav {
    display: block;
  }
  .mmenu {
    display: none;
  }
}
@media screen and (max-width: 950px) {
  .lang_changer {
    display: none;
  }
  .mobile .mobile_lang {
    display: block;
    margin-top: 80px;
    font-size: 100%;
    padding-left: 20px;
  }
  .mobile .mobile_lang a {
    text-decoration: none;
    color: white;
  }
  .mobile nav {
    display: block;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
  }
  .mobile nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 140%;
    margin-top: 20px !important;
  }
  .mobile nav ul a {
    display: block;
    padding: 10px 20px !important;
  }
  .separator {
    display: none !important;
  }
  .whitespace {
    padding: 40px;
  }
  .lines {
    margin-left: 40px;
  }
  .lines span,
  .lines .name {
    display: none;
  }
  nav {
    display: none;
  }
  .mmenu {
    cursor: pointer;
    display: block;
    width: 30px;
    height: 30px;
    margin-right: 0px;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .mmenu:hover {
    gap: 2px;
  }
  .mmenu div {
    width: 25px;
    height: 3px;
    border-radius: 10px;
    background: white;
  }
  .bx-viewport,
  .projects {
    height: 400px !important;
  }
  .projects a {
    width: 300px;
  }
  .projects a .projectaloine .img_c {
    width: 300px;
    height: 200px;
  }
  .projects a .projectaloine img {
    height: 200px;
  }
  .projects a .projectaloine .pr_name {
    font-size: 140%;
    white-space: nowrap;
  }
  .banner .black {
    display: none;
  }
  .banner .words {
    margin-right: 222px;
  }
  .banner .words h1 {
    font-size: 200%;
  }
  .banner .words h1.black {
    width: 52px;
  }
  .banner .bd_c {
    overflow: hidden;
  }
  .banner .bd_c .bd {
    display: none;
    margin-top: 52px;
    -webkit-transform: translateX(152px);
            transform: translateX(152px);
    width: 300px;
    height: calc(100vh - 152px);
  }
  .blueline {
    width: 100% !important;
  }
  .bigarc {
    overflow: hidden;
  }
  .bigarc svg {
    height: calc(100vh - 200px);
    width: 270px;
  }
}
@media screen and (max-width: 500px) {
  .inside .textblock {
    padding: 0 !important;
  }
  .newsheader h2 {
    text-align: left !important;
  }
  .contactsblock .textblock {
    text-align: left !important;
  }
  .contactsblock .textblock p {
    text-align: left !important;
  }
  .f_partners p {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  p {
    text-indent: 0px !important;
  }
  .mobilemenyu {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(204, 204, 204, 0.3137254902);
  }
  .mobilemenyu a {
    text-decoration: none;
    font-size: 90%;
  }
  header.mainheader {
    height: calc(50vh + 80px) !important;
  }
  .fix .socials_header {
    -webkit-transform: scale(0.8) !important;
            transform: scale(0.8) !important;
    padding-right: 20px !important;
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
  .submenubig {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -100000px !important;
  }
  p {
    text-indent: 0 !important;
  }
  .movee2 img {
    padding: 0 !important;
    margin: 0 !important;
  }
  footer.noanim {
    height: 270px !important;
  }
  .filter {
    -ms-grid-columns: 1fr 6px 1fr !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    width: 100% !important;
  }
  .filter > div:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1/1/2/3;
  }
  .filter > div:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
  }
  .filter > div:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2/2/3/3;
  }
  .filter > div:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 3/1/4/2;
  }
  .filter > div:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 3/2/4/3;
  }
  .projects a {
    margin: 0 !important;
  }
  .projects {
    height: auto !important;
    margin-top: 90px;
    min-height: 450px !important;
  }
  .lastprojects .bx-controls,
  .pr_info .bx-controls {
    bottom: 145px !important;
    pointer-events: none !important;
    position: absolute !important;
    z-index: 10000 !important;
    width: 100vw !important;
    margin: 0px !important;
    top: inherit !important;
    left: 0 !important;
  }
  .projects a .projectaloine .img_c {
    width: 100% !important;
  }
  .lastprojects {
    margin-top: -30px !important;
    padding-top: 0px !important;
  }
  .lastprojects .pr_name {
    padding: 0 70px !important;
    white-space: unset !important;
  }
  .imgslider2 {
    position: relative !important;
    height: 50vh !important;
  }
  .imgslider2 video {
    height: 50vh;
    position: static !important;
  }
  .inside .newslist {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  .inside .banner {
    height: 62vh !important;
    margin-bottom: -110px;
  }
  .inside .banner img {
    height: 40vh;
  }
  .inside .banner:after {
    bottom: 10px;
    height: 200px;
  }
  .inside .banner h1 {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 150%;
  }
  .roles a {
    width: 100% !important;
    margin: 0;
    display: block;
  }
  .roles .rol {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 0;
    margin-bottom: 30px;
  }
  .inside .txtblock {
    padding: 20px;
    margin: 0 !important;
    margin-top: 70px !important;
    z-index: 1;
    position: relative;
    font-size: 95%;
    text-align: left !important;
  }
  .inside .pr_info .movee {
    margin: 0;
    padding: 20px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    -webkit-transform: none !important;
            transform: none !important;
  }
  .inside .pr_info .movee img {
    width: 100%;
    height: auto;
  }
  .textblock p {
    padding: 0 !important;
    text-align: justify;
  }
  .inside .img img {
    width: 100%;
  }
  .inside .whitespace,
  .inside .team,
  .inside .projectsinside {
    padding: 0 20px !important;
    margin: 100px auto 50px auto !important;
  }
  .inside .whitespaceinside {
    width: calc(100% + 0px);
    padding: 20px;
  }
  .inside .projects {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  .banner .words {
    position: absolute !important;
    bottom: 0px !important;
    z-index: 1000;
    font-size: 170% !important;
    text-align: left;
    width: 100%;
    height: 100px;
    padding-right: 40px !important;
    left: 0px !important;
    padding-left: 20px;
    padding-top: 20px;
    color: white;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.3)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
  }
  .banner .words h1 {
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
  .fontname {
    display: none !important;
  }
  .bx-viewport {
    min-height: 50vh !important;
  }
  .b .text {
    font-size: 150% !important;
    padding-right: 70px !important;
  }
  header .imgslider img {
    height: 50vh !important;
  }
  header .bx-controls {
    bottom: 30px;
    left: 30px;
    width: 40%;
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  header .bx-controls .bx-pager {
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  header .bx-controls .bx-pager .bx-pager-item {
    width: 15px;
    height: 10px;
  }
  header .bx-controls .bx-pager .bx-pager-item a {
    width: 15px;
    height: 10px;
  }
  .lang_changer {
    right: 20px;
    top: 22px;
  }
  .fix {
    height: 80px;
  }
  .fix:before {
    height: 80px;
  }
  .fix .lines {
    margin-left: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .newslist {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .newslist img {
    height: 50vw !important;
  }
  #wrap {
    overflow: auto !important;
  }
  footer {
    font-size: 80% !important;
    background-position: -50% bottom;
  }
  footer a {
    margin: 0;
  }
  footer .footer_content {
    margin: 0 !important;
  }
  footer .footer_content .socials {
    text-align: center !important;
  }
  footer .footer_content .grid {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 20px;
  }
  footer .footer_content .grid .logoarx {
    position: static !important;
    text-align: center !important;
  }
  footer .footer_content .grid .logoarx img {
    width: 60%;
    position: static !important;
    margin: auto;
  }
  footer .footer_content .grid .logoarx img.color {
    display: block;
    opacity: 1 !important;
  }
  footer .footer_content .grid .logoarx img:nth-child(2) {
    display: none !important;
  }
  .projects .lastprname {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    padding-left: 20px;
    color: white;
    display: block;
  }
  .projects a {
    width: 300px;
  }
  .projects a .projectaloine .img_c {
    width: 210px;
    height: 250px;
  }
  .projects a .projectaloine img {
    height: 260px;
  }
  .projects a .projectaloine .pr_name {
    white-space: unset !important;
    font-size: 120%;
  }
  footer .footer_content {
    width: 100% !important;
    left: 0;
    margin-left: 0;
  }
  footer .center_logo {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
    font-size: 100% !important;
  }
  footer .center_logo .logo_anim .text {
    font-size: 400% !important;
  }
  .banner1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .banner1 .words {
    position: absolute;
    width: 100%;
    bottom: 25px;
    right: 30px;
    margin-right: 0px;
  }
  .banner {
    position: relative;
    height: 50vh !important;
    top: 80px !important;
  }
  #slider,
  canvas,
  .bigarc {
    -o-object-fit: cover !important;
       object-fit: cover !important;
    height: 50vh !important;
  }
  .bd {
    height: calc(50vh - 50px) !important;
  }
}
.readMore {
  display: none !important;
}

.fontname {
  position: fixed;
  z-index: 2000;
  background: #000;
  padding: 5px;
  font-size: 80%;
  right: 0;
  top: 0;
  color: white;
}