/*!
Theme Name: buildingpro
Theme URI: https://webdeveloper.com.ua/
Author: webdeveloper.com.ua
Author URI: https://t.me/webdeveloper_com_ua
Description:
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: buildingpro
Tags:
----------------------------------------------------------------------------------------- */

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
}

*:focus,
*:active {
  outline: none;
}

:root {
  /* Colors */
  --color-black: #000;
  --color-black-graphit: #14181b;

  --color-white: #fff;
  --color-white-trans: rgba(255, 255, 255, 0.15);

  --color-main: ;

  --color-accent: #d2793c;

  --color-gray: gray;
  --color-gray-dark: darkgray;
  --color-gray-light: lightgray;

  /* Fonts */
  --font-montserrat: "Montserrat", sans-serif;
}

html {
  line-height: normal;
  scroll-behavior: smooth;
}

body {
  font-size: 15px;
  font-weight: 400;
  font-display: auto;
  position: relative;
  color: var(--color-white);
  font-family: var(--font-montserrat);
  background: var(--color-black-graphit);
}

@media only screen and (max-width: 576px) {
  body {
    font-size: 14px;
  }
}

/* body::after {
  top: 0;
  left: 5%;
  content: '';
  height: 100%;
  z-index: 1001;
  display: block;
  position: absolute;
  border-right: 1px solid var(--color-white-trans);
} */

