:root {
  --Header-section:3.1vw;
}
@media (min-width: 1920px) {
  :root {
    --Header-section: 60px;
  }
}

:root {
  --Background01: #ffff;
  --Background02: #e7eced;
}

/* Reset */
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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  color: #000000;
  line-height: 1.5;
  font-family: "BwNistaGeometric", sans-serif;
  background: #FBFBFB;
}

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;
}

.layouts-title {
  font-size: 26px;
  margin: 15px 0px;
}

.layouts ul li {
  margin-bottom: 5px;
}

.layouts ul li a {
  font-size: 17px;
  display: inline-block;
  padding: 3px 10px;
}

.layouts ul li a:hover {
  background: #000;
  color: #fff;
}

/* -- END RESET -- */
.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
  float: left;
}

.row {
  max-width: 1280px;
  width: 83%;
  width: 67.5%;
}
@media screen and (max-width: 1680px) {
  .row.row--slider-special {
    width: 83.33333%;
  }
}
@media screen and (max-width: 1023px) {
  .row.row--slider-special {
    width: 83%;
  }
}
@media screen and (max-width: 639px) {
  .row.row--slider-special {
    width: 100%;
  }
}

/* -- main styles -- */
.nopad {
  padding: 0px;
}

.nopadleft {
  padding-left: 0px;
}

.nopadright {
  padding-right: 0px;
}

strong {
  font-weight: bold;
}

i {
  font-style: italic;
}

em {
  font-style: italic;
}

.clear {
  clear: both;
}

.left {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}

.right {
  float: right;
  margin-left: 15px;
  margin-bottom: 15px;
}

.alignleft {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}

.alignright {
  float: right;
  margin-left: 15px;
  margin-bottom: 15px;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  margin-bottom: 15px;
}

.invi {
  visibility: hidden;
  opacity: 0;
}

/* preloader */
.preloader {
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 3px solid hsla(0, 0%, 100%, 0.3);
  border-top-color: rgba(255, 255, 255, 0.3);
  border-right-color: rgba(255, 255, 255, 0.3);
  border-bottom-color: rgba(255, 255, 255, 0.3);
  border-left-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ccc !important;
  animation: a 1s ease-in-out infinite;
  z-index: 50;
}
@keyframes a {
  to {
    transform: rotate(1turn);
  }
}
/*   hamburger   */
.hamburger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
  float: right;
  display: none;
}

.hamburger:hover {
  opacity: 1;
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 20px;
  float: right;
}

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  border-radius: 2px;
  position: absolute;
  width: 28px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  background-color: #000000;
}

.hamburger-inner:after,
.hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger-inner:before {
  top: -7px;
}

.hamburger-inner:after {
  bottom: -7px;
}

.hamburger--squeeze .hamburger-inner {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 75ms;
}

.hamburger--squeeze .hamburger-inner:before {
  transition: top 75ms ease 0.12s, opacity 75ms ease;
}

.hamburger--squeeze .hamburger-inner:after {
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(45deg);
}

.hamburger--squeeze.is-active .hamburger-inner:before {
  top: 0;
  transition: top 75ms ease, opacity 75ms ease 0.12s;
  opacity: 0;
}

.hamburger--squeeze.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(-90deg);
}

/*header*/
.team-list-slider-container {
  width: 100%;
  overflow: hidden;
}
.team-list-slider-container .swiper-slide {
  max-width: 303px;
}
@media (max-width: 470px) {
  .team-list-slider-container .swiper-slide {
    max-width: unset;
  }
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}

.row-iniciatyvos {
  position: relative;
  /*&:after{
    content: "";
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
    height: 55%;
    background: #f6f9fc;
    z-index: 1;
    pointer-events: none;
  }*/
}
.row-iniciatyvos .row {
  position: relative;
  z-index: 2;
}

.project-description-text.inic-desc {
  color: #646464;
}

.inic-logo {
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .inic-logo {
    padding: 40px 0 !important;
  }
}
.inic-logo img {
  width: auto;
  height: auto;
  max-width: 229px;
  max-height: 229px;
}
@media only screen and (max-width: 767px) {
  .inic-logo img {
    max-width: 150px;
    max-height: 150px;
  }
}

