/*!
Theme Name: globalproject
Theme URI: https://webdeveloper.com.ua/
Author: webdeveloper.com.ua
Author URI: https://t.me/webdeveloper_com_ua
Description:
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: globalproject
Tags:
----------------------------------------------------------------------------------------- */

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

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

/*  Variables
---------------------------------------- */
:root {
  /* Default Color Scheme */
  --black: #000;
  --white: #fff;

  /* Main Color Scheme */
  --main: ;
  --main-dark: ;
  --main-light: ;

  /* Accent Color Scheme */
  --accent: #262f36;
  --accent-dark: ;
  --accent-light: #fbd848;

  /* Gray Colors */
  --gray: #797979;
  --gray-dark: #383838;
  --gray-light: #f3f3f3;

  /* Fonts */
  --serif: ;
  --sans-serif: "Inter", sans-serif; /*300, 400, 600, 800*/
}

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

body {
  font-size: 14px;
  font-weight: 400;
  font-display: auto;
  font-family: var(--sans-serif);
}

section {
  padding: 80px 0;
}

/*  Headings
---------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 18px;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

.section-head.center {
  display: flex;
  justify-content: center;
}

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

/*  Text
---------------------------------------- */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

p {
  line-height: 1.7;
  font-weight: 300;
}

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

.bordered-text {
  color: white;
  text-shadow: -1px -1px 0 #f7c51e, 1px -1px 0 #f7c51e, -1px 1px 0 #f7c51e,
    1px 1px 0 #f7c51e;
}

@supports ((text-stroke: 2px black) or (-webkit-text-stroke: 2px black)) {
  .bordered-text {
    color: transparent;
    -webkit-text-stroke: 2px #f7c51e;
    text-stroke: 2px #f7c51e;
    text-shadow: none;
  }
}

/*  List
---------------------------------------- */
ul,
ol,
dl {
  font-weight: 300;
  line-height: 1.7;
  list-style: none;
}

.column-ul,
.inline-ul {
  display: flex;
}

.column-ul {
  flex-direction: column;
  align-items: flex-start;
}

.column-ul li:not(:last-child) {
  margin-bottom: 10px;
}

.inline-ul {
  flex-direction: row;
  align-items: center;
}

.inline-ul li:not(:last-child) {
  margin-right: 10px;
}

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

/*  Icons
---------------------------------------- */
[class*="wd-icon-"] {
  margin-right: 15px;
  display: inline-flex;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

[class*="wd-icon-"].xs {
  width: 15px;
  min-height: 15px;
}

[class*="wd-icon-"].s {
  width: 20px;
  min-height: 20px;
}

[class*="wd-icon-"].m {
  width: 25px;
  min-height: 25px;
}

[class*="wd-icon-"].xl {
  width: 50px;
  min-height: 50px;
}

[class*="wd-icon-"].xxxl {
  width: 300px;
  min-height: 50px;
}

.wd-icon-contact {
  background-image: url(/wp-content/themes/globalproject/media/contact.png);
}

.wd-icon-phone {
  background-image: url(/wp-content/themes/globalproject/media/phone.png);
}

.wd-icon-mail {
  background-image: url(/wp-content/themes/globalproject/media/mail.png);
}

.wd-icon-pin {
  background-image: url(/wp-content/themes/globalproject/media/pin.png);
}

.wd-icon-down-arrow {
  background-image: url(/wp-content/themes/globalproject/media/down-arrow.png);
}

.wd-icon-viber {
  background-image: url(/wp-content/themes/globalproject/media/viber.png);
}

.wd-icon-telegram {
  background-image: url(/wp-content/themes/globalproject/media/telegram.png);
}

.wd-icon-whatsapp {
  background-image: url(/wp-content/themes/globalproject/media/whatsapp.png);
}

/*  Grid System
----------------------------------------------------------------------------------------- */

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

.container {
  max-width: 1180px;
}

.container-fluid {
  max-width: 1480px;
}

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

.layout {
  padding: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 768px) {
  [class*="col-"] {
    -ms-flex-preferred-size: 100% !important;
    flex-basis: 100% !important;
    max-width: 100% !important;
  }
  .container,
  .container-fluid {
    padding: 0 15px;
  }
}

/*  Breakpoints 
----------------------------------------------------------------------------------------- */

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

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

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

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

/* --------------------------------------------------------------------------------------
 *
 *  Site Layout
 *
----------------------------------------------------------------------------------------- */

/*  Site Layout: Site Header
----------------------------------------------------------------------------------------- */

.site-header {
  width: 100%;
  z-index: 99;
  transition: 0.4s;
  position: absolute;
  color: var(--white);
  background-color: transparent;
}

.site-info,
.site-info li,
.site-contacts {
  display: flex;
  align-items: center;
}

.site-info li:not(:last-child) {
  margin-right: 25px;
}

/* .site-header__top */
.site-header__top {
  font-weight: 300;
  font-size: 12px;
}

.site-header__top .col-12 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(118, 118, 118, 0.19);
}

.site-header__top i {
  filter: brightness(0) invert(1);
}