.container,
.container-short,
.container-fluid {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.container {
  max-width: 1320px !important;
}

.container-short {
  max-width: 920px !important;
}

.container-fluid {
  max-width: 100% !important;
}

.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

[class*="col-"] {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  max-width: 100%;
  padding: 15px;
}

.x-space-between {
  justify-content: space-between;
}

.y-center {
  align-items: center;
}

.margin-y > *:not(:last-child) {
  margin: 0 0 30px 0;
}

.col-xs {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

@media only screen and (min-width: 576px) {
  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 992px) {
  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Template Parts
 *
----------------------------------------------------------------------------------------- */

/*  Template Part: Site Header
----------------------------------------------------------------------------------------- */

/* Site Header
------------------------------- */
.site-header {
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  display: flex;
  z-index: 1000;
  position: sticky;
  transition: 0.3s;
  align-items: center;
}

.site-header [class*="col-"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Site Header: Absolute
------------------------------- */
.site-header.absolute {
  position: fixed;
}

/* Site Header: Onscroll
------------------------------- */
.onscroll .site-header {
  background: var(--color-black-graphit);
}

/* Site Header: Elements
------------------------------- */
/* .site-buttons */
.site-buttons {
  display: flex;
  align-items: center;
}

.site-buttons > *:not(:first-child) {
  margin: 0 0 0 30px;
}

/* .site-phones */
.site-phones {
  display: flex;
  flex-direction: column;
}

.site-phones > * {
  font-size: 16px;
  font-weight: 600;
}

.site-phones > *:not(:last-child) {
  margin: 0 0 10px 0;
}

/* Site Header: Responsive
------------------------------- */
@media only screen and (max-width: 992px) {
  .site-header .site-buttons {
    display: none;
  }
}

/*  Template Part: Page Header
----------------------------------------------------------------------------------------- */
.page-header {
  padding: 15px 0;
  box-shadow: inset 0px 10px 27px rgba(0, 0, 0, 0.25),
    inset 0px -10px 27px rgba(0, 0, 0, 0.25);
}

.page-header [class*="col-"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*  Page Header: Page Title
------------------------------- */
.page-title {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

@media only screen and (max-width: 992px) {
  .page-header [class*="col-"] {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-header [class*="col-"] > *:not(:last-child) {
    margin: 0 0 5px 0;
  }
}

@media only screen and (max-width: 576px) {
  .page-breadcrumb {
    opacity: 0.6;
    font-size: 10px;
  }
}

/*  Template Part: Site Footer
----------------------------------------------------------------------------------------- */
.site-footer {
  padding: 60px 0;
}

/*  Site Footer: Copyright
------------------------------- */
.copyright-text {
  opacity: 0.4;
}

/*  Template Part: Comments
----------------------------------------------------------------------------------------- */
.comment-list > .comment {
  padding: 30px;
  background: var(--color-gray-light);
  border: 1px solid var(--color-gray-light);
}

.comment-list > .comment:not(:last-child),
.comment-list > .comment ul.children .comment:not(:last-child) {
  margin-bottom: 30px;
}

.comment-list > .comment ul.children {
  margin: 30px 0 0 30px;
}

.comment-body {
  padding: 30px;
  background: var(--color-white);
}

.comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comment-meta > .comment-author {
  display: flex;
  align-items: center;
}

.comment-meta > .comment-author > .avatar {
  margin-right: 10px;
}

.comment-meta > .comment-metadata {
  font-size: 12px;
}

.comment-content {
  padding: 15px 0;
  margin: 15px 0;
  border-top: 1px solid var(--color-gray-light);
  border-bottom: 1px solid var(--color-gray-light);
}

/* --------------------------------------------------------------------------------------
 *
 *  Template Sections
 *
----------------------------------------------------------------------------------------- */

section {
  padding: 60px 0;
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  section {
    padding: 30px 0;
  }
}

/*  Section: About
----------------------------------------------------------------------------------------- */
#about ul {
  list-style: none;
  margin: 0;
}

#about ul li {
  padding: 15px;
  border-radius: 15px;
  transition: 0.3s;
  border: 1px solid var(--color-accent);
}

#about ul li:hover {
  color: var(--color-white);
  background: var(--color-accent);
}

/*  Section: Hero
----------------------------------------------------------------------------------------- */
#hero {
  padding: 0;
  position: relative;
}

#hero > .overlay {
  display: flex;
  align-items: center;
  padding: 120px 0 60px 0;
  background: rgba(0, 0, 0, 0.8);
  min-height: calc(var(--vh, 1vh) * 100);
}

#hero [class*="col-"] {
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

/*  Hero: Elements
------------------------------------------ */

/* .scroll-down */
.scroll-down {
  left: 50%;
  bottom: 0;
  z-index: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  animation-name: scrolldown;
  animation-duration: 5s;
  font-size: 42px;
  transform: translateX(-50%);
  transition-timing-function: ease-out;
  color: var(--color-accent);
}

.scroll-down span:first-child {
  margin-bottom: 15px;
}

@keyframes scrolldown {
  0% {
    bottom: 0;
  }
  50% {
    bottom: 30px;
  }
  100% {
    bottom: 0;
  }
}

@media only screen and (max-width: 576px) {
  #hero > .overlay {
    min-height: 640px;
  }
}

/*  Section: 404
----------------------------------------------------------------------------------------- */
.content-404 {
  text-align: center;
}

.content-404 .label {
  line-height: 1;
  font-weight: 800;
  font-size: 250px;
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  .content-404 .label {
    font-size: 125px;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Components
 *
----------------------------------------------------------------------------------------- */

/*  Component: Collage
----------------------------------------------------------------------------------------- */

/*  Collage: Collage
----------------------------------------- */
.collage {
  height: 100%;
  width: 100%;
  max-width: 525px;
  max-height: 525px;
  display: flex;
  min-height: 350px;
  position: relative;
  align-items: center;
  justify-content: center;
}

.collage::before,
.collage::after {
  z-index: -1;
  content: "";
  height: 95%;
  display: block;

  border-right: 5px dotted var(--color-white-trans);
}

.collage::before {
  transform: rotate(45deg) !important;
}

.collage::after {
  transform: rotate(-45deg) !important;
}

.collage > .collage-image:nth-child(1) {
  top: 0;
  left: 0;
}

.collage > .collage-image:nth-child(2) {
  top: 0;
  right: 0;
}

.collage > .collage-image:nth-child(3) {
  bottom: 0;
  left: 0;
}

.collage > .collage-image:nth-child(4) {
  bottom: 0;
  right: 0;
}

.collage-banner,
.collage-image {
  position: absolute;
}

.collage-banner::after,
.collage-image::after {
  display: flex;
  position: absolute;
  align-items: center;
  border-radius: 100%;
  justify-content: center;
  background: var(--color-white);
}

.collage-banner img,
.collage-image img {
  object-fit: cover;
  border-radius: 100%;
  border: 2px solid var(--color-accent);
}

/*  Collage: Collage Banner
----------------------------------------- */
.collage-banner {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.collage-banner::after {
  bottom: 15px;
  width: 60px;
  height: 60px;
  content: url("https://api.iconify.design/bx/bxs-check-shield.svg?color=green&width=35&height=35");
}

.collage-banner img {
  width: 250px;
  height: 250px;
  animation: shadow-pulse 2s infinite;
  border: 4px solid rgba(0, 128, 0, 0.705);
}

/*  Collage: Collage Image
----------------------------------------- */
.collage-image {
  width: 130px;
  height: 130px;
}

.collage-image::after {
  bottom: 5%;
  width: 30px;
  height: 30px;
  position: absolute;
  content: url("https://api.iconify.design/bi/volume-up-fill.svg?color=red");
}

/* Animation */
@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 128, 0, 0.705);
  }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
  }
}

