/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1.2;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}

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

:root {
  --black: #000;
  --white: #fff;
  --blue: #130059;
  --grey: #999999;
  --padding: 110px;
}

a {
  transition: all .4s;
  text-decoration: none !important;
  display: inline-block;
  color: var(--black);
}




.big-pt {
  padding-top: var(--padding);
}

.big-pb {
  padding-bottom: var(--padding);
}

strong {
  font-weight: bold;
}

p {
  margin-bottom: 26px;
  line-height: 1.8;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

/* HEADER */
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 80px;
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  background: var(--white);
  left: 0;
  border-bottom: 1px solid #eee;
  -webkit-box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
  font-size: 13px;
}

.logo-holder, .logo-holder img {
  max-height: 50px;
}

.nav-holder, .nav-holder nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
}

.main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
}

.menu-item, .nav-holder a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.nav-holder a::before {
  position: absolute;
  height: 0;
  width: 100%;
  background-color: var(--grey);
  top: 0;
  left: 0;
  content: "";
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.nav-holder .menu-item>a:hover::before {
  height: 3px;
}

.nav-holder a, .lang-show, .responsive-btn {
  padding: 10px 15px;
  line-height: 1;
  color: var(--black);
  text-transform: uppercase;
  font-weight: bold;
  -webkit-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  cursor: pointer;
}

.responsive-btn {
  margin-left: 34px;
}

.lang-show, .responsive-btn {
  height: 70px;
  width: 120px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-left: 1px solid #e6eaea;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
}

.lang-show i, .responsive-btn i {
  margin-right: 6px;
  font-size: 1rem;
}



.nav-holder a:hover, .lang-show:hover {
  color: var(--grey) !important;
}

.responsive-btn {
  width: 90px !important;
  display: none;
}

.responsive-nav {
  z-index: 99;
  position: fixed;
  top: 70px;
  right: 0;
  width: 260px;
  padding: 16px 20px;
  background-color: #fff;
  border: 1px solid #eee;
  display: none;
}

.responsive-nav .menu-item a {
  font-weight: 600;
  padding: 4px 0;
  text-transform: uppercase;
  font-size: 13px;
}


.header .sub-menu {
  position: absolute;
  top: 130%;
  left: 0;
  width: 200px;
  background-color: #000000;
  padding: 6px 0;
  opacity: 0;
  transition: all 0.4s ease;
}

.header .sub-menu-item a {
  color: #fff;
  text-transform: capitalize;
  font-weight: 400;
}


.nav-holder .menu-item:hover .sub-menu {
  top: 100%;
  opacity: 1;
}

.responsive-nav .menu-item {
    flex-flow: column;
    align-items: flex-start;
}

.responsive-nav .menu-item:not(:last-child) {
    margin-bottom: 8px;
}

.responsive-nav .sub-menu {
    padding-left: 5px;
}

.responsive-nav .sub-menu a {
    text-transform: capitalize;
    font-weight: 500;
}


.site-content {
  width: 100%;
  position: relative;
  min-height: 100vh;
}


.main-footer {
  position: fixed;
  width: 80px;
  z-index: 21;
  top: 70px;
  background: var(--white);
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-right: 1px solid #eee;
}

.fixed-title {
  position: fixed;
  width: 380px;
  height: 80px;
  line-height: 80px;
  top: 381px;
  border-left: 1px solid #e6eaea;
  letter-spacing: 0.27em;
  text-transform: uppercase;
  text-align: center;
  cursor: default;
  font-weight: bold;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  z-index: 22;
}

.fixed-title h1 {
  font-size: 12px;
  line-height: 80px;
  color: var(--black);
}

.footer-social {
  text-align: center;
  font-size: 12px;
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  border-top: 1px solid #e6eaea;
  padding-top: 30px;
}

.footer-social li {
  float: left;
  width: 100%;
  margin-bottom: 12px;
}

.footer-social li a {
  color: var(--black);
  height: 20px;
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
}

.footer-social li a:hover {
  color: var(--white) !important;
  background-color: var(--black);
}

.web-lang-list {
  position: fixed;
  top: 70px;
  bottom: 0;
  z-index: 99;
  right: -131px;
  width: 120px;
  background: var(--white);
  border-left: 1px solid #eee;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.lang-list-open {
  right: 0;
}

.lang {
  height: 60px;
  width: 100%;
  font-size: 11px;
  color: var(--grey);
  border-bottom: 1px solid #eee;
  padding: 10px 15px;
  text-transform: uppercase;
  font-weight: bold;
  -webkit-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.lang:hover {
  color: var(--black);
}

.content-holder {
  vertical-align: top;
  position: absolute;
  left: 80px;
  top: 70px;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

/* HEADER SON */

/* SLİDER */

.hero-slider {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
  cursor: -webkit-grab;
  cursor: grab;
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: var(--white);
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}

.hero-slider .slide-inner::after {
  width: 100%;
  height: 100%;
  opacity: .25;
  background-color: var(--black);
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .swiper-button-prev, .hero-slider .swiper-button-next {
  background: transparent;
  width: 55px;
  height: 55px;
  line-height: 53px;
  margin-top: -30px;
  text-align: center;
  border: 1px solid var(--white);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 2;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.hero-slider .swiper-button-prev:hover, .hero-slider .swiper-button-next:hover {
  background: var(--black);
  border: 1px solid var(--black);
}

@media (max-width: 767px) {

  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}

.hero-slider .swiper-button-prev {
  left: 25px;
  -webkit-transform: translateX(50px);
  -ms-transform: translateX(50px);
  transform: translateX(50px);
}

.hero-slider .swiper-button-prev:before {
  font-family: "Font Awesome 6 Free";
  content: "\f060";
  font-size: 15px;
  color: var(--white);
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-button-next {
  right: 25px;
  -webkit-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  transform: translateX(-50px);
}

.hero-slider .swiper-button-next:before {
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  font-size: 15px;
  color: var(--white);
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  text-align: left;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 0.3;
  background: var(--white);
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
  bottom: 30px;
}

@media screen and (min-width: 992px) {

  .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
  .hero-slider .swiper-pagination-custom,
  .hero-slider .swiper-pagination-fraction {
    /*     display: none; */
  }
}

.swiper-pagination {
  text-align: left;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: 50px;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (min-width: 767px) {
  .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 30px;

  }
}

.hero-style {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}


.slide-inner .container {
  border-left: 1px solid var(--white);
  padding: 38px 28px;
  z-index: 2;
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
  max-width: 600px;
}

.hero-style .slide-title {
  margin: 0 0 20px 0 !important;
  text-transform: capitalize;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  font-weight: 900;
  letter-spacing: -2px;
  text-align: left;
  font-size: 3.5rem;
  line-height: 1.1;
}

.slide-text {
  font-size: 16px;
  line-height: 1.5;
}


.hero-style .slide-btns>a:first-child {
  margin-right: 10px;
}


.slogan-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.float-btn {
  display: inline-block;
}

.btn-slider {
  padding: 15px 30px;
  position: relative;
  margin-top: 10px;
  font-weight: bold;
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  text-transform: uppercase;
  font-size: 0.75rem;
  border-radius: 0 !important;
  color: var(--white);
  background: var(--black);
}

.btn-slider:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20px;
  height: 1px;
  width: 0;
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  background: var(--white);
}

.btn-slider:hover:before {
  width: 30px;
}

.btn-slider:hover {
  padding-left: 60px;
  color: var(--white) !important;
}

/* SLİDER SON */

/* ANASAYFA HAKKIMIZDA */

.home-about {
  background-image: url("../img/about-bg.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}

.home-about-img {
  -webkit-transform: translateX(-60px);
  -ms-transform: translateX(-60px);
  transform: translateX(-60px);
  -webkit-box-shadow: -6px 6px 20px rgba(0, 0, 0, .35);
  box-shadow: -6px 6px 20px rgba(0, 0, 0, .35);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.home-about-img:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .4);
  box-shadow: 0 0 10px rgba(0, 0, 0, .4);
  -webkit-transform: scale(.98) translateX(-60px);
  -ms-transform: scale(.98) translateX(-60px);
  transform: scale(.98) translateX(-60px);
}

.about-project-box {
  margin-top: 140px;
  position: relative;
}

.about-project-box::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 8px;
  background-color: var(--black);
  top: -70px;
  left: 0;
}

.home-about-slogan {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 100;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--black);
}

.about-project-box h2 {
  font-size: 26px;
  font-weight: 700;
  padding-bottom: 40px;
  color: var(--black);
}

.about-project-list {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-project-list li {
  margin-right: 40px;
}

.about-project-list a {
  font-size: 11px;
  line-height: 12px;
  text-transform: uppercase;
  padding-left: 68px;
  position: relative;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--black) !important;
}

.about-project-list a::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: var(--black);
  width: 50px;
  height: 1px;
  content: "";
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.about-project-list a:hover::before {
  -webkit-transform: rotate(30deg) scale(1.05);
  -ms-transform: rotate(30deg) scale(1.05);
  transform: rotate(30deg) scale(1.05);
}

/* ANASAYFA HAKKIMIZDA SON */

/* ANASAYFA SLOGAN */
.anim-button {
  overflow: hidden;
  max-width: 100%;
  outline: none;
  width: auto;
  position: relative;
  padding: 0 32px;
  line-height: 42px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  border: 1px solid var(--black);
  text-align: center;
  color: var(--black);
  z-index: 1;
}

.anim-button:hover {
  color: var(--white) !important;
}

.anim-button span {
  width: 100%;
  position: relative;
  top: 0;
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}

.anim-button i {
  top: -100%;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 42px;
  font-size: 16px;
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}

.anim-button:hover span {
  top: 100px;
}

.anim-button:hover i {
  top: 0;
}

.anim-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--black);
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  z-index: -1;
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  transition-delay: 200ms;
}

.anim-button:hover:before {
  width: 100%;
}

.btn-white {
  background-color: var(--white);
  color: var(--black);
}

.btn-white:hover {
  color: var(--black) !important;
}

.btn-white::before {
  background-color: var(--black) !important;
}

.home-slogan {
  position: relative;
  overflow: hidden !important;
}

.home-slogan-bg {
  background-image: url(../img/slogan.jpg);
  position: absolute;
  left: 0;
  width: 100%;
  height: 150%;
  top: 0;
  background-size: cover;
  background-attachment: scroll;
  background-position: center;
  background-repeat: repeat;
  background-origin: content-box;
  -webkit-transition: all .1s;
  -o-transition: all .1s;
  transition: all .1s;
}

.home-slogan-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
}

.slogan {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  margin-bottom: 40px;
}

.slogan p {
  margin: 0;
  width: 480px;
  padding-bottom: 40px;
  color: var(--white);
  letter-spacing: -2px;
  font-weight: bold;
  font-size: 2.75rem;
  line-height: 1.2;
}

/* ANASAYFA SLOGAN SON */



.head-title-contect {
  position: relative;
  padding-left: 36px;
  max-width: 360px;
  margin-bottom: 50px;
  text-transform: capitalize;
}

.head-title {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
  line-height: 1.2;
}

.head-desc {
  margin: 0;
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
}

.head-title-contect::after {
  background-color: #ddd;
  width: 1px;
  height: 140%;
  position: absolute;
  left: 0;
  top: -18%;
  content: "";
}

.home-project-item {
  position: relative;
}

.home-project-item::after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, .4);
  content: "";
}