#contact-button {
  display: none;
  align-items: center;
}

/* .site-header__bottom */
.site-header__bottom {
  transition: 0.4s;
  position: relative;
}

.site-header__bottom .col-12 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__bottom.fixed {
  top: 0;
  width: 100%;
  z-index: 999;
  transition: 0.4s;
  position: fixed;
  background: var(--white);
  box-shadow: 0px 0px 28.8px 7.2px rgba(131, 131, 131, 0.38);
}

/* .main-navigation */
.main-navigation .menu {
  display: flex;
}

.main-navigation .menu .menu-item:not(:last-child) {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #ffffff12;
}

.main-navigation .menu .menu-item a {
  display: block;
}

.site-header__bottom.fixed .main-navigation .menu .menu-item a {
  color: var(--black);
}

.site-header__bottom.fixed .main-navigation .menu .menu-item:not(:last-child) {
  border-color: #00000012;
}

.main-navigation__mobile {
  top: 90px;
  padding: 15px 30px;
  position: absolute;
  left: 0;
  width: 100%;
  background: var(--white);
}

.main-navigation__mobile .menu-item a {
  color: var(--black);
}

/* .site-branding */
.site-branding {
  display: flex;
  align-items: center;
}

.site-branding #logo {
  max-height: 80px;
  transition: 0.4s;
  filter: brightness(0) invert(1);
}

.site-header__bottom.fixed .site-branding #logo {
  filter: brightness(1) invert(0);
  max-height: 45px;
}

/* .toggle-button */
.toggle-button {
  z-index: 999;
  display: none;
}

.toggle-button div {
  width: 45px;
  height: 3px;
  margin: 10px 0;
  transition: 0.2s;
  background-color: var(--white);
}

.change div:nth-child(1) {
  -webkit-transform: rotate(-45deg) translate(-9px, 9px);
  transform: rotate(-45deg) translate(-9px, 9px);
}

.change div:nth-child(2) {
  opacity: 0;
}

.change div:nth-child(3) {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}

.site-header__bottom.fixed .toggle-button div {
  background-color: var(--accent);
}

/* .responsive */
@media only screen and (max-width: 1180px) {
  /* .site-header__top */
  #contact-button {
    display: flex;
  }
  .site-info {
    display: none;
  }

  /* .site-header__middle */
  .main-navigation {
    display: none;
  }
  #feedback-button {
    display: none;
  }
  .toggle-button {
    display: block;
  }
}

@media only screen and (max-width: 576px) {
  .site-branding #logo {
    max-height: 45px;
  }
}

/*  Site Layout: Site Page
----------------------------------------------------------------------------------------- */
.page-header {
  color: var(--white);
  padding: 150px 0 50px 0;
  background: var(--gray-dark);
  border-bottom: 1px solid var(--gray-light);
}

.page-header h1 {
  font-weight: 400;
  margin-bottom: 15px;
}

.breadcrumb_last {
  color: var(--accent-light);
}

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

.editor ul {
  line-height: 1.7;
  list-style: square;
  margin: 0 0 15px 15px;
}

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

/*  Site Layout: Site Footer
----------------------------------------------------------------------------------------- */

.site-footer {
  color: var(--gray);
}

/* .site-footer__middle */
.site-footer__middle {
  padding: 60px 0;
  background: #2c2c2c;
}

.site-footer__middle .site-branding {
  margin-bottom: 25px;
  color: var(--white);
}

/* .site-footer__bottom */
.site-footer__bottom {
  padding: 15px 0;
  font-size: 12px;
  background: var(--gray-dark);
}

.site-footer__bottom .col-12 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

@media only screen and (max-width: 768px) {
  .site-footer__bottom .col-12 {
    flex-direction: column-reverse;
    text-align: center;
    justify-content: center;
  }


}

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

/*  Section: Prices
----------------------------------------------------------------------------------------- */
.prices {
  background: url(/wp-content/themes/globalproject/media/building-bg.png)
    no-repeat center center / cover;
}

.prices .row {
  justify-content: space-between;
}

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

/*  Section: Hero
----------------------------------------------------------------------------------------- */
.hero {
  padding: 0px;
}

.hero .overlay {
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
  padding: 150px 0;
  color: var(--white);
  min-height: calc(var(--vh, 1vh) * 100);
  background: linear-gradient(
    to right,
    #00000091 0%,
    #00000094 50%,
    transparent 100%
  );
}

.hero #videoBg {
  left: 0;
  width: 100%;
  z-index: -1;
  position: absolute;
}

.hero h1 {
  font-size: 96px;
}

@media only screen and (max-width: 1180px) {
  .hero h1 {
    font-size: 46px;
  }
  .hero #videoBg {
    width: auto;
  }
}

/*  Section: Contacts
----------------------------------------------------------------------------------------- */
#contacts {
  border-top: 1px solid var(--gray-light);
}

#contacts .row {
  justify-content: space-between;
}

.contact-ul {
  margin-bottom: 20px;
}

.contact-ul li:first-child {
  font-weight: 600;
  color: var(--accent);
}