@media only screen and (max-width: 576px) {
  .collage-banner img {
    width: 150px;
    height: 150px;
  }
  .collage-image {
    height: 90px;
    width: 90px;
  }
}

/*  Component: Team
----------------------------------------------------------------------------------------- */
.teammate-box > *:not(:last-child) {
  margin: 0 0 15px 0;
}

/*  Team: Teammate Info
----------------------------------------- */
.teammate-info > .teammate-name {
  margin: 0 0 5px 0;
}

/*  Team: Teammate Photo
----------------------------------------- */
.teammate-photo {
  width: 100%;
  height: 440px;
  display: block;
  overflow: hidden;
  border-radius: 30px;
}

.teammate-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*  Team: Teammate Name
----------------------------------------- */
.teammate-name {
  font-size: 20px;
  font-weight: 600;
}

/*  Team: Teammate Post
----------------------------------------- */
.teammate-post {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white-trans);
}

/*  Component: Tabs
----------------------------------------------------------------------------------------- */

/*  Tabs
----------------------------------------- */
.tabs {
  display: flex;
  position: relative;
}

.tabs::after {
  z-index: -1;
  width: 100%;
  bottom: 0px;
  content: "";
  display: block;
  position: absolute;
  border-bottom: 2px solid var(--color-gray-light);
}

/*  Tabs: Tabbutton
----------------------------------------- */

/* .tabbutton */
.tabbutton {
  width: 100%;
  height: 80px;
  display: flex;
  padding: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid transparent;
}

.tabbutton.active,
.tabbutton:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* .tabbutton-icon */
.tabbutton-icon {
  width: 60px;
  height: 60px;
  margin: 0 0 15px 0;
  min-width: 60px;
  min-height: 60px;
}

/*  Tabs: Tabcontent
----------------------------------------- */
.tabcontent {
  display: none;
  overflow: hidden;
  position: relative;
  animation: fadeEffect 0.3s;
  -webkit-animation: fadeEffect 0.3s;
}

/* .tabcontent-title */
.tabcontent-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-gray-dark);
}

/* .tabcontent-list */
.tabcontent-list > *:not(:last-child) {
  margin: 0 0 15px 0;
}

/*  Tabs: Animations
----------------------------------------- */
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*  Tabs: Responsive
----------------------------------------- */
@media only screen and (max-width: 1320px) {
  .tabs {
    overflow-x: scroll;
  }
  .tabbutton {
    min-width: 25%;
  }
}

@media only screen and (max-width: 992px) {
  .tabbutton {
    min-width: 33.33%;
  }
}

@media only screen and (max-width: 768px) {
  .tabbutton {
    min-width: 50%;
  }
}

@media only screen and (max-width: 576px) {
  .tabbutton {
    font-size: 16px;
  }
  .tabcontent {
    padding: 30px 0 0 0;
  }
}

/*  Component: Widget
----------------------------------------------------------------------------------------- */

/*  Widget: Widget Branding
------------------------------------------ */
.widget-branding {
  display: flex;
  flex-direction: column;
}