.project-info {
  position: absolute;
  bottom: 0;
  z-index: 10;
  left: -155px;
  z-index: 2;
  max-width: 550px;
  -webkit-transition: all .1s;
  -o-transition: all .1s;
  transition: all .1s;
}

.project-name {
  font-weight: 500;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 12px;
  position: relative;
  text-transform: uppercase;
}

.project-name a {
  color: var(--black) !important;
  z-index: 2;
  position: relative;
}

.project-name::after {
  content: '';
  position: absolute;
  top: -5px;
  bottom: -10px;
  width: 1px;
  -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  right: -100px;
  background: #ccc;
  z-index: 1;
}

.project-desc {
  margin-bottom: 18px;
  line-height: 1.5;
}

.project-name:hover::after {
  width: 140%;
  opacity: 0.4;
}

.home-project .container .row:nth-child(odd) {
  margin: 120px 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.home-project .container .row:nth-child(odd) .home-project-item .project-info {
  right: -155px !important;
  left: inherit;
}

.referances-slider {
  width: 100%;
  overflow: hidden;
}

.referances-slider-row {
  width: 2140px;
  height: 90px;
  background-image: url(../img/referances.jpg);
  background-size: 2140px 90px;
  background-repeat: repeat-x;
  -webkit-animation: slide 80s linear infinite;
  animation: slide 80s linear infinite;
}

@-webkit-keyframes slide {
  from {
    background-position-x: 0;
  }

  to {
    background-position-x: -2140px;
  }
}

@keyframes slide {
  from {
    background-position-x: 0;
  }

  to {
    background-position-x: -2140px;
  }
}

.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 80px 0;
}