.contact-ul li:first-child::after {
  content: "";
  width: 20px;
  margin: 5px 0;
  display: block;
  border-bottom: 2px solid var(--gray-light);
}

.contact-ul li:last-child {
  font-weight: 400;
  color: var(--gray-dark);
}

.socials,
.socials a {
  display: flex;
  align-items: center;
}

.socials a:not(:last-child) {
  margin-right: 15px;
}

.socials a i {
  margin-right: 0;
}

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

/*  Component: Modals
----------------------------------------------------------------------------------------- */
.modal-box {
  z-index: 1002;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  background: var(--gray-light);
}

.modal-box .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: 100vh;
  padding: 35px;
  max-width: 640px;
}

.close-modal {
  color: var(--gray-dark);
  position: absolute;
  top: 45px;
  right: 35px;
  font-size: 55px;
  cursor: pointer;
  transition: 0.3s;
  line-height: 0;
}

.close-modal:hover {
  color: var(--accent);
  transform: scale(1.2);
}

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

.tab {
  display: flex;
  margin: 0;
  overflow: hidden;
  justify-content: space-between;
}

.tab .tablinks {
  width: 100%;
  transition: 0.2s;
  display: block;
  font-size: 16px;
  padding: 20px 0;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 3px solid var(--gray-light);
}

.tab .tablinks.active {
  font-weight: bold;
  border-bottom: 2px solid var(--accent);
}

.tabcontent {
  display: none;
  border: 1px solid var(--gray-light);
}

.tabcontent .heading {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.tabcontent .heading h2 {
  margin: 0;
}

@media only screen and (max-width: 768px) {
  .tab {
    flex-direction: column;
  }
}

/*  Component: Forms
----------------------------------------------------------------------------------------- */
input,
textarea {
  width: 100%;
  font-size: 14px;
  font-family: inherit;
  padding: 15px 30px;
  background: #fbfbfb;
  border: 1px solid #f1f0f0;
}

input[type="submit"],
input[type="button"] {
  width: unset;
  display: block;
  margin: 0;
  background: var(--accent);
}

label[class*="col-"] {
  padding: 5px 15px;
}

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

.buttons li:not(:first-child) {
  margin-left: 15px;
}

[class*="button-"] {
  cursor: pointer;
  transition: 0.4s;
  font-weight: 300;
  padding: 8px 32px;
  text-align: center;
  border-radius: 32px;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  color: var(--white);
  background: var(--accent);
  text-transform: capitalize;
  border: 1px solid transparent;
  box-shadow: 0 2.5px 5px 0px #00000047;
}

.button-xl {
  padding: 12px 36px;
}

.button-bordered {
  background: var(--white);
  color: var(--accent);
  border: 1px solid var(--accent);
}

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

/*  Component: Accordion
----------------------------------------------------------------------------------------- */

.accordion:not(:last-child) {
  margin-bottom: 10px;
}

.accordion.active .accordion-content {
  display: block;
}

.accordion.active .accordion-button::after {
  content: "\2716";
}

.accordion-button {
  width: 100%;
  border: none;
  display: flex;
  font-size: 16px;
  cursor: pointer;
  transition: 0.4s;
  text-align: left;
  padding: 15px 30px;
  color: var(--white);
  align-items: center;
  position: relative;
  background: var(--gray-dark);
}

.accordion-button::after {
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
  position: absolute;
  min-height: 30px;
  min-width: 30px;
  font-size: 14px;
  content: "\271A";
  color: var(--white);
  margin-right: 25px;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-button i {
  filter: brightness(0) invert(1);
}

.accordion.active .accordion-button,
.accordion-button:hover {
  background: var(--accent);
  box-shadow: 0 5px 20px 0 #00000015;
}

.accordion-content {
  display: none;
  padding: 15px 30px;
  box-shadow: 0 5px 20px 0 #00000015;
}

/* --------------------------------------------------------------------------------------
 *
 *  Blocks
 *
----------------------------------------------------------------------------------------- */

/*  Block: Widget
----------------------------------------------------------------------------------------- */
.widget-sticky {
  top: 130px;
  position: sticky;
}

/*  Block: Iframe
----------------------------------------------------------------------------------------- */
.iframe-doc {
  min-height: 550px;
}

/* --------------------------------------------------------------------------------------
 *
 *  Post Types
 *
----------------------------------------------------------------------------------------- */

/*  Post Type: Projects
----------------------------------------------------------------------------------------- */
.project-item {
  display: flex;
  transition: 0.4s;
  padding: 20px 30px;
  align-items: center;
  background: var(--white);
  justify-content: space-between;
}

.project-item:not(:last-child) {
  border-bottom: 1px solid var(--gray-light);
}

.project-item:hover {
  cursor: pointer;
  box-shadow: 0 5px 20px 0 #00000015;
}

.project-meta {
  display: flex;
}

.project-meta .name {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-dark);
}

@media only screen and (max-width: 576px) {
  .project-item {
    align-items: center;
    text-align: center;
    flex-direction: column;
  }
}