.widget-branding > * {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.widget-branding > *:not(:last-child) {
  margin: 0 0 30px 0;
  padding: 0 0 30px 0;
  border-bottom: 1px solid var(--color-white-trans);
}

/*  Widget: Widget Title
------------------------------------------ */
.widget-title {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}

/*  Component: Swiper
----------------------------------------------------------------------------------------- */
.swiper-pagination {
  position: unset !important;
  margin: 30px 0 0 0;
}

.swiper-pagination-bullet-active {
  background: var(--color-accent) !important;
}

/*  Component: Language Switcher
----------------------------------------------------------------------------------------- */
.language-switcher {
  display: flex;
}

.language-switcher > * {
  transition: 0.3s;
}

.language-switcher > *:hover,
.language-switcher > .current-language {
  cursor: pointer;
  color: var(--color-accent);
}

.language-switcher > *:not(:last-child) {
  margin: 0 15px 0 0;
}

/*  Component: Contact List $ Items
----------------------------------------------------------------------------------------- */

/*  Contact List
------------------------------------------ */
.contact-list {
  display: flex;
  flex-direction: column;
}

.contact-list > *:not(:last-child) {
  margin: 0 0 15px 0;
}

/*  Contact Item
------------------------------------------ */
.contact-item {
  display: flex;
  align-items: center;
}

.contact-item > *:not(:last-child)::after {
  content: ",";
  margin: 0 5px 0 0;
}

/*  Contact Item: Social Networks
------------------------------------------ */
.social-networks {
  display: flex;
}

.social-networks > * {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: 0.3s;
  border: 1px solid var(--color-white-trans);
}

.social-networks > *:hover {
  color: var(--color-accent);
  border-color: var(--color-accent) !important;
}

.social-networks > *:not(:last-child) {
  margin: 0 15px 0 0;
}

/*  Component: Service
----------------------------------------------------------------------------------------- */

@media only screen and (max-width: 576px) {
  .single-service aside {
    display: none;
  }
}

/*  Service: Service Box
------------------------------------------ */
.service-box {
  height: 220px;
  display: flex;
  padding: 30px;
  overflow: hidden;
  position: relative;
  border-radius: 30px;
  align-items: flex-end;
}

.service-box::after {
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transition: 0.3s;
  position: absolute;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.73) 44.06%,
    rgb(0, 0, 0) 100%
  );
}

.service-box > * {
  z-index: 1;
  position: relative;
}

.service-box .service-title {
  max-width: 320px;
}

/* .service-box.small */
.service-box.small {
  border-radius: 15px;
}

/*  Service: Service Title
------------------------------------------ */
.service-title {
  font-size: 18px;
  font-weight: 600;
}

/*  Service: Service Thumbnail
------------------------------------------ */
.service-thumbnail {
  display: block;
  overflow: hidden;
  border-radius: 30px;
}

.service-thumbnail > img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/*  Service: Service List
------------------------------------------ */
.service-list {
  display: flex;
  flex-direction: column;
}

.service-list > *:not(:last-child) {
  margin: 0 0 30px 0;
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  .service-box {
    height: 160px;
    border-radius: 15px;
  }
  .service-title {
    font-size: 16px;
  }
  .service-thumbnail > img {
    height: 260px;
  }
}

/*  Component: Post
----------------------------------------------------------------------------------------- */

/*  Component: Portfolio
----------------------------------------------------------------------------------------- */

/*  Portfolio: Video Cover
------------------------------------------ */
.video-cover {
  width: 100%;
  height: 320px;
  display: flex;
  overflow: hidden;
  transition: 0.3s;
  position: relative;
  border-radius: 30px;
}

.video-cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-cover .play-button {
  top: 50%;
  left: 50%;
  font-size: 90px;
  position: absolute;
  transition: 0.3s;
  color: var(--color-white);
  transform: translate(-50%, -50%) !important;
}

.video-cover:hover .play-button {
  color: var(--color-accent);
  transform: translate(-50%, -50%) scale(1.1) !important;
}

/*  Portfolio: Photo Cover
------------------------------------------ */
.photo-cover {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/*  Component: Leadbar
----------------------------------------------------------------------------------------- */
#leadbar {
  box-shadow: inset 0px -25px 27px rgba(0, 0, 0, 0.25),
    inset 0px 25px 27px rgba(0, 0, 0, 0.25);
}

#leadbar [class*="col-"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 992px) {
  #leadbar [class*="col-"] {
    flex-direction: column;
    align-items: flex-start;
  }
  #leadbar [class*="col-"] > *:not(:last-child) {
    margin: 0 0 15px 0;
  }
}