.footer .yeras-logo {
  margin-bottom: 20px;
}

.footer-logo {
  max-width: 360px;
  font-size: 12px;
}

.footer-logo .logo-holder {
  margin-bottom: 20px;
}

.footer-logo p {
  margin: 0;
}

.widget {
  font-size: 12px;
  min-height: 180px;
}

.widget-title {
  line-height: 12px;
  text-transform: uppercase;
  padding-left: 63px;
  position: relative;
  font-weight: 700;
  letter-spacing: 2px;
  width: 100%;
  margin-bottom: 36px;
  cursor: default;
}

.widget-title::before {
  height: 1px;
  width: 45px;
  background-color: var(--white);
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.widget:hover .widget-title::before {
  -webkit-transform: rotate(30deg) scale(1.05);
  -ms-transform: rotate(30deg) scale(1.05);
  transform: rotate(30deg) scale(1.05);
}

.widget-item {
  line-height: 1.2;
  margin-bottom: 15px;
}

.widget-item a {
  color: var(--white);
}

.widget-item a:hover {
  text-decoration: underline !important;
}


.copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  padding-top: 20px;
  border-top: 1px solid #fff;
}

.copyright>p {
  margin: 0;
}

.webmaxi a {
  color: var(--white);
}

.webmaxi {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.webmaxi a {
  color: var(--white);
  font-size: 22px;
}

.webmaxi span {
  margin-top: 2px;
}


















.page-banner {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner .parallax {
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 160%;
  width: 100%;
  -webkit-transition: all .1s;
  -o-transition: all .1s;
  transition: all .1s;
}

.page-banner::before {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .35);
  top: 0;
  left: 0;
  content: "";
  z-index: 2;
}

.page-banner h1 {
  color: var(--white);
  position: relative;
  z-index: 2;
  font-size: 58px;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
  padding: 350px 0 60px 0;
}



.page-info {
  margin-bottom: 90px;
  text-align: center;
}

.page-title {
  font-size: 34px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}


.project-list-img {
  display: block;
  position: relative;
  -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  overflow: hidden;
  aspect-ratio: 1020/675;
}

.project-list-img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  content: "";
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
  z-index: 2;
}

