/* ------------------------------------------------------------------------------

  Template Name: ThirstyFish 
  Description: ThirstyFish  
  Author: Jainish Bhimani
  Version: 1.0
  
  1.  Global

      1.1 General
      1.2 Typography
      1.3 Fields
      1.4 Buttons
      1.5 Icons
      1.6 Loader
      1.7 Content styles

  2.  Header 

      2.1 Brand
      2.2 Vertical Panel
      2.3 Navbar Desctop
      2.4 Navbar Desctop Affix
      2.5 Navbar Mobile
      2.6 Navbar Mobile Affix
      

  3.  Main

      3.1 Slider

  4.  About

      4.1 Services
      4.1 Object map

  5.  Projects

      5.1 Project Carousel
      5.2 Magnific popup
      5.3 Project Details

  6.  Experience
  7.  Clients
  8   Blog

      8.1 Blog Details
      8.2 Widgets
      8.3 Widget Recent Post

  9.  Contacts  
  10. Footer
  11. Responsive styles

      11.1 Min width: 768px
      11.2 Min width 992px
      11.3 Min width 1200px 
      11.4 Max height 480px

    
    
/*-------------------------------------------------------------------------------
  1. Global
-------------------------------------------------------------------------------*/



/* 1.1 General */



@import url('bootstrap.min.css');
@import url('font-awesome.min.css');
@import url('animate.css');
@import url('hover.css');
@import url('magnific-popup.css');
@import url('owl.carousel.css');
@import url('owl.transitions.css');
@import url('settings.css');
@import url('layers.css');
@import url('navigation.css');

:root {
  --PrimaryOrange: #dd8667;
  --White: #fff;
}

body {
  font-family: 'montserratlight', sans-serif;
  font-size: 1em;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  background-color: #272727;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: var(--PrimaryOrange);
}

::selection {
  background-color: var(--PrimaryOrange);
  color: var(--White);
}

-webkit-::selection {
  background-color: var(--PrimaryOrange);
  color: var(--White);
}

::-moz-selection {
  background-color: var(--PrimaryOrange);
  color: var(--White);
}



/* 1.2 Typography */



@font-face {
  font-family: 'montserratlight';
  src: url('../fonts/montserrat/Montserrat-Light.ttf');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'montserratsemibold';
  src: url('../fonts/montserrat/Montserrat-SemiBold.ttf');
  font-weight: normal;
  font-style: normal;

}

h1,
.h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 8vmin;
  line-height: 1.2;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--White);
}

h2,
.h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 2.1875em;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--White);
}

h3,
.h3 {
  font-family: 'montserratsemibold';
  font-size: 1.875em;
  line-height: 1.1;
  font-weight: normal;
  color: var(--White);
}