/*  Component: Card
----------------------------------------------------------------------------------------- */
.card {
  padding: 60px;
  border-radius: 30px;
  box-shadow: inset 0px -25px 27px rgba(0, 0, 0, 0.25),
    inset 0px 25px 27px rgba(0, 0, 0, 0.25);
}

.card.unstyle {
  box-shadow: unset;
}

@media only screen and (max-width: 768px) {
  .card {
    padding: 30px;
  }
  .card.unstyle {
    padding: 15px;
  }
}

/*  Component: Counters
----------------------------------------------------------------------------------------- */
#counters {
  box-shadow: inset 0px -25px 27px rgba(0, 0, 0, 0.25),
    inset 0px 25px 27px rgba(0, 0, 0, 0.25);
}

/*  Counter Item
------------------------------------------ */
.counter-item {
  display: flex;
  margin: 0 auto;
  max-width: 240px;
  text-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.counter-item > *:not(:last-child) {
  margin: 0 0 10px 0;
}

/*  Counter Value
------------------------------------------ */
.counter-value {
  font-size: 72px;
  font-weight: 700;
  color: var(--color-accent);
  text-shadow: 1px 1px #000, 0 1px 0 rgb(0, 0, 0);
}

/*  Counter Text
------------------------------------------ */
.counter-text {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

@media only screen and (max-width: 576px) {
  .counter-value {
    font-size: 42px;
  }
  .counter-text {
    font-size: 12px;
    font-weight: 500;
  }
}

/*  Component: Heading
----------------------------------------------------------------------------------------- */

/*  Heading
------------------------------------------ */
.heading {
  display: flex;
  flex-direction: column;
}

.heading.center {
  text-align: center;
  align-items: center;
  justify-content: center;
}

/*  Heading: Heading Uptitle
------------------------------------------ */
.heading-uptitle {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
}

/*  Heading: Heading Title
------------------------------------------ */
.heading-title {
  font-size: 42px;
  font-weight: 600;
}

h1.heading-title {
  font-size: 82px;
  font-weight: 800;
  text-transform: uppercase;
}

.heading-title.small {
  font-size: 32px;
}

/*  Heading: Heading Text
------------------------------------------ */
.heading-text {
  font-size: 18px;
  font-weight: 500;
}

/*  Heading: Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  h1.heading-title {
    font-size: 38px;
  }
  .heading-title {
    font-size: 24px;
  }
  .heading-title.small {
    font-size: 22px;
  }
  .heading-uptitle {
    font-size: 18px;
  }
  .heading-text {
    font-size: 16px;
  }
}

/*  Component: Site Branding
----------------------------------------------------------------------------------------- */
.site-branding > * {
  display: block;
}

.site-branding > *:not(:last-child) {
  margin: 0 0 10px 0;
}

/*  Site Branding: Site Logo
------------------------------------------ */
.site-logo {
  max-height: 25px;
}

/*  Site Branding: Site Description
------------------------------------------ */
.site-description {
  font-size: 0.84rem;
  text-transform: uppercase;
}

@media only screen and (max-width: 576px) {
  .site-logo {
    max-height: 15px;
  }
  .site-description {
    font-size: 0.7rem;
  }
}

/*  Component: Site Copyright
----------------------------------------------------------------------------------------- */
.site-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-copyright .developer {
  opacity: 0.6;
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  .site-copyright {
    text-align: center;
    flex-direction: column;
    justify-content: center;
  }
  .site-copyright > *:not(:last-child) {
    margin-bottom: 10px;
  }
}

/*  Component: Editor Styles
----------------------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 30px 0;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

p {
  line-height: 1.5;
}

p:not(:last-child) {
  margin-bottom: 15px;
}

ul,
ol,
dl {
  line-height: 1.5;
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
}

img.grayscale {
  filter: grayscale(100%);
}

img.rounded {
  border-radius: 30px;
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0 0 15px 0;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }
}

/*  Editor Styles
------------------------------------------ */
.editor p {
  text-align: justify;
}

.editor ul,
.editor ol {
  margin: 0 0 15px 15px;
}

.editor ul li:not(:last-child),
.editor ol li:not(:last-child) {
  margin: 0 0 10px 0;
}

.editor ul {
  list-style: circle;
}

.editor ol {
  list-style: decimal;
}

/*  Component: Buttons
----------------------------------------------------------------------------------------- */
.buttons {
  display: flex;
  align-items: center;
  min-width: max-content;
}

.buttons.center {
  justify-content: center;
}

.buttons > *:not(:first-child) {
  margin: 0 0 0 15px;
}

.buttons [class*="button-"] {
  height: 40px;
  display: flex;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  padding: 0 30px;
  text-align: center;
  color: var(--color-white);
  align-items: center;
  border-radius: 30px;
  font-weight: 600;
  text-transform: capitalize;
  justify-content: center;
  border: 1px solid transparent;
  background: var(--color-accent);
}

/*  Button: XL
------------------------------------------ */
.buttons .button-xl {
  height: 60px;
}

/*  Button: Chevron Right
------------------------------------------ */
.buttons [class*="button-"].chevron-right {
  padding: 0 0 0 30px;
}

.buttons [class*="button-"].chevron-right::after {
  content: url("https://api.iconify.design/carbon/chevron-right.svg?color=white&width=24&height=24");
  height: 50px;
  width: 50px;
  background: #e49b69;
  border-radius: 100%;
  display: flex;
  margin: 5px;
  align-items: center;
  justify-content: center;
}

/*  Component: Form
----------------------------------------------------------------------------------------- */
input,
textarea {
  width: 100%;
  padding: 15px 25px;
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white-trans);
}

input[type="sibmit"] {
  max-width: max-content;
}

textarea {
  height: 120px;
}

/*  Form
------------------------------------------ */
form p {
  margin: 0 !important;
}

form label {
  display: block;
}

form .buttons {
  flex-direction: column;
}

.wpcf7-response-output {
  padding: 0 !important;
  margin: 15px 0 0 0 !important;
}

/*  Component: Modal
----------------------------------------------------------------------------------------- */
.modal {
  display: none;
  background: var(--color-black-graphit) !important;
}

/*  Modal: Modal Lead
------------------------------------------ */
#modal-lead {
  font-weight: 600;
  text-align: center;
}

