@font-face {
    font-family: "SourceSansPro-Regular";
    src: url("fonts/SourceSansPro-Regular.eot");
    src: local("☺"), url("fonts/SourceSansPro-Regular.woff") format("woff"),
      url("fonts/SourceSansPro-Regular.ttf") format("truetype"),
      url("fonts/SourceSansPro-Regular.svg") format("svg");
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: "BPG 2017 DejaVuSans";
    src: url("fonts/BPG 2017 DejaVuSans.eot");
    src: local("☺"), url("fonts/BPG 2017 DejaVuSans.woff") format("woff"),
      url("fonts/BPG 2017 DejaVuSans.ttf") format("truetype"),
      url("fonts/BPG 2017 DejaVuSans.svg") format("svg");
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: "BPG 2017 DejaVu Sans Caps";
    src: url("fonts/BPG 2017 DejaVu Sans Caps.eot");
    src: local("☺"), url("fonts/BPG 2017 DejaVu Sans Caps.woff") format("woff"),
      url("fonts/BPG 2017 DejaVu Sans Caps.ttf") format("truetype"),
      url("fonts/BPG 2017 DejaVu Sans Caps.svg") format("svg");
    font-weight: normal;
    font-style: normal;
  }
  
  :root {
    --main-width: 1170px;
    --color-gray: rgb(182, 185, 193);
    --color-blue: rgb(17, 78, 246);
    --color-yellow: rgb(242, 224, 97);
    --color-red: rgb(234, 87, 87);
    --color-black: rgb(0, 0, 0);
    --color-white: rgb(255, 255, 255);
  }
  
  html:lang(ka) {
    font-family: "BPG 2017 DejaVuSans";
  }
  
  html:lang(en) {
    font-family: "SourceSansPro-Regular";
  }
  
  * {
    box-sizing: border-box;
  }
  
  body,
  html {
    margin: 0;
    padding: 0;
  }
  
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: rgb(182, 185, 193);
  }
  
  ul,
  li,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  body.preloader-site {
    overflow: hidden;
  }
  
  .preloader-wrapper {
    height: 100%;
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
  }
  
  .preloader-wrapper .preloader {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 200px;
  }
  
  .page-lines {
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    display: flex;
    justify-content: center;
  }
  .page-lines .wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .page-lines .wrapper > div {
    border-right: 1px solid #888;
    opacity: 0.15;
  }
  .page-lines .wrapper > div:first-child {
    border-left: 1px solid #888;
  }
  a {
    text-decoration: none;
    -webkit-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
  }
  
  .entry-text {
    font-size: 20px;
    color: #747474;
    font-weight: normal;
    text-align: left;
  }
  
  .wrapper {
    width: var(--main-width);
  }
  
  header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1000;
  }
  header nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 60px;
    top: 30px;
    left: 0;
    padding: 0 10px;
  }
  header nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: var(--main-width);
  }
  header nav .logo {
    /*visibility: hidden;*/
  }
  header nav .logo img {
    max-height: 40px;
  }
  header nav ul li {
    position: relative;
    float: left;
    margin-left: 60px;
  }
  
  header nav ul li:last-child {
    padding-left: 20px;
    margin-left: 20px;
  }
  
  header nav ul li:last-child::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 1px;
    height: 13px;
    background-color: var(--color-blue);
  }
  
  header nav ul li:last-child a {
    color: #fff;
  }
  
  header nav ul li > a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.32em;
    padding-bottom: 15px;
  }
  html:lang(ka) header nav ul li a {
    font-family: "BPG 2017 DejaVu Sans Caps";
    font-size: 11px;
  }
  header nav ul li.active > a,
  header nav ul li > a:hover {
    color: var(--color-blue);
  }
  
  /* dropdown */
  header nav ul .responsive {
    display: none;
  }
  header nav ul li > div {
    display: flex;
    opacity: 0;
    visibility: hidden;
    flex-flow: column;
    position: absolute;
    top: 60%;
    left: -20px;
    background-color: white;
    min-width: 250px;
    height: auto;
  
    box-shadow: 0 15px 35px rgb(0 0 0 / 10%);
    background: rgba(255, 255, 255, 0.95);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  header nav ul li > div a {
    color: #000;
    font-size: 12px;
    font-weight: lighter;
    text-transform: uppercase;
    padding: 15px;
    letter-spacing: 0.12em;
    opacity: 0.8;
    white-space: nowrap;
  }
  header nav ul li > div .line {
    width: 100%;
    height: 1px;
    background-color: #ececec;
  }
  header nav ul li > div a:hover {
    color: var(--color-blue);
  }
  
  header nav ul li > div a.active {
    color: var(--color-blue);
  }
  header nav ul li:hover div {
    opacity: 1;
    visibility: visible;
    top: 30px;
  }
  header nav.fixed {
    position: fixed;
    z-index: 1000;
    top: 0px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  }
  header nav.fixed .logo {
    /*visibility: visible;*/
  }
  header nav.fixed ul li > a {
    color: #000;
  }
  header nav.fixed ul li.active > a,
  header nav.fixed ul li > a:hover {
    color: var(--color-blue);
  }
  
  /* left header */
  header .leftArea {
    position: absolute;
    width: 60px;
    height: 100vmin;
  }
  
  header .leftArea.medium {
    height: 80vmin;
  }
  
  header .leftArea.hide {
    display: none;
  }
  
  header .leftArea .socials {
    position: absolute;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    bottom: 0;
    padding-top: 185px;
    text-align: center;
  }
  header .leftArea .socials p {
    font-size: 10px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #c5c4c2;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    margin: auto;
  }
  header .leftArea .socials .line {
    width: 1px;
    height: 50px;
    background-color: #c5c4c2;
    margin: auto;
    margin-bottom: 30px;
  }
  header .leftArea .socials ul {
    width: 100%;
    float: left;
    align-items: center;
    justify-content: center;
  }
  header .leftArea .socials li {
    width: 100%;
    float: left;
    text-align: center;
    margin-bottom: 35px;
  }
  header .leftArea .socials li a {
    font-size: 22px;
    color: #c5c4c2;
  }
  header .leftArea .socials li a:hover {
    color: var(--color-blue);
  }
  header .burgerMenu {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 10px;
    z-index: 1000000;
    transition: all 3s linear;
  }
  header .burgerMenu > div {
    width: 35px;
    height: 3px;
    background-color: white;
    margin: 6px 0;
  }
  header nav.fixed .burgerMenu > div,
  header .showBackround .burgerMenu > div {
    background-color: var(--color-blue);
  }
  
  /* main section */
  main {
    position: relative;
    width: 100%;
    float: left;
  }
  /* slider */
  main .mainSlider {
    position: relative;
    width: 100%;
    height: 100vmin;
  }
  main .owl-carousel {
    width: 100%;
    float: left;
  }
  main .owl-carousel .item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vmin;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  
  main .owl-carousel .item .container {
    display: none;
    flex-flow: column;
    align-items: flex-end;
    justify-content: center;
    width: var(--main-width);
    position: relative;
    z-index: 2;
  }
  main .owl-carousel .owl-item.active .item .container {
    display: flex;
    overflow: hidden;
  }
  main .owl-carousel .item .title {
    width: 100%;
    text-align: right;
    font-size: 38px;
    white-space: normal;
    text-transform: uppercase;
    color: #fff;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
  }
  html[lang="ka"] main .owl-carousel .item .title {
    font-family: "BPG 2017 DejaVu Sans Caps";
  }
  main .owl-carousel .item .title > span {
    margin-left: 25px;
  }
  main .owl-carousel .item .title > span > span {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: spacingTitle;
    animation-name: spacingTitle;
  }
  main .owl-carousel .item .title > span > span > span {
    display: inline-block;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: rotateTitle;
    animation-name: rotateTitle;
  }
  main .owl-carousel .item .description {
    max-width: 50%;
    color: var(--color-white);
    font-size: 16px;
    line-height: 30px;
    margin-top: 20px;
    text-align: right;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
  }
  main .owl-carousel .item .actions {
    margin-top: 20px;
    width: auto;
  
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
  }
  main .owl-carousel .item .actions a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    color: var(--color-white);
    letter-spacing: 1px;
    border-style: none;
    background-color: rgba(0, 0, 0, 0);
    background-image: url("../img/arrow-next.png");
    background-repeat: no-repeat;
    background-position: center right 20px;
    padding: 0 48px 0 20px;
    font-size: 14px;
    white-space: nowrap;
    text-transform: uppercase;
    background-color: var(--color-blue);
    opacity: 0.8;
    border-radius: 30px;
  }
  main .owl-carousel .item .actions a:hover {
    opacity: 1;
  }
  html:lang(ka) main .owl-carousel .item .actions a {
    font-family: "BPG 2017 DejaVu Sans Caps";
    font-size: 12px;
  }
  /**/
  
  /* main .owl-carousel .item .image {
    width: 140%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 2s;
  } */
  main .owl-carousel .owl-item.active .item .image {
    width: 100%;
  }
  
  main .owl-carousel .owl-item .item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.4);
  }
  
  main .owl-carousel .item .grids {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-position: center center;
    background-size: cover;
  }
  main .owl-carousel .owl-item.active .item .grids .ItemCont {
    /* opacity: 0; */
  }
  main .owl-carousel .owl-item.active .item .grids .ItemCont {
    width: 100%;
    height: 100%;
    opacity: 1;
  
    transition: all 3s;
    -webkit-transition: all 3s;
    -moz-transition: all 3s;
    -ms-transition: all 3s;
    -o-transition: all 3s;
  
    overflow: hidden;
    position: relative;
    animation: Border 4s forwards;
    -webkit-animation: Border 4s forwards;
  }
  main .owl-carousel .owl-item.active .item .master {
    position: absolute;
    height: 100%;
    width: calc(100vw + 7px);
    left: 0;
    top: 0;
  }
  @keyframes Border {
    0% {
      border-left: 1px solid rgba(182, 185, 193, 1);
      opacity: 1;
    }
    70% {
      border-left: 1px solid rgba(182, 185, 193, 0.3);
      opacity: 1;
    }
    100% {
      border-left: 1px solid rgba(182, 185, 193, 0);
      opacity: 0;
    }
  }
  main .owl-carousel .item .grids .ItemCont img {
    height: 100%;
    position: absolute;
    width: 100vw;
  }
  main .owl-carousel .owl-item.active .item .grids .ItemCont:nth-child(1) img {
    animation: mainSliderMove1 3s forwards;
    -webkit-animation: mainSliderMove1 3s forwards;
  }
  main .owl-carousel .owl-item.active .item .grids .ItemCont:nth-child(2) img {
    animation: mainSliderMove2 3s forwards;
    -webkit-animation: mainSliderMove2 3s forwards;
  }
  main .owl-carousel .owl-item.active .item .grids .ItemCont:nth-child(3) img {
    animation: mainSliderMove3 3s forwards;
    -webkit-animation: mainSliderMove3 3s forwards;
  }
  main .owl-carousel .owl-item.active .item .grids .ItemCont:nth-child(4) img {
    animation: mainSliderMove4 3s forwards;
    -webkit-animation: mainSliderMove4 3s forwards;
  }
  main .owl-carousel .owl-item.active .item .grids .ItemCont:nth-child(5) img {
    animation: mainSliderMove5 3s forwards;
    -webkit-animation: mainSliderMove5 3s forwards;
  }
  main .owl-carousel .owl-item.active .item .grids .ItemCont:nth-child(6) img {
    animation: mainSliderMove6 3s forwards;
    -webkit-animation: mainSliderMove6 3s forwards;
  }
  main .owl-carousel .owl-item.active .item .grids .ItemCont:nth-child(7) img {
    animation: mainSliderMove7 3s forwards;
    -webkit-animation: mainSliderMove7 3s forwards;
  }
  
  @keyframes mainSliderMove1 {
    from {
      left: 0;
    }
    to {
      left: 0;
    }
  }
  @keyframes mainSliderMove2 {
    from {
      left: 0;
    }
    to {
      left: -100%;
    }
  }
  @keyframes mainSliderMove3 {
    from {
      left: 0;
    }
    to {
      left: -200%;
    }
  }
  @keyframes mainSliderMove4 {
    from {
      left: 0;
    }
    to {
      left: -300%;
    }
  }
  @keyframes mainSliderMove5 {
    from {
      left: 0;
    }
    to {
      left: -400%;
    }
  }
  @keyframes mainSliderMove6 {
    from {
      left: 0;
    }
    to {
      left: -500%;
    }
  }
  @keyframes mainSliderMove7 {
    from {
      left: 0;
    }
    to {
      left: -600%;
    }
  }
  
  main .mainSlider .arrows {
    position: absolute;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    padding: 0 5%;
    width: 100%;
    float: left;
    left: 0;
    top: 44%;
    z-index: 100;
  }
  main .mainSlider .arrows .arrow {
    text-transform: uppercase;
    background: none;
    border: none;
    color: #fff;
    padding: 5px;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    opacity: 0.4;
    transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -webkit-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
  }
  
  main .mainSlider .arrows .arrow:hover {
    opacity: 1;
  }
  
  main h1.title {
    margin: 90px 0 60px 0;
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    text-transform: uppercase;
    color: #3d3d3d;
    letter-spacing: 2px;
  }
  html:lang(ka) main h1.title {
    font-family: "BPG 2017 DejaVu Sans Caps";
  }
  
  html:lang(ka) main .contact h1.title {
    font-size: 32px;
  }
  
  main h1.title span {
    margin-left: 20px;
  }
  main h1.title span:first-child {
    margin-left: 0;
  }
  main h1.title span:last-child {
    color: var(--color-blue);
  }
  
  /* clients */
  main .clients {
    position: relative;
    width: 100%;
    float: left;
  }
  
  main .clients #clientSlider {
    width: 100%;
    float: left;
  }
  
  main .clients #clientSlider .owl-item {
    display: flex;
    height: 90px;
    align-items: center;
    justify-content: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  main .clients #clientSlider .clientItem {
    width: auto;
    height: 90px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  main .clients #clientSlider .clientItem img {
    max-width: 70%;
    max-height: 90px;
    float: left;
    transition: opacity 0.5s ease-in-out;
  }
  
  main .clients #clientSlider .clientItem img:hover {
  }
  
  main .clients #clientSlider .clientItem a {
    display: block;
    width: auto;
    float: left;
  }
  
  main .clients .clientContainer {
    max-width: var(--main-width);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin: auto;
  }
  main .clients .clientContainer img {
    width: 170px;
    height: 30px;
    margin: 30px;
    opacity: 0.3;
    transition: opacity 0.5s ease-in-out;
  }
  main .clients .clientContainer img:hover {
    opacity: 1;
  }
  
  .background-text {
    font-weight: 700;
    font-size: 7.8em;
    line-height: 1;
    color: #000;
    position: absolute;
    left: 10%;
    top: 40px;
    z-index: 1;
    opacity: 0.03;
    /*-webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);*/
  }
  
  .background-text.right {
    left: auto;
    right: 10%;
  }
  
  /*Projects */
  main .ourProjects,
  main .ourServices {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
  }
  
  /* Our Projects Item Component start */
  .projectsItem {
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }
  .projectsItem .itemImage {
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    background-position: center;
    background-size: cover;
    -webkit-transition: all 8s linear;
    -moz-transition: all 8s linear;
    -ms-transition: all 8s linear;
    -o-transition: all 8s linear;
    transition: all 8s linear;
  }
  .projectsItem .itemImage::before {
    background-color: rgba(0, 0, 0, 0.6);
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .projectsItem h3 {
    font-weight: 400;
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    position: absolute;
    top: 50px;
    left: 50px;
    max-width: 60%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  
  .projectsItem h3 span {
    text-transform: lowercase;
  }
  
  html:lang(ka) .projectsItem h3 {
    font-family: "BPG 2017 DejaVu Sans Caps";
    font-size: 20px;
  }
  .projectsItem p {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    position: absolute;
    margin: 0;
    bottom: 50px;
    left: 50px;
    letter-spacing: 10px;
    writing-mode: tb-rl;
    transform: rotate(-180deg);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  html:lang(ka) .projectsItem p {
    font-family: "BPG 2017 DejaVu Sans Caps";
    font-size: 12px;
  }
  .projectsItem:hover .itemImage {
    transform: scale(1.5);
  }
  .projectsItem:hover .itemImage::before {
    background-color: rgba(0, 0, 0, 0);
  }
  .projectsItem:hover h3 {
    top: 80px;
    opacity: 0;
  }
  .projectsItem:hover p {
    letter-spacing: 25px;
    opacity: 0;
  }
  main .ourProjects .arrowsProjects .arrow {
    position: absolute;
    top: calc(50% + 50px);
    z-index: 2;
    text-transform: uppercase;
    background: none;
    border: none;
    color: #fff;
    outline: none;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    opacity: 0.7;
  }
  html:lang(ka) main .arrowsProjects .arrow {
    font-family: "BPG 2017 DejaVu Sans Caps";
  }
  main .ourProjects .arrow#backProjects {
    left: 0;
    margin: 0 0 0 50px;
  }
  main .ourProjects .arrowsProjects #nextProjects {
    right: 0;
    margin: 0 50px 0 0;
  }
  main .ourProjects .arrow#backProjects::before {
    content: "";
    width: 15px;
    margin-right: 10px;
    height: 12px;
    opacity: 0.7;
    background-image: url("../img/arrow-prew.png");
    background-repeat: no-repeat;
    transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -webkit-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
  }
  main .ourProjects .arrow#nextProjects::after {
    content: "";
    width: 15px;
    height: 12px;
    opacity: 0.7;
    margin-left: 10px;
    background-image: url("../img/arrow-next.png");
    background-repeat: no-repeat;
    transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -webkit-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
  }
  main .ourProjects .arrow#backProjects:hover::before {
    opacity: 1;
  }
  main .ourProjects .arrow#backProjects:hover {
    opacity: 1;
  }
  main .ourProjects .arrowsProjects #nextProjects:hover::after {
    opacity: 1;
  }
  main .ourProjects .arrowsProjects #nextProjects:hover {
    opacity: 1;
  }
  
  /**/
  main .head {
    position: relative;
    display: flex;
    width: 100%;
    flex-flow: column;
    justify-content: flex-end;
    align-items: center;
    height: 400px;
    float: left;
    z-index: -2;
    padding-bottom: 100px;
    background-color: #171717;
    background-size: cover;
    background-position: 50% 0;
    background-repeat: no-repeat;
  }
  
  main .head.medium {
    height: 80vmin;
    justify-content: center;
  }
  
  main .head::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: #171717;
    opacity: 0.6;
    z-index: 1;
  }
  main .head h1 {
    width: var(--main-width);
    color: #fff;
    margin: 0;
    padding: 0;
    z-index: 2;
    font-weight: 400;
    font-size: 32px;
    letter-spacing: 10px;
    text-transform: uppercase;
    text-align: right;
  }
  
  main .head h1 span {
    text-transform: lowercase;
  }
  
  html:lang(ka) main .head h1 {
    font-family: "BPG 2017 DejaVu Sans Caps";
    letter-spacing: 5px;
    font-size: 32px;
  }
  
  main .head ul {
    width: var(--main-width);
    display: flex;
    flex-flow: row;
    justify-content: flex-end;
    margin-top: 30px;
    z-index: 3;
  }
  
  main .head ul li {
    color: #fff;
    margin-left: 30px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
  }
  
  html:lang(ka) main .head ul li {
    font-family: "BPG 2017 DejaVu Sans Caps";
    font-size: 12px;
    letter-spacing: 2px;
  }
  
  main .head ul li span {
    color: var(--color-blue);
  }
  
  main .content {
    width: 100%;
    float: left;
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  
  /* Services */
  main .content #services {
    width: 100%;
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0;
  }
  main .serviceItem {
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    width: 100%;
    padding: 40px 20px;
    min-height: 300px;
    border: 1px solid transparent;
    background-size: cover;
    background-position: 50% 0% !important;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none;
  }
  
  main .serviceItem .image {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: 50% 0% !important;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  
  main .serviceItem::before {
    opacity: 0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: rgba(12, 12, 12, 0.5);
  
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  
  main .serviceItem:hover::before,
  main .serviceItem:active::before,
  main .serviceItem:focus::before,
  main .serviceItem:visited::before,
  main .serviceItem.active::before {
    opacity: 0;
  }
  main .serviceItem:hover .image,
  main .serviceItem:active .image,
  main .serviceItem:focus .image,
  main .serviceItem:visited .image,
  main .serviceItem.active .image {
    opacity: 1;
  }
  main .serviceItem h1 {
    position: relative;
    z-index: 3;
    margin: 0;
    padding: 0;
    font-size: 75px;
    line-height: 75px;
    font-weight: 400;
    font-family: "Teko", sans-serif;
    color: transparent;
    -webkit-text-stroke: 1px #999;
    opacity: 0.8;
    margin-bottom: 20px;
  }
  main .serviceItem h2 {
    position: relative;
    z-index: 3;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    color: var(--color-blue);
    font-size: 40px;
  }
  html:lang(ka) main .serviceItem h2 {
    font-size: 30px;
  }
  main .serviceItem p {
    position: relative;
    z-index: 3;
    margin: 0;
    padding: 0;
    font-weight: 400;
    color: #999;
  }
  main .serviceItem:hover h1 {
    -webkit-text-stroke: 1px #fff;
  }
  main .serviceItem:hover h2 {
    color: #fff;
  }
  main .serviceItem:hover p {
    color: #fff;
  }
  
  main .arrowsServices {
    position: absolute;
    width: 100%;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    padding: 0 20px;
    left: 0;
    bottom: 340px;
  }
  
  main .arrowsServices#arrowsClient {
    bottom: 100px;
  }
  
  main .arrowsServices .arrow {
    z-index: 2;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -webkit-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
  }
  
  main .arrowsServices .arrow:hover {
    opacity: 1;
  }
  
  /*Career*/
  main.career .content .wrapper,
  main.about .content .wrapper {
    margin-top: 100px;
  }
  
  main.career .careerItem {
    display: flex;
    flex-flow: column;
    border-bottom: 1px solid var(--color-gray);
    padding: 0 10px;
  }
  
  main.career .careerItem h2 {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    font-size: 16px;
    font-weight: normal;
    cursor: pointer;
  }
  
  main.career .careerItem h2::before {
    content: "\f0dd";
    position: absolute;
    right: 10px;
    top: 19px;
    font-family: "fontawesome";
    font-size: 16px;
    color: var(--color-blue);
  
    transition: all 0.5s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
  }
  
  main.career .careerItem.active h2::before {
    transform: rotate(180deg);
  }
  
  main.career .careerItem .content {
    display: none;
    width: 100%;
    padding: 0;
    color: #747474;
    font-size: 14px;
    padding: 0 40px 30px 0;
  }
  
  /*About page*/
  main.about .content h3 {
    width: 100%;
    float: left;
    margin: 100px 0 70px 0;
    text-align: left;
    font-weight: 400;
    color: #3d3d3d;
    font-size: 44px;
    font-weight: bold;
  }
  main.about .content .entry-text {
    width: 100%;
    float: left;
  }
  
  main.about .content .entry-text p {
    padding: 0;
    margin: 0;
  }
  
  /* Team*/
  main .content #team {
    width: 100%;
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 60px;
  }
  main .content #team .item {
    display: flex;
    flex-flow: column;
    text-align: center;
  }
  main .content #team .item .image {
    position: relative;
    width: 100%;
    height: 270px;
    margin-bottom: 20px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  main .content #team .item .image ul {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    background: rgba(197, 164, 126, 0.8);
  
    -webkit-animation-duration: 1s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
  }
  main .content #team .item .image ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 0 5px;
    border: 1px solid #eee;
    border-radius: 50%;
  }
  main .content #team .item .image ul a {
    color: #fff;
    font-weight: normal;
  }
  main .content #team .item h5 {
    color: #292929;
    font-size: 25px;
    font-weight: 400;
  }
  main .content #team .item h6 {
    color: #888;
    font-size: 14px;
    margin-top: 10px;
  }
  main .content #team .item:hover .image ul {
    display: flex;
  }
  main .content #team .item:hover h6 {
    color: var(--color-blue);
  }
  
  /* projects page start */
  main .content #project {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0;
    margin-top: 100px;
  }
  main .content #project .projectsItem {
    float: left;
  }
  /* projects page end*/
  
  /* project detail item start */
  main .content #projectDetail {
    width: var(--main-width);
    display: flex;
    flex-direction: column;
  }
  main .content #projectDetail .item {
    position: relative;
    margin: 100px 0 50px 0;
    width: 100%;
    height: 600px;
    color: white;
  }
  main .content #projectDetail .item .image {
    width: 780px;
    height: 100%;
    background-color: #cccccc;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    z-index: 1;
  }
  
  main .content #projectDetail .item .image .owl-item {
    width: 100%;
    height: 600px;
  }
  
  main .content #projectDetail .item .image .slide {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  
  main .content #projectDetail .item .image .owl-nav {
    position: absolute;
    z-index: 100;
    right: 20px;
    bottom: 20px;
  }
  
  main .content #projectDetail .item .image .owl-nav button {
    background: none;
    border: none;
    color: #000;
    outline: none;
    cursor: pointer;
    opacity: 0.7;
    margin-left: 20px;
    float: left;
    transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -webkit-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
  }
  
  main .content #projectDetail .item .image .owl-nav button::after {
    content: "";
    width: 15px;
    height: 12px;
    float: left;
    opacity: 0.7;
    background-repeat: no-repeat;
  }
  
  main .content #projectDetail .item .image .owl-nav button:hover {
    opacity: 1;
  }
  
  main .content #projectDetail .item .image .owl-nav button.owl-prev::after {
    background-image: url(../img/arrow-prew-blue.png);
  }
  main .content #projectDetail .item .image .owl-nav button.owl-next::after {
    background-image: url(../img/arrow-next-blue.png);
  }
  
  main .content #projectDetail .item .description {
    width: 400px;
    height: 80%;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 20px;
  }
  main .content #projectDetail .item .description div {
    max-width: 70%;
    position: relative;
    margin-bottom: 20px;
    /*height: 40%;*/
  }
  main .content #projectDetail .item .description h1 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 26px;
    position: absolute;
    bottom: 0;
  }
  html:lang(ka) main .content #projectDetail .item .description h1 {
    font-family: "BPG 2017 DejaVu Sans Caps";
    font-size: 24px;
  }
  
  main .content #projectDetail .item .description .line {
    position: absolute;
    width: 200px;
    background-color: #ededed;
    height: 1px;
    top: 20%;
    left: -100px;
  }
  main .content #projectDetail .item .description p {
    font-weight: 400;
    font-size: 16px;
    max-width: 90%;
    margin: 0;
    letter-spacing: 1px;
    height: 60%;
    overflow: hidden;
  }
  main .content #projectDetail .item:nth-child(even) div:first-child {
    left: 0;
  }
  main .content #projectDetail .item:nth-child(even).animate div:last-child {
    -webkit-animation-duration: 1s;
    background-color: #212121;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: projectItemInRight;
    animation-name: projectItemInRight;
    animation-delay: 0.3s;
  }
  main .content #projectDetail .item:nth-child(odd) div:first-child {
    right: 0;
  }
  main .content #projectDetail .item:nth-child(odd).animate .description {
    background-color: var(--color-gray);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: projectItemLeft;
    animation-name: projectItemLeft;
    animation-delay: 0.3s;
    left: 0;
  }
  /* project detail item end
  
  /* contact */
  main .contact {
    position: relative;
    width: 100%;
    float: left;
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  
  main .contact .items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
  
  main .contact .item {
    width: 100%;
    background-color: inherit;
    overflow: hidden;
    /*border: 1px solid #efefef;*/
    padding: 30px;
    color: #777;
    font-size: 14px;
    transition: all 0.3s;
    text-align: center;
  }
  main .contact .item > div {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  /*main .contact .item .title div:first-child {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 0;
    top: 0;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-blue);
    font-size: 18px;
  }*/
  
  /*
  main .contact .item:hover .title div:first-child {
    background-color: var(--color-blue);
    color: #fff;
  }*/
  
  main .contact .item .title h2 {
    font-size: 22px;
    margin: 0;
    color: #3d3d3d;
    font-weight: 700;
  }
  
  main .contact .item .title h2 i {
    color: var(--color-blue);
    font-size: 18px;
    margin-right: 5px;
  }
  
  main .contact .item .title p {
    margin: 0;
    font-weight: 700;
    margin-top: 10px;
    color: var(--color-blue);
  }
  main .contact .item .description {
    display: flex;
    flex-flow: column;
    margin-top: 20px;
    position: relative;
  }
  
  main .contact .item .description address {
    font-style: normal;
    font-size: 16px;
    color: var(--color-blue) !important;
  }
  
  /* contact finish */
  
  /* footer */
  footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    float: left;
    font-size: 12px;
    padding: 60px;
  }
  footer > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  footer img {
    max-height: 40px;
  }
  footer .copyright {
    color: #aaa;
  }
  
  /* animation */
  @-webkit-keyframes slideInDown {
    from {
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
      visibility: visible;
    }
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes slideInDown {
    from {
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
      visibility: visible;
    }
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  @-webkit-keyframes slideInUp {
    from {
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
      visibility: visible;
    }
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes slideInUp {
    from {
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
      visibility: visible;
    }
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  @-webkit-keyframes slideInRight {
    from {
      -webkit-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0);
      visibility: visible;
    }
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes slideInRight {
    from {
      -webkit-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0);
      visibility: visible;
    }
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  @-webkit-keyframes projectItemInRight {
    from {
      opacity: 0;
      right: -30%;
      visibility: visible;
    }
    to {
      opacity: 1;
      right: 0;
    }
  }
  @keyframes projectItemInRight {
    from {
      opacity: 0;
      right: -30%;
      visibility: visible;
    }
    to {
      opacity: 1;
      right: 0;
    }
  }
  @-webkit-keyframes projectItemLeft {
    from {
      opacity: 0;
      left: -30%;
      visibility: visible;
    }
    to {
      opacity: 1;
      left: 0;
    }
  }
  @keyframes projectItemLeft {
    from {
      opacity: 0;
      left: -30%;
      visibility: visible;
    }
    to {
      opacity: 1;
      left: 0;
    }
  }
  @-webkit-keyframes rotateTitle {
    from {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      visibility: visible;
    }
    to {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
  @keyframes rotateTitle {
    from {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      visibility: visible;
    }
    to {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
  @-webkit-keyframes spacingTitle {
    from {
      padding-right: 30px;
    }
    to {
      padding-right: 10px;
    }
  }
  @keyframes spacingTitle {
    from {
      padding-right: 30px;
    }
    to {
      padding-right: 10px;
    }
  }
  @-webkit-keyframes slideInDown {
    from {
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes slideInDown {
    from {
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  .slideInDown {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
  }
  
  /**/
  @media only screen and (max-width: 1200px) {
    :root {
      --main-width: 100%;
    }
  
    * {
      /*-webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
      -webkit-touch-callout: none !important;
      -webkit-user-select: none !important;*/
    }
  
    .background-text {
      display: none;
    }
  
    body.noscroll {
      position: fixed;
      overflow: hidden;
    }
  
    main .content #projectDetail .item .image .owl-nav button::after {
      opacity: 1;
    }
  
    /**/
    header nav ul {
      display: none;
      flex-flow: column;
      float: left;
      width: 100%;
      height: auto;
      margin-top: 30px;
    }
  
    header nav ul li {
      width: 100%;
      margin: 0;
      padding: 0 15px;
      border-top: 1px solid #ececec;
    }
  
    header nav ul li a {
      -webkit-transition: inherit;
      -o-transition: inherit;
      transition: inherit;
    }
  
    header nav ul li:last-child {
      padding: 0;
      padding: 0 15px;
      margin-left: 0;
    }
  
    header nav ul li:last-child::before {
      display: none;
    }
  
    header nav ul li a {
      float: left;
      padding: 10px 0;
      font-size: 12px;
    }
  
    header nav ul li.active {
      background-color: var(--color-blue);
    }
  
    header nav ul li.active a {
      color: #fff !important;
    }
  
    header nav ul li.active.active2 {
      background-color: transparent;
    }
  
    header nav ul li.active.active2 a {
      color: #000 !important;
    }
  
    header nav.active {
      display: flex;
      align-items: flex-start;
      height: 100%;
    }
  
    header nav.active ul {
      display: flex;
    }
    header nav .container {
      float: left;
      flex-flow: column;
      justify-content: flex-start;
      align-items: flex-start;
      padding: 8px 0;
    }
    header nav ul li:hover div {
      visibility: hidden;
    }
    header nav ul .responsive {
      display: block;
      padding-left: 30px;
    }
  
    header .burgerMenu {
      display: block;
    }
  
    main .head {
      height: 375px;
      align-items: flex-end;
    }
  
    main .head.medium {
      height: 375px;
      justify-content: flex-end;
    }
  
    main .head h1 {
      font-size: 22px;
      max-width: 90%;
    }
  
    html:lang(ka) main .head h1 {
      font-size: 22px;
    }
  
    main .head ul {
      flex-flow: column;
      align-items: flex-end;
    }
  
    main .head ul li {
      font-size: 11px;
      margin-top: 3px;
    }
  
    main .head ul li:first-child {
      margin-top: 0;
    }
  
    html:lang(ka) main .head ul li {
      font-size: 11px;
    }
  
    main .content {
      padding: 0 15px;
    }
  
    main h1.title {
      font-size: 28px;
      margin: 40px 0 40px 0;
    }
  
    html:lang(ka) main h1.title {
      font-size: 28px;
    }
  
    html:lang(ka) main .contact h1.title {
      font-size: 28px;
    }
  
    main .arrowsServices#arrowsClient {
      bottom: 40px;
    }
  
    header .leftArea {
      height: 375px;
    }
  
    header .leftArea .socials > div {
      display: none;
    }
  
    header .leftArea .box {
      height: 24.7vmin;
    }
  
    header .leftArea.home .box {
      height: 40.7vmin;
    }
  
    header .leftArea.home .socials > div {
      display: block;
    }
  
    /**/
    main .owl-carousel .item .title {
      font-size: 22px;
      margin-right: 10px;
    }
  
    main .owl-carousel .item .title > span {
      margin-left: 10px;
    }
  
    main .owl-carousel .item .title > span > span {
      -webkit-animation-duration: unset;
      animation-duration: unset;
      -webkit-animation-fill-mode: none;
      animation-fill-mode: none;
      -webkit-animation-name: none;
      animation-name: none;
    }
  
    main .owl-carousel .item .title > span > span > span {
      display: inline-block;
      -webkit-animation-duration: unset;
      animation-duration: unset;
      -webkit-animation-fill-mode: none;
      animation-fill-mode: none;
      -webkit-animation-name: none;
      animation-name: none;
    }
  
    main .owl-carousel .item .description {
      max-width: 80%;
      margin-right: 10px;
    }
  
    main .owl-carousel .item .actions {
      margin-right: 10px;
    }
  
    /* arrow */
    main .mainSlider .arrows {
      width: 100%;
      left: 0;
      top: calc(100% - 60px);
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: space-between;
      padding-left: 19.735vmin;
    }
    /**/
    main .serviceItem {
      height: 380px;
    }
    main .serviceItem::after {
      opacity: 0;
    }
    main .serviceItem::before {
      opacity: 1;
    }
  
    main .serviceItem:hover::before,
    main .serviceItem:active::before,
    main .serviceItem:focus::before,
    main .serviceItem.active::before {
      opacity: 0;
    }
  
    main .serviceItem h1 {
      -webkit-text-stroke: 1px #fff;
    }
    main .serviceItem h2 {
      color: #fff;
    }
    main .serviceItem p {
      color: #fff;
    }
  
    main .owl-carousel .item .grids {
      display: none;
      grid-template-columns: repeat(7, 1fr);
      grid-gap: 0;
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      background-position: center center;
      background-size: cover;
    }
  
    main .owl-carousel .owl-item.active .item .grids .ItemCont {
    }
  
    .owl-carousel#mainCarousel .owl-item img {
      display: none !important;
    }
    main .owl-carousel .item .grids .ItemCont img {
      width: auto;
      height: 100%;
    }
    main .owl-carousel .owl-item.active .item .master {
      width: auto;
      height: 100%;
      display: none !important;
    }
  
    /**/
    main .content #team {
      grid-template-columns: 1fr;
      margin-top: 0;
    }
  
    main .contact .items {
      grid-template-columns: 1fr;
      grid-gap: 0;
    }
  
    /**/
    main .content #projectDetail .item {
      width: 100%;
      height: auto;
      float: left;
      margin: 40px 0 0 0;
    }
  
    main .content #projectDetail .item .image {
      position: relative;
      width: 100%;
      height: 320px;
      float: left;
    }
    main .content #projectDetail .item .image .slide {
      height: 320px;
    }
    main .content #projectDetail .item .description {
      position: relative;
      width: 100%;
      height: auto;
      float: left;
      margin-top: 20px;
      padding: 20px 10px;
      transform: none;
    }
  
    main .content #projectDetail .item .description .line {
      display: none;
    }
  
    main .content #projectDetail .item .description div {
      width: 100%;
      height: auto;
      float: left;
      margin: 0;
    }
  
    main .content #projectDetail .item .description h1 {
      position: relative;
      font-size: 18px;
    }
  
    html:lang(ka) main .content #projectDetail .item .description h1 {
      font-size: 18px;
    }
  
    main .content #projectDetail .item .description p {
      font-size: 14px;
      margin-top: 10px;
      height: auto;
      overflow: visible;
    }
  
    /**/
    main .content #services {
      grid-template-columns: 1fr;
      margin-top: 50px;
    }
  
    /**/
    main .content #project {
      grid-template-columns: repeat(1, 1fr);
      margin-top: 50px;
    }
  
    main .contact .item {
      padding: 0 30px 30px 30px;
    }
  
    main.career .content .wrapper,
    main.about .content .wrapper {
      margin-top: 50px;
    }
  
    /**/
    footer {
      padding: 20px 0 20px 0;
    }
    footer > div {
      flex-flow: column;
    }
  
    footer .copyright {
      margin-top: 20px;
    }
  }
  