h4,
.h4 {
  font-family: 'montserratsemibold';
  font-size: 1.125em;
  line-height: 1.35;
  font-weight: normal;
  color: var(--White);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a {
  color: inherit;
}

h1 a:hover,
.h1 a:hover,
h2 a:hover,
.h2 a:hover,
h3 a:hover,
.h3 a:hover,
h4 a:hover,
.h4 a:hover {
  text-decoration: none;
}

p {
  margin-bottom: 1.6em;
}

b,
strong {
  font-family: 'Montserrat', sans-serif;
}

ul {
  list-style: none;
  padding-left: 0;
}

a {
  color: var(--PrimaryOrange);
  -webkit-transition: color .3s ease-out;
  -o-transition: color .3s ease-out;
  transition: color .3s ease-out;
}

a:hover,
a:focus {
  color: var(--PrimaryOrange);
  outline: none;
  transition: 0.3s all;
}

a:focus {
  text-decoration: none;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.d-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

/* 1.3 Fields */



.form-control,
textarea.form-control {
  font-size: 1em !important;
  height: 3.625em;
  border-radius: 0.75em;
  padding-left: 22px;
  color: var(--White) !important;
  background-color: #323232;
  border: 1px solid #323232;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -webkit-transition: all .15s;
  -o-transition: all .15s;
  transition: all .15s;
}

textarea.form-control {
  height: 7.9em;
  padding-top: 1.1em;
  resize: none;
}

.form-control:focus {
  border-color: var(--PrimaryOrange);
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control::-moz-placeholder {
  color: var(--White);
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: var(--White);
}

.form-control::-webkit-input-placeholder {
  color: var(--White);
}

.form-control.error {
  border-color: var(--PrimaryOrange);
}

.form-group {
  margin-bottom: 10px;
}

.wobble-error {
  -webkit-animation: hvr-wobble-horizontal 1s ease-in-out 0s 1 normal;
  animation: hvr-wobble-horizontal 1s ease-in-out 0s 1 normal;
}

label.error {
  display: none !important;
}



/* 1.4 Buttons */



.btn {
  font-family: 'montserratsemibold';
  position: relative;
  display: inline-block;
  border: 0.2em solid var(--PrimaryOrange);
  border-radius: 30px;
  padding: 1.1em 2.2em 1.05em;
  font-size: 0.875em;
  color: var(--White);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  background-color: var(--PrimaryOrange);
  border: 0;
  -webkit-transition: all .3s ease-out !important;
  transition: all .3s ease-out !important;
}

.btn:hover,
.btn:focus {
  color: var(--White);
  background-color: #e16c43;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none !important;
}

.btn .icon-next {
  position: relative;
  top: -0.1em;
  margin-left: 0.6em;
  vertical-align: middle;
}

.btn-gray {
  background-color: #323232;
  border-color: #323232;
}

.btn-gray:hover {

  background-color: var(--PrimaryOrange);
}

.btn-shadow-1 {
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.18);
}

.btn-shadow-2 {
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.18);
}



/* 1.5 Icons */



.icon-next {
  display: inline-block;
  width: 0.94em;
  height: 0.75em;
  background: url(../img/img-icon/next.png) 0 0 no-repeat;
  background-size: 0.94em 0.75em;
}



/* 1.6 Loader */



.loader {
  position: fixed;
  overflow: hidden;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #272727;
  color: var(--White);
  text-align: center;
}

.loader-brand {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.sk-folding-cube {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--PrimaryOrange);
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {

  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }

  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes sk-foldCubeAngle {

  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }

  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}



/* 1.7 Content styles */



.layout {
  position: relative;
  overflow: hidden;
}

.text-primary {
  color: var(--PrimaryOrange);
}

.page-lines {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.page-lines .col-line {
  padding: 0;
}

.page-lines .line {
  position: absolute;
  left: 0;
  width: 1px;
  height: 50000px;
  background-color: rgba(255, 255, 255, 0.08);
}

.page-lines .col-line:last-child .line:last-child {
  left: auto;
  right: 0;
}

.row-base {
  margin-top: -3em;
}

.leadership.row-base{
  display: flex;
    flex-wrap: wrap;
}

.col-base {
  margin-top: 3em;
}

.section {
  position: relative;
  margin-top: 7.1em;
  margin-bottom: 7.1em;
}

.section-header {
  position: relative;
}

.section-title {
  text-align: center;
  margin: 0;
  margin-left: 0.32em;
  line-height: inherit;
}

.fade-title-left,
.fade-title-right {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 8.5em;
  line-height: 1;
  color: var(--White);
  position: absolute;
  left: 0;
  top: -60px;
  opacity: 0.03;
}

.fade-title-right {
  left: auto;
  right: 0;
}

.section-content {
  margin-top: 7.1em;
}

@media (max-width: 480px) {

  .fade-title-left,
  .fade-title-right {
    font-size: 5.5em;
  }
}

/*-------------------------------------------------------------------------------
  2. Header
-------------------------------------------------------------------------------*/



.header-inner .vertical-panel-content {
  bottom: auto;
  top: 12.2vmin;
}



/* 2.1 Brand */



.brand-panel {
  position: absolute;
  z-index: 4;
  left: 0;
  top: 0;
  width: 32.47vmin;
  height: 26.47vmin;
  padding: 4.8vmin 2em 4.8vmin;
  background-color: #2b2b2b;
  text-align: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.brand {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 4vmin;
  line-height: 1;
  color: var(--White);
}

.brand:hover,
.brand:focus {
  color: var(--White);
  text-decoration: none;
}

.brand-name {
  position: absolute;
  z-index: -1;
  bottom: -0.4em;
  left: 1.85em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 4em;
  line-height: 1;
  opacity: 0.1;
  color: var(--White);
  transition: opacity 0.5s ease-in-out;
}

.brand-panel {
  height: 25vmin;
  width: 31vmin;
}

.brand-panel .brand-name {
  left: 19vmin;
}

.brand-name.fade-out {
  opacity: 0;
}

.slide-number {
  font-family: 'Oswald', sans-serif;
  margin-top: 8vmin;
}

.slide-number .current-number {
  font-size: 8vmin;
  letter-spacing: 0.1em;
  line-height: 1;
}

.slide-number sup {
  display: inline-block;
  position: relative;
  top: -3px;
  font-size: 2vmin;
  letter-spacing: 0.1em;
  color: #5e5e5e;
  vertical-align: top;
  margin-left: 0.46em;
}

.slide-number sup .delimiter {
  display: inline-block;
  margin-right: 0.4em;
}

.header-phone {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.81em;
  letter-spacing: 0.32em;
  position: absolute;
  z-index: 3;
  color: var(--White);
  left: 50vmin;
  top: 5.9vmin;
}

@media (max-width: 480px) {
  .header-phone {
    display: none;
  }

  .brand-name {
    font-size: 3.15em;
  }

  .brand-panel .brand-name {
    left: 76px;
  }


}

@media (min-width: 992px) and (max-width: 1200px) {
  .header-phone {
    display: none;
  }

}



/* 2.2 Vertical Panel */



.vertical-panel,
.vertical-panel-content {
  position: absolute;
  width: 12.735vmin;
  left: 0;
  bottom: 55vh;
  text-align: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.vertical-panel {
  z-index: 3;
  height: 10000px;
  background-color: #2b2b2b;
  bottom: 55vh;
}

.vertical-panel-content {
  z-index: 4;
}

.vertical-panel-info {
  margin-bottom: 3.5vmin;
}

.vertical-panel-info .line {
  height: 5vmin;
  width: 1px;
  margin: 15px auto 0;
  background-color: #646464;
}

.vertical-panel-title {
  font-family: 'montserratsemibold';
  font-size: 10px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1em;
  color: var(--White);
  position: relative;
  left: -6px;
  margin: 0 auto;
  width: 1px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

@media (max-width: 1024px) {
  .vertical-panel-title {
    display: none;
  }
}

.social-list {
  margin-bottom: 3.5vmin;
}

.social-list li {
  margin-top: 3.8vmin;
}

.social-list .fa {
  font-size: 2.4vmin;
  color: #606060;
}

.social-list .fa:hover {
  color: var(--PrimaryOrange);
  text-decoration: none;
}

@media (max-width: 767px) {
  .social-list .fa {
    font-size: 16px;
    color: #606060;
  }
}



/* 2.3 Navbar Desctop */



.navbar-desctop {
  display: none;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5.9vmin 0 0;
}

.navbar-desctop.affix .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.navbar-desctop .brand {
  display: none;
  position: relative;
  top: -0.22em;
  font-size: 1.6em;
}

.navbar-desctop-menu {
  float: right;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.81em;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.navbar-desctop-menu li {
  position: relative;
  -webkit-perspective: 2000px;
  perspective: 2000px;
}

.navbar-desctop-menu li a {
  display: block;
  text-decoration: none;
  color: var(--White);
  transition: 0.3s all;
}

.navbar-desctop-menu li a:hover,
.navbar-desctop-menu .active>a {
  color: white;
  background: var(--PrimaryOrange);
  border-radius: 200px;
}

.navbar-desctop-menu>li {
  float: left;
  margin-left: 3.1em;
}

.navbar-desctop-menu>li>a {
  color: var(--White);
  background-color: transparent;
  margin-bottom: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 8px 8px 8px 12px;
  line-height: 1;
}

.navbar-desctop-menu li ul {
  position: absolute;
  z-index: 10;
  left: 100%;
  top: 60%;
  visibility: hidden;
  min-width: 200px;
  opacity: 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  background: rgba(50, 50, 50, 0.95);
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.navbar-desctop-menu>li>ul {
  left: -20px;
  margin-top: 0;
}

.navbar-desctop-menu li:hover>ul {
  top: 0;
  visibility: visible;
  opacity: 1;
}

.navbar-desctop-menu>li:hover>ul {
  top: 100%;
  border-radius: 20px;
}

.navbar-desctop-menu li li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-desctop-menu li li:last-child {
  border-bottom: 0;
}

.navbar-desctop-menu li li a {
  color: var(--White);
  padding: 12px 20px 10px;
  clear: both;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.br-50 {
  border-radius: 50%;
}

.language-select {
  background: none;
  border: none;
}

/*  */


/* 2.4 Navbar Desctop Affix */



.navbar-desctop.affix {
  position: fixed;
  z-index: 5;
  top: 0;
  background-color: rgba(50, 50, 50, 0.95);
  padding: 1.3em 0 0;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
}

.navbar-desctop.affix.affix-top {
  padding-top: 2.2em;
}

.navbar-desctop.affix .brand {
  display: inline-block;
  max-width: 120px;
}

.navbar-desctop.affix .navbar-desctop-menu li a {
  color: var(--White);
}

/* .navbar-desctop.affix .navbar-desctop-menu li>a:hover,
.navbar-desctop.affix .navbar-desctop-menu .active>a {
  color: var(--PrimaryOrange);
} */



/* 2.5 Navbar Mobile */



.navbar-mobile {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  padding: 6vmin 0;
}

.navbar-mobile .brand {
  display: none;
  margin-left: 15px;
  font-size: 1.6em;
  max-width: 80px;
}

.navbar-collapse {
  border: 0;
  background-color: rgba(50, 50, 50, 0.95);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.navbar-toggle {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 0;
  border: 0;
  bottom: -15px;
}

.navbar-toggle .icon-bar {
  background-color: var(--White);
  height: 2px;
  width: 30px;
}

.navbar-toggle .icon-bar+.icon-bar {
  margin-top: 5px;
}

.navbar-toggle.collapsed .icon-bar {
  background-color: var(--PrimaryOrange);
}

.navbar-nav-mobile {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.9em;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding-top: 1.2em;
  margin-bottom: 0;
}

.navbar-nav-mobile li {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-nav-mobile li a {
  display: block;
  padding: 1em 1em;
  color: var(--White);
  text-decoration: none;
}

.navbar-nav-mobile>.current>a {
  color: var(--PrimaryOrange);
}

.navbar-nav-mobile li a .fa-angle-down {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  float: right;
}

.navbar-nav-mobile>.current>a .fa-angle-down {
  top: -0.2em;
  left: -0.3em;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.navbar-nav-mobile>.active>a,
.navbar-nav-mobile>.active>a:hover {
  background-color: var(--PrimaryOrange);
  color: var(--White);
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.navbar-nav-mobile ul {
  display: none;
}

.navbar-nav-mobile li a:hover,
.navbar-nav-mobile li .active>a {
  color: var(--PrimaryOrange);
}



/* 2.6 Navbar Mobile Affix */



.navbar-mobile.affix {
  position: fixed;
  z-index: 5;
  background-color: rgba(50, 50, 50, 0.95);
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  padding: 1.2em 0;
}

.navbar-mobile.slideInDown.affix {}

.navbar-mobile.affix .brand {
  display: inline-block;
}

.navbar-mobile.affix .navbar-toggle .icon-bar {
  background-color: var(--PrimaryOrange);
}

@media (max-height: px) {
  .navbar-collapse {
    max-height: 240px;
  }
}

/*-------------------------------------------------------------------------------
  3. Main
-------------------------------------------------------------------------------*/



.main {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.main-inner {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 33.7vmin 0 33.7vmin;
  max-height: 60vh;
}


.main-inner .page-lines {
  z-index: 1;
}

.main-inner:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  background: -webkit-linear-gradient(bottom, rgba(39, 39, 39, 1) 0%, rgba(39, 39, 39, 0.15) 26%, rgba(39, 39, 39, 0) 100%);
  background: linear-gradient(to top, rgba(39, 39, 39, 1) 0%, rgba(39, 39, 39, 0.15) 26%, rgba(39, 39, 39, 0) 100%);
}

.main-projects,
.main-contacts {
  padding: 34.2vmin 0 34vmin;
}

.main-project {
  /* padding: 33.7vmin 0 11vmin; */
  background-size: cover;
  background-position: center center !important;
}

.main-header {
  position: relative;
  z-index: 2;
  color: var(--White);
  text-align: right;
  padding-left: 38.5vmin;
}

@media screen and (max-width: 799px) {
  .main-header {
    padding-left: 15.5vmin;
  }
}

.main-header h1 {
  color: var(--White);
  margin: 0;
  margin-right: -0.32em;
  font-size: 5vmin;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
}



/* 3.1 Slider */



.rev_slider {
  color: var(--White);
  min-height: 420px;
}

.rev_slider .btn {
  -webkit-transition: background-color .3s ease-out !important;
  transition: background-color .3s ease-out !important;
}

.tp-caption {
  padding: 0 20px;
  text-align: right;
}

.arrow-left,
.arrow-right {
  position: absolute;
  z-index: 4;
  bottom: 4vh;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.arrow-left {
  left: 15vmin;
}

.arrow-right {
  right: 15px;
}

.arrow-left:after,
.arrow-right:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background-color: transparent;
  font-family: 'Oswald', sans-serif;
  font-size: 1em;
  line-height: 1;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--White);
}

.arrow-left:after {
  content: 'Prev';
}

.arrow-right:before {
  content: 'Next';
}

.arrow-left:before,
.arrow-right:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 1.3em;
  height: 1em;
  opacity: 0.25;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.arrow-left:hover:before,
.arrow-right:hover:after {
  opacity: 1;
}

.arrow-left:before {
  background: url(../img/img-icon/prev.png) 0 0 no-repeat;
  background-size: 1.3em 1em;
  margin-right: 0.82em;
}

.arrow-right:after {
  background: url(../img/img-icon/next.png) 0 0 no-repeat;
  background-size: 1.3em 1em;
  margin-left: 0.72em;
}

.slide-title {
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.slide-subtitle {
  font-size: 18px;
  line-height: 1.7;
}



/* ------------------------------------------------------------------------------- */
/*  4. About
/* ------------------------------------------------------------------------------- */



.bg-about {
  background: url(../img/bg/about.webp) 50% 0 no-repeat;
  background-size: cover;
  background-position: center !important;
}

.entry-title {
  font-size: 3.6em;
  margin: 0 0 1em;
}

.entry-text {
  font-size: 1.2em;
  line-height: 1.6;
}

.col-about-title {
  margin-top: 0;
  margin-bottom: 1.1em;
}

.col-about-info p:last-child {
  margin-bottom: 0;
}

.col-about-img {
  position: relative;
}

.col-about-img img {
  display: block;
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); */
}

.about-services {
  flex-direction: row;
  justify-content: space-between;
}

.about-services.nav-tabs>li>.service-item {
  display: flex;
  flex-direction: column;
  align-items: end;
}

/* 4.1 Services */



.row-service {
  margin-left: -4.1em;
  margin-right: -4.1em;
  display: flex;
  flex-flow: row wrap;
}

.col-service {
  padding: 0 4.1em;
}

.services .service-item {
  background-color: #323232;
  border: 1px solid #323232;
  border-radius: 5px;
}

.services .service-item {
  padding: 2em;
}

.service-item {
  margin-bottom: 2em;
  text-align: center;
}

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

.service-item h4 {
  margin-top: 0.8em;
  margin-bottom: 1.1em;
}

.services .service-item h4 {
  margin-top: 1.25em;
  clear: both;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  font-size: 1em;
  letter-spacing: 0.1em;
}

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


/* 4.2 Object Map */



.objects {
  position: relative;
}

.object-label {
  position: absolute;
  width: 1em;
  height: 1em;
  background-color: var(--PrimaryOrange);
  box-shadow: 0 0 40px 4px rgb(221, 134, 103, 0.5);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.object-label:hover {
  box-shadow: none;
}

.popover.top {
  margin-top: -20px;
}

.object-info {
  position: absolute;
  display: none;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  width: 25.5em;
  margin-left: -14.4em;
  padding: 1.1em 1.3em 3em;
  border: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.object-info.in {
  display: block;
}

.object-info:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -0.4em;
  width: 0;
  height: 0;
  border: 16px solid transparent;
  border-top: 14px solid rgba(0, 0, 0, 0.3);
}

.object-title {
  font-size: 1em;
  font-family: 'montserratsemibold';
  font-weight: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--PrimaryOrange);
  padding: 0 0 1em;
  border-bottom: 1px solid rgba(249, 249, 249, 0.2);
  margin: 0 0 .5em;
}

.object-content {
  font-family: 'montserratlight', sans-serif;
  font-size: 0.75em;
  line-height: 2.6;
  color: var(--White);
  padding: 0;
}

.object-content a {
  color: var(--White);
}

.object-content a:hover {
  color: var(--PrimaryOrange);
  text-decoration: none;
}

.popover.top>.arrow {
  border-top-color: transparent;
}

.popover.top>.arrow:after {
  border-top-color: rgba(0, 0, 0, 0.6);
}




/* ------------------------------------------------------------------------------- */
/*  5. Projects
/* ------------------------------------------------------------------------------- */



.bg-projects {
  position: relative;
  /* background: url(../img/bg/projects.jpg) 50% 0 no-repeat; */
  background-size: cover;
}

.project {
  padding: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.project figure {
  position: relative;
}

.project figure img {
  display: block;
  width: 100%;
  -webkit-transition: all 8s linear;
  -o-transition: all 8s linear;
  transition: all 8s linear;
  /* min-width: 480px;
  min-height: 880px; */
  object-fit: cover;
}

.project figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  opacity: 0.7;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.project.project-light figure:after {
  opacity: 0.4;
}

.project figcaption {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 3.2em 3.6em;
}

.project-title {
  position: relative;
  top: 0;
  left: 0;
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  font-size: 1.56em;
  line-height: 1.45;
  letter-spacing: 0.07em;
  color: var(--White);
  text-transform: uppercase;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.project-category {
  position: absolute;
  left: 0;
  top: 100%;
  padding: 18px 40px;
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: var(--White);
  letter-spacing: 0.8em;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  clear: both;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
}

.project-info {
  position: absolute;
  right: 0px;
  bottom: 0;
  color: var(--White);
  width: 100%;
  height: auto;
  transition: all 0.7s;
  padding: 20px;
  opacity: 0;
}

.project-info p {
  margin-left: 3.6em;
}

.project figure:hover .project-info {
  width: 100%;
  height: auto;
  opacity: 1;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%, rgb(0, 0, 0) 100%);
}

.project-zoom {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9em;
  height: 9em;
  margin: -4.5em;
  border-radius: 50%;
  background-color: rgba(197, 164, 126, 0.84);
  overflow: hidden;
  opacity: 0;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.project-zoom:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.625em;
  height: 2.625em;
  background: url(../img/img-icon/zoom.png) 0 0 no-repeat;
  background-size: cover;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.project figure:hover:after {
  opacity: 0;
}

.project figure:hover img {
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
}

.project figure:hover .project-title {
  top: 30px;
  opacity: 0;
}

.project figure:hover .project-category {
  opacity: 1;
  /* letter-spacing: 1em; */
  clear: both;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  background: rgb(17, 17, 17, 0.4);
}

.project figure:hover .project-zoom {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

@media(max-width:767px) {
  .project figure .project-info {
    width: 100%;
    height: auto;
    /* background-color: rgba(58, 55, 51, 0.84); */
    opacity: 1;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%, rgb(0, 0, 0) 100%);
  }

  .project-info p {
    margin-left: 1.4em;
  }
}

/* 5.1 Carousel */



.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  font-family: 'Oswald', sans-serif;
  font-size: 1em;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--White);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.7;
}

.owl-prev:hover,
.owl-next:hover {
  opacity: 1;
}

.owl-prev {
  left: 0.8em;
  padding-left: 35px;
  background: url(../img/img-icon/prev.png) left 50% no-repeat;
  background-size: 1.3em 1em;

}

.owl-next {
  left: auto;
  right: 0.8em;
  padding-right: 35px;
  background: url(../img/img-icon/next.png) right 50% no-repeat;
  background-size: 1.3em 1em;
}



/* 5.2 Magnific popup */



.mfp-figure {
  box-shadow: none;
}

.mfp-iframe-scaler {
  overflow: visible;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  padding: 0;
  margin-top: -10px;
  font-family: inherit;
  font-size: 40px;
  font-weight: 300;
  line-height: 0;
}

img.mfp-img {
  min-height: 460px;
}


.mfp-title {
  padding-right: 40px;
  font-size: 1.2em;
  line-height: 1.2;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 10px;
}

.mfp-counter {
  top: 5px;
}

.mfp-bg {
  background-color: #141414;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  display: none;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  display: none;
}

.mfp-wrap .mfp-content {
  -webkit-perspective: 1300px;
  perspective: 1300px
}

.mfp-wrap .mfp-figure,
.mfp-wrap .mfp-iframe-scaler {
  opacity: 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scale(0) rotateY(60deg);
  -o-transform: scale(0) rotateY(60deg);
  transform: scale(0) rotateY(60deg);
}

.mfp-bg {
  opacity: 0;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.mfp-wrap .mfp-figure,
.mfp-wrap .mfp-iframe-scaler {
  opacity: 0;
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  -webkit-transform: rotateY(-60deg);
  -ms-transform: rotateY(-60deg);
  -o-transform: rotateY(-60deg);
  transform: rotateY(-60deg);
}

.mfp-bg {
  opacity: 0;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.mfp-wrap.mfp-ready .mfp-figure,
.mfp-wrap.mfp-ready .mfp-iframe-scaler {
  opacity: 1;
  -webkit-transform: rotateX(0);
  -ms-transform: rotateX(0);
  -o-transform: rotateX(0);
  transform: rotateX(0);
}

.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-wrap.mfp-removing .mfp-figure,
.mfp-wrap.mfp-removing .mfp-iframe-scaler {
  opacity: 0;
  -webkit-transform: rotateX(-60deg);
  -ms-transform: rotateX(-60deg);
  -o-transform: rotateX(-60deg);
  transform: rotateX(-60deg);

}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: url(../img/zoom-out.cur), zoom-out;
}

.mfp-removing.mfp-bg {
  opacity: 0;
}



/* 5.3 Project Details */



.project-title-info {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 2vmin;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 2.2em;
  margin-left: -1.8em;
  
    width: 30%;
    display: flex;
    justify-content: end;

}

@media(max-width:767px) {
  .project-title-info {
  width: 100%;
  display: block;
  justify-content: center;
}
}

.project-title-info .project-info-item {
  display: inline-block;
  margin-left: 1.8em;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: 0.3s all;
}

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

.project-details-img {
  position: relative;
  padding: 0;
}

.project-details-info {
  background-color: var(--PrimaryOrange);
  padding: 2.8em 3.1em 1.8em;
  color: var(--White);
  /* height: 100%; */
}

.project-details-title {
  position: relative;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1.9em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--White);
  margin: 0 0 0.7em;
}

.project-details-title:before {
  content: '';
  position: absolute;
  bottom: -0.35em;
  width: 10em;
  border-top: 1px solid #ededed;
  left: -4.4em;
  width: 5.5em;
}

.project-details-descr {
  font-size: 1.1em;
  line-height: 1.62;
  opacity: 0.8;
}

.project-details-descr p:last-child {
  margin-bottom: 0;
}

.project-details-item:nth-child(even) .project-details-info {
  right: 0;
  left: auto;
  top: 13%;
  background-color: #212121;
}

/* Nav */


/* ------------------------------------------------------------------------------- */
/*  6. Experience
/* ------------------------------------------------------------------------------- */



.experience {
  text-align: center;
}

.text-parallax {
  background: no-repeat 0 0;
  display: inline-block;
}

.text-parallax-content {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 21.8em;
  line-height: 1;
  overflow: hidden;
  margin-bottom: 0;
  background: #272727;
  color: var(--White);
  /* mix-blend-mode: darken; */
  /* -ms-mix-blend-mode: darken; */

  background-image: url(../img/extra/14.jpg);
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed; */
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.experience-info {
  position: relative;
  top: -0.75em;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5625em;
  line-height: 1.45;
  letter-spacing: 0.06em;
  display: inline-block;
  text-align: left;
  margin: 0 0 0 0.5em;
}



/* ------------------------------------------------------------------------------- */
/*  7. Clients
/* ------------------------------------------------------------------------------- */



.clients {
  text-align: center;
}

.clients-list {
  margin: -3.8em 0 0;
}

.clients-list .client {
  display: inline-block;
  vertical-align: middle;
  padding: 3.8em 1.95em 0;
  margin: 0;
}

.clients-list .client img {
  opacity: 0.3;
  display: block;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  height: 60px;
  width: 120px;
  object-fit: contain;
}

.clients-list .client a:hover img {
  opacity: 1;
}



/* ------------------------------------------------------------------------------- */
/*  8. Blog
/* ------------------------------------------------------------------------------- */
.section-title.title-custom-position {
  position: absolute;
  left: -34%;
  /* top: 40%; */
  bottom: 34px;
  background-color: #373737;
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.08);
  padding: 15px;
}

.section-title.title-custom-position.left {
  left: -34%;
  right: auto;
}

.section-title.title-custom-position.right {
  right: -34%;
  left: auto;
}

.services-info-title {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--White);
  opacity: 0.1;
  position: absolute;
  bottom: 10%;
  left: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(0);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  z-index: 1;
}

.services-info-title.right-0 {
  right: 0;
  left: auto;
}


.bg-blog {
  /* background: url(../img/bg/blog.jpg) 50% 0 no-repeat; */
  background-size: cover;
}

.blog {
  position: relative;
  margin-bottom: 3em;
  margin-right: 1px;
  /* background-color: #373737;
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.08); */
}

.blog:last-child {
  margin-bottom: 0;
}

.blog-thumbnail {
  position: static;
}

.blog-thumbnail-bg {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 5px;
  padding: 0;
  border-radius: 0.25em 0 0 0.25em;
  overflow: hidden;
  background-size: cover;
  background-position: 50% 0;
}

.blog-thumbnail-img img {
  border-radius: 0.25em 0.25em 0 0;
}

.blog-info {
  padding: 3.3em 3em;
}

.blog-info .blog-tags a {
  background-color: #434343;
}

.blog-tags {
  font-family: 'montserratsemibold';
  margin-top: -0.8em;
}

.blog-tags a {
  display: inline-block;
  font-size: 0.75em;
  line-height: 1;
  padding: 0.77em 1.1em 0.77em;
  border-radius: 2em;
  background-color: #333333;
  text-transform: uppercase;
  color: #6f6f6f;
  margin-top: 0.8em;
  margin: 0.8em 0.7em 0 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.blog-tags a:hover {
  background-color: var(--PrimaryOrange);
  text-decoration: none;
  color: var(--White);
}

.blog-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1.5em;
  line-height: 1.333;
  margin: 1.8em 0 0.8em;
}

.blog-info p {
  margin-bottom: 0;
  color: var(--White);
}

.blog-meta {
  font-size: 0.88em;
  color: #b4b4b4;
  overflow: hidden;
}

.blog-meta .author {
  color: #686868;
  float: left;
}

.blog-meta .author a {
  font-family: 'montserratsemibold';
  color: #686868;
}

.blog-meta .author a:hover {
  text-decoration: none;
  color: var(--PrimaryOrange);
}

.blog-meta .time {
  float: right;
  color: #686868;
}

.blog-info .blog-meta {
  border-top: 1px solid #474747;
  margin-top: 1.7em;
  padding-top: 1.7em;
}

.read-more {
  display: inline-block;
  font-family: 'montserratsemibold';
  font-size: 0.88em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.read-more {
  padding-right: 3em;
  background: url(../img/img-icon/read-more-white.png) right 50% no-repeat;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}


.read-more:hover {
  text-decoration: none;
  background-position: 97% 50%;
}

.blog-info .read-more {
  margin-top: 2.8em;
}



/* 8.1 Blog Details */



.blog-details {
  margin-bottom: 8.3em;
}

.col-secondary {
  margin-top: 7.1em;
}

.post-header {
  margin-bottom: 5em;
}

.post-header h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 2.2em;
  line-height: 1.43;
  margin: 0 0 0 0;
}

.post-header .blog-meta {
  margin-top: 2.45em;
}

.post-thumbnail {
  margin-bottom: 2.5em;
}

.post-thumbnail img {
  width: 100%;
  border-radius: 0.25em;
}

.post .blog-tags {
  margin-top: 5.4em;
}



/* 8.2 Widgets */



.widget {
  margin-bottom: 3.65em;
}

.widget-title {
  font-family: 'montserratsemibold';
  font-weight: normal;
  font-size: 1.3em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 2.25em 0;
}



/* 8.3 Widget Recent Post */



.recent-post {
  margin-bottom: 1.7em;
  overflow: hidden;
}

.recent-post:last-child {
  margin-bottom: 0;
}

.recent-post-thumbnail {
  width: 9.32em;
  float: left;
}

.recent-post-thumbnail img {
  border-radius: 0.25em;
  max-width: 100%;
}

.recent-post-body {
  padding-left: 11.2em;
}

.recent-post-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1.1em;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  position: relative;
}

.recent-post-time {
  font-size: 0.88em;
  color: #b4b4b4;
  margin-top: 0.9em;
}



/* ------------------------------------------------------------------------------- */
/*  9. Contacts
/* ------------------------------------------------------------------------------- */

.main-inner::before {
  /* content: "";
  background-color: rgb(32, 32, 32, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; */
}

.bg-contacts {
  /* background: url(../img/bg/contact-us.mp4) 50% 0 no-repeat; */
  background-size: contain;
  padding-top: 25.7vmin;
}

.bg-contacts .tab-content {
  background-color: rgb(221 134 103 / 85%);
  border-radius: 30px;
  height: 22em;
}

.contact-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
}

.contact-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.row-field {
  margin-left: -5px;
  margin-right: -5px;
}

.col-field {
  padding: 0 5px;
}

.col-message {
  display: none;
  margin-top: 20px;
}

.col-address {
  font-size: 1.125em;
  line-height: 2.1;
  margin-top: 2em;
}

.form-submit {
  margin-top: 1.2em;
}

.success-message {
  display: none;
}

.error-message {
  display: none;
}

.success-message .fa {
  margin-right: 7px;
  font-size: 1.5em;
}

.contact-details {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
}

.col-map {
  height: 35em;
}

.gmap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  height: 100%;
}

.map-info {
  padding: 1.2em;
}

.map-title {
  margin-bottom: 2em;
}

.map-title h3 {
  margin: 0;
}

.map-address-row {
  margin-top: 1em;
}

.map-address-row .fa {
  float: left;
  margin: 0.35em 0.6em 0 0;
  width: 1.1em;
  text-align: center;
  color: var(--PrimaryOrange);
  font-size: 1.2em;
}

.map-address-row .text {
  display: block;
  overflow: hidden;
  font-size: 1.15em;
}

.contact-info {
  color: var(--White);
  padding: 1.5em 1.6em;
  background-size: cover;
}

.contact-info a {
  color: var(--White);
  opacity: 0.8;
  text-decoration: none;
}

.contact-info-content {
  padding: 5.5em 5.6em;
  background-color: rgb(50 50 50 / 65%);
  border-radius: 30px;
}

.contact-info-content .form-control,
.contact-info-content textarea.form-control {
  background: transparent;
  border: 1px var(--White) solid;
}

.contact-info-content select.form-control option {
  background: #323232;
}

.contact-info-title {
  font-family: 'Oswald', sans-serif;
  font-size: 3em;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--White);
  opacity: 0.1;
  position: absolute;
  top: 100%;
  left: 100%;
  margin-top: -0.5em;
  margin-left: -2.3em;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.contact-row {
  position: relative;
  z-index: 1;
  margin-bottom: 1.3em;
}

.contact-row h4 {
  margin: 0 0 0.8em;
  color: var(--White);
  font-size: 1em;
}

.contact-row .fa {
  float: left;
  width: 1.1em;
  padding: 1px;
  text-align: center;
  font-size: 1.2em;
  line-height: 1;
}

.contact-body {
  padding-left: 2.6em;
}


.contact-content {
  font-size: 1em;
  opacity: 0.8;
}

.phone-row {
  font-size: 1em;
  letter-spacing: 0.1em;
  margin-top: 0.3em;
}


/* ------------------------------------------------------------------------------- */
/*  10. Footer
/* ------------------------------------------------------------------------------- */



.footer {
  text-align: center;
  margin: 7.1em 0 5.5em;
  font-size: 12px;
  color: #aaa;
}

.footer .brand {
  margin-top: -0.45em;
  font-size: 3.4em;
  /* height: 100px; */
  width: 150px;
}

.author-link {
  font-family: 'Montserrat', sans-serif;
  color: #d0d0d0;
}

.author-link:hover {
  text-decoration: none;
}

/* JB Style */

.custom-quotation {
  position: relative;
}

.custom-quotation::before {
  content: "“";
  position: absolute;
  font-size: 15rem;
  left: -85px;
  top: 40px;
  line-height: 0;
  opacity: 0.1;
}

.custom-quotation::after {
  content: "“";
  position: absolute;
  font-size: 15rem;
  right: -85px;
  bottom: 40px;
  line-height: 0;
  opacity: 0.1;
  transform: rotate(180deg);
}

.slide-cityname {
  position: absolute;
  top: 40.5vmin;
  left: 14.5vmin;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 4.75em;
  line-height: 1;
  opacity: 0;
  color: var(--White);
  /* transition: 0.3ms all; */
}

.active-revslide .slide-cityname {
  /* transition: 0.3ms all; */
  opacity: 0.2;
}

/* NavTabs */
.nav-tabs>li {
  width: 100%;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
  color: var(--PrimaryOrange);
  background-color: transparent;
  border: none;
  border-bottom-color: none;
}

.nav-tabs>li.active>a h4,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
  color: var(--PrimaryOrange);
}

.nav-tabs>li>a:hover h4 {
  color: var(--PrimaryOrange);
}

.nav-tabs {
  border: none;
}

.nav-tabs>li>a {
  border: none;
  transition: 0.3s all;
  height: 100%;
}

.nav>li>a:hover,
.nav>li>a:focus {
  background-color: transparent !important;
}

/* slider image shadow */
.rev_slider li.tp-revslider-slidesli::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(120deg, #0f0f0f30, #232323);
  opacity: .7;
}

.rev_slider li .slide-title {
  font-size: 2rem !important;
  padding: 0px 1.5rem !important;
}

.rev_slider li .slide-subtitle {
  font-size: 1.2rem !important;
  line-height: initial !important;
}

/* View more */
.data_more_less_inner {
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.action_less {
  display: none;
}

.less_active .action_less {
  display: inline-block;
}

.less_active .action_more {
  display: none;
}

.data_more_less.action_disabled .more_less_action {
  display: none;
}

.row.row-mobile {
  display: flex;
}


.footer .row-mobile {
  align-items: end;
}

.checkbox-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 5vw;
}

.checkbox-tile {
  padding: 5px 20px;
  border-radius: 100px;
  border: 2px solid #b5bfd9;
  background-color: transparent;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
  color: var(--White);
  font-size: 14px;
  clear: both;
  display: inline-block;
  white-space: nowrap;
}

input[type="radio"] {
  display: none;
}

.checkbox-input:checked+.checkbox-tile {
  background-color: var(--PrimaryOrange);
  border-color: var(--PrimaryOrange);
}

.listing-box {
  border-top: 1px #585757 solid;
  padding: 25px 0;
}

.listing-box h4 {
  transition: 0.3s all;
  padding-right: 30px;
}

.listing-box a {
  text-decoration: none;
  color: var(--White);
}

.listing-box P {
  max-width: 80%;
  opacity: 0.8;
  margin-top: 10px;
}

.listing-box a:hover .position-name h4 {
  color: var(--PrimaryOrange);
}

.position-apply {
  position: relative;
}

.position-apply::after {
  position: absolute;
  content: "";
  background-image: url(../img/img-icon/top-right-arrow.svg);
  margin: 0px 0px 0px 10px;
  text-decoration: none;
  right: 0;
  top: 20%;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}

.position-name {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Policy Pages */

.bg-gdpr {
  background: url(../img/bg/gdpr.jpg) 50% 0 no-repeat;
  background-size: cover;
  color: var(--White);
}

.policy-details .job-description p.entry-text {
  color: var(--PrimaryOrange);
}

.policy-details ul {
  list-style: disc;
  padding-left: revert;
  margin-bottom: 1.6em;
}

.policy-details ul li {
  margin-bottom: 1em;
}

/* Jobs Page */

.job-title {
  display: flex;
  justify-content: space-between;
}

.file-upload .file-select {
  display: flex;
  align-items: center;
}

.file-upload .file-select .file-select-button {
  background: #dce4ec;
  padding: 0 10px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  display: none;
}

.file-upload .file-select:hover {
  border-color: var(--PrimaryOrange);
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}

.file-upload .file-select input[type=file] {
  z-index: 100;
  cursor: pointer;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}

.btn-linkedin {
  background: #0E76A8;
  border-radius: 200px;
  color: var(--White);
  border-width: 1px;
  border-style: solid;
  border-color: #084461;
  display: flex;
  align-items: center;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: 0.3s all;
}

.btn-linkedin:link,
.btn-linkedin:visited {
  color: var(--White);
}

.btn-linkedin:active,
.btn-linkedin:hover {
  background: #084461;
  color: var(--White);
  text-decoration: none;
}

.qr-code {
  width: 150px;
}

.row.contact-row {
  display: block;
}

.qr-code img {
  max-width: 100%;
}

/* =====================================
Clients Logo marquee animation
===================================== */

:root {
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 4);
  --duration: 40s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}

.marquee:hover .marquee__group {
  animation-play-state: paused;
}

.marquee-item {
  opacity: 0.3;
  transition: all 0.5s ease-in-out;
}

.marquee-item:hover {
  opacity: 1;
}

.marquee-item img {
  width: 100px;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }

  to {
    transform: translateX(var(--scroll-end));
  }
}


/* Read more */


/* 
.read-more-content {
  width: 100%;
} */

.project-details-descr {
  position: relative;
  max-height: 115px;
  overflow: hidden;
  margin-bottom: 1em;
  transition: max-height 0.3s ease-in-out;
}

.project-details-descr::before {
  /* content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4em;
  background-color: rgba(23, 23, 23, 0.7);
  background: linear-gradient(0deg, #171717 0%, rgba(23, 23, 23, 0.5) 50%, rgba(23, 23, 23, 0) 100%);
  display: none;
  transition: all 0.3s linear; */
}

.read-more-content--true .project-details-descr::before {
  display: block;
}

.read-more-content--opened .project-details-descr::before {
  opacity: 0;
  visibility: hidden;
}

.project-details-descr>*:last-child {
  margin-bottom: 0;
}

.project-details-info__btn {
  color: var(--White);
  text-decoration: none;
  display: none;
  transition: color 0.3s ease-in-out;
  text-align: end;
}

.project-details-info__btn:hover {
  color: var(--White);
}

.project-details-info__btn:focus {
  color: var(--White);
}

.project-details-info--true .project-details-info__btn {
  display: block;
}

.read-more-content+.project-details-info {
  margin-top: 4rem;
}

.overflow-auto {
  overflow: auto;
}

.overflow-auto::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}

.desktop {
  display: block !important;
}

.mobile {
  display: none !important;
}

select {
  position: relative;
}
select option { color: var(--White) !important; }

.dd-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input:-webkit-autofill, 
input:-webkit-autofill:active {
  background-color: #323232 !important;
  -webkit-background-color: #323232 !important;
  transition: background-color 5000s;
    -webkit-text-fill-color: var(--White) !important;
}


@media (max-width: 767px) {
  .desktop {
    display: none !important;
  }

  .mobile {
    display: block !important;
  }

  .job-title {
    display: block;
  }

  .qr-code {
    width: 100px;
  }
}


/* :root {
  --size: 1rem;
  --border: 0.2rem;
}


input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  background-color: #323232;
  border: 1px solid #323232;
}

.checkbox {
  --size: 16px;
  position: absolute;
  height: var(--size);
  border-radius: 5px;
  border: var(--border) solid grey;
  width: var(--size);
  transition: 100ms ease-in;
  cursor: pointer;
}

input:checked + .checkbox {
  background: black;

} */

.custom-checkbox,
.custom-checkbox span {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.custom-checkbox {
  margin-right: 25px;
  font-weight: 400;
  font-size: 12px;
}

.custom-checkbox span {
  padding-left: 25px;
}

.custom-checkbox input {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.custom-checkbox input:focus {
  outline: 0;
}

.custom-checkbox span:before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: #323232;
  border: solid 1px #444;
  border-radius: 4px;
}

.custom-checkbox span.transparent:before {
  background-color: transparent;
  border: solid 1px #fff;
}

.custom-checkbox span:after {
  content: '';
  position: absolute;
  top: 5px;
  left: 4px;
  width: 8px;
  height: 5px;
  border-left: solid 1px #fff;
  border-bottom: solid 1px #fff;
  transform: rotate(-45deg);
  opacity: 0;
}

.custom-checkbox input:checked+span:after {
  opacity: 1;
}

.mb-1 {
  margin-bottom: 10px;
  margin-top: 5px;
}

.btn[disabled] {
  opacity: 0.45;
}

/* .btn[disabled]:hover {
  background-color: currentColor;
} */


/* 404 Page */

.wrapper {
  display: flex;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.wrapper .container {
  margin: 0 auto;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.wrapper .container .scene {
  position: absolute;
  width: auto;
  height: 100vh;
  vertical-align: middle;
  display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper .container .one,
.wrapper .container .two,
.wrapper .container .three,
.wrapper .container .circle,
.wrapper .container .p404 {
  width: 60%;
  height: 60%;
  top: 20% !important;
  left: 20% !important;
  min-width: 400px;
  min-height: 400px;
}

.wrapper .container .one .content,
.wrapper .container .two .content,
.wrapper .container .three .content,
.wrapper .container .circle .content,
.wrapper .container .p404 .content {
  width: 600px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: content 0.8s cubic-bezier(1, 0.06, 0.25, 1) backwards;
}

@keyframes content {
  0% {
    width: 0;
  }
}

.wrapper .container .one .content .piece,
.wrapper .container .two .content .piece,
.wrapper .container .three .content .piece,
.wrapper .container .circle .content .piece,
.wrapper .container .p404 .content .piece {
  width: 200px;
  height: 80px;
  display: flex;
  position: absolute;
  border-radius: 80px;
  z-index: 1;
  animation: pieceLeft 8s cubic-bezier(1, 0.06, 0.25, 1) infinite both;
}

@keyframes pieceLeft {
  50% {
    left: 80%;
    width: 10%;
  }
}

@keyframes pieceRight {
  50% {
    right: 80%;
    width: 10%;
  }
}

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

  .wrapper .container .one,
  .wrapper .container .two,
  .wrapper .container .three,
  .wrapper .container .circle,
  .wrapper .container .p404 {
    width: 90%;
    height: 90%;
    top: 5% !important;
    left: 5% !important;
    min-width: 280px;
    min-height: 280px;
  }
  .wrapper{
    height: 80vh;
  }
}

@media screen and (max-height: 660px) {

  .wrapper .container .one,
  .wrapper .container .two,
  .wrapper .container .three,
  .wrapper .container .circle,
  .wrapper .container .p404 {
    min-width: 280px;
    min-height: 280px;
    width: 60%;
    height: 60%;
    top: 20% !important;
    left: 20% !important;
  }
}

.wrapper .container .text {
  width: 60%;
  height: 40%;
  min-width: 400px;
  min-height: 500px;
  position: absolute;
  margin: 40px 0;
  animation: text 0.6s 1.8s ease backwards;
}

@keyframes text {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
}

@media screen and (max-width: 799px) {
  .wrapper .container .text {
    min-height: 400px;
    height: 80%;
  }
}

.wrapper .container .text article {
  width: 400px;
  position: absolute;
  bottom: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
}

@media screen and (max-width: 799px) {
  .wrapper .container .text article {
    width: 100%;
  }
}

.wrapper .container .text article p {
  color: white;
  font-size: 18px;
  letter-spacing: 0.6px;
  margin-bottom: 40px;
  text-shadow: 6px 6px 10px #32243e;
}

.wrapper .container .text article button {
  height: 40px;
  padding: 0 30px;
  border-radius: 50px;
  cursor: pointer;
  z-index: 3;
  color: var(--PrimaryOrange);
  background-color: white;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s ease;
}

.wrapper .container .p404 {
  font-size: 200px;
  font-weight: 700;
  letter-spacing: 4px;
  color: white;
  display: flex !important;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  animation: anime404 0.6s cubic-bezier(0.3, 0.8, 1, 1.05) both;
  animation-delay: 1.2s;
}

@media screen and (max-width: 799px) {
  .wrapper .container .p404 {
    font-size: 100px;
  }
  .wrapper .container .text article p {
  font-size: 16px;
  }
}

@keyframes anime404 {
  0% {
    opacity: 0;
    transform: scale(10) skew(20deg, 20deg);
  }
}

.wrapper .container .p404:nth-of-type(2) {
  color: var(--PrimaryOrange);
  z-index: 1;
  animation-delay: 1s;
  filter: blur(10px);
  opacity: 0.8;
}

.wrapper .container .circle {
  position: absolute;
}

.wrapper .container .circle:before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  /* background-color: var(--PrimaryOrange); */
  border-radius: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* box-shadow: inset 5px 20px 40px rgba(211, 134, 103, 0.25), inset 5px 0px 5px rgba(211, 134, 103, 0.3), inset 5px 5px 20px rgba(211, 134, 103, 0.25), 2px 2px 5px rgba(255, 255, 255, 0.2); */
  animation: circle 0.8s cubic-bezier(1, 0.06, 0.25, 1) backwards;
}

@keyframes circle {
  0% {
    width: 0;
    height: 0;
  }
}

@media screen and (max-width: 799px) {
  .wrapper .container .circle:before {
    width: 400px;
    height: 400px;
  }
}

.wrapper .container .one .content:before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  /* background-color: var(--PrimaryOrange); */
  border-radius: 100%;
  /* box-shadow: inset 5px 20px 40px rgba(54, 24, 79, 0.25), inset 5px 0px 5px rgba(211, 134, 103, 0.3), inset 5px 5px 20px rgba(211, 134, 103, 0.25), 2px 2px 5px rgba(255, 255, 255, 0.2); */
  animation: circle 0.8s 0.4s cubic-bezier(1, 0.06, 0.25, 1) backwards;
}

@media screen and (max-width: 799px) {
  .wrapper .container .one .content:before {
    width: 300px;
    height: 300px;
  }
}

.wrapper .container .one .content .piece {
  background: linear-gradient(90deg, #8077ea 13.7%, #eb73ff 94.65%);
}

.wrapper .container .one .content .piece:nth-child(1) {
  right: 15%;
  top: 18%;
  height: 30px;
  width: 120px;
  animation-delay: 0.5s;
  animation-name: pieceRight;
}

.wrapper .container .one .content .piece:nth-child(2) {
  left: 15%;
  top: 45%;
  width: 150px;
  height: 50px;
  animation-delay: 1s;
  animation-name: pieceLeft;
}

.wrapper .container .one .content .piece:nth-child(3) {
  left: 10%;
  top: 75%;
  height: 20px;
  width: 70px;
  animation-delay: 1.5s;
  animation-name: pieceLeft;
}

.wrapper .container .two .content .piece {
  background: linear-gradient(90deg, #ffedc0 0%, #ff9d87 100%);
}

.wrapper .container .two .content .piece:nth-child(1) {
  left: 0%;
  top: 25%;
  height: 40px;
  width: 120px;
  animation-delay: 2s;
  animation-name: pieceLeft;
}

.wrapper .container .two .content .piece:nth-child(2) {
  right: 15%;
  top: 35%;
  width: 180px;
  height: 50px;
  animation-delay: 2.5s;
  animation-name: pieceRight;
}

.wrapper .container .two .content .piece:nth-child(3) {
  right: 10%;
  top: 80%;
  height: 20px;
  width: 160px;
  animation-delay: 3s;
  animation-name: pieceRight;
}

.wrapper .container .three .content .piece {
  background: #fb8a8a;
}

.wrapper .container .three .content .piece:nth-child(1) {
  left: 25%;
  top: 35%;
  height: 20px;
  width: 80px;
  animation-name: pieceLeft;
  animation-delay: 3.5s;
}

.wrapper .container .three .content .piece:nth-child(2) {
  right: 10%;
  top: 55%;
  width: 140px;
  height: 40px;
  animation-name: pieceRight;
  animation-delay: 4s;
}

.wrapper .container .three .content .piece:nth-child(3) {
  left: 40%;
  top: 68%;
  height: 20px;
  width: 80px;
  animation-name: pieceLeft;
  animation-delay: 4.5s;
}

.my-error-class {
  color: #ba3939;
  font-size: 12px;
  display: block;
  margin-top: 5px;
}


/* Contact Us Modal Send */
.swal2-popup{
  color: rgba(255, 255, 255, 0.5) !important;
  background-color: #272727 !important;
  font-family: 'montserratsemibold' !important;
}

.swal2-styled.swal2-confirm{
  background-color: var(--PrimaryOrange) !important;
}

.swal2-title{
  font-family: 'montserratsemibold' !important;
}

.swal2-success-circular-line-right{
  display: none !important;
}
.swal2-success-fix{
  display: none !important;
}

.swal2-success-circular-line-left{
  display: none !important;
}

.swal2-styled:focus{
box-shadow: none !important;
}

.about-founder-photo {
  max-width: 20rem; 
  float: left; 
  margin: 0 24px 16px 0;
}
.founder-photo {
  width: 100%;
  border-radius: 10px;
}

/* ===================================== */

/* ------------------------------------------------------------------------------- */
/*  11. Responsive styles
/* ------------------------------------------------------------------------------- */



/* 11.1 Min width 768px */



@media (min-width: 768px) {


  html {
    font-size: 85%;
  }



  /* Slider */



  .arrow-left {
    top: 43.5vmin;
    bottom: auto;
  }

  .arrow-right {
    left: 18vmin;
    right: auto;
    margin-left: 5em;
    top: 43.5vmin;
    bottom: auto;
  }

  .slide-cityname {
    top: 27.5vmin;
  }

  /* About */



  .entry {
    padding: 0 7.5em;
  }

  .col-about-spec {
    /* padding: 0 4.4em; */
  }



  /* Project Carousel */



  .owl-prev {
    left: 3.6em
  }

  .owl-next {
    right: 3.6em;
  }



  /* Projects Deatails */



  .project-details {
    margin-top: 5.1em;
  }


  .project-details-item {
    margin-bottom: 7.1em;
  }

  .project-details-info {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 13%;
    /* bottom: 13%; */
    width: 55%;
  }

  .project-details-item:nth-child(odd) .project-details-img {
    padding-left: 15px;
    padding-right: 15px;
  }

  .project-details-item:nth-child(even) .project-details-img {
    padding-right: 15px;
    padding-left: 15px;
  }
}



/* 11.2 Min width 992px */



@media (min-width: 992px) {



  html {
    font-size: 92%;
  }



  /* Content styles */



  .text-center-md {
    text-align: center;
  }

  .text-right-md {
    text-align: right;
  }

  .text-left-md {
    text-align: left;
  }



  /* Navbar Mobile */


  .navbar-mobile {
    position: absolute;
    left: -50000px;
    top: -50000px;
  }



  /* About */



  .col-about-img {
    padding-left: 0;
    left: -5px;
  }

  .col-about-img img {
    max-width: calc(100% + 5px);
  }

  .about-services {
    flex-direction: column;
  }

  /* Project Details */



  .project-details-item:nth-child(odd) .project-details-img {
    padding-left: 5px;
    padding-right: 15px;
  }

  .project-details-item:nth-child(even) .project-details-img {
    padding-right: 5px;
    padding-left: 15px;
  }



  /* Blog Details */



  .col-primary {
    padding-right: 2.2em;
  }

  .col-secondary {
    margin-top: 10.62em;
    margin-left: -5px;
    padding: 0 10px 0 0;
  }



  /* Contacts */


  .row-field {
    margin-left: -15px;
  }

  .col-map {
    position: static;
    height: 100%;
  }

  .row.contact-row {
    display: flex;
    align-items: flex-end;
    /* z-index: 2; */
  }



}


/* 11.3 Min width 1200px */



@media (min-width: 1200px) {

  .vertical-panel,
  .vertical-panel-content {
    bottom: 0%;
  }

  html {
    font-size: 100%;
  }



  /* Header */



  .main-header {
    padding-left: 0;
  }



  /* Project Details */


  .project-details-info {
    width: 44%;
  }

}



/* 11.4 Max height 480px  */



@media (max-height: 480px) {



  /* Slider */



  .arrow-left {
    top: 43.5vmin;
    bottom: auto;
  }

  .arrow-right {
    left: 28vmin;
    right: auto;
    margin-left: 5em;
    top: 43.5vmin;
    bottom: auto;
  }

}

@media (max-width: 992px) {
  .row-mobile {
    display: flex;
    flex-direction: column;
  }

  .section-title.title-custom-position {
    position: initial;
    margin-bottom: 1em;
  }

  .footer .row-mobile {
    align-items: center;
  }

  .column-reverse {
    flex-direction: column-reverse;
  }

  .nav-tabs>li>a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
  }

  .about-services.nav-tabs>li>.service-item {
    align-items: center
  }

  .brand-panel {
    width: 32.47vmin;
    height: 26.47vmin;
  }
  .about-founder-photo {
margin: 0 auto;
float: inherit;
padding-bottom: 18px;
  }



}

@media (max-width: 767px) {
  .clients-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .clients-list .client {
    max-width: 33%;
  }

  .clients-list .client img {
    height: auto;
    width: 100%;
  }

  .checkbox-group {
    justify-content: flex-start;
  }
}

#team .col-base {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.leadership .leader__img {
  width: 100%;
  max-width: 310px;
  /* height: 300px; */
  height: 18rem;
  position: relative;
  background: linear-gradient(180deg, #313131 0%, #050505 100%);
  border-radius: 20px 20px 0 0;
  transition: 0.2s all ease-in;
  margin-top: 40px;
}

.leadership .leader__img img {
  position: absolute;
  margin: auto;
  right: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  /* height: 340px; */
  height: 20rem;
  text-align: center;
  width: 100%;
  filter: saturate(0%);
  object-fit: contain;
  transition: 0.2s all ease-in;
}

.leadership .leader__name {
  width: 100%;
  max-width: 310px;
  padding: 20px;
  transition: 0.2s all ease-in;
  background: black;
}

.leadership .leader__name h4 {
  letter-spacing: 0.05em;
  text-transform: capitalize;
  margin: 0;
  font-family: 'Montserrat';
}

.leadership .leader__name p {
  margin-bottom: 0;
  transition: 0.2s all ease-in;
}

.leadership .leader__img:hover {
  background: linear-gradient(180deg, #FF9032 0%, #000000 90.5%);
  transition: 0.2s all ease-in-out;
}

.leadership .leader__img:hover img {
  filter: saturate(100%);
  transition: 0.2s all ease-in-out;
}

@media (max-width: 767px) {
  .leadership .leader__name{
    text-align: center;
    padding: 10px;
  }
  #team .col-base{
    flex: 0 0 100%;
  }
}