.project-list-img:hover::before {
  background-color: rgba(0, 0, 0, .3);
}

.project-list-img img {
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.project-list-item:hover .project-list-img img {
  -webkit-transform: scale(1.12);
  -ms-transform: scale(1.12);
  transform: scale(1.12);
}



.project-list-info {
  padding: 20px;
}

.project-list-name {
  font-weight: 700;
  margin-bottom: 5px;
}

.project-list-city {
  display: block;
  color: var(--grey);
  font-size: 14px;
}



.sec-title {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  padding-left: 40px;
  padding-right: 20px;
}

.sec-title span {
  width: 100%;
  padding-top: 10px;
  color: #999;
  text-align: left;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 11px;
  line-height: 2;
  display: block;
}

.sec-title:before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 120px;
  background: #eee;
  top: 50%;
  margin-top: -60px;
}

.project-table table {
  padding-left: 40px;
  padding-right: 20px;
  display: block;
  margin-top: 40px;
  padding-top: 30px;
  position: relative;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.project-table table::before {
  position: absolute;
  top: 0;
  left: 40px;
  height: 5px;
  width: 80px;
  background-color: var(--black);
  content: "";
}

.project-table table {
  color: #999;
}

.project-table table tr {
  line-height: 2.5;
}

.project-table table tr td:nth-child(1) {
  padding-right: 8px;
  position: relative;
}

.project-table table tr td:nth-child(1)::before {
  content: ":";
  position: absolute;
  right: 0;
}

.project-table table tr td:nth-child(2) {
  color: var(--black);
  padding-left: 8px;
}

sup {
  font-size: .7rem;
}


.project-detail {
  font-size: 13px;
}

.project-detail h1 {
  text-align: left;
  font-weight: 800;
  width: 100%;
  text-transform: uppercase;
  padding-bottom: 28px;
  line-height: 34px;
  font-size: 26px;
}


.list {
  list-style: square;
  font-weight: 500;
}

.list li {
  padding: 6px 0 6px 8px;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  margin-left: 14px;
}

.references img {
  padding: 0 20px;
}

.mail {
  text-transform: lowercase !important;
  text-decoration: underline;
  line-height: 1;
}


@media only screen and (max-width: 1400px) {
  .project-name {
    font-size: 32px;
    max-width: 430px;
  }

}

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 991px) {
  .project-detail {
    margin-top: 30px;
  }

  .main-footer, .nav-holder nav {
    display: none;
  }

  .content-holder {
    left: 0;
  }

  .header {
    padding-left: 20px;
  }

  .footer-logo {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .home-about-img {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    margin-bottom: 40px;
  }

  .project-info {
    left: 0;
    max-width: 100%;
    position: relative;
    top: 30px;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }

  .home-project .container .row:nth-child(odd) .home-project-item .project-info {
    right: initial;
    left: 0;
  }

  .hero-style .slide-title {
    font-size: 3rem;
    letter-spacing: -1px;
  }

  .project-name {
    font-size: 22px;
    max-width: 100%;
  }

  .project-name::after {
    display: none;
  }

  .footer {
    padding: 80px 0 20px 0;
  }

  .copyright {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 6px;
  }

  .responsive-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

}

@media only screen and (max-width: 767px) {

  .slogan p {
    width: 100%;
    padding-bottom: 40px;
    letter-spacing: -1px;
    font-size: 2rem;
  }

  .hero-style .slide-title {
    font-size: 2.5rem;
  }

  .page-banner h1 {
    font-size: 40px;
    padding: 270px 0 60px 0;
  }

  :root {
    --padding: 80px;
  }

  .page-banner .parallax {
    height: 175%;
  }

}

@media only screen and (max-width: 577px) {
  .hero-style .slide-title {
    font-size: 2.25rem;
  }

  .slide-inner .container {
    margin-left: 20px !important;
  }
}


@media only screen and (max-width: 480px) {
  .hero-style .slide-title {
    font-size: 2rem;
  }

  .lang-show {
    width: 70px;
  }

  .lang-show span {
    display: none;
  }
}

.contact-head {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
}

.contact-list li {
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
}

.contact-list {
  margin-top: 15px;
  font-size: 11px;
}

.contact-list li span {
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
  min-width: 75px;
  display: inline-block;
  color: #999;
}

.contact-list li span::after {
  content: ":";
  position: absolute;
  right: 0;
}