.inic-news {
  margin-bottom: 130px;
}
@media only screen and (max-width: 1300px) {
  .inic-news {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .inic-news {
    text-align: center;
  }
}

.btn-box-visos-akt {
  margin-top: 50px;
}

.iniciatyvos-large-list {
  margin-top: 9.3%;
}
@media (min-width: 1920px) {
  .iniciatyvos-large-list {
    margin-top: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .iniciatyvos-large-list {
    margin-top: 40px;
  }
}
.iniciatyvos-large-list .iniciatyva-item {
  display: flex;
}
.iniciatyvos-large-list .iniciatyva-item + .iniciatyva-item {
  margin-top: 45px;
}
.iniciatyvos-large-list .iniciatyva-item:nth-child(even) .ii-content {
  order: 2;
  padding: 0 60px 0 70px;
}
@media only screen and (max-width: 1300px) {
  .iniciatyvos-large-list .iniciatyva-item:nth-child(even) .ii-content {
    padding: 0 60px 0 40px;
  }
}
@media only screen and (max-width: 1200px) {
  .iniciatyvos-large-list .iniciatyva-item:nth-child(even) .ii-content {
    padding: 0 50px 0 30px;
  }
}
@media only screen and (max-width: 980px) {
  .iniciatyvos-large-list .iniciatyva-item:nth-child(even) .ii-content {
    padding: 0 10px 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .iniciatyvos-large-list .iniciatyva-item:nth-child(even) .ii-content {
    padding: 0 0 20px;
  }
}
.iniciatyvos-large-list .iniciatyva-item:nth-child(even) .ii-image {
  order: 1;
}
.iniciatyvos-large-list .iniciatyva-item .ii-content {
  flex-grow: 1;
  padding: 0 3% 0 0;
}
@Media (min-width: 1920px) {
  .iniciatyvos-large-list .iniciatyva-item .ii-content {
    padding: 0 40px 0 0;
  }
}
@media only screen and (max-width: 980px) {
  .iniciatyvos-large-list .iniciatyva-item .ii-content {
    padding: 0 40px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .iniciatyvos-large-list .iniciatyva-item .ii-content {
    padding: 0 0 20px;
  }
}
.iniciatyvos-large-list .iniciatyva-item .ii-content .ii-title {
  margin-bottom: 1.5em;
}
@media (min-width: 1920px) {
  .iniciatyvos-large-list .iniciatyva-item .ii-content .ii-title {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .iniciatyvos-large-list .iniciatyva-item .ii-content .ii-title {
    margin-bottom: 10px;
  }
}
.iniciatyvos-large-list .iniciatyva-item .ii-content .ii-title a {
  font-size: 3.1vw;
  line-height: 1.3;
  color: #000000;
  font-weight: 700;
  transition: 0.2s;
}
.iniciatyvos-large-list .iniciatyva-item .ii-content .ii-title a:hover {
  opacity: 0.8;
}
.iniciatyvos-large-list .iniciatyva-item .ii-content .ii-desc {
  color: #646464;
  line-height: 1.5;
  font-size: 0.83vw;
  margin-bottom: 1.88em;
}
@media (min-width: 1920px) {
  .iniciatyvos-large-list .iniciatyva-item .ii-content .ii-desc {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 980px) {
  .iniciatyvos-large-list .iniciatyva-item .ii-content .ii-desc {
    font-size: 18px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .iniciatyvos-large-list .iniciatyva-item .ii-content .ii-desc {
    font-size: 13px;
    line-height: 1.44;
    margin-bottom: 10px;
  }
}
.iniciatyvos-large-list .iniciatyva-item .ii-content .read-more {
  color: #070707;
}
.iniciatyvos-large-list .iniciatyva-item .ii-content .read-more:hover {
  color: #161519;
  opacity: 0.8;
}
.iniciatyvos-large-list .iniciatyva-item .ii-content .read-more:hover:after {
  margin-left: 35px;
}
.iniciatyvos-large-list .iniciatyva-item .ii-image {
  flex-shrink: 0;
  display: block;
  transition: 0.2s;
  width: 40.2vw;
  height: 24.7vw;
  width: 60.3125%;
  /*@media only screen and (max-width: 1500px) {
    width: 700px;
    height: 450px;
  }
  @media only screen and (max-width: 1300px) {
    width: 650px;
    height: 400px;
  }
  @media only screen and (max-width: 1200px) {
    width: 540px;
    height: 330px;
  }*/
}
@media (min-width: 1920px) {
  .iniciatyvos-large-list .iniciatyva-item .ii-image {
    width: 772px;
    height: 474px;
  }
}
@media only screen and (max-width: 980px) {
  .iniciatyvos-large-list .iniciatyva-item .ii-image {
    width: 350px;
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .iniciatyvos-large-list .iniciatyva-item .ii-image {
    width: 100%;
    height: 170px;
  }
}
.iniciatyvos-large-list .iniciatyva-item .ii-image:hover {
  opacity: 0.8;
}
.iniciatyvos-large-list .iniciatyva-item .ii-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .iniciatyvos-large-list .iniciatyva-item {
    flex-direction: column;
  }
  .iniciatyvos-large-list .iniciatyva-item .ii-image {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    order: 1;
  }
  .iniciatyvos-large-list .iniciatyva-item .ii-content {
    order: 2;
  }
}

.larger-11 {
  font-size: 24px;
  line-height: 33px;
  color: #2D0094;
  font-weight: 700;
  margin-bottom: 40px;
}
@media only screen and (max-width: 980px) {
  .larger-11 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .larger-11 {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
}

.row-11 {
  max-width: 1005px;
  transform: translateX(-23px);
}
@media only screen and (max-width: 1200px) {
  .row-11 {
    max-width: 100%;
    transform: none;
  }
}

.content-11 {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .content-11 {
    display: block;
  }
}
.content-11 > div {
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .content-11 > div {
    width: 100%;
  }
  .content-11 > div + div {
    margin-top: 20px;
  }
}

.team-section {
  position: relative;
}
.team-section.section {
  padding: 3.14% 0 6.34%;
}
@media (min-width: 1920px) {
  .team-section.section {
    padding: 60px 0 120px;
  }
}
@media (max-width: 639px) {
  .team-section.section {
    padding: 20px 0 80px;
  }
}
.team-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #e7eced;
  pointer-events: none;
}
.team-section > .row {
  position: relative;
  z-index: 1;
}
.team-section .section-title {
  color: #000000;
}
.team-section .page-description {
  color: #3E4E53;
  margin-bottom: 3.5%;
}
.team-section .page-description p {
  margin-bottom: 1.25em;
}
@media (min-width: 1920px) {
  .team-section .page-description {
    margin-bottom: 45px;
  }
  .team-section .page-description p {
    margin-bottom: 20px;
  }
}

.row.row-small {
  max-width: 1060px;
}

.cookies-container {
  position: fixed;
  bottom: 50px;
  right: 100px;
  padding: 24px;
  width: 370px;
  background: #E35331;
  z-index: 501;
}

.cookies-bottom {
  padding-bottom: 10px;
}

.cookies-title {
  font-size: 18px;
  line-height: 1.33;
  margin-bottom: 5px;
  color: #fff;
  font-weight: 700;
}

.cookies-text {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
  opacity: 59%;
  margin-bottom: 32px;
  color: #fff;
}

.cookies-bottom span a {
  color: #fff;
  text-decoration: underline;
  transition: 0.2s;
  margin-left: 10px;
}

.cookies-bottom span a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.header {
  background: #fff;
  background: #FBFBFB;
  padding-top: 30px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
}

.header-logo a {
  display: block;
  transition: 0.2s;
}

.header-logo a:hover {
  opacity: 0.8;
}

.header-logo a.logo-white {
  display: none;
}

.header-logo a.logo-black {
  display: block;
}

.header-nav ul {
  float: right;
}

.header-nav ul li {
  display: inline-block;
  margin-right: 30px;
}

.header-nav ul li:last-child {
  margin-right: 0;
}

.header-nav ul li a {
  display: inline-block;
  color: #000;
  transition: 0.2s;
  font-size: 16px;
  font-weight: 700;
}

body.home .header-nav ul li a,
body.single-projektas .header-nav ul li a,
body.single-iniciatyva .header-nav ul li a {
  color: #fff;
}

body.home .header,
body.single-iniciatyva .header,
body.single-projektas .header {
  background: transparent;
  color: #fff;
}

body.home .header-logo a.logo-black,
body.single-iniciatyva .header-logo a.logo-black,
body.single-projektas .header-logo a.logo-black {
  display: none;
}

body.home .header-logo a.logo-white,
body.single-iniciatyva .header-logo a.logo-white,
body.single-projektas .header-logo a.logo-white {
  display: block;
}

.menu-container {
  position: fixed;
  top: 0;
  right: 0;
  background: #2D0094;
  width: 17.34%;
  height: 100vh;
  overflow: auto;
  transform: translateX(100%);
  transition: 0.6s;
  padding: 2.12%;
}
@media (min-width: 1920px) {
  .menu-container {
    width: 330px;
    padding: 40px;
  }
}

.menu-container.toggle {
  transform: translateX(0) !important;
  opacity: 1 !important;
}

.lang-menu {
  margin-bottom: 40%;
}
@media (min-width: 1920px) {
  .lang-menu {
    margin-bottom: 150px;
  }
}

.lang-menu ul {
  line-height: 1;
}

.lang-menu ul li {
  display: inline-block;
  margin-right: 30px;
  line-height: 1;
}

.lang-menu ul li:last-child {
  margin-right: 0;
}

.lang-menu ul li a {
  display: inline-block;
  color: #fff;
  opacity: 0.5;
  text-transform: uppercase;
  transition: 0.2s;
  font-size: 0.78vw;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 1920px) {
  .lang-menu ul li a {
    font-size: 15px;
  }
}

.lang-menu ul li a.current-lang,
.lang-menu ul li a:hover {
  opacity: 1;
}

.menu-nav {
  margin-bottom: 60px;
}

.menu-nav ul li {
  line-height: 1;
  position: relative;
  margin-bottom: 12%;
}
@media (min-width: 1920px) {
  .menu-nav ul li {
    margin-bottom: 30px;
  }
}

.menu-nav ul li:last-child {
  margin-bottom: 0;
}

.menu-nav ul li a {
  color: #fff;
  opacity: 0.5;
  transition: 0.2s;
  font-size: 0.78vw;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 1920px) {
  .menu-nav ul li a {
    font-size: 15px;
  }
}

.menu-nav ul li.current-menu-item > a {
  opacity: 1;
}

.menu-nav ul li.current-menu-item > :after {
  content: "";
  position: absolute;
  right: 0;
  top: 2px;
  background: url("../img/arrow-right-white.svg") center center no-repeat;
  background-size: contain;
  height: 100%;
  width: 8.2%;
}
@media (min-width: 1920px) {
  .menu-nav ul li.current-menu-item > :after {
    height: 15px;
    width: 21px;
  }
}

.menu-nav ul li a:hover {
  opacity: 1;
}

.menu-social ul li {
  display: inline-block;
  margin-right: 8%;
}
@media (min-width: 1920px) {
  .menu-social ul li {
    margin-right: 20px;
  }
}

.menu-social ul li:last-child {
  margin-right: 0;
}

.menu-social ul li a {
  color: #fff;
  transition: 0.2s;
}
.menu-social ul li a img {
  width: 1.05vw;
}
@media (min-width: 1920px) {
  .menu-social ul li a img {
    width: 20px;
  }
}

.menu-social ul li a:hover {
  opacity: 0.8;
}

.header-nav .hamburger-container {
  position: absolute;
  right: 0;
  padding-top: 0px;
}

/*hamburger*/
.hamburger-custom img.hamburger-white {
  display: none;
}

body.home .hamburger-custom img.hamburger-black,
body.single-iniciatyva .hamburger-custom img.hamburger-black,
body.single-projektas .hamburger-custom img.hamburger-black {
  display: none;
}

body.home .hamburger-custom img.hamburger-white,
body.single-iniciatyva .hamburger-custom img.hamburger-white,
body.single-projektas .hamburger-custom img.hamburger-white {
  display: block;
}

body.home .slider-container {
  margin-bottom: 4%;
}
@media (min-width: 1920px) {
  body.home .slider-container {
    margin-bottom: 50px;
  }
}

body.home .section {
  /*  padding-top: 55px;
    padding-bottom: 65px;*/
  padding-top: 5.7%;
  padding-bottom: 7%;
}
@media (min-width: 1920px) {
  body.home .section {
    padding-top: 110px;
    padding-bottom: 130px;
  }
}

.hamburger-custom {
  cursor: pointer;
  padding: 10px 28px;
  margin-top: -4px;
}

.hamburger-alt-container {
  /*width: 300px; for nearby menu*/
  position: fixed;
  right: -80px;
  top: 0;
  text-align: right;
  transition: 0.6s;
}

.hamburger-alt-container.show {
  right: 0;
}

.hamburger-alt {
  position: relative;
  height: 100vh;
  width: 80px;
  background: #2D0094;
  margin-left: auto;
  width: 4.2vw;
}
@media (min-width: 1920px) {
  .hamburger-alt {
    width: 80px;
  }
}
@media (max-width: 1023px) {
  .hamburger-alt {
    width: 60px;
  }
}

.hamburger-alt .hamburger-custom {
  cursor: pointer;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1400px) {
  .hamburger-alt .hamburger-custom img {
    width: 21px;
  }
}

.hamburger-alt .popup-form {
  position: absolute;
  left: 50%;
  bottom: 17%;
  transform: translate(-50%, 0);
}
.hamburger-alt .popup-form .popup-form-inner {
  transform-origin: center center;
  transform: rotate(-90deg);
  display: flex;
  align-items: center;
}
.hamburger-alt .popup-form .popup-form-inner div {
  display: flex;
  animation: shake-animation 4.72s ease infinite;
  transform-origin: 50% 50%;
}
.hamburger-alt .popup-form .popup-form-inner img {
  max-width: unset;
  width: 17px;
  display: block;
}
.hamburger-alt .popup-form .popup-form-inner span {
  color: #fff;
  font-size: 15px;
}
.hamburger-alt .popup-form .popup-form-inner span:first-of-type {
  transform: rotate(90deg);
  margin-right: 12px;
  margin-top: -3px;
}
@media (max-width: 1400px) {
  .hamburger-alt .popup-form .popup-form-inner img {
    width: 15px;
  }
  .hamburger-alt .popup-form .popup-form-inner span {
    font-size: 13px;
  }
}

@keyframes shake-animation {
  /*0% { transform:translate(0,0) }
  1.78571% { transform:translate(5px,0) }
  3.57143% { transform:translate(0,0) }
  5.35714% { transform:translate(5px,0) }
  7.14286% { transform:translate(0,0) }
  8.92857% { transform:translate(5px,0) }
  10.71429% { transform:translate(0,0) }
  100% { transform:translate(0,0) }*/
  0% {
    transform: rotate(0deg);
  }
  1.78571% {
    transform: rotate(3deg);
  }
  3.57143% {
    transform: rotate(0deg);
  }
  5.35714% {
    transform: rotate(-3deg);
  }
  7.14286% {
    transform: rotate(0deg);
  }
  8.92857% {
    transform: rotate(3deg);
  }
  10.71429% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.menu-close {
  position: absolute;
  background: url("../img/burger-close.svg") no-repeat;
  background-size: 100%;
  cursor: pointer;
  transition: 0.2s;
  width: 1vw;
  height: 1vw;
  top: 2.1vw;
  right: 2.1vw;
}
@media (min-width: 1920px) {
  .menu-close {
    top: 40px;
    right: 40px;
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 1500px) {
  .menu-close {
    top: 2.2vw;
  }
}
@media (max-width: 1280px) {
  .menu-close {
    top: 2.3vw;
  }
}

/*home-intro*/
.intro {
  background-size: cover !important;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  max-height: 1100px;
  padding-top: 11.56%;
}
@media (min-width: 1920px) {
  .intro {
    padding-top: 220px;
  }
}

.intro video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

.intro:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.intro .row {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  max-width: 1280px;
  width: 83%;
  width: 67.5%;
}

.home-intro-text {
  margin-bottom: 4.2%;
}
@media (min-width: 1920px) {
  .home-intro-text {
    margin-bottom: 52px;
  }
}
.home-intro-text h1 {
  font-size: 6.35vw;
  line-height: 1.2;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.34em;
}
@media (min-width: 1920px) {
  .home-intro-text h1 {
    font-size: 120px;
  }
}
@media (max-width: 900px) {
  .home-intro-text h1 {
    font-size: 42px;
  }
}
.home-intro-text p {
  color: #fff;
  font-size: 0.85vw;
  font-weight: 400;
  max-width: 768px;
  min-height: 121px;
}
@media screen and (max-width: 1900px) {
  .home-intro-text p {
    max-width: 40vw;
  }
}
@media (min-width: 1920px) {
  .home-intro-text p {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .home-intro-text h1 {
    font-size: 42px;
  }
  .home-intro-text p {
    max-width: unset;
  }
}

/*home-intro-nav*/
.home-intro-nav ul li {
  float: left;
  max-width: 150px;
  border-left: 2px solid #fff;
  margin-right: -5px;
}

.home-intro-nav ul li a {
  display: inline-block;
  font-size: 15px;
  margin-left: -1px;
  color: #fff;
  font-weight: 700;
  min-height: 70px;
  padding: 8px 18px 0px 16px;
  transition: 0.2s;
}

.home-intro-nav ul li a:hover,
.home-intro-nav ul li a.current {
  background: #fff;
  color: #000;
}

.section {
  padding: 6.34% 0;
}
@media (min-width: 1920px) {
  .section {
    padding: 120px 0;
  }
}

.section.nopadbott {
  padding-bottom: 0;
}

.section.nopadtop {
  padding-top: 0;
}

.section-wrap {
  padding: 0 5.45%;
}
@media (min-width: 1920px) {
  .section-wrap {
    padding: 0 70px;
  }
}

.page-title {
  font-size: 6.35vw;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.34em;
}
.page-title h1 {
  font-size: 6.35vw;
  font-weight: 600;
}
@media (min-width: 1920px) {
  .page-title {
    font-size: 120px;
    margin-bottom: 30px;
  }
  .page-title h1 {
    font-size: 120px;
  }
}
@media (max-width: 700px) {
  .page-title h1 {
    font-size: 50px;
  }
  .preface-section .page-title h1 {
    font-size: 40px;
  }
}

.page-description {
  color: #3E4E53;
  font-size: 0.85vw;
  font-weight: 400;
  line-height: 1.44;
}
@media (min-width: 1920px) {
  .page-description {
    font-size: 16px;
  }
}
@media (max-width: 1360px) {
  .page-description {
    font-size: 12px;
  }
}

.shake-svg svg {
  animation: tilt-shaking 2.72s ease infinite;
}

@keyframes tilt-shaking {
  0% {
    transform: rotate(0deg);
  }
  1.78571% {
    transform: rotate(20deg);
  }
  3.57143% {
    transform: rotate(0deg);
  }
  5.35714% {
    transform: rotate(-20deg);
  }
  7.14286% {
    transform: rotate(0deg);
  }
  8.92857% {
    transform: rotate(20deg);
  }
  10.71429% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.section-title {
  font-size: var(--Header-section);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.8em;
}

/*news*/
.bg-blue {
  background: var(--Background02);
}

/*sliders*/
.item-img,
.projects-list-img,
.section-funds--imgs {
  background-size: cover !important;
  padding-top: 53%;
  position: relative;
  margin-bottom: 5%;
}
@media (min-width: 1920px) {
  .item-img,
  .projects-list-img,
  .section-funds--imgs {
    margin-bottom: 30px;
  }
}
.item-img:after,
.projects-list-img:after,
.section-funds--imgs:after {
  content: "";
  background: #030303;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.item-img--txt,
.projects-list-img--txt,
.section-funds--imgs--txt {
  opacity: 0;
  /*  width: 87px;
    height: 87px;*/
  width: 4.53vw;
  height: 4.53vw;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  font-size: 0.78vw;
  color: #fff;
  background: #E35331;
  transition: opacity 0.3s ease;
}
@media (min-width: 1920px) {
  .item-img--txt,
  .projects-list-img--txt,
  .section-funds--imgs--txt {
    width: 87px;
    height: 87px;
    font-size: 15px;
  }
}

.section-funds--imgs {
  padding-top: 0;
}

.hover-more {
  width: 100%;
}
.hover-more * {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.hover-more:hover .item-img:after,
.hover-more:hover .projects-list-img:after,
.hover-more:hover .section-funds--imgs:after {
  opacity: 0.58;
}
.hover-more:hover .item-img--txt,
.hover-more:hover .projects-list-img--txt,
.hover-more:hover .section-funds--imgs--txt {
  opacity: 1;
}

.item-img.with-term:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 88px;
  background: linear-gradient(180deg, transparent, #000000);
  background-blend-mode: multiply;
}

.item-img .item-term {
  position: absolute;
  bottom: 16px;
  left: 32px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.item-text {
  padding-left: 0;
  padding-right: 17%;
}
@media (min-width: 1920px) {
  .item-text {
    padding-right: 110px;
  }
}

.item-text .item-title {
  font-size: 1.75vw;
  font-weight: 700;
  margin-bottom: 0.39em;
  color: #000;
  line-height: 1.3;
}
@media (min-width: 1920px) {
  .item-text .item-title {
    font-size: 33px;
    margin-bottom: 13px;
  }
}
.item-text .item-title.no-desc {
  margin-bottom: 2px;
}
@media (min-width: 1920px) {
  .item-text .item-title {
    font-size: 33px;
    margin-bottom: 13px;
  }
}

.item-text .item-details {
  color: #3E4E53;
  margin-bottom: 25px;
  font-size: 16px;
  font-size: 0.85vw;
  margin-bottom: 1.57em;
  font-weight: 400;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}
@media (min-width: 1920px) {
  .item-text .item-details {
    font-size: 16px;
  }
}

.item a {
  display: block;
  transition: 0.2s;
}

.item a:hover {
  opacity: 0.8;
}

.read-more {
  color: #070707;
  transition: 0.2s;
  font-size: 0.85vw;
  font-weight: 700;
  margin-bottom: 1.77em;
}

.read-more:after {
  content: "";
  position: relative;
  top: 2px;
  display: inline-block;
  background: url("../img/more-arrow.svg") no-repeat;
  background-size: contain;
  /*   height: 15px;
     width: 21px;
     margin-left: 25px;*/
  transition: margin 0.2s;
  width: 1.1vw;
  height: 0.8vw;
  margin-left: 1.58em;
  transform: rotate(0.1deg);
}

a:hover .read-more:after {
  margin-left: 2em;
}

@media (min-width: 1920px) {
  .read-more {
    font-size: 16px;
  }
  .read-more:after {
    height: 15px;
    width: 21px;
    margin-left: 25px;
  }
}
.slider-owl .owl-nav, .team-list-slider .owl-nav, .iniciatyvos-list-slider .owl-nav {
  float: right;
  padding-top: 12px;
}

.slider-owl .owl-nav button.owl-next,
.slider-owl .owl-nav button.owl-prev,
.iniciatyvos-list-slider .owl-nav button.owl-next,
.iniciatyvos-list-slider .owl-nav button.owl-prev,
.team-list-slider .owl-nav button.owl-next,
.team-list-slider .owl-nav button.owl-prev {
  width: 22px;
  height: 30px;
  position: relative;
  font-size: 25px;
  color: #014454;
  transition: 0.2s;
}

.slider-owl .owl-nav button.owl-next i,
.slider-owl .owl-nav button.owl-prev i,
.iniciatyvos-list-slider .owl-nav button.owl-next i,
.iniciatyvos-list-slider .owl-nav button.owl-prev i,
.team-list-slider .owl-nav button.owl-next i .team-list-slider .owl-nav button.owl-prev i {
  line-height: 1;
}

.owl-nav button.owl-next.disabled,
.owl-nav button.owl-prev.disabled {
  color: #d7e2ea;
}

.slider-owl .owl-nav button.owl-prev,
.iniciatyvos-list-slider .owl-nav button.owl-prev,
.team-list-slider .owl-nav button.owl-prev {
  margin-right: 25px;
}

.slider-progress {
  background: #d7e2ea;
}

.slider-progress ul li {
  float: left;
  height: 2px;
  background: #014454;
  transition: 0.4s;
}

.slider-owl, .team-list-slider, .iniciatyvos-list-slider {
  margin-bottom: 2.2%;
}
@media (min-width: 1920px) {
  .slider-owl, .team-list-slider, .iniciatyvos-list-slider {
    margin-bottom: 28px;
  }
}

@media (max-width: 1023px) {
  .iniciatyvos-list-slider {
    padding-bottom: 60px;
  }
  .iniciatyvos-list-slider .iniciatyvos-item {
    padding-bottom: 60px;
  }
  .iniciatyvos-list-slider .iniciatyvos-item .image {
    width: 100%;
  }
  .iniciatyvos-list-slider a {
    flex-direction: column;
  }
  .iniciatyvos-list-slider .iniciatyvos-item--content {
    padding: 30px 0 0;
    order: 2;
  }
  .iniciatyvos-list-slider .iniciatyvos-item--content .ii-desc {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .iniciatyvos-list-slider .iniciatyvos-item {
    padding-bottom: 36px;
  }
}
.btn-white,
.btn-white:active,
.btn-white:focus {
  background: #fff;
  display: inline-block;
  color: #E35331;
  text-transform: uppercase;
  border: 1px solid #E35331;
  padding: 20px 82px 19px;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 1.87px;
  font-weight: 700;
  transition: 0.2s;
}

.btn-white:hover {
  color: #fff;
  background: #E35331;
  border-color: #fff;
}

.btn-white.btn-white-small,
.btn-white.btn-white-small:active,
.btn-white.btn-white-small:focus {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 6px 18px;
  text-transform: none;
  letter-spacing: normal;
}

.btn-trans,
.btn-trans:active,
.btn-trans:focus {
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  background: #E35331;
  border: 1px solid #E35331;
  font-size: 0.73vw;
  padding: 1.29em 5.3em 1.15em;
  line-height: 1;
  letter-spacing: 1.87px;
  font-weight: 700;
  transition: 0.2s;
  /*@media(max-width: 1400px){
    padding: 15px 68px 13px;
    font-size: 12px;
  }*/
}
@media (min-width: 1920px) {
  .btn-trans,
  .btn-trans:active,
  .btn-trans:focus {
    font-size: 14px;
  }
}

.btn-trans:hover {
  color: #fff;
  background: #e86627;
  border-color: #fff;
}

.btn-trans.btn-trans-small,
.btn-trans.btn-trans-small:active,
.btn-trans.btn-trans-small:focus {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 6px 18px;
  text-transform: none;
  letter-spacing: normal;
}

.main-container {
  padding-top: 65px;
}
@media (max-width: 700px) {
  .main-container {
    padding-top: 80px;
  }
}

/*team page*/
.team-list ul li {
  width: 27.3%;
  float: left;
  margin-right: 4%;
  margin-bottom: 40px;
}

.team-list ul li:nth-child(3n) {
  margin-right: 0;
}

.team-list ul li:nth-child(3n+1) {
  clear: both;
}

.item {
  width: 100%;
}

.team-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.project-team-owl .team-item {
  max-width: 290px;
}

.team-img {
  background-size: cover !important;
  padding-top: 103%;
  margin-bottom: 8%;
}
@media (min-width: 1920px) {
  .team-img {
    margin-bottom: 24px;
  }
}

.team-img img {
  width: 100%;
}

.team-name {
  font-size: 1.15vw;
  line-height: 1.33;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.73em;
}
@media (min-width: 1920px) {
  .team-name {
    font-size: 22px;
  }
}

.team-position {
  color: #A3ACB5;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.06;
  min-height: unset;
  font-size: 0.79vw;
}
@media (max-width: 470px) {
  .team-position {
    margin-bottom: 10px;
  }
}
@media (min-width: 1920px) {
  .team-position {
    font-size: 16px;
  }
}

.team-contacts {
  display: flex;
  align-items: center;
  padding-bottom: 13.35%;
}
.team-contacts a {
  margin-right: 15px;
  display: flex;
  align-items: center;
}
.team-contacts a img {
  display: block;
  width: 1.1vw;
}
@media (min-width: 1920px) {
  .team-contacts a img {
    width: 20px;
  }
}
@media (max-width: 470px) {
  .team-contacts {
    padding-bottom: 20px;
  }
}
@media (min-width: 1920px) {
  .team-contacts {
    padding-bottom: 40px;
  }
}

.team-email,
.team-social {
  display: flex;
  align-items: center;
}

.team-email a {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.06;
  color: #014454;
  transition: 0.2s;
}

.team-email a:hover {
  opacity: 0.8;
}

.team-social a {
  display: inline-block;
  color: #014454;
  transition: 0.2s;
}

.team-social a:hover {
  opacity: 0.8;
}

.hiring-list {
  padding-right: 10%;
}

.hiring-list ul li {
  position: relative;
  padding: 24px 30px 24px 8px;
  border-bottom: 1px solid #d7e2ea;
}

.hiring-list ul li a {
  display: block;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  color: #000;
  transition: 0.2s;
}

.hiring-list ul li a:hover {
  opacity: 0.8;
}

.hiring-list ul li:hover:after {
  right: -10px;
}

.hiring-list ul li:after {
  content: "";
  background: url("../img/more-arrow.svg") no-repeat center center;
  background-size: contain;
  width: 15px;
  height: 21px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}

/*fancybox*/
.fancybox-item {
  display: none;
  padding: 0 40px;
  background: transparent;
}

.fancybox-item-inner {
  padding: 16px 16px 0;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.fancybox-item-bottom {
  padding: 19px 54px;
  position: relative;
}

.fancybox-item .caption {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
}

.fancybox-item .nav {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
}

.fancybox-close-small {
  color: #fff;
}

.fancybox-navigation .fancybox-button {
  position: relative;
  background: transparent;
  color: #014454;
  visibility: visible !important;
  opacity: 1 !important;
  font-size: 19px;
  padding: 0;
}

.fancybox-button.disabled,
.fancybox-button.disabled:hover,
.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #d7e2ea;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: auto;
}

.fancybox-navigation .fancybox-button--arrow_right {
  right: auto;
  margin-left: 15px;
}

.general-popup .fancybox-navigation {
  display: none;
}
.general-popup .fancybox-slide--html .fancybox-close-small {
  color: #000;
}

/*footer*/
.footer {
  box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 1.37% 0;
}
@media (min-width: 1920px) {
  .footer {
    padding: 28px 0;
  }
}

.footer-container {
  color: #A0B5BA;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.footer-social ul li {
  display: inline-block;
  margin-right: 25px;
}

.footer-social ul li:last-child {
  margin-right: 0;
}

.footer-social ul li a {
  color: #A0B5BA;
  transition: 0.2s;
  font-size: 21px;
}

.footer-social ul li a:hover {
  opacity: 0.8;
}

.footer-left {
  padding-top: 5px;
}

.footer-privacy a {
  color: #A0B5BA;
  text-decoration: underline;
}

.footer-privacy a:hover {
  text-decoration: none;
}

/*projects-page*/
.projects-list-section {
  padding-bottom: 24px;
}
@media (min-width: 1920px) {
  .projects-list-section {
    padding-bottom: 24px;
  }
}

.section-nav {
  border-bottom: 2px solid #A0B5BA;
  border-radius: 1px;
  margin-bottom: 4.3%;
}
@media (min-width: 1920px) {
  .section-nav {
    margin-bottom: 55px;
  }
}

.nav-tabs {
  border: none;
  background: transparent;
}

.nav-tabs .tabs-title > a {
  color: #A3ACB5;
  font-size: 15px;
  padding: 0 24px 16px 24px;
  font-weight: 500;
  line-height: 1.06;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
  margin-bottom: -2px;
}

.nav-tabs .tabs-title > a:focus,
.nav-tabs .tabs-title > a:hover,
.nav-tabs .tabs-title > a[aria-selected=true] {
  background: transparent;
  color: #E86627;
  border-color: #E86627;
}

.tabs-content.section-tabs {
  border: none;
  background: transparent;
}

.tabs-content.section-tabs .tabs-panel {
  padding: 0;
}

.section-nav-right {
  font-size: 0.78vw;
  font-weight: 500;
  line-height: 1.06;
  color: #000000;
  transition: 0.2s;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.section-nav-right svg {
  width: 1.48vw;
  height: auto;
  margin-right: 2.68%;
}
.section-nav-right svg path {
  transition: fill 0.2s;
}
.section-nav-right span {
  padding-top: 4px;
  font-weight: 700;
  padding-top: 0.27em;
}
@media (min-width: 1920px) {
  .section-nav-right {
    font-size: 15px;
  }
  .section-nav-right span {
    padding-top: 4px;
  }
  .section-nav-right svg {
    margin-right: 17px;
    width: 28.482px;
    height: 28.482px;
  }
}

.projects-list-section.with-map .section-nav-right {
  color: #E35331;
}
.projects-list-section.with-map .section-nav-right svg path {
  fill: #E35331;
}

.project-count {
  text-align: right;
  font-size: 15px;
  line-height: 1.03;
  font-weight: 500;
  color: #A3ACB5;
  padding-top: 68px;
  position: relative;
  z-index: 230;
}

.switch-container {
  display: inline-block;
  position: relative;
  width: 48px;
  height: 8px;
  background: #87989C;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 15px;
  width: 2.5vw;
  height: 0.42vw;
}
@media (min-width: 1920px) {
  .switch-container {
    margin-left: 15px;
    width: 48px;
    height: 8px;
  }
}

.switch {
  position: absolute;
  width: 1.25vw;
  height: 1.25vw;
  background: #2D0094;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.2s;
  margin: 0;
}
@media (min-width: 1920px) {
  .switch {
    height: 24px;
    width: 24px;
  }
}

.projects-list-section.with-map .section-nav-right .switch {
  left: auto;
  right: 0;
  background: #E35331;
}

.projects-list ul li a {
  display: block;
  transition: 0.2s;
}

.projects-list ul {
  display: flex;
  flex-wrap: wrap;
}

.projects-list ul li {
  position: relative;
  display: block;
  float: left;
  width: 50%;
  border-radius: 0;
  /*  padding-bottom: 40px;
    margin-bottom: 60px;*/
  border-bottom: 1px solid #A0B5BA;
  padding-bottom: 3.15%;
  margin-bottom: 4.7%;
}
.projects-list ul li a.link-corner {
  width: auto;
}
.projects-list ul li:nth-child(even) .projects-list--item {
  margin: 0 0 0 auto;
}
@media (max-width: 1920px) {
  .projects-list ul li {
    padding-bottom: 40px;
    margin-bottom: 60px;
  }
}

.projects-list--item {
  width: 95%;
  position: relative;
}

.page-template-paslaugos .slider-container {
  margin-bottom: 3.92%;
}
@media (min-width: 1920px) {
  .page-template-paslaugos .slider-container {
    margin-bottom: 50px;
  }
}

.projects-list-img {
  position: relative;
  background-size: cover !important;
  padding-top: 54%;
  margin-bottom: 5.8%;
}
@media (min-width: 1920px) {
  .projects-list-img {
    margin-bottom: 35px;
  }
}

.projects-list-img img {
  max-width: 100%;
}

.link-corner {
  position: absolute;
  top: 0;
  right: 0;
  background: #3E4E53;
  color: #fff;
  line-height: 1.03;
  font-weight: 400;
  z-index: 55;
  font-size: 0.76vw;
  padding: 0.86em 1.2em;
}
.link-corner .corner-box {
  display: flex;
  align-items: center;
}
.link-corner .corner-box img {
  margin-top: -3px;
  margin-right: 5px;
}
@media (min-width: 1920px) {
  .link-corner {
    padding: 13.3px 18px;
    font-size: 15px;
  }
}

a.link-corner {
  color: #fff;
  transition: 0.2s;
}

a.link-corner:hover {
  opacity: 0.8;
}

.projects-list-text {
  padding: 0 16px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.projects-list-title {
  padding-top: 4px;
  padding-top: 0.125em;
  font-weight: 700;
  line-height: 1.33;
  color: #000000;
  font-size: 1.72vw;
}
@media (min-width: 1920px) {
  .projects-list-title {
    font-size: 33px;
    padding-top: 4px;
  }
}

.projects-list-address {
  font-size: 0.85vw;
  display: flex;
  align-items: baseline;
  line-height: 1.06;
  font-weight: 400;
  color: #3E4E53;
}
@media (min-width: 1920px) {
  .projects-list-address {
    font-size: 16px;
  }
}

.projects-list-address:before {
  content: "";
  display: block;
  background: url("../img/marker.svg") center center no-repeat;
  background-size: contain;
  width: 0.8vw;
  height: 1.2vw;
  margin-right: 6px;
  position: relative;
  top: 4px;
}
@media (min-width: 1920px) {
  .projects-list-address:before {
    top: 4px;
    content: url("../img/marker.svg");
    background: none;
    margin-right: 6px;
  }
}

.list-map-container .list .projects-list-img {
  padding-top: 35%;
}

.list-map-container {
  display: none;
}

.list-map-container .link-corner {
  top: 8px;
  left: 8px;
  right: auto;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 5px;
}

.projects-list-section.with-map {
  padding-bottom: 64px;
}

.projects-list-section.with-map .projects-list .list-map-container {
  display: block;
}

.projects-list-section.with-map .projects-list .list-container {
  display: none;
}

.projects-list-section.with-map .projects-list ul li {
  width: 100%;
  margin-right: 0;
  padding: 8px;
}

.projects-list-section.with-map .projects-list ul li a {
  display: flex;
}

.projects-list-section.with-map .projects-list .projects-list-img {
  margin-bottom: 0;
}

.projects-list-section.with-map .projects-list .projects-list-img img {
  min-height: 100%;
}

.projects-list-section.with-map .projects-list .projects-list-title,
.projects-list-section.with-map .projects-list .projects-list-address {
  float: none;
}

.projects-list-section.with-map .projects-list .projects-list-text {
  padding-top: 15px;
}

.projects-list-section.with-map .projects-list .projects-list-title {
  margin-bottom: 15px;
}

.projects-list-section.with-map .projects-list .projects-list-address {
  margin-bottom: 40px;
}

.projects-list-section.with-map .projects-list .list {
  padding-right: 20px;
}

.projects-list-section.with-map .projects-list .map {
  position: relative;
  min-height: 1px;
}

.map .map-container {
  background: #fff;
}

.map-container.map-fixed {
  position: fixed;
  top: 100px;
  right: calc((100vw - 1296px) / 2);
  z-index: 220;
  width: 620px;
}

/*projects-single-page*/
.intro.project-intro {
  padding-bottom: 80px;
  min-height: 1px;
}

.intro.project-intro .row {
  position: relative;
}

.project-intro-text {
  font-size: 2.1vw;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1em;
}
@media (min-width: 1920px) {
  .project-intro-text {
    margin-bottom: 40px;
    font-size: 40px;
  }
}

.tag-white {
  position: relative;
  display: inline-block;
  background: #fff;
  font-size: 0.78vw;
  line-height: 1.03;
  font-weight: 500;
  color: #000;
  margin-bottom: 1.2em;
  border-radius: 1.2em;
  padding: 0.77em 1.06em 0.67em 2.6em;
}
@media (min-width: 1920px) {
  .tag-white {
    padding: 10px 16px 10px 39px;
    margin-bottom: 18px;
    font-size: 15px;
    border-radius: 18px;
  }
}

.tag-white:last-child {
  margin-bottom: 0;
}

.tag-white a {
  color: #000;
  display: inline-block;
  transition: 0.2s;
}

.tag-white a:hover {
  opacity: 0.8;
}

.tag-white img {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0.78vw;
}
@media (min-width: 1920px) {
  .tag-white img {
    width: 15px;
  }
}

.intro-tags {
  margin-bottom: 5%;
}
@media (min-width: 1920px) {
  .intro-tags {
    margin-bottom: 64px;
  }
}

.project-intro-next a,
.project-intro-prev a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0.4px;
  transition: 0.2s;
  padding-top: 31px;
}

.project-intro-next a:hover,
.project-intro-prev a:hover {
  opacity: 0.8;
}

.project-intro-next a:before,
.project-intro-prev a:before {
  content: "";
  position: absolute;
  top: 0;
  width: 42px;
  height: 15px;
}

.project-intro-next a:before {
  background: url("../img/arrow-long-right.svg") no-repeat;
  right: 0;
}

.project-intro-prev a:before {
  background: url("../img/arrow-long-left.svg") no-repeat;
  left: 0;
}

.flex-container {
  display: flex;
}

.project-description.bg-blue {
  position: relative;
}
.project-description.bg-blue:after {
  width: 31%;
  content: "";
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: #fff;
}
.project-description.bg-blue .row {
  position: relative;
  z-index: 1;
}

.project-description-right table tbody {
  border: none;
  background: transparent;
}

.project-description-right table tbody tr:nth-child(even) {
  background-color: transparent;
}

.project-description-right table tbody td {
  font-size: 0.73vw;
  padding: 1em;
  line-height: 1;
}
@media (min-width: 1920px) {
  .project-description-right table tbody td {
    font-size: 14px;
    padding: 14px;
  }
}

.project-description-right table tbody td:nth-child(1) {
  font-weight: 500;
  padding-left: 0;
  color: #A3ACB5;
  text-align: right;
}

.project-description-right table tbody td:nth-child(2) {
  font-weight: 700;
  padding-right: 0;
  color: #000;
  text-align: left;
}

.project-description-text {
  font-size: 0.83vw;
  line-height: 1.33;
  font-weight: 500;
  color: #000;
}
.project-description-text iframe {
  width: 100%;
  max-width: 500px;
}
@media (min-width: 1920px) {
  .project-description-text {
    font-size: 16px;
  }
}

.project-description-left {
  padding: 4.7% 7% 4.7% 5.7%;
}
@media (min-width: 1920px) {
  .project-description-left {
    padding: 60px 7% 60px 5.7%;
  }
}

.project-description-right {
  padding: 7% 3% 6.25% 4%;
  background: #fff;
  text-align: center;
}
@media (min-width: 1920px) {
  .project-description-right {
    padding: 90px 3% 80px 4%;
  }
}

.project-description-slider .item-img {
  margin-bottom: 0;
  padding-top: 53%;
}

.interior-description {
  padding-left: 5.7%;
  padding-right: 7%;
  padding-bottom: 64px;
}

.slider-container.gallery .item-img {
  margin-bottom: 0;
}

.testimonials-item-container {
  max-width: 700px;
  padding-right: 40px;
  padding-top: 105px;
}

.testimonials-item {
  position: relative;
  background: #fff;
  border: 1px solid #d7e2ea;
  border-radius: 4px;
  max-width: 660px;
}

.testimonials-item a {
  display: block;
  transition: 0.2s;
}

.testimonials-item a:hover {
  opacity: 0.8;
}

.testimonials-item-top:after {
  content: "";
  position: absolute;
  left: 40px;
  top: 40px;
  background: url("../img/quotes.png") no-repeat;
  background-size: contain;
  width: 108px;
  height: 100%;
}

.testimonials-item .testimonials-item-top {
  padding: 140px 40px 0 40px;
  margin-bottom: 30px;
  position: relative;
}

.testimonials-item .item-text {
  padding: 0 37% 0 0;
  text-align: right;
}

.testimonials-item .item-text .item-title {
  font-size: 18px;
  margin-bottom: 16px;
  min-height: 55px;
}

.testimonials-item .item-text .item-details {
  font-size: 15px;
  margin-bottom: 45px;
}
@media (max-width: 1400px) {
  .testimonials-item .item-text .item-details {
    margin-bottom: 10px;
    font-size: 14px;
  }
}

.testimonials-item-img {
  position: absolute;
  top: -110px;
  right: -40px;
  width: 260px;
  background-size: cover !important;
  padding-top: 48%;
}

.testimonials-item .item-excerpt {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
  color: #000;
}

.investor.testimonials-item .item-excerpt {
  margin-bottom: 20px;
}

.testimonials-item-bottom {
  background: #2D0094;
  color: #fff;
  text-align: center;
  padding: 12px 40px;
  font-size: 14px;
  line-height: 1;
}

.testimonials-item-bottom span {
  display: inline-block;
  position: relative;
  padding-left: 25px;
}

.testimonials-item-bottom span:before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  background: url("../img/icon-play.svg") no-repeat;
  background-size: contain;
  width: 13px;
  height: 16px;
}

.testimonials-slider-container {
  margin-top: -90px;
}

.testimonials-owl {
  padding-left: 9%;
}

.testimonials-owl .owl-nav button.owl-prev,
.testimonials-owl .owl-nav button.owl-next {
  position: absolute;
  top: 55%;
  height: 21px;
  width: 15px;
  font-size: 21px;
  color: #014454;
  transition: 0.2s;
}

.testimonials-owl .owl-nav button.owl-prev {
  left: 0;
}

.testimonials-owl .owl-nav button.owl-next {
  right: 0;
}

.testimonials-owl .owl-nav button.owl-next.disabled,
.testimonials-owl .owl-nav button.owl-prev.disabled {
  color: #d7e2ea;
}

.project-contacts-right {
  padding: 0 0 0 9%;
}
@media (min-width: 1560px) {
  .project-contacts-right {
    padding: 0 0 0 2%;
  }
}

.team-member-item {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.team-member-img {
  background-size: cover !important;
  max-width: 302px;
  width: 74%;
  padding-top: 73.4%;
}

.team-member-item:last-child {
  margin-bottom: 0;
}

.team-member-text {
  padding: 25px 0;
  max-width: 320px;
  padding: 4.5% 0;
}
@media (min-width: 1920px) {
  .team-member-text {
    padding: 25px 0;
  }
}

.team-member-text .team-member-name {
  line-height: 1;
  font-weight: 700;
  color: #000;
  font-size: 1.15vw;
  margin-bottom: 0.91em;
}
@media (min-width: 1920px) {
  .team-member-text .team-member-name {
    font-size: 22px;
  }
}

.team-member-text .team-member-position {
  font-size: 0.83vw;
  line-height: 1.4;
  font-weight: 400;
  color: #3E4E53;
  margin-bottom: 1.25em;
}
@media (min-width: 1920px) {
  .team-member-text .team-member-position {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.team-member-contacts {
  display: flex;
  align-items: self-end;
}
.team-member-contacts div {
  display: flex;
  margin-right: 4.9%;
}
.team-member-contacts div a {
  display: block;
}
.team-member-contacts div a img {
  width: 1.05vw;
}
.team-member-contacts .team-member-phone {
  align-items: flex-end;
}
@media (min-width: 1920px) {
  .team-member-contacts div {
    margin-right: 15px;
  }
  .team-member-contacts div a img {
    width: 20px;
  }
}

.team-member-contacts a {
  color: #3E4E53;
  font-size: 0.83vw;
  line-height: 1.03;
  transition: 0.2s;
}
@media (min-width: 1920px) {
  .team-member-contacts a {
    font-size: 16px;
  }
}

.team-member-contacts a:hover {
  opacity: 0.8;
  color: #E35331;
}

.team-member-social {
  text-align: right;
}

.team-slider-container {
  overflow: hidden;
}

.project-team-owl {
  position: relative;
  padding-right: 90px;
}

.project-team-owl .owl-nav {
  position: absolute;
  top: 0;
  right: 0;
  color: #014454;
  font-size: 25px;
}

.project-team-owl .owl-nav button.owl-prev {
  margin-right: 25px;
}

.iniciatyvos-slider-container {
  width: 100%;
  margin: 10.5% auto 0;
}
@media (max-width: 1920px) {
  .iniciatyvos-slider-container {
    margin: 135px auto 0;
  }
}
@media only screen and (max-width: 1300px) {
  .iniciatyvos-slider-container {
    margin: 100px auto 0;
  }
}
@media only screen and (max-width: 1200px) {
  .iniciatyvos-slider-container {
    width: 100%;
    margin: 80px auto 0;
  }
}
@media only screen and (max-width: 767px) {
  .iniciatyvos-slider-container {
    margin: 50px auto 0;
  }
}

.btn-box-iniciatyvos {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 130px;
}
@media only screen and (max-width: 1300px) {
  .btn-box-iniciatyvos {
    margin-top: 70px;
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .btn-box-iniciatyvos {
    text-align: center;
  }
}

.iniciatyvos-item {
  display: flex;
  padding-bottom: 9.3%;
}
@media (min-width: 1920px) {
  .iniciatyvos-item {
    padding-bottom: 120px;
  }
}
.iniciatyvos-item:nth-child(even) .image {
  order: 2;
}
.iniciatyvos-item:hover h3 {
  color: #2D0094;
}
.iniciatyvos-item .image {
  flex-shrink: 0;
  width: 59.4761171032%;
}
.iniciatyvos-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.iniciatyvos-item h3 {
  font-weight: 700;
  color: #000000;
  display: flex;
  align-items: center;
  transition: 0.2s;
  line-height: 1.2;
  font-size: 3.1vw;
  margin-bottom: 0.2em;
}
@media (min-width: 1920px) {
  .iniciatyvos-item h3 {
    font-size: 60px;
    margin-bottom: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .iniciatyvos-item h3 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
}
.iniciatyvos-item--content {
  padding: 1.15% 0 1.15% 4.6%;
}
.iniciatyvos-item--content .ii-desc {
  font-size: 0.83vw;
  color: #3E4E53;
  padding-bottom: 2.5em;
}
@media (min-width: 1920px) {
  .iniciatyvos-item--content {
    padding: 15px 0 15px 60px;
  }
  .iniciatyvos-item--content .ii-desc {
    font-size: 16px;
    padding-bottom: 40px;
  }
}
.iniciatyvos-item:nth-child(even) .iniciatyvos-item--content {
  padding: 1.15% 4.6% 1.15% 0;
}
@media (min-width: 1920px) {
  .iniciatyvos-item:nth-child(even) .iniciatyvos-item--content {
    padding: 15px 60px 15px 0;
  }
}

/*form-elements*/
.form-element {
  position: relative;
  margin-bottom: 23px;
  padding-top: 11px;
}
.form-element label {
  position: relative;
  width: 94%;
}
.form-element label.floatLabel span:first-of-type {
  top: 2%;
  font-size: 13px;
}
.form-element:nth-child(even) label {
  margin: 0 0 0 auto;
}
.form-element.small-12 label {
  width: 100%;
}
@media (max-width: 640px) {
  .form-element.small-6 {
    width: 100%;
  }
  .form-element label {
    width: 100%;
  }
}

.form-element label span {
  display: block;
  font-size: 16px;
  line-height: 1.03;
  font-weight: 400;
  color: #3E4E53;
  padding-left: 8px;
}
.form-element label span:first-of-type {
  position: absolute;
  transition: 0.3s ease;
  top: 50%;
  transform: translate(0, -50%);
}
.form-element label span:first-of-type sup {
  top: 0;
}
.form-element label span:last-of-type span {
  position: absolute;
  transform: translate(0, 100%);
  margin-top: 2px;
  left: 0;
  top: unset;
  bottom: 0;
  padding-top: 7px;
}

.form-element input,
.form-element input:focus,
.form-element input:active {
  border: none;
  border-bottom: 1px solid #B4BFC2;
  background: transparent;
  box-shadow: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #3E4E53;
  padding: 8px 8px 5px 8px;
  height: 40px;
  margin-bottom: 0;
}

.form-element input::-moz-placeholder {
  font-size: 24px;
  line-height: 1.33;
  font-weight: 500;
  color: #A3ACB5;
}

.form-element input::placeholder {
  font-size: 24px;
  line-height: 1.33;
  font-weight: 500;
  color: #A3ACB5;
}

.form-element input:focus {
  border-bottom: 1px solid #014454;
}

.checkbox input {
  display: none;
}

.checkbox input + label {
  position: relative;
  width: 100%;
  padding-left: 40px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  color: #A3ACB5;
  padding-top: 3px;
  margin: 44px 0 64px;
}

.checkbox input + label > a {
  color: #014454;
  transition: 0.2s;
}

.checkbox input + label > a:hover {
  opacity: 0.8;
}

.checkbox input + label:before {
  content: "";
  width: 24px;
  height: 24px;
  border: 1px solid #D7E2EA;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  font-family: "Font Awesome 5 Pro";
  transition: 0.2s;
}

.checkbox input:checked + label:before {
  content: "\f00c";
}

/*contacts page*/
.contacts-title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.contacts-text {
  font-size: 18px;
  line-height: 1.44;
  color: #646464;
}

.contacts-text a {
  color: #646464;
  transition: 0.2s;
}

.contacts-text a:hover {
  opacity: 0.8;
}

.contact-info-section {
  padding: 6.45% 0 3.15%;
}
.contact-info-section .section-title h2 {
  font-size: 3.1vw;
  font-weight: 700;
  margin-bottom: 0.5em;
}
@media (min-width: 1920px) {
  .contact-info-section .section-title h2 {
    font-size: 60px;
  }
}
.contact-info-sectionRight {
  padding: 15px 0 15px 6%;
}
.contact-info-section .contacts {
  /* @media(max-width: 1420px){
     &-addr{
       margin: 18px 0;
     }
     &-google{
       margin: 18px 0;
     }
   }*/
}
.contact-info-section .contacts-phone, .contact-info-section .contacts-email, .contact-info-section .contacts-addr, .contact-info-section .contacts-google, .contact-info-section .contacts-code, .contact-info-section .contacts-pvm {
  display: flex;
  font-size: 0.85vw;
  color: #3E4E53;
  align-items: center;
}
.contact-info-section .contacts-phone a, .contact-info-section .contacts-email a, .contact-info-section .contacts-addr a, .contact-info-section .contacts-google a, .contact-info-section .contacts-code a, .contact-info-section .contacts-pvm a {
  font-size: 0.85vw;
  color: #3E4E53;
  margin-left: 0.32em;
  transition: color 0.3s ease;
}
.contact-info-section .contacts-phone a:hover, .contact-info-section .contacts-email a:hover, .contact-info-section .contacts-addr a:hover, .contact-info-section .contacts-google a:hover, .contact-info-section .contacts-code a:hover, .contact-info-section .contacts-pvm a:hover {
  color: #E35331;
}
@media (min-width: 1920px) {
  .contact-info-section .contacts-phone, .contact-info-section .contacts-email, .contact-info-section .contacts-addr, .contact-info-section .contacts-google, .contact-info-section .contacts-code, .contact-info-section .contacts-pvm {
    font-size: 16px;
  }
  .contact-info-section .contacts-phone a, .contact-info-section .contacts-email a, .contact-info-section .contacts-addr a, .contact-info-section .contacts-google a, .contact-info-section .contacts-code a, .contact-info-section .contacts-pvm a {
    font-size: 16px;
  }
}
.contact-info-section .contacts-addr {
  margin: 28px 0;
  margin: 1.75em 0;
}
.contact-info-section .contacts-google {
  margin: 28px 0;
  margin: 1.75em 0;
}
.contact-info-section .contacts-google a {
  margin: 0;
  display: flex;
  align-items: flex-start;
}
.contact-info-section .contacts-google a img {
  margin-right: 15px;
  display: block;
  width: 0.8vw;
}
@media (min-width: 1920px) {
  .contact-info-section .contacts-google a img {
    width: 15px;
  }
}
.contact-info-section .scroll-to {
  display: block;
  margin: 11% 0 0 0;
}
@media (min-width: 1920px) {
  .contact-info-section .scroll-to {
    margin: 50px 0 0 0;
  }
}
@media (min-width: 1920px) {
  .contact-info-section {
    padding: 120px 0 60px;
  }
}
@media (max-width: 1300px) {
  .contact-info-sectionRight {
    padding: 15px 0 15px 3%;
  }
}
@media (max-width: 1023px) {
  .contact-info-section {
    padding: 35px 0 0 0;
  }
}
@media (max-width: 639px) {
  .contact-info-section {
    padding: 45px 0 0 0 !important;
  }
  .contact-info-section .section-title h2 {
    font-size: 32px;
  }
  .contact-info-sectionRight {
    padding: 35px 0 15px 0;
  }
}

.project-contacts-section .team-member-img {
  padding-top: 56.4%;
  background-size: contain !important;
}
@media (min-width: 1920px) {
  .project-contacts-section .section-title {
    --Header-section: 59px;
  }
}

.contacts-section {
  padding: 6.45% 0 2.1%;
}
@media (min-width: 1920px) {
  .contacts-section {
    padding: 120px 0 40px;
  }
}

.contact-form-section .section-title {
  padding-right: 0;
}

.contact-form-section .contact-form {
  margin: 0 auto;
}

.contact-form-section {
  padding: 3.2% 0 6.3%;
}
.contact-form-section .row {
  text-align: center;
}
.contact-form-section .row .columns {
  float: none;
}
.contact-form-section .row .columns form {
  text-align: left;
}
.contact-form-section .row .columns form .columns {
  float: left;
}
@media (min-width: 1920px) {
  .contact-form-section {
    padding: 60px 0 120px;
  }
}
@media (max-width: 1360px) {
  .contact-form-section .contact-form.medium-7 {
    width: 75%;
  }
}
@media (max-width: 860px) {
  .contact-form-section .contact-form.medium-7 {
    width: 95%;
  }
}
@media (max-width: 640px) {
  .contact-form-section .section-title {
    text-align: left;
  }
  .contact-form-section .contact-form.medium-7 {
    width: 100%;
  }
}

.logo-list {
  padding: 40px 0;
}

.logo-list ul li {
  display: inline-block;
  margin-right: 7%;
  max-width: 110px;
}

.logo-list-container ul li:last-child {
  margin-right: 0;
}

/*news page*/
.news-list {
  width: calc(100% + 42px);
  margin-left: -21px;
}

.news-list ul li {
  float: left;
  width: calc(50% - 42px);
  margin-left: 21px;
  margin-right: 21px;
}

.archive-list ul li {
  display: inline-block;
  margin-right: 30px;
}

.archive-list ul li:last-child {
  margin-right: 0;
}

.archive-list ul li a {
  font-size: 15px;
  line-height: 1.06;
  color: #A3ACB5;
  font-weight: 500;
  transition: 0.2s;
}

.archive-list ul li.current a,
.archive-list ul li a:hover {
  color: #e86627;
}

.archive-slider {
  position: relative;
}

.archive-owl {
  position: relative;
  /* padding-right: 80px;
   padding-top: 5px;*/
  padding-right: 12.8%;
  padding-top: 5.5%;
  padding-right: 19%;
}
@media (min-width: 1920px) {
  .archive-owl {
    padding-top: 35px;
    padding-right: 80px;
  }
}

.archive-owl:after {
  content: "";
  position: absolute;
  width: 58px;
  background: linear-gradient(270deg, #FBFBFB, transparent);
  top: 0;
  right: 80px;
  bottom: 0;
}

.archive-owl .owl-nav {
  position: absolute;
  right: 0;
  font-size: 25px;
  color: #014454;
  bottom: 0;
  display: flex;
  align-items: center;
  font-size: 1.3vw;
}
@media (min-width: 1920px) {
  .archive-owl .owl-nav {
    font-size: 25px;
  }
}

.archive-owl .owl-nav button.owl-prev {
  margin-right: 25px;
}

.archive-owl .owl-nav button.owl-prev,
.archive-owl .owl-nav button.owl-next {
  display: flex;
  align-items: center;
}

.archive-owl .archive-item {
  width: 2.4vw;
}

.archive-owl .archive-item a {
  line-height: 1.06;
  color: #A3ACB5;
  font-weight: 500;
  transition: 0.2s;
  font-size: 0.785vw;
  width: 2.3vw;
}
@media (min-width: 1920px) {
  .archive-owl .archive-item a {
    font-size: 15px;
  }
}

.archive-owl .archive-item a:hover,
.archive-owl .archive-item.current a {
  color: #e86627;
}

/*about us page*/
.about-us-section .page-description {
  /*  padding-right: 20px;
    margin-bottom: 35px;*/
  margin-bottom: 1.88em;
  padding-right: 1.31em;
}
@media (min-width: 1920px) {
  .about-us-section .page-description {
    padding-right: 20px;
    margin-bottom: 35px;
  }
}

.achievements-list {
  padding-left: 10%;
}

.achievements-list ul li {
  width: 30.5%;
  margin-right: 4.2%;
  float: left;
  margin-bottom: 90px;
}

.achievements-list ul li:nth-child(3n) {
  margin-right: 0;
}

.achievements-list ul li:nth-child(3n+1) {
  clear: both;
}

.achievement-title {
  position: relative;
  font-size: 24px;
  line-height: 1.2;
  color: #2D0094;
  font-weight: 700;
  padding-bottom: 25px;
  margin-bottom: 10px;
}

.achievement-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 1px;
  background: #d7e2ea;
}

.achievement-text {
  font-size: 18px;
  line-height: 1.44;
  font-weight: 400;
  color: #646464;
  padding-right: 30px;
}

.about-us--statistics {
  display: flex;
  align-items: center;
  padding: 1.2% 0;
}
.about-us--statistics div {
  padding: 0 1.42%;
  padding: 0 0.78vw;
  padding: 0 1.1vw;
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 23%;
}
.about-us--statistics div:first-of-type {
  width: auto;
  padding: 0.52vw 2.5vw 0.52vw 0;
  border-right: 1px solid #A0B5BA;
}
.about-us--statistics div:first-of-type span {
  font-size: 0.85vw;
  font-weight: 400;
}
.about-us--statistics div:first-of-type span:first-of-type {
  margin-bottom: -0.38em;
  font-size: 6.35vw;
  font-weight: 600;
}
@media (min-width: 1920px) {
  .about-us--statistics div:first-of-type span:first-of-type {
    font-size: 120px;
    margin-bottom: -41px;
  }
}
.about-us--statistics div span {
  font-size: 0.85vw;
  font-weight: 400;
  color: #3E4E53;
}
.about-us--statistics div span:first-of-type {
  color: #000000;
  font-size: 3.1vw;
  font-weight: 700;
  margin-bottom: -0.25em;
  white-space: nowrap;
}
@media (min-width: 1920px) {
  .about-us--statistics div span:first-of-type {
    font-size: 60px;
  }
}
@media (min-width: 1920px) {
  .about-us--statistics {
    padding: 15px 0;
  }
  .about-us--statistics div {
    padding: 0 15px;
  }
  .about-us--statistics div:first-of-type {
    padding: 10px 48px 10px 0;
  }
  .about-us--statistics div:first-of-type span {
    font-size: 16px;
  }
  .about-us--statistics div span {
    font-size: 16px;
  }
}
@media (max-width: 1480px) {
  .about-us--statistics:first-of-type span {
    margin-top: 0.2vw;
  }
}
@media (max-width: 980px) {
  .about-us--statistics {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .about-us--statistics div {
    width: 33%;
    padding: 10px 15px;
  }
  .about-us--statistics div:first-of-type {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #A0B5BA;
    padding: 10px 0 10px 0;
  }
  .about-us--statistics div:first-of-type span {
    font-size: 13px;
  }
  .about-us--statistics div:first-of-type span:first-of-type {
    font-size: 80px;
    margin-bottom: -25px;
  }
  .about-us--statistics div span {
    font-size: 13px;
  }
  .about-us--statistics div span:first-of-type {
    font-size: 40px;
    margin-bottom: -6px;
  }
}
@media (max-width: 690px) {
  .about-us--statistics {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-us--statistics div {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    padding: 15px 15px 15px 0;
    max-width: 190px;
  }
  .about-us--statistics div:first-of-type {
    padding: 15px 0 20px 0;
  }
}
@media (max-width: 690px) {
  .about-us--statistics div span {
    font-size: 13px;
  }
}

/*mosaic*/
.about-us-mosaic {
  position: relative;
  display: flex;
  background-color: #000;
  margin-top: 5%;
}
@media (min-width: 1920px) {
  .about-us-mosaic {
    margin-top: 54px;
  }
}

.about-us-mosaic .box1 {
  width: 33.3333333333%;
  flex-shrink: 0;
}

.about-us-mosaic .box-row {
  display: flex;
}

.box-row .box-inner {
  width: 67%;
}

.mosaic-item {
  position: relative;
  flex-shrink: 0;
}

.mosaic-item a {
  display: block;
  transition: 0.2s;
  flex-shrink: 0;
}

/*.mosaic-item a:hover {*/
/*    opacity: 0.8;*/
/*}*/
.box1 .mosaic-item.horizontal {
  width: 66.6666666667%;
}

.box1 .mosaic-item.horizontal.bottom .mosaic-full {
  top: auto;
  bottom: 0;
}

.box1 .mosaic-item.horizontal.bottom .mosaic-full .mosaic-text {
  transform: translateY(100%);
  bottom: auto;
  top: 0;
}

.box1 .mosaic-item.horizontal.bottom .mosaic-full .mosaic-img-full {
  bottom: 0;
  top: auto;
}

.box-inner .mosaic-item.horizontal {
  width: 100%;
}

.box-inner .mosaic-item.horizontal.bottom .mosaic-full {
  top: auto;
  bottom: 0;
}

.box1 .mosaic-item.vertical {
  width: 33.3333333333%;
}

.box1 .mosaic-item.vertical.bottom .mosaic-full {
  top: auto;
  bottom: 0;
}

.box1 .mosaic-item.vertical.bottom .mosaic-full .mosaic-text {
  bottom: auto;
  top: 0;
}

.box1 .mosaic-item.vertical.bottom .mosaic-full .mosaic-img-full {
  bottom: 0;
  top: auto;
}

.box1 .mosaic-item.square {
  width: 33.3333333333%;
}

.box1 .mosaic-item.square.bottom .mosaic-full {
  bottom: 0;
  top: auto;
}

.box1 .mosaic-item.square.bottom .mosaic-full .mosaic-text,
.box1 .mosaic-item.square.mid .mosaic-full .mosaic-text {
  bottom: auto;
  top: 0;
}

.box1 .mosaic-item .mosaic-full {
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.box1 .mosaic-item .mosaic-full {
  transition-delay: 0.6s;
}

.box1 .mosaic-item .mosaic-full.expand {
  transition-delay: 0s;
}

.box-inner .mosaic-item.square {
  width: 50%;
}

.box-col {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.box-col .mosaic-item.vertical {
  width: 100%;
}

.box-col .mosaic-item.square {
  width: 100%;
}

.mosaic-img {
  position: relative;
  background-size: cover !important;
  width: 100%;
  /*z-index: 2;*/
}

.mosaic-hover-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: 0.3s ease-in-out;
}

.mosaic-hover-box:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 32px;
  background: linear-gradient(180deg, transparent, #000000);
  background-blend-mode: multiply;
}

.mosaic-date {
  position: absolute;
  font-size: 0.73vw;
  font-weight: 700;
  color: #fff;
  left: 0.72em;
  bottom: 0.36em;
}
@media (min-width: 1920px) {
  .mosaic-date {
    font-size: 14px;
    bottom: 5px;
    left: 10px;
  }
}

.achievements-section .row {
  width: 67%;
}
@media only screen and (max-width: 1500px) {
  .achievements-section .row {
    max-width: 1280px;
    width: 83%;
  }
}

.mosaic-item.horizontal .mosaic-img {
  padding-top: 50%;
}

.mosaic-item.vertical .mosaic-img {
  padding-top: 200%;
}

.mosaic-item.square .mosaic-img {
  padding-top: 100%;
}

.mosaic-full {
  position: absolute;
  top: 0;
  left: 0;
  /*width: 37.5%;*/
  width: 100%;
  z-index: 1;
  height: 100%;
  /*overflow: hidden;*/
  transform: translate3d(0, 0, 0);
}

.mosaic-full.expand .mosaic-hover-box,
.mosaic-full:hover .mosaic-hover-box {
  opacity: 0;
  pointer-events: none;
}

/*EXPAND AND COLLAPSE HORIZONTAL ITEMS*/
@keyframes expand-mosaic-horizontal {
  0% {
    z-index: 15;
  }
  50% {
    width: 150.15%;
  }
  100% {
    width: 150.15%;
    height: 200%;
    z-index: 15;
  }
}
@keyframes collapse-mosaic-horizontal {
  0% {
    z-index: 10;
    width: 150.15%;
    height: 200%;
  }
  33% {
    width: 150.15%;
    height: 200%;
    z-index: 10;
  }
  66% {
    width: 150.15%;
    z-index: 10;
  }
  99% {
    z-index: 10;
  }
  100% {
    z-index: 0;
  }
}
.box1 .mosaic-item.horizontal .mosaic-full.expand {
  /*animation: expand-mosaic-horizontal .6s ease-in-out forwards;*/
  transition-timing-function: ease-in-out;
  transition-property: width, height, z-index;
  transition-duration: 0.3s, 0.3s, 0s;
  transition-delay: 0s, 0.3s, 0s;
  width: 150%;
  height: 200%;
  z-index: 15;
}

.box1 .mosaic-item.horizontal .mosaic-full.expand.expand-animation {
  transition-duration: 0.6s, 0.6s, 0s;
  transition-delay: 0s, 0.6s, 0s;
}

.box1 .mosaic-item.horizontal .mosaic-full.collapse {
  /*animation: collapse-mosaic-horizontal .9s ease-in-out forwards;*/
  transition-timing-function: ease-in-out;
  transition-property: width, height, z-index;
  transition-duration: 0.3s, 0.6s, 0s;
  transition-delay: 0.6s, 0.3s, 0s;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.box1 .mosaic-item.horizontal .mosaic-full.collapse.collapse-animation {
  transition-duration: 0.6s, 1.2s, 0s;
  transition-delay: 1.2s, 0.6s, 0s;
}

.box1 .mosaic-item.horizontal .mosaic-full.expand .mosaic-text {
  opacity: 1;
  transition-delay: 0.3s;
  pointer-events: auto;
}

.box1 .mosaic-item.horizontal .mosaic-full.expand.expand-animation .mosaic-text {
  transition: 0.6s ease-in-out;
  transition-delay: 0.6s;
}

.box1 .mosaic-item.horizontal .mosaic-full.collapse.collapse-animation .mosaic-text {
  transition: 0.6s ease-in-out;
}

.box1 .mosaic-item.horizontal.top .mosaic-full.expand .mosaic-text {
  transform: translateY(100%);
}

.box1 .mosaic-item.horizontal.bottom .mosaic-full.expand .mosaic-text {
  transform: translateY(-100%);
}

/*EXPAND AND COLLAPSE VERTICAL ITEMS*/
@keyframes expand-mosaic-vertical {
  0% {
    z-index: 15;
  }
  100% {
    width: 300%;
    z-index: 15;
  }
}
@keyframes collapse-mosaic-vertical {
  0% {
    z-index: 10;
    width: 300%;
    /*height: 150.15%;*/
  }
  50% {
    z-index: 10;
    width: 300%;
  }
  99% {
    z-index: 10;
  }
  100% {
    z-index: 0;
  }
}
.box1 .mosaic-item.vertical .mosaic-full.expand {
  /*animation: expand-mosaic-vertical .3s ease-in-out forwards;*/
  transition-timing-function: ease-in-out;
  transition-property: width, z-index;
  transition-duration: 0.3s, 0s;
  transition-delay: 0s, 0s;
  width: 300%;
  z-index: 15;
}

.box1 .mosaic-item.vertical .mosaic-full.expand.expand-animation {
  transition-duration: 0.6s, 0s;
  transition-delay: 0s, 0s;
}

.box1 .mosaic-item.vertical .mosaic-full.collapse {
  /*animation: collapse-mosaic-vertical .6s ease-in-out forwards;*/
  transition-timing-function: ease-in-out;
  transition-property: width, z-index;
  transition-duration: 0.3s, 0s;
  transition-delay: 0.3s, 0s;
  width: 100%;
  z-index: 10;
}

.box1 .mosaic-item.vertical .mosaic-full.collapse.collapse-animation {
  transition-duration: 0.6s, 0s;
  transition-delay: 0.6s, 0s;
}

.box1 .mosaic-item.vertical .mosaic-full.expand .mosaic-text {
  opacity: 1;
  transition-delay: 0.3s;
  pointer-events: auto;
}

.box1 .mosaic-item.vertical .mosaic-full.expand.expand-animation .mosaic-text {
  transition: 0.6s ease-in-out;
  transition-delay: 0.6s;
}

.box1 .mosaic-item.vertical .mosaic-full.collapse.collapse-animation .mosaic-text {
  transition: 0.6s ease-in-out;
}

.box1 .mosaic-item.vertical.bottom .mosaic-full.expand .mosaic-text {
  transform: translateY(-100%);
}

.box1 .mosaic-item.vertical.top .mosaic-full.expand .mosaic-text {
  transform: translateY(100%);
}

/*EXPAND AND COLLAPSE SQUARE ITEMS*/
@keyframes expand-mosaic-square {
  0% {
    z-index: 15;
  }
  50% {
    width: 300%;
  }
  100% {
    width: 300%;
    height: 200%;
    z-index: 15;
  }
}
@keyframes collapse-mosaic-square {
  0% {
    z-index: 10;
    width: 300%;
    height: 200%;
  }
  33% {
    width: 300%;
    height: 200%;
    z-index: 10;
  }
  66% {
    width: 300%;
    z-index: 10;
  }
  99% {
    z-index: 10;
  }
  100% {
    z-index: 0;
  }
}
.box1 .mosaic-item.square .mosaic-full.expand {
  /*animation: expand-mosaic-square .6s ease-in-out forwards;*/
  transition-timing-function: ease-in-out;
  transition-property: width, height, z-index, left;
  transition-duration: 0.3s, 0.3s, 0s, 0.3s;
  transition-delay: 0s, 0.3s, 0s, 0s;
  width: 300%;
  height: 200%;
  z-index: 15;
}

.box1 .mosaic-item.square .mosaic-full.expand.expand-animation {
  transition-duration: 0.6s, 0.6s, 0s, 0.6s;
  transition-delay: 0s, 0.6s, 0s, 0s;
}

.box1 .mosaic-item.square .mosaic-full.expand.expand-animation .mosaic-img-full {
  transition: 0.6s ease-in-out;
  transition-delay: 0.9s;
}

.box1 .mosaic-item.square .mosaic-full.collapse {
  /*animation: collapse-mosaic-square .9s ease-in-out forwards;*/
  transition-timing-function: ease-in-out;
  transition-property: width, height, z-index, left;
  transition-duration: 0.3s, 0.3s, 0s, 0.3s;
  transition-delay: 0.6s, 0.3s, 0s, 0.6s;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.box1 .mosaic-item.square .mosaic-full.collapse.collapse-animation {
  transition-duration: 0.6s, 0.6s, 0s, 1.2s;
  transition-delay: 1.2s, 0.6s, 0s, 0s;
}

.box1 .mosaic-item.square .mosaic-full.expand .mosaic-text {
  opacity: 1;
  transition-delay: 0.3s;
  pointer-events: auto;
}

.box1 .mosaic-item.square .mosaic-full.expand.expand-animation .mosaic-text {
  transition: 0.6s ease-in-out;
  transition-delay: 0.6s;
}

.box1 .mosaic-item.square .mosaic-full.collapse.collapse-animation .mosaic-text {
  transition: 0.6s ease-in-out;
}

.box1 .mosaic-item.square.bottom .mosaic-full.expand .mosaic-text,
.box1 .mosaic-item.square.mid .mosaic-full.expand .mosaic-text {
  transform: translateY(-100%);
}

.box1 .mosaic-item.square.top .mosaic-full.expand .mosaic-text {
  transform: translateY(100%);
}

.box1.last .mosaic-item .mosaic-full {
  right: 0;
  left: auto;
}

.mosaic-owl .mosaic-full {
  width: 100%;
  display: block;
  position: relative;
  bottom: auto;
  right: auto;
  left: auto;
  top: auto;
  opacity: 1;
}

.mosaic-img-full {
  /*padding-top: 69%;*/
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.3s ease-in-out;
  transition-delay: 0.45s;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(0, 0, 0);
}

.mosaic-text {
  height: 50%;
  font-size: 0.73vw;
  line-height: 1.3;
  color: #fff;
  background: #2D0094;
  /*padding: 24px 24px 80px 24px;*/
  padding: 1.72em;
  transition: 0.3s ease-in-out;
  transition-delay: 0s;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}
@media (min-width: 1920px) {
  .mosaic-text {
    padding: 24px;
    font-size: 14px;
  }
}

.mosaic-owl .mosaic-text {
  font-size: 13px;
  padding: 15px;
}

/*services page*/
.services-list.v1 {
  padding-left: 10%;
  padding-bottom: 24px;
}

.services-list.v2 > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.services-list.v2 > ul > li {
  padding: 0;
}

.services-list > ul > li {
  width: 32%;
  float: left;
  margin-bottom: 3.1%;
}

.services-list > ul > li:nth-child(3n) {
  margin-right: 0;
}

.services-list > ul > li:nth-child(3n+1) {
  clear: both;
}

.services-list.v1 > ul > li {
  padding-right: 40px;
}

.service-title {
  position: relative;
  font-size: 1.88vw;
  line-height: 1.2;
  font-weight: 700;
  color: #000000;
  margin: 1.35em 0 1.2em;
}
@media (min-width: 1920px) {
  .service-title {
    font-size: 33px;
  }
}

.services-list ul > li ul {
  margin-left: 0;
}

.services-list.v1 ul > li ul {
  padding-top: 10px;
  position: relative;
}

.services-list.v1 .service-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 1px;
  background: #d7e2ea;
}

.services-list.v1 ul > li ul:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 1px;
  background: #d7e2ea;
}

.services-list ul > li ul > li {
  position: relative;
  width: 100%;
  font-size: 0.83vw;
  line-height: 1.44;
  margin-bottom: 1.56em;
  font-weight: 400;
  color: #3E4E53;
  padding: 0 0 0 1.12em;
}
.services-list ul > li ul > li:before {
  content: "";
  position: absolute;
  top: 0.38em;
  left: 0;
  box-sizing: border-box;
  border: 1px solid #2D0094;
  width: 0.37vw;
  height: 0.37vw;
}
@media (min-width: 1920px) {
  .services-list ul > li ul > li {
    font-size: 16px;
  }
  .services-list ul > li ul > li:before {
    top: 6px;
    width: 7px;
    height: 7px;
  }
}

.services-list ul > li ul > li:last-child {
  margin-bottom: 0;
}

.services-list-section .btn-trans {
  margin: 6.4em 0 10.7em;
}
@media (max-width: 400px) {
  .services-list-section .btn-trans {
    margin: 14px 0 53px;
  }
}
@media (min-width: 1920px) {
  .services-list-section .btn-trans {
    margin: 90px 0 150px;
  }
}

/*error page*/
.error-container {
  padding-top: 64px;
  padding-bottom: 215px;
}

.error-container .page-title {
  padding-right: 40%;
}

.error-text {
  font-size: 18px;
  line-height: 1.44;
  font-weight: 400;
  color: #646464;
  margin-bottom: 55px;
}

.error-text a {
  color: #e86627;
  transition: 0.2s;
}

.error-text a:hover {
  opacity: 0.8;
}

/*investor page*/
.preface-section {
  overflow: hidden;
  padding-bottom: 7.1%;
}
@media (min-width: 1920px) {
  .preface-section {
    padding-bottom: 135px;
  }
}

.preface {
  padding-left: 5%;
}

.preface-img {
  padding-top: 31%;
  background-size: cover !important;
}

.preface-left {
  position: relative;
  padding: 15px 10% 15px 6%;
}
@media (min-width: 1920px) {
  .preface-left {
    padding: 15px 10% 15px 6%;
  }
}

.preface-left:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30%;
  background: url("../img/quote-white.png") no-repeat;
  background-size: contain;
  width: 108px;
  height: 88px;
  z-index: -1;
}

.preface-text {
  font-size: 0.83vw;
  line-height: 1.33;
  font-weight: 500;
  color: #000;
  margin-bottom: 1em;
}
.preface-text p {
  padding-bottom: 0.9em;
  color: #3E4E53;
}
@media (min-width: 1920px) {
  .preface-text {
    font-size: 16px;
  }
}

.preface-author {
  font-sizE: 0.94vw;
  margin-bottom: 0.63em;
  line-height: 1.33;
  font-weight: 700;
  color: #000;
}
@Media (min-width: 1920px) {
  .preface-author {
    margin-bottom: 11px;
    font-size: 18px;
  }
}

.preface-author span {
  display: inline-block;
  font-size: 0.78vw;
  line-height: 1.2;
  font-weight: 500;
  color: #A3ACB5;
}
@Media (min-width: 1920px) {
  .preface-author span {
    font-size: 15px;
  }
}

.project-type {
  font-size: 15px;
  font-weight: 500;
  color: #e86627;
  line-height: 1.06;
  margin-bottom: 10px;
}

.investor-item-body {
  padding: 0 16.7%;
}

.investor-owl .item-img {
  padding-top: 48%;
  margin-bottom: 0;
}

.investor-owl .link-corner {
  top: 0;
  right: 0;
}

.investor-owl .owl-nav {
  position: absolute;
  background: #fff;
  bottom: 0;
  left: 0;
  font-size: 21px;
  color: #014454;
  padding: 10px 32px 5px;
  border-top-right-radius: 4px;
}

.investor-owl .owl-nav button.owl-next {
  margin-left: 25px;
}

.investor-owl .link-corner {
  padding: 15px 16px;
}

.investor-tabs-container {
  background: #fff;
  padding: 40px 8% 30px;
}

.investor-tabs-container .nav-tabs .tabs-title {
  width: 50%;
  text-align: center;
}

.investor-tabs ul li {
  padding: 0 16px 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #d7e2ea;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
}

.investor-tabs ul li span {
  display: block;
  font-size: 15px;
  line-height: 1.06;
  font-weight: 500;
  color: #A3ACB5;
  padding-bottom: 10px;
}

.investor-tabs ul.column-list {
  display: flex;
  flex-wrap: wrap;
}

.investor-tabs ul.column-list li {
  width: 33.33%;
  border-bottom: 1px solid #d7e2ea;
}

.investor-tabs ul.link-list li {
  border-bottom: none;
  margin-bottom: 25px;
  padding-bottom: 0;
}

.investor-tabs ul.link-list li span {
  float: right;
  padding-bottom: 0;
}

.investor-item {
  margin-bottom: 40px;
}

.investor-item:last-child {
  margin-bottom: 0;
}

.investor-item-description {
  font-size: 18px;
  line-height: 1.44;
  font-weight: 400;
  color: #646464;
  padding: 0 35px 0 16px;
  margin-bottom: 10px;
}

.investor-item-description span {
  display: block;
  font-size: 15px;
  line-height: 1.06;
  font-weight: 500;
  color: #A3ACB5;
  padding-bottom: 10px;
}

.btn-orange,
.btn-orange:active,
.btn-orange:focus {
  display: block;
  background: #e86627;
  color: #fff;
  padding: 18px 36px;
  text-align: center;
  font-size: 14px;
  line-height: 1.36;
  text-transform: uppercase;
  letter-spacing: 1.86px;
  transition: 0.2s;
}

.btn-orange:hover {
  color: #fff;
  opacity: 0.8;
}

/*entry*/
.last-updated {
  font-size: 15px;
  line-height: 1.06;
  font-weight: 500;
  color: #A3ACB5;
  margin-bottom: 32px;
}

.breads {
  margin-bottom: 3.05%;
}
@media (min-width: 1920px) {
  .breads {
    margin-bottom: 32px;
  }
}

.entry h3 {
  font-size: 24px;
  line-height: 1.2;
  color: #161519;
  font-weight: 700;
  margin-bottom: 35px;
}

.entry h4 {
  font-size: 24px;
  line-height: 1.33;
  font-weight: 500;
  color: #000;
  margin-bottom: 55px;
}

.entry h5 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #646464;
  margin-bottom: 30px;
}

.entry > ul > li {
  position: relative;
  font-size: 18px;
  line-height: 1.44;
  font-weight: 400;
  color: #646464;
  padding-left: 30px;
  margin-bottom: 10px;
}

.entry > ul > li:last-child {
  margin-bottom: 0;
}

.entry > ul > li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  background: #e86627;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.breads ul li {
  display: inline-block;
  font-size: 15px;
  line-height: 1.06;
  color: #A3ACB5;
}

.breads ul li a {
  display: inline-block;
  color: #014454;
  transition: 0.2s;
}

.breads ul li a:hover {
  opacity: 0.8;
}

.entry-container {
  padding-bottom: 30px;
}
.entry-container a {
  word-break: break-all;
}
.entry-container iframe {
  width: 100%;
  max-width: 500px;
}

.privacy-policy-section {
  padding-bottom: 64px;
}

.entry-container .page-title {
  position: relative;
  margin-bottom: 4.7%;
}
.entry-container .page-title h1 {
  font-size: 3.15vw;
}
@media (max-width: 980px) {
  .entry-container .page-title h1 {
    font-size: 40px;
  }
}
@media (max-width: 560px) {
  .entry-container .page-title h1 {
    font-size: 32px;
  }
}
@media (min-width: 1920px) {
  .entry-container .page-title {
    margin-bottom: 50px;
  }
  .entry-container .page-title h1 {
    font-size: 60px;
  }
}

.entry-container .page-title a {
  position: absolute;
  right: 0;
}

.entry p img {
  max-width: 100%;
}

.entry p {
  font-weight: 400;
  line-height: 1.44;
  color: #646464;
  font-size: 1.45vw;
  margin-bottom: 1.78em;
}
@media (min-width: 1920px) {
  .entry p {
    margin-bottom: 32px;
    font-size: 18px;
  }
}

.entry p a {
  color: #e86627;
  transition: 0.2s;
}

.entry p a:hover {
  opacity: 0.8;
}
.fancybox-item-inner .img img {
  max-height: 90vh;
}

.main-container.main-container-smaller {
  padding-top: 100px;
}

.project-list-video-hold {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  cursor: pointer;
  width: 100%;
}
.project-list-video {
  position: relative;
  padding-bottom: 54%;
  overflow: hidden;
}

.project-list-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: 100%;
}

.project-list-video-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
}

.project-list-video-image:after {
  transition: transform 0.2s ease;
  transform-origin: center center;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../img/icon-play.svg) no-repeat center center;
  background-size: 7%;
}

.list-map-container .project-list-video-hold {
  right: auto;
  width: calc(50% - 8px);
}

.list-map-container .project-list-video {
  padding-bottom: 70%;
}

.owl-carousel.slider-owl .item {
  position: relative;
}

.owl-carousel.slider-owl .item .project-list-video-hold {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
}

.owl-carousel.slider-owl .item .project-list-video {
  padding-bottom: 53%;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing,
div.wpcf7-mail-sent-ng {
  border: none !important;
  float: left !important;
  margin: 10px 0 !important;
  padding: 0 !important;
  color: #e86627 !important;
}

div.wpcf7-mail-sent-ok {
  float: left !important;
  border: none !important;
  padding: 0 !important;
  margin: 10px 0 !important;
}

.section.history-section {
  padding-bottom: 0;
}

.history-video .project-list-video {
  padding-bottom: 56%;
}

.sticky {
  padding-right: 20px;
}

.page-template-investuotojams .main-container {
  padding-top: 10.6%;
}
@media (min-width: 1920px) {
  .page-template-investuotojams .main-container {
    padding-top: 200px;
  }
}

.page-template-default .main-container {
  padding-top: 120px;
}

.page-template-naujienos .main-container {
  padding-top: 6.3%;
  padding-top: 120px;
}
@media (min-width: 1920px) {
  .page-template-naujienos .main-container {
    padding-top: 120px;
  }
}

h3.map-pin-title {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}
h3.map-pin-title a {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  color: #000000;
}
h3.map-pin-title a img {
  width: 20px;
  margin-left: 7px;
}

.map-pin--data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #CBD6D9;
  padding: 16px 0 20px;
}
.map-pin--dataLeft, .map-pin--dataRight {
  font-size: 15px;
  font-weight: 400;
  color: #3E4E53;
}
.map-pin--dataLeft {
  padding-right: 5px;
}
.map-pin--dataRight {
  padding-left: 5px;
}

p.map-pin-address {
  color: #3E4E53;
  font-size: 15px;
  font-weight: 400;
  padding: 2px 0;
  padding-bottom: 15px;
}

.gm-style .gm-style-iw-c {
  box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.1);
}

.history-section .interior-description.page-description {
  padding: 0;
  margin-bottom: 35px;
}

.project-status-nav ul li {
  float: left;
}

.project-status-nav ul li a {
  display: inline-block;
  color: #070707;
  font-size: 0.85vw;
  padding: 0 24px 16px 24px;
  padding: 0 1.5em 1em 1.5em;
  font-weight: 700;
  line-height: 1.06;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
  margin-bottom: -2px;
}
@media (min-width: 1920px) {
  .project-status-nav ul li a {
    margin-bottom: -2px;
    font-size: 16px;
    padding: 0 24px 16px 24px;
  }
}

.project-status-nav ul li a:hover {
  color: #E35331;
  border-color: #E35331;
}

.project-status-nav ul li.is-active a {
  color: #E35331;
  border-color: #E35331;
}

.section-title.section-title-projects {
  margin-bottom: 0;
  min-height: 1px;
  position: relative;
}

.section-title.section-title-projects.title-fixed {
  min-height: 134px;
}

.section-title.section-title-projects .section-title-projects-hold {
  display: block;
  padding-top: 48px;
  padding-bottom: 48px;
  padding-top: 3.75%;
  padding-bottom: 3.75%;
}
@media (min-width: 1920px) {
  .section-title.section-title-projects .section-title-projects-hold {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.f-count {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.78vw;
  line-height: 1.03;
  font-weight: 500;
  color: #3E4E53;
}
@media (min-width: 1920px) {
  .f-count {
    font-size: 15px;
  }
}

.with-map .section-title.section-title-projects.title-fixed .section-title-projects-hold {
  position: fixed;
  top: 0;
  left: 0;
  padding-left: calc((100vw - 1296px) / 2);
  width: 100%;
  background: #F6F9FC;
  z-index: 200;
  padding-top: 24px;
  padding-bottom: 24px;
}

.with-map .section-title.section-title-projects.title-fixed .f-count {
  right: calc((100vw - 1296px) / 2);
}

.section-nav.section-nav-fixed {
  margin-bottom: 7px;
}

.project-intro-nav {
  display: none;
}

@media only screen and (max-width: 1500px) {
  .with-map .section-title.section-title-projects.title-fixed .f-count {
    right: calc((100vw - 1136px) / 2);
  }
  .map-container.map-fixed {
    right: calc((100vw - 1136px) / 2);
    width: 580px;
  }
  .testimonials-owl .owl-nav button.owl-next {
    right: -30px;
  }
  .logo-list-container ul li {
    margin-right: 6%;
  }
}
@media only screen and (max-width: 1300px) {
  .team-email a {
    font-size: 12px;
  }
  .with-map .section-title.section-title-projects.title-fixed .section-title-projects-hold {
    padding-left: 20px;
  }
  .with-map .section-title.section-title-projects.title-fixed .f-count {
    right: 100px;
  }
  .map-container.map-fixed {
    right: 100px;
    width: calc((100vw - 180px) / 2);
  }
  .row.contacts-popup--form {
    padding: 0 0 0 0;
  }
  .team-member-text .team-member-name {
    font-size: 22px;
  }
  .team-member-contacts a {
    font-size: 14px;
  }
  .logo-list ul li {
    margin-right: 4.9%;
  }
  .team-slider-container {
    padding: 0;
  }
  .testimonials-item-img {
    width: 200px;
    top: -60px;
    right: -40px;
  }
  .testimonials-item .item-excerpt {
    font-size: 20px;
  }
  .mosaic-text {
    padding: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  /*   .mosaic-text {
         font-size: 12px;
         padding: 18px;
     }*/
}
@media only screen and (max-width: 1023px) {
  .f-count {
    right: 0;
  }
  .list-map-container .map {
    display: none !important;
  }
  .page-template-naujienos .main-container {
    padding-top: 100px;
  }
  .page-template-default .main-container {
    padding-top: 100px;
  }
  .page-template-investuotojams .main-container {
    padding-top: 100px;
  }
  .list-map-container .project-list-video {
    padding-bottom: 54%;
  }
  .team-list ul li:nth-child(3n+1) {
    clear: none;
  }
  .team-list ul li:nth-child(2n+1) {
    clear: both;
  }
  .breads {
    margin-bottom: 20px;
  }
  .breads ul li {
    font-size: 14px;
  }
  .entry h3 {
    font-size: 22px;
    margin-bottom: 35px;
  }
  .entry h4 {
    font-size: 22px;
    margin-bottom: 25px;
  }
  .entry h5 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .entry > ul > li {
    font-size: 16px;
    padding-left: 30px;
    margin-bottom: 10px;
  }
  .entry p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .entry-container .page-title {
    margin-bottom: 25px;
    padding-right: 0;
  }
  .entry-container .page-title a {
    position: relative;
    right: auto;
    margin-top: 10px;
  }
  .main-container {
    /* padding-top: 100px; */
  }
  .section-wrap {
    padding: 0 35px;
  }
  .header-nav ul {
    display: none;
  }
  .lang-menu {
    margin-bottom: 40px;
  }
  .menu-nav ul li {
    margin-bottom: 20px;
  }
  .menu-nav {
    margin-bottom: 30px;
  }
  .home-intro-text {
    font-size: 32px;
  }
  .home-intro-nav ul li a {
    padding: 8px 18px 0px 16px;
    min-height: 62px;
  }
  .project-intro-text {
    font-size: 32px;
  }
  .intro-tags {
    margin-bottom: 40px;
  }
  .tag-white {
    font-size: 14px;
  }
  .project-description-left {
    padding: 70px 4% 70px 2.7%;
  }
  .project-description-right {
    padding: 70px 3% 50px 4%;
  }
  .project-description-right table tbody td {
    font-size: 14px;
  }
  .project-description-text {
    font-size: 16px;
  }
  .form-element label span {
    font-size: 14px;
  }
  .form-element input {
    font-size: 18px;
    height: 30px;
  }
  .form-element input::-moz-placeholder {
    font-size: 18px;
  }
  .form-element input::placeholder {
    font-size: 18px;
  }
  .checkbox input + label {
    margin: 20px 0 30px;
    font-size: 14px;
  }
  .page-title {
    font-size: 42px;
  }
  .page-description {
    font-size: 16px;
  }
  .section {
    padding: 35px 0 45px 0;
  }
  .section-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .item-text {
    padding: 0;
  }
  .item-text .item-title {
    font-size: 18px;
    margin-bottom: 19px;
  }
  .item-text .item-details {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .read-more {
    margin-bottom: 14px;
  }
  .read-more:after {
    height: 13px;
    width: 19px;
    margin-left: 17px;
  }
  .read-more a {
    font-size: 14px;
  }
  .link-corner {
    font-size: 14px;
  }
  body.home .slider-container {
    margin-bottom: 25px;
  }
  body.home .section {
    padding: 40px 0 50px 0;
  }
  .btn-white,
  .btn-white:active,
  .btn-white:focus {
    padding: 20px 50px 15px;
  }
  .btn-trans,
  .btn-trans:active,
  .btn-trans:focus {
    padding: 20px 50px 15px;
  }
  .nav-tabs .tabs-title > a,
  .project-status-nav ul li a {
    font-size: 14px;
    padding: 0 18px 10px 18px;
  }
  .projects-list-section {
    padding-bottom: 16px;
  }
  .projects-list-section.with-map {
    padding-bottom: 45px;
  }
  .projects-list-title,
  .projects-list-address {
    float: none;
  }
  .projects-list-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .projects-list-address {
    font-size: 14px;
  }
  .project-count {
    font-size: 14px;
  }
  .section-nav-right {
    font-size: 14px;
  }
  .section-nav {
    margin-bottom: 30px;
  }
  .projects-list ul li {
    margin-bottom: 20px;
  }
  .list-map-container .list .projects-list-img {
    padding-top: 27%;
  }
  .projects-list-section.with-map .projects-list .list,
  .projects-list-section.with-map .projects-list .map {
    padding: 0;
  }
  .projects-list-section.with-map .projects-list .list {
    margin-bottom: 20px;
  }
  .project-contacts-right,
  .project-contacts-left {
    padding: 0;
  }
  .project-contacts-left {
    margin-bottom: 40px;
  }
  .team-member-img {
    padding-top: 0;
    height: 324px;
  }
  .team-member-text .team-member-position {
    margin-bottom: 45px;
  }
  .testimonials-item-top:after {
    width: 50px;
    top: 20px;
    left: 20px;
  }
  .testimonials-item-img {
    width: 150px;
    padding-top: 28%;
  }
  .testimonials-item .testimonials-item-top {
    padding: 50px 20px 0 20px;
    margin-bottom: 20px;
  }
  .testimonials-item-bottom {
    padding: 12px 20px;
  }
  .testimonials-item .item-excerpt {
    font-size: 18px;
  }
  .testimonials-item .item-text .item-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .testimonials-item .item-text .item-details {
    font-size: 14px;
    margin-bottom: 35px;
  }
  .testimonials-owl .owl-nav button.owl-prev,
  .testimonials-owl .owl-nav button.owl-next {
    top: 65%;
  }
  .testimonials-owl .owl-nav button.owl-prev {
    left: 15px;
  }
  .testimonials-owl .owl-nav button.owl-next {
    right: 15px;
  }
  .project-team-owl {
    padding-right: 0;
  }
  .project-team-owl .owl-nav {
    position: relative;
    float: right;
    padding-top: 15px;
  }
  .team-name {
    font-size: 16px;
  }
  .team-position {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .team-email a {
    font-size: 14px;
  }
  .team-list ul li {
    width: 45.3%;
    margin-right: 4%;
  }
  .team-list ul li:nth-child(3n) {
    margin-right: 4%;
  }
  .team-list ul li:nth-child(2n) {
    margin-right: 0;
  }
  .hiring-list {
    padding-right: 0;
  }
  .hiring-list ul li a {
    font-size: 18px;
  }
  .contacts-title {
    font-size: 18px;
  }
  .contacts-text {
    font-size: 16px;
  }
  .contact-form-section .section-title {
    padding-right: 0;
  }
  .logo-list ul li {
    margin-right: 3%;
    margin-bottom: 15px;
  }
  .logo-list ul li:last-child {
    margin-bottom: 0;
  }
  .news-section {
    padding-bottom: 45px;
  }
  .archive-slider {
    margin-bottom: 30px;
  }
  .news-list ul li {
    margin-bottom: 25px;
  }
  .about-us-section .page-description {
    margin-bottom: 25px;
    padding-right: 0;
  }
  .achievements-list {
    padding-left: 0;
    padding-top: 20px;
  }
  .achievements-list ul li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 60px;
  }
  .achievements-list ul li:nth-child(3n) {
    margin-right: 4%;
  }
  .achievements-list ul li:nth-child(3n+1) {
    clear: none;
  }
  .achievements-list ul li:nth-child(2n) {
    margin-right: 0;
  }
  .achievements-list ul li:nth-child(2n+1) {
    clear: both;
  }
  .achievement-title {
    font-size: 18px;
  }
  .achievement-text {
    font-size: 16px;
  }
  .services-list.v1 {
    padding-left: 0;
  }
  .services-list > ul > li {
    width: 48%;
    margin-right: 3.2%;
  }
  .services-list > ul > li:nth-child(3n) {
    margin-right: 3.2%;
  }
  .services-list > ul > li:nth-child(2n) {
    margin-right: 0;
  }
  .services-list > ul > li:nth-child(3n+1) {
    clear: none;
  }
  .services-list > ul > li:nth-child(2n+1) {
    clear: both;
  }
  .service-title {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .services-list ul > li ul > li {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .error-container .page-title {
    padding-right: 0;
  }
  .error-text {
    font-size: 16px;
    margin-bottom: 35px;
  }
  .preface-section {
    padding-bottom: 75px;
  }
  .preface-section .page-title {
    margin-bottom: 0.54em;
  }
  .preface {
    padding-left: 0;
  }
  .preface-img {
    padding-top: 51%;
  }
  .preface-left {
    padding-right: 0;
  }
  .preface-left:after {
    left: 10%;
  }
  .preface-text {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .preface-author {
    font-size: 15px;
  }
  .preface-author span {
    font-size: 14px;
  }
  .investor-item-body {
    padding: 0;
  }
  .investor-item {
    margin-bottom: 30px;
  }
  .investor-tabs ul li {
    font-size: 16px;
    padding: 0 8px 12px;
  }
  .investor-tabs ul li span {
    font-size: 14px;
  }
  .investor-item-description {
    font-size: 16px;
    padding: 0 8px;
  }
  .investor-item-description span {
    font-size: 14px;
  }
  .project-type {
    font-size: 14px;
  }
  .footer {
    padding: 20px 0;
  }
  .footer-container {
    font-size: 14px;
  }
  .row.row-mosaic {
    max-width: 1060px;
  }
  .about-us-mosaic {
    flex-direction: column;
    max-width: 800px;
    margin-top: 20px;
  }
  .about-us-mosaic .box1 {
    width: 100%;
  }
  .box1.last .mosaic-item .mosaic-full {
    right: auto;
    left: 0;
  }
  .about-us-mosaic .box1 .mosaic-item.side-right .mosaic-full {
    left: auto;
    right: 0;
  }
  .about-us-mosaic .box1 .mosaic-item.side-mid .mosaic-full.expand {
    left: -100%;
  }
  .mosaic-text {
    font-size: 14px;
    padding: 24px;
  }
}
@media screen and (max-width: 639px) {
  .list-map-container .project-list-video-hold {
    right: 8px;
    width: calc(100% - 16px);
  }
  .logo-list-container ul li img {
    max-height: 50px;
  }
  .cookies-title {
    font-size: 14px;
  }
  .project-description-right table tbody td:nth-child(1) {
    padding-left: 12px;
  }
  .project-description-right table tbody td:nth-child(2) {
    padding-right: 12px;
  }
  .breads ul li {
    font-size: 13px;
  }
  .entry h3 {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .entry h4 {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .entry h5 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .entry > ul > li {
    font-size: 14px;
    padding-left: 30px;
    margin-bottom: 10px;
  }
  .entry p {
    font-size: 14px;
  }
  .nopadleft,
  .nopadright {
    padding: 0;
  }
  .row {
    padding: 0 65px 0 20px;
  }
  .menu-container {
    width: 100%;
  }
  .cookies-text {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .cookies-container {
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-height: 500px;
    padding: 20px;
  }
  .hamburger-alt {
    width: 45px;
  }
  .intro {
    padding-top: 140px;
    min-height: 1px;
  }
  .intro .row {
    position: relative;
  }
  .home-intro-text {
    font-size: 22px;
    margin-bottom: 70px;
  }
  .home-intro-nav ul li {
    max-width: 120px;
  }
  .home-intro-nav ul li a {
    font-size: 13px;
    padding: 5px 15px 0px 10px;
    min-height: 52px;
  }
  .section {
    padding: 25px 0 35px 0;
  }
  .section-wrap {
    padding: 0;
  }
  .page-title {
    font-size: 24px;
  }
  .page-description {
    padding: 0;
    font-size: 13px;
  }
  .section-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .item-img {
    margin-bottom: 15px;
  }
  .item-text .item-title {
    font-size: 18px;
    margin-bottom: 16px;
    min-height: 1px;
  }
  .slider-owl .owl-nav {
    /* display: none; */
  }
  .slider-owl .owl-nav button.owl-prev,
  .iniciatyvos-list-slider .owl-nav button.owl-prev,
  .team-list-slider .owl-nav button.owl-prev {
    margin-right: 15px;
  }
  .slider-progress {
    width: calc(100% - 70px);
    margin-top: 12px;
  }
  .item-text .item-details {
    font-size: 13px;
    margin-bottom: 13px;
  }
  .read-more a {
    font-size: 13px;
  }
  .read-more {
    margin-bottom: 13px;
  }
  .read-more:after {
    width: 14px;
    margin-left: 10px;
  }
  .link-corner {
    font-size: 13px;
  }
  .slider-owl, .team-list-slider, .iniciatyvos-list-slider {
    margin-bottom: 14px;
  }
  .btn-white,
  .btn-white:active,
  .btn-white:focus {
    font-size: 13px;
    padding: 20px 30px 15px;
  }
  .btn-trans,
  .btn-trans:active,
  .btn-trans:focus {
    font-size: 13px;
    padding: 20px 30px 15px;
  }
  .slider-progress ul li {
    max-width: 100%;
  }
  .section-nav {
    border-bottom: none;
  }
  .section-nav-left {
    border-bottom: 2px solid #D7E2EA;
  }
  .section-nav-right {
    margin-top: 25px;
  }
  .project-count {
    text-align: left;
    margin-bottom: 15px;
  }
  .projects-list ul li {
    width: 100%;
    margin-right: 0;
  }
  .projects-list ul li:last-child {
    margin-bottom: 0;
  }
  .projects-list-title {
    font-size: 14px;
  }
  .projects-list-address {
    font-size: 13px;
  }
  .list-map-container .list .projects-list-img {
    padding-top: 54%;
  }
  .projects-list-section.with-map {
    padding-bottom: 35px;
  }
  .projects-list-section.with-map .projects-list ul li a {
    display: block;
  }
  .projects-list-section.with-map .projects-list .projects-list-img {
    margin-bottom: 15px;
  }
  .projects-list-section.with-map .projects-list .projects-list-text {
    padding: 0 16px;
  }
  .projects-list-section.with-map .projects-list .projects-list-title {
    margin-bottom: 10px;
  }
  .projects-list-section.with-map .projects-list .projects-list-address {
    margin-bottom: 20px;
  }
  .project-description .flex-container {
    display: block;
  }
  .project-description-left {
    padding: 50px 0;
  }
  .project-description-right {
    padding: 40px 0;
  }
  .project-description-right table tbody td:nth-child(1) {
    text-align: left;
  }
  .project-description-right table tbody td {
    font-size: 13px;
    padding: 12px;
  }
  .interior-description {
    padding-bottom: 30px;
  }
  .team-member-img {
    padding-top: 29%;
  }
  .team-item {
    margin-left: auto;
    margin-right: auto;
  }
  .team-name {
    font-size: 14px;
  }
  .team-position {
    font-size: 13px;
  }
  .team-email a {
    font-size: 13px;
  }
  .hiring-list ul li a {
    font-size: 16px;
  }
  .testimonials-item-bottom {
    font-size: 13px;
    padding: 12px 10px;
  }
  .testimonials-item-img {
    width: 120px;
    top: -60px;
    right: -30px;
  }
  .testimonials-item .item-excerpt {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .testimonials-item .item-text .item-details {
    font-size: 13px;
  }
  .testimonials-item .item-text .item-title {
    font-size: 14px;
  }
  .testimonials-owl .owl-nav button.owl-prev,
  .testimonials-owl .owl-nav button.owl-next {
    top: 65%;
  }
  .testimonials-owl .owl-nav button.owl-prev {
    left: 10px;
  }
  .testimonials-owl .owl-nav button.owl-next {
    right: 15px;
  }
  .testimonials-item .testimonials-item-top {
    padding: 30px 10px 0 10px;
  }
  .testimonials-item-top:after {
    top: 10px;
    left: 10px;
    width: 40px;
  }
  .team-member-text {
    padding: 15px 0 0 0;
  }
  .team-member-text .team-member-name {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .team-member-text .team-member-position {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .team-member-contacts a {
    font-size: 12px;
  }
  .team-member-social {
    text-align: left;
  }
  .form-element label span {
    font-size: 13px;
  }
  .form-element input {
    font-size: 16px;
  }
  .checkbox input + label {
    font-size: 13px;
  }
  .team-list ul li {
    width: 100%;
    margin-right: 0 !important;
  }
  .contacts-left {
    margin-bottom: 30px;
  }
  .contacts-title {
    font-size: 16px;
  }
  .contacts-text {
    font-size: 14px;
  }
  .contact-form-section .contact-form {
    padding: 0;
  }
  .nav-tabs .tabs-title > a,
  .project-status-nav ul li a {
    font-size: 13px;
    padding: 0 10px 10px;
  }
  .archive-slider {
    margin-bottom: 15px;
  }
  .news-list {
    width: 100%;
    margin-left: 0;
  }
  .news-list ul li {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 15px;
  }
  .news-list ul li:last-child {
    margin-bottom: 0;
  }
  .achievements-list ul li {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 30px;
  }
  .achievement-title {
    font-size: 16px;
    padding-bottom: 15px;
  }
  .achievement-text {
    font-size: 14px;
  }
  .services-list > ul > li {
    width: 100%;
    margin-right: 0;
  }
  .services-list.v1 > ul > li {
    padding-right: 0;
  }
  .services-list.v2 > ul > li {
    padding: 20px 16px;
  }
  .services-list > ul > li:nth-child(3n) {
    margin-right: 0;
  }
  .services-list > ul > li:nth-child(2n) {
    margin-right: 0;
  }
  .services-list > ul > li:nth-child(3n+1) {
    clear: none;
  }
  .services-list > ul > li:nth-child(2n+1) {
    clear: none;
  }
  .service-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .services-list ul > li ul > li {
    font-size: 14px;
  }
  .error-text {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .preface-section {
    padding-bottom: 20px;
  }
  .preface-img {
    padding-top: 123%;
  }
  .preface-left {
    padding-left: 0;
  }
  .preface-left:after {
    width: 55px;
    height: 60px;
    left: 0;
  }
  .preface-text {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .preface-author {
    font-size: 13px;
  }
  .preface-author span {
    font-size: 12px;
    font-size: 12px;
  }
  .investor-owl .link-corner {
    padding: 8px 10px;
  }
  .investor-owl .owl-nav {
    display: none;
  }
  .investor-item {
    margin-bottom: 20px;
  }
  .investor-tabs-container {
    padding: 20px 4% 15px;
  }
  .investor-tabs ul.column-list li {
    width: 50%;
  }
  .investor-tabs ul li {
    font-size: 14px;
  }
  .investor-tabs ul li span {
    font-size: 13px;
  }
  .investor-item-description span {
    font-size: 13px;
  }
  .investor-item-description {
    font-size: 14px;
  }
  .btn-orange {
    font-size: 12px;
  }
  .investor-tabs ul.link-list li span {
    float: none;
    margin-top: 15px;
  }
  .project-type {
    font-size: 13px;
  }
  .footer-container {
    font-size: 12px;
    line-height: 1.3;
  }
  .footer-social {
    margin-bottom: 0px;
  }
  .footer-copyright {
    text-align: left;
    padding: 0;
  }
  .footer-left {
    padding: 0;
  }
  .mosaic-text {
    font-size: 12px;
    padding: 10px;
  }
  .achievements-section {
    padding: 30px 0 35px 0;
  }
  .achievements-section .section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .blocks-content .block-item._3 {
    display: block;
    order: 2;
  }
}
@media only screen and (max-width: 500px) {
  .testimonials-item-container {
    padding-right: 0;
  }
  .testimonials-item-img {
    position: relative;
    top: 0;
    left: 0;
    padding-top: 123%;
    width: 100%;
  }
  .testimonials-item .testimonials-item-top {
    padding-top: 60px;
  }
  .testimonials-item .item-text {
    padding-right: 0;
    text-align: center;
  }
  .testimonials-item-top:after {
    top: 20px;
    width: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
  .testimonials-item .item-excerpt {
    text-align: center;
    font-size: 13px;
    margin-bottom: 15px;
  }
  .testimonials-item .item-text .item-details {
    margin-bottom: 20px;
  }
  .testimonials-item-bottom span {
    padding-left: 15px;
  }
  .testimonials-item-bottom span:before {
    width: 12px;
    height: 14px;
    top: -2px;
  }
  .testimonials-owl .owl-nav button.owl-prev,
  .testimonials-owl .owl-nav button.owl-next {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
  }
  .testimonials-owl .owl-nav button.owl-prev {
    margin-right: 25px;
  }
  .testimonials-owl .owl-nav {
    text-align: center;
    padding-top: 15px;
  }
}
@media only screen and (max-width: 320px) {
  .team-email a {
    font-size: 11px;
  }
}
.acf-map {
  width: 100%;
  height: 37.4vw;
  max-height: 80vw;
}
@media (min-width: 1920px) {
  .acf-map {
    height: 720px;
  }
}

.acf-map img {
  max-width: inherit !important;
  width: 100%;
}

.gm-style-iw-d {
  padding: 0 23px 20px 0;
}

.gm-style .gm-style-iw-c {
  padding: 23px 0 0 24px;
}

.gm-style .gm-style-iw-d {
  overflow: auto !important;
}

.gm-style-iw.gm-style-iw-c [type=button] {
  top: -2px !important;
  right: -2px !important;
}

/*.gm-style .gm-style-iw-tc{
  width: 60px;
  height: 43px;
}
.gm-style .gm-style-iw-tc::after{
  width: 60px;
  height: 42px;
}*/
.logo-list-container ul {
  display: flex;
  justify-content: space-around;
}

.logo-list-container ul li img {
  max-height: 80px; /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

.project-intro-nav .small-6 {
  min-height: 1px;
}

.project-contacts-left {
  min-height: 1px;
}

div.wpcf7-response-output {
  float: left;
  margin: 0px !important;
  margin-top: 25px !important;
}

span.wpcf7-not-valid-tip {
  color: #e86627 !important;
  font-size: 13px !important;
  position: absolute;
  right: 0;
  top: -13px;
}

span.wpcf7-list-item {
  margin: 0px !important;
}

input.wpcf7-not-valid {
  border-color: #e86627 !important;
}

.checkbox input + span {
  position: relative;
  width: 100%;
  padding-left: 40px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #3E4E53;
  padding-top: 3px;
  display: block;
  margin: 25px 0 12%;
}
@media (min-width: 1920px) {
  .checkbox input + span {
    margin: 25px 0 50px;
  }
}
@media (max-width: 1360px) {
  .checkbox input + span {
    margin: 25px 0 8%;
  }
}

.checkbox input + span > a {
  color: #3E4E53;
  font-weight: 700;
  transition: 0.2s;
}

.checkbox input + span > a:hover {
  opacity: 0.8;
}

.checkbox input + span:before {
  content: "";
  width: 24px;
  height: 24px;
  border: 1px solid #B4BFC2;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  font-family: "Font Awesome 5 Pro";
  transition: 0.2s;
}

.checkbox input:checked + span:before {
  content: "\f00c";
}

.checkbox .wpcf7-not-valid input + span:before {
  border-color: red;
}

.wpcf7-form-control-wrap {
  padding-left: 0px !important;
}

.checkbox span.wpcf7-not-valid-tip {
  display: none !important;
}

@media screen and (max-width: 639px) {
  .checkbox input + span {
    font-size: 13px;
    margin: 20px 0 30px;
  }
  span.wpcf7-not-valid-tip {
    font-size: 10px !important;
    top: -11px;
  }
}
.fancybox-bg {
  background: #1d344e;
}

#cPopup {
  padding: 0;
}
#cPopup .cPopup-single {
  max-width: 650px;
  width: 100%;
}
#cPopup .cPopup-double {
  max-width: 1300px;
}

.cPopup {
  width: 90vw;
  background: #F6F9FC;
  display: flex;
  position: relative;
  /*form {
    padding-top: 26px;
    .kontaktines-formos-pirma-eilute {
      display: flex;
      justify-content: space-between;
      flex-direction: column;

      input[type=text], input[type=email] {
        width: 100%;
      }
      > .wpcf7-form-control-wrap {
        width: 100%;
      }

    }
    ::placeholder {
      font-family: 'Euclid Circular A';
      color: $textLight;
      font-size: 16px;
    }
    input[type=text], input[type=email], textarea {
      background-color: transparent;
      padding-bottom: 15px;
      border: none;
      border-bottom: 1px solid $footerContactFormBorder;
      font-family: 'Euclid Circular A';
      color: $textLight;
      outline: none;
      font-size: 16px;
    }
    textarea  {
      margin-top: 50px;
      width: 100%;
      resize: none;
      height: 100px;
      border: 1px solid $footerContactFormBorder;
      padding: 15px;
    }


    .kontaktines-formos-check-container {
      margin-top: 25px;

      display: flex;
      justify-content: flex-start;
      align-items: center;


      .wpcf7-list-item-label {
        font-size: 16px;
        font-weight: 300;
        color: $textLight;

        a {
          margin-left: 5px;
          font-weight: 500;
        }
      }

      input[type=checkbox] {
        position: absolute;
        opacity: 0;

        & + span {
          position: relative;
          cursor: pointer;
          padding: 0;
          flex-wrap: wrap;
          display: flex;
          align-items: center;
        }

        // Box.
        & + span:before {
          content: '';
          margin-right: 10px;
          display: inline-block;
          vertical-align: text-top;
          width: 22px;
          height: 20px;
          margin-top: -1px;
          background: transparent;
          border: 1px solid $footerContactFormBorder;
        }

        // Box hover and checkeds
        &:hover + span:before, &:checked + span:before {
          background: $backgroundDark;
        }

        // Checkmark. Could be replaced with an image
        &:checked + span:after {
          content: '';
          position: absolute;
          left: 6px;
          top: 9px;
          background: $footerContactFormBorder;
          width: 2px;
          height: 2px;
          box-shadow:
                  2px 0 0 $footerContactFormBorder,
                  4px 0 0 $footerContactFormBorder,
                  4px -2px 0 $footerContactFormBorder,
                  4px -4px 0 $footerContactFormBorder,
                  4px -6px 0 $footerContactFormBorder,
                  4px -8px 0 $footerContactFormBorder;
          transform: rotate(45deg);
        }
      }
    }
    .kontaktines-formos-submit-container {
      margin-top: 25px;
      input[type=submit] {
        font-family: 'Euclid Circular A';
        color: $buttonText;
        font-size: 14px;
        font-weight: 300;
        letter-spacing: 3px;
        text-transform: uppercase;

        padding: 15px 50px;
        border: none;
        border-radius: 25px;
        background-color: $buttonColor;


      }
    }
  }
  .wpcf7 form .wpcf7-response-output {
    color: #fff;
    font-weight: 300;
    margin: 2em 0 0 0;
  }
  .wpcf7-not-valid-tip {
    font-size: 14px;
    font-weight: 300;
  }*/
}
@media (max-width: 960px) {
  .cPopup {
    width: 100%;
  }
}
.cPopup-left, .cPopup-right {
  width: 100%;
}
.cPopup-double .cPopup-left, .cPopup-double .cPopup-right {
  width: 50%;
}
.cPopup-left {
  position: relative;
  min-height: 600px;
}
.cPopup-left a {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: block;
}
.cPopup-left a img {
  width: 100%;
}
.cPopup-single .cPopup-left {
  min-height: unset;
  width: 100%;
}
.cPopup-single .cPopup-left a {
  position: static;
}
.cPopup-right {
  padding: 52px 0;
}
.cPopup-right--inner {
  width: 78.6069651741%;
  margin: 0 auto;
}
.cPopup-cont h2 {
  font-size: 42px;
  font-family: "FadoliLight";
  color: #646464;
  margin-bottom: 27px;
}
.cPopup-cont p {
  font-size: 16px;
  font-family: "Euclid Circular A";
  color: #646464;
  line-height: 22px;
}
.cPopup-close {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cPopup-close svg path * {
  fill: #fff;
}
.cPopup-close button {
  background: none;
  border: none;
}
.cPopup form {
  padding-top: 26px;
}

.fancybox-button.fancybox-close-small {
  height: 50px;
  width: 50px;
}
.fancybox-button.fancybox-close-small svg path {
  fill: #fff;
}

.fancybox-slide--html .fancybox-close-small {
  color: #fff;
}

@media (max-width: 960px) {
  .cPopup-double {
    flex-direction: column;
  }
  .cPopup-double .cPopup-left, .cPopup-double .cPopup-right {
    width: 100%;
  }
  .cPopup-double .cPopup-left {
    height: 300px;
    min-height: unset;
  }
}
@media (max-width: 720px) {
  .cPopup-right {
    padding: 32px 0;
  }
  .cPopup-right--inner {
    width: 88.606965%;
  }
  .cPopup-cont h2 {
    font-size: 32px;
    margin-bottom: 18px;
  }
  .cPopup-cont p {
    font-size: 15px;
  }
}
@media (max-width: 500px) {
  #cPopup {
    width: 100%;
  }
}
.blocks-content {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  /*@media only screen and (max-width: 1400px) {
    width: 960px;
    margin: 0 auto;
  }*/
  /* @media only screen and (max-width: 1200px) {
     width: 640px;
   }*/
}
.blocks-content *,
.blocks-content *:before,
.blocks-content *:after {
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .blocks-content {
    width: 100%;
  }
}
.blocks-content .block-item {
  width: 25%;
  height: 16.67vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 0 2.59%;
  /*
  @media only screen and (max-width: 1500px) {
    padding: 0 30px;
  }
  @media only screen and (max-width: 1400px) {
    padding: 0 40px;
    height: 320px;
    width: 320px;
  }*/
}
@media (min-width: 1920px) {
  .blocks-content .block-item {
    width: 25%;
    height: 320px;
    padding: 0 33px;
  }
}
@media only screen and (max-width: 1500px) {
  .blocks-content .block-item {
    height: 20.51vw;
  }
}
@media only screen and (max-width: 980px) {
  .blocks-content .block-item {
    width: 50%;
    height: 320px;
  }
}
@media only screen and (max-width: 767px) {
  .blocks-content .block-item {
    width: 100%;
    padding: 0 35px;
    height: 275px;
    height: 275px;
  }
}
@media only screen and (max-width: 320px) {
  .blocks-content .block-item {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 980px) {
  .blocks-content .block-item._1 {
    order: 1;
  }
}
.blocks-content .block-item._2 {
  /*@media only screen and (max-width: 1400px) {
    order: 3;
  }*/
}
@media only screen and (max-width: 980px) {
  .blocks-content .block-item._2 {
    order: 2;
  }
}
@media only screen and (max-width: 980px) {
  .blocks-content .block-item._3 {
    order: 5;
  }
}
.blocks-content .block-item._4 {
  /* @media only screen and (max-width: 1400px) {
     order: 11;
   }*/
}
@media only screen and (max-width: 980px) {
  .blocks-content .block-item._4 {
    order: 8;
  }
}
.blocks-content .block-item._5 {
  /*@media only screen and (max-width: 1400px) {
    order: 2;
  }*/
}
@media only screen and (max-width: 980px) {
  .blocks-content .block-item._5 {
    order: 3;
  }
}
.blocks-content .block-item._6 {
  /* @media only screen and (max-width: 1400px) {
     order: 5;
   }*/
}
@media only screen and (max-width: 980px) {
  .blocks-content .block-item._6 {
    order: 4;
  }
}
.blocks-content .block-item._7 {
  /*  @media only screen and (max-width: 1400px) {
      order: 8;
    }*/
}
@media only screen and (max-width: 980px) {
  .blocks-content .block-item._7 {
    order: 9;
  }
}
.blocks-content .block-item._8 {
  /* @media only screen and (max-width: 1400px) {
     order: 4;
   }*/
}
@media only screen and (max-width: 980px) {
  .blocks-content .block-item._8 {
    order: 5;
  }
}
@media only screen and (max-width: 980px) {
  .blocks-content .block-item._9 {
    order: 6;
  }
}
.blocks-content .block-item._10 {
  /*     @media only screen and (max-width: 1400px) {
         order: 9;
       }*/
}
@media only screen and (max-width: 980px) {
  .blocks-content .block-item._10 {
    order: 10;
  }
}
.blocks-content .block-item._11 {
  /* @media only screen and (max-width: 1400px) {
     order: 10;
   }*/
}
@media only screen and (max-width: 980px) {
  .blocks-content .block-item._11 {
    order: 11;
  }
}
.blocks-content .block-item.block-2x {
  width: 50%;
  /*  @media only screen and (max-width: 1400px) {
      width: 640px;
    }*/
}
@media only screen and (max-width: 980px) {
  .blocks-content .block-item.block-2x {
    width: 100%;
  }
}
.blocks-content .block-item.blue {
  background: #2D0094;
}
.blocks-content .block-item.blue .block-title {
  color: #fff;
}
.blocks-content .block-item.blue .block-desc {
  color: #fff;
}
@media only screen and (max-width: 980px) {
  .blocks-content .block-item.empty {
    display: none;
  }
}
.blocks-content .block-item.has-border:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #A0B5BA;
  pointer-events: none;
}
.blocks-content .block-item.has-border._3:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 1px solid #A0B5BA;
  border-right: none;
  border-bottom: 1px solid #A0B5BA;
  pointer-events: none;
}
@media (max-width: 980px) {
  .blocks-content .block-item.has-border._3:after {
    border-right: 1px solid #A0B5BA;
  }
}
.blocks-content .block-item.rounded-image .block-image {
  border-radius: 100%;
}
.blocks-content .block-item.rounded-image .block-image img {
  border-radius: 100%;
}
.blocks-content .block-item .block-title {
  line-height: 1.2;
  color: #000000;
  font-weight: 700;
  margin-bottom: 1.13em;
  font-size: 1.15vw;
  /* @media only screen and (max-width: 1200px) {
     font-size: 22px;
     margin-bottom: 20px;
   }*/
}
@media (min-width: 1920px) {
  .blocks-content .block-item .block-title {
    font-size: 22px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .blocks-content .block-item .block-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 320px) {
  .blocks-content .block-item .block-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.blocks-content .block-item .block-desc {
  font-size: 0.85vw;
  color: #3E4E53;
  font-weight: 400;
  line-height: 1.63;
  /*  @media only screen and (max-width: 1200px) {
      font-size: 17px;
      line-height: 25px;
    }*/
}
@media (min-width: 1920px) {
  .blocks-content .block-item .block-desc {
    font-size: 16px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .blocks-content .block-item .block-desc {
    font-size: 15px;
    line-height: 22px;
  }
}
.blocks-content .block-item .block-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.blocks-content .block-item .block-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-possibilities {
  display: flex;
  justify-content: space-between;
}
.section-possibilities:after, .section-possibilities:before {
  display: none;
}
.section-possibilities .small-6 {
  width: 47%;
}
@media (max-width: 1023px) {
  .section-possibilities {
    flex-direction: column;
  }
  .section-possibilities .small-6 {
    width: 100%;
  }
}

.section-possibility {
  display: flex;
  justify-content: space-between;
  /*  @media(max-width: 1380px){
      &--title{
        h3{
          font-size: 26px;
        }
      }
      &--content{
     //   padding-left:34px;
      }
      .small-6{
        width: 49%;
      }
      &--img{
        width: 36%;
      }
    }*/
}
.section-possibility--img {
  flex-shrink: 0;
  width: 33.5%;
}
.section-possibility--img img {
  display: block;
  width: 100%;
}
.section-possibility--content {
  padding-left: 7.8%;
}
.section-possibility--title h3 {
  font-size: 1.67vw;
  color: #000000;
  font-weight: 700;
  margin-bottom: 0.7em;
}
.section-possibility--text {
  margin-bottom: 8.5%;
}
.section-possibility--text p {
  color: #3E4E53;
  font-size: 0.83vw;
}
.section-possibility--link {
  margin-bottom: 0;
}
@media (min-width: 1920px) {
  .section-possibility--content {
    padding-left: 47px;
  }
  .section-possibility--title h3 {
    font-size: 33px;
  }
  .section-possibility--text {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .section-possibility--text p {
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .section-possibility {
    padding-bottom: 25px;
  }
  .section-possibility--img {
    max-width: 220px;
  }
  .section-possibility--content {
    padding-left: 34px;
    padding-right: 20px;
  }
}
@media (max-width: 560px) {
  .section-possibility {
    flex-direction: column;
    padding-bottom: 32px;
  }
  .section-possibility--img {
    width: 220px;
  }
  .section-possibility--content {
    padding-right: 20px;
    padding-top: 20px;
    padding-left: 0;
  }
}

.section-funds .btn-row, .section-bonds .btn-row {
  text-align: center;
}
@media (max-width: 840px) {
  .section-funds .btn-row, .section-bonds .btn-row {
    text-align: left;
  }
}
.section-funds .btn-trans, .section-bonds .btn-trans {
  margin-top: 4%;
}
.section-funds--list, .section-bonds--list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section-funds--item, .section-bonds--item {
  width: 47.6923076923%;
  margin-bottom: 65px;
}
.section-funds--item:nth-last-child(-n+2), .section-bonds--item:nth-last-child(-n+2) {
  margin-bottom: 0;
}
.section-funds--imgs, .section-bonds--imgs {
  margin-bottom: 4.9%;
}
.section-funds--imgHolder, .section-bonds--imgHolder {
  padding-top: 59%;
  background: #2D0094;
  position: relative;
  margin-bottom: 6.888%;
}
.section-funds--imgTxt, .section-bonds--imgTxt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 1.88vw;
  font-weight: 700;
  color: #fff;
  width: 73%;
}
.section-funds--title h3, .section-bonds--title h3 {
  font-size: 1.88vw;
  color: #000000;
  font-weight: 700;
}
.section-funds--data, .section-bonds--data {
  display: flex;
  flex-wrap: wrap;
}
.section-funds--dataItem, .section-bonds--dataItem {
  padding: 0 1.25em 0 0;
  font-size: 0.83vw;
  color: #3E4E53;
  font-weight: 400;
}
.section-funds--dataItem:not(:first-child), .section-bonds--dataItem:not(:first-child) {
  padding: 0 0 0 1.25em;
  border-left: 1px solid #B4BFC2;
}
.section-funds--text, .section-bonds--text {
  padding-bottom: 1.95%;
}
.section-funds--text p, .section-bonds--text p {
  padding-bottom: 1.56em;
  font-size: 0.83vw;
}
@media (min-width: 1920px) {
  .section-funds--text, .section-bonds--text {
    padding-bottom: 25px;
  }
  .section-funds--text p, .section-bonds--text p {
    font-size: 16px;
    padding-bottom: 25px;
  }
}
@media (min-width: 1920px) {
  .section-funds--imgTxt, .section-bonds--imgTxt {
    font-size: 33px;
  }
  .section-funds--imgs, .section-bonds--imgs {
    margin-bottom: 30px;
  }
  .section-funds--imgHolder, .section-bonds--imgHolder {
    margin-bottom: 42px;
  }
  .section-funds--title h3, .section-bonds--title h3 {
    font-size: 33px;
  }
  .section-funds--dataItem, .section-bonds--dataItem {
    font-size: 16px;
  }
}
@media (Max-width: 1023px) {
  .section-funds .small-7, .section-bonds .small-7 {
    width: 75%;
  }
  .section-funds--data, .section-bonds--data {
    flex-direction: column;
  }
  .section-funds--dataItem, .section-bonds--dataItem {
    padding: 0 0 10px 0;
  }
  .section-funds--dataItem:not(:first-child), .section-bonds--dataItem:not(:first-child) {
    padding: 10px 0 0 0;
    border: none;
    border-top: 1px solid #B4BFC2;
  }
}
@media (max-width: 840px) {
  .section-funds--list, .section-bonds--list {
    flex-direction: column;
  }
  .section-funds--item, .section-bonds--item {
    width: 76.692308%;
    margin-bottom: 30px;
  }
  .section-funds--item:nth-last-child(-n+2), .section-bonds--item:nth-last-child(-n+2) {
    margin-bottom: 30px;
  }
}
@media (max-width: 560px) {
  .section-funds--imgTxt, .section-bonds--imgTxt {
    font-size: 24px;
  }
  .section-funds--item, .section-bonds--item {
    width: 100%;
  }
  .section-funds .small-7, .section-bonds .small-7 {
    width: 95%;
  }
}

.investfancybox .fancybox-navigation {
  display: none;
}
.investfancybox .fancybox-bg {
  background: #A0B5BA;
  opacity: 1;
}
.investfancybox .fancybox-content {
  width: 50.1041666667%;
  padding: 2.1% 2.8% 2.6%;
}
@media (min-width: 1920px) {
  .investfancybox .fancybox-content {
    width: 962px;
    padding: 40px 55px 50px;
  }
}
.investfancybox .investfancybox-swiper {
  height: 20vw;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.investfancybox .swiper-slide {
  max-width: unset;
  width: 100%;
  align-items: baseline;
}
.investfancybox .swiper-slide a {
  height: 100%;
  width: 100%;
}
.investfancybox .swiper-slide a img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
}
.investfancybox .section-title {
  font-family: "BwNistaGeometric", sans-serif;
  margin-bottom: 10px;
}
.investfancybox .swiper-nav {
  background: #fff;
  z-index: 99993;
  position: absolute;
  width: 14.6%;
  height: 2.8vw;
  left: 0;
  bottom: 0;
  border-top-right-radius: 12px;
}
.investfancybox .swiper-nav .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 15%);
}
.investfancybox .swiper-nav .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 15%);
}
.investfancybox .swiper-nav .swiper-button-prev, .investfancybox .swiper-nav .swiper-button-next {
  --swiper-navigation-size: 1vw;
}
@media (min-width: 1920px) {
  .investfancybox .swiper-nav .swiper-button-prev, .investfancybox .swiper-nav .swiper-button-next {
    --swiper-navigation-size: 16px;
  }
}
@media (min-width: 1920px) {
  .investfancybox .swiper-nav {
    height: 55px;
    width: 126px;
  }
}
.investfancybox .investfancybox--content {
  width: 84%;
  margin: 0 auto;
}
.investfancybox .investfancybox-item--toggles {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 5.5%;
}
.investfancybox .investfancybox-item--toggles button {
  padding: 1.07em 0.62em;
  width: 50%;
  border: none;
  background: #fff;
  outline: none;
  font-size: 0.83vw;
  font-weight: 700;
  color: #070707;
  border-bottom: 1px solid #A0B5BA;
}
.investfancybox .investfancybox-item--toggles button.active {
  color: #E35331;
  border-bottom: 1px solid #E35331;
}
@media (min-width: 1920px) {
  .investfancybox .investfancybox-item--toggles {
    margin-top: 40px;
  }
  .investfancybox .investfancybox-item--toggles button {
    font-size: 16px;
  }
}
.investfancybox .investfancybox-item--keys {
  display: flex;
  flex-wrap: wrap;
  padding: 2.8% 0;
}
.investfancybox .investfancybox-item--key {
  width: 50%;
  padding: 2.1% 4.2%;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #A0B5BA;
}
.investfancybox .investfancybox-item--keyTitle {
  font-size: 0.83vw;
  color: #3E4E53;
}
.investfancybox .investfancybox-item--keyValue {
  font-size: 0.83vw;
  font-weight: 700;
  color: #3E4E53;
}
.investfancybox .investfancybox-item--about {
  width: 90%;
  margin: 0 auto;
}
.investfancybox .investfancybox-item--about h3 {
  font-size: 1.15vw;
  font-weight: 700;
  margin-bottom: 0.45em;
}
.investfancybox .investfancybox-item--about p {
  font-size: 0.83vw;
}
.investfancybox .investfancybox-item--block {
  display: none;
}
.investfancybox .investfancybox-item--block.active {
  display: block;
}
@media (min-width: 1920px) {
  .investfancybox .investfancybox-item--keys {
    padding: 20px 0;
  }
  .investfancybox .investfancybox-item--key {
    padding: 15px 30px;
  }
  .investfancybox .investfancybox-item--keyTitle {
    font-size: 16px;
  }
  .investfancybox .investfancybox-item--keyValue {
    font-size: 16px;
  }
  .investfancybox .investfancybox-item--about h3 {
    font-size: 22px;
  }
  .investfancybox .investfancybox-item--about p {
    font-size: 16px;
  }
}
.investfancybox .fancybox-slide--html .fancybox-close-small {
  color: #A0B5BA;
}
@media (max-width: 700px) {
  .investfancybox .fancybox-content {
    padding: 32px 32px 45px;
    max-width: 962px;
    width: 98%;
  }
  .investfancybox .investfancybox--content {
    width: 100%;
  }
  .investfancybox .investfancybox-swiper {
    height: 260px;
  }
}
@media (max-width: 560px) {
  .investfancybox .investfancybox-item--keys {
    flex-direction: column;
  }
  .investfancybox .investfancybox-item--key {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .investfancybox .investfancybox-item--toggles {
    flex-direction: column;
  }
  .investfancybox .investfancybox-item--toggles button {
    width: 100%;
  }
}

.contacts-popup .fancybox-navigation {
  display: none;
}
.contacts-popup .contacts-popup--container {
  max-width: 962px;
}
.contacts-popup--inner {
  padding: 52px 0;
  width: 84%;
  margin: 0 auto;
}
.contacts-popup--inner:after {
  clear: both;
}
@media (max-width: 540px) {
  .contacts-popup--inner {
    padding: 34px 0;
  }
}
@media (max-width: 440px) {
  .contacts-popup--inner {
    width: 90%;
  }
}
.contacts-popup--title h3 {
  font-family: "BwNistaGeometric", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #000000;
  text-align: center;
}
@media (max-width: 540px) {
  .contacts-popup--title h3 {
    font-size: 42px;
  }
}
.contacts-popup--form:after {
  clear: both;
}
.contacts-popup .fancybox-bg {
  background: #3E4E53;
  opacity: 0.91;
}
.contacts-popup .fancybox-slide--html .fancybox-close-small {
  color: #A0B5BA;
}
.contacts-popup .fancybox-slide--html .fancybox-close-small svg {
  stroke-width: 2px;
}

.swiper {
  opacity: 0;
}
.swiper.swiper-initialized {
  opacity: 1;
}

[data-fancybox=gallery] {
  display: block;
  width: 100%;
  margin-bottom: 4.9%;
}
[data-fancybox=gallery] img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1920px) {
  [data-fancybox=gallery] {
    margin-bottom: 30px;
  }
}

.location-map {
  float: none;
  margin: 0 auto;
}

.swiper {
  width: 100%;
}
.swiper-slide {
  max-width: 620px;
}
.swiper-controls {
  position: relative;
  height: 20px;
  width: calc(100% - 4.5vw);
}
.swiper-scrollbar {
  left: 0 !important;
  top: 50% !important;
  transform: translate(0, -50%) !important;
  border-radius: 0 !important;
}
.swiper-scrollbar-drag {
  border-radius: 0 !important;
}
.swiper-buttons {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  width: 94px;
  width: 5vw;
}
@media (min-width: 1920px) {
  .swiper-buttons {
    width: 94px;
  }
}
.swiper-button-prev, .swiper-button-next {
  font-size: 25px;
  --swiper-navigation-size: 20px;
  width: 35%;
  color: #000000;
}
@media (max-width: 1400px) {
  .swiper-button-prev, .swiper-button-next {
    --swiper-navigation-size: 14px;
  }
}
@media (min-width: 1920px) {
  .swiper-button-prev, .swiper-button-next {
    width: 32px;
  }
}
.swiper-button-prev:after, .swiper-button-next:after {
  display: none;
}
.swiper-button-prev:before, .swiper-button-next:before {
  display: block;
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 1%);
}
.swiper-button-prev:before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: url("../img/icon-arrow-left.svg") center center no-repeat;
  background-size: contain;
}
.swiper-button-next:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../img/icon-arrow-right.svg") center center no-repeat;
  background-size: contain;
}
@media (max-width: 640px) {
  .swiper-buttons {
    width: 85px;
  }
  .swiper-controls {
    width: calc(100% - 73px);
  }
}

@media (max-width: 1023px) {
  .row {
    width: 83%;
    padding: 0 65px 0 20px;
  }
  .intro .row {
    width: 83%;
  }
  .home-intro-text p {
    font-size: 13px;
  }
  .menu-nav ul li a {
    font-size: 15px;
  }
  .lang-menu ul li a {
    font-size: 15px;
  }
  .menu-close {
    width: 18px;
    height: 18px;
    top: 40px;
    right: 40px;
  }
  .menu-container {
    padding: 40px;
    width: 330px;
  }
  .menu-social ul li a img {
    width: 20px;
  }
  .blocks-content .block-item {
    padding: 20px;
  }
  .blocks-content .block-item .block-title {
    font-size: 22px;
  }
  .blocks-content .block-item .block-desc {
    font-size: 13px;
  }
  .team-social a img {
    width: 20px;
  }
  .f-count {
    font-size: 15px;
  }
  .projects-list-text {
    flex-direction: column;
  }
  .projects-list-title,
  .projects-list-address {
    width: 100%;
  }
  .projects-list-address:before {
    width: 15px;
    height: 21px;
  }
  .intro.project-intro {
    padding-top: 220px;
  }
  .project-description .flex-container {
    flex-direction: column;
  }
  .project-description-left,
  .project-description-right {
    width: 100%;
    padding: 50px 0;
  }
  .project-description.bg-blue:after {
    display: none;
  }
  .project-description-right table tbody td:nth-child(1) {
    text-align: left;
    padding-left: 40px;
  }
  .project-description-right table tbody td {
    width: 50%;
  }
  .acf-map {
    height: 470px;
  }
  .project-location-section--map {
    width: 83%;
    padding: 0 65px 0 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .project-location-section--map .location-map {
    width: 100%;
  }
  .read-more {
    font-size: 15px;
    margin-bottom: 13px;
  }
  .archive-owl {
    padding-right: 80px;
    padding-top: 5px;
  }
  .archive-owl .archive-item a {
    font-size: 15px;
  }
  .archive-owl .archive-item {
    width: auto;
  }
  .archive-owl .owl-nav {
    font-size: 25px;
  }
  .iniciatyvos-large-list .iniciatyva-item .ii-content .ii-title a {
    font-size: 24px;
  }
  .slider-owl, .team-list-slider, .iniciatyvos-list-slider {
    margin-bottom: 28px;
  }
  .section-possibility--title h3 {
    font-size: 26px;
  }
  .section-possibility--text {
    margin-bottom: 30px;
  }
  .section-possibility--text p {
    font-size: 16px;
  }
  .section-funds--text p,
  .section-bonds--text p {
    padding-bottom: 25px;
    font-size: 16px;
  }
  .section-funds--title h3,
  .section-bonds--title h3 {
    font-size: 33px;
  }
  .section-funds--dataItem,
  .section-bonds--dataItem {
    font-size: 16px;
    padding: 0 0 10px 0;
  }
  .team-member-text {
    padding: 15px 0 0 0;
  }
  .team-member-text .team-member-name {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .team-member-text .team-member-position {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .team-member-contacts div a img {
    width: 20px;
  }
  .investfancybox .swiper-nav {
    width: 126px;
    height: 55px;
  }
  .investfancybox .investfancybox-item--toggles button {
    font-size: 16px;
  }
  .investfancybox .investfancybox-item--keyTitle,
  .investfancybox .investfancybox-item--keyValue {
    font-size: 16px;
  }
  .investfancybox .investfancybox-item--about h3 {
    font-size: 22px;
  }
  .investfancybox .investfancybox-item--about p {
    font-size: 16px;
  }
  .investfancybox .swiper-nav .swiper-button-prev,
  .investfancybox .swiper-nav .swiper-button-next {
    --swiper-navigation-size: 14px;
  }
  .investfancybox .fancybox-content {
    max-width: 962px;
    width: 98%;
  }
  .services-list ul > li ul > li:before {
    top: 6px;
    left: 0;
    width: 7px;
    height: 7px;
  }
  .services-list-section .btn-trans {
    margin: 20px 0 40px;
  }
  .contact-info-section .contacts-phone, .contact-info-section .contacts-email, .contact-info-section .contacts-addr, .contact-info-section .contacts-google, .contact-info-section .contacts-code, .contact-info-section .contacts-pvm {
    font-size: 16px;
  }
  .contact-info-section .contacts-phone a, .contact-info-section .contacts-email a, .contact-info-section .contacts-addr a, .contact-info-section .contacts-google a, .contact-info-section .contacts-code a, .contact-info-section .contacts-pvm a {
    font-size: 16px;
  }
  .contact-info-section .contacts-google a img {
    width: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .rounded-image._3 {
    height: 81.67vw;
  }
}
@Media (max-width: 740px) {
  .footer-container {
    display: flex;
    flex-direction: column;
  }
  .footer-container .footer-social,
  .footer-container .footer-left {
    width: 100%;
  }
  .footer-container .footer-left {
    padding: 20px 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    float: none;
  }
  .footer-container .footer-left .footer-copyright,
  .footer-container .footer-left .footer-privacy {
    float: none;
    padding: 0;
    text-align: left;
  }
  .footer-container .footer-left .footer-copyright {
    padding-bottom: 10px;
  }
}
@media (max-width: 639px) {
  .project-location-section--map {
    width: 100%;
  }
  .intro .row {
    width: 100%;
  }
  .row {
    padding: 0 65px 0 20px;
    width: 100%;
  }
  .menu-container {
    width: 100%;
  }
  .achievements-section .row {
    width: 100%;
  }
  .projects-list ul li:nth-child(even) .projects-list--item {
    margin: 0 0 0 0;
  }
  .item-img--txt, .projects-list-img--txt, .section-funds--imgs--txt {
    width: 70px;
    height: 70px;
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .f-title {
    font-size: 20px;
  }
  .section-title.section-title-projects .section-title-projects-hold {
    display: flex;
    padding-top: 38px;
    padding-bottom: 38px;
  }
  .project-description-left,
  .project-description-right {
    padding: 30px 0;
  }
}
@media (max-width: 420px) {
  .rounded-image._3 {
    height: 75.67vw;
  }
  .section-title.section-title-projects .section-title-projects-hold {
    flex-direction: column;
  }
  .f-count {
    display: block;
    position: relative;
    transform: none;
    top: unset;
    margin-top: 10px;
  }
}/*# sourceMappingURL=style.css.map */