#modal-lead > *:not(:last-child) {
  margin: 0 0 15px 0;
}

#modal-lead .modal-text {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

#modal-lead .site-phones > * {
  font-size: 24px;
  color: var(--color-accent);
}

/* --------------------------------------------------------------------------------------
 *
 *  Navigations
 *
----------------------------------------------------------------------------------------- */

/*  Navigation: Main Navigation
----------------------------------------------------------------------------------------- */

.main-navigation .language-switcher {
  display: none;
  padding: 15px 30px;
  box-shadow: inset 0px 10px 27px rgba(0, 0, 0, 0.25),
    inset 0px -10px 27px rgba(0, 0, 0, 0.25);
  background: var(--color-black-graphit);
}

/* .main-navigation */
.main-navigation {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.main-navigation::-webkit-scrollbar {
  display: none;
}

/* .main-navigation > menu */
.main-navigation .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* .main-navigation > menu-item */
.main-navigation .menu > .menu-item {
  height: 100%;
  position: relative;
}

.main-navigation:not(.mobile) .menu > .menu-item:not(:last-child) {
  margin: 0 30px 0 0;
}

.main-navigation .menu > .menu-item > a {
  width: 100%;
  height: 60px;
  display: flex;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.main-navigation .menu > .menu-item > a:hover,
.main-navigation .menu > .current-menu-item > a {
  opacity: 0.6;
}

.main-navigation .menu > .current-menu-item > a {
  opacity: 1;
  color: var(--color-accent);
}

/* .main-navigation > .sub-menu */
.main-navigation .menu > .menu-item > a > .dropdown-toggle {
  width: 12px;
  height: 12px;
  display: block;
  margin: 0 0 0 5px;
}

.site-header .menu .dropdown-toggle {
  background: url("https://api.iconify.design/carbon/chevron-down.svg?color=white")
    no-repeat center center / contain;
}

.main-navigation.mobile .menu > .menu-item > a > .dropdown-toggle {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}

.main-navigation .menu > .menu-item > .sub-menu {
  left: 0;
  z-index: 1000;
  overflow: hidden;
  position: absolute;
  max-height: 0;
  width: 100%;
  max-width: 576px;

  display: flex;
  flex-direction: column;
  color: var(--color-white);
  border-radius: 5px;
  background: hsla(0, 0%, 0%, 0.8);
}

.main-navigation:not(.mobile) .menu > .menu-item:hover > .sub-menu,
.main-navigation .menu > .menu-item > .sub-menu.open {
  padding: 15px;
  flex-wrap: wrap;
  min-width: 250px;
  max-height: min-content;
}

.main-navigation .menu > .menu-item > .sub-menu .menu-item a {
  display: flex;
  padding: 5px;
  font-weight: 600;
  transition: 0.3s;
  align-items: center;
}

.main-navigation .menu > .menu-item > .sub-menu .menu-item a:hover {
  color: var(--color-accent);
  padding: 5px 5px 5px 2px;
}

/* .main-navigation-mobile */
.main-navigation.mobile {
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: block;
  min-height: 50vh;
  overflow-y: scroll;
  position: absolute;
  color: var(--color-white);
  background: var(--color-black-graphit);
}

.main-navigation.mobile .menu {
  flex-direction: column;
  align-items: flex-start;
}

.main-navigation.mobile .menu .menu-item {
  width: 100%;
}

.main-navigation.mobile .menu > .menu-item > a {
  padding: 0 30px;
  justify-content: space-between;
}

/* .main-navigation-mobile > .sub-menu */
.main-navigation.mobile .menu .menu-item .sub-menu {
  left: 0;
  min-width: 100%;
  position: unset;
  transform: unset;
  color: var(--color-black);
  background: var(--color-white);
}

/*  Menu toggle
------------------------------------------ */
.menu-toggle {
  width: 50px;
  height: 32px;
  display: none;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-accent);
  border-radius: 0;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
  top: 0px;
}

.menu-toggle span:nth-child(2),
.menu-toggle span:nth-child(3) {
  top: 14px;
}

.menu-toggle span:nth-child(4) {
  top: 28px;
}

.menu-toggle.change span:nth-child(1) {
  top: 14px;
  width: 0%;
  left: 50%;
}

.menu-toggle.change span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-toggle.change span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu-toggle.change span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/* Main Navigation: Responsive
------------------------------- */
@media only screen and (max-width: 1320px) {
  .menu-toggle {
    display: block;
  }
  .main-navigation {
    display: none;
  }
  .main-navigation .language-switcher {
    display: block;
  }
}

/*  Navigation: Post Navigation / Post Pagintaion / Comment Navigation
----------------------------------------------------------------------------------------- */

/* .navigation */
.navigation > .screen-reader-text {
  display: none;
}

/* .navigation > .nav-links */
.nav-links {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.nav-links > [class*="nav-"] {
  max-width: 320px;
}

.nav-links > .nav-next {
  margin-left: auto;
}

.nav-links > .nav-previous {
  margin-right: auto;
}

.nav-links > [class*="nav-"] > a {
  display: flex;
  line-height: 1.5;
  align-items: flex-start;
}

.nav-links > .nav-next > a {
  text-align: right;
}

.nav-links > .nav-previous > a {
  text-align: left;
}

.nav-links > .nav-previous > a::before,
.nav-links > .nav-next > a::after {
  content: "";
  min-width: 20px;
  min-height: 20px;
  display: block;
}

.nav-links > .nav-previous > a::before {
  margin-right: 10px;
  background: url("https://api.iconify.design/carbon:chevron-left.svg")
    no-repeat center center / contain;
}

.nav-links > .nav-next > a::after {
  margin-left: 10px;
  background: url("https://api.iconify.design/carbon:chevron-right.svg")
    no-repeat center center / contain;
}

/* .pagination > .nav-links */
.pagination .nav-links {
  align-items: center;
  justify-content: center;
}

.pagination .nav-links > .page-numbers {
  width: 50px;
  height: 50px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.pagination .nav-links > .page-numbers.prev {
  background: url("https://api.iconify.design/carbon:chevron-left.svg")
    no-repeat center center / contain;
}

.pagination .nav-links > .page-numbers.next {
  background: url("https://api.iconify.design/carbon:chevron-right.svg")
    no-repeat center center / contain;
}

.pagination .nav-links > .page-numbers:not(:last-child) {
  margin-right: 15px;
}
