/*!
Theme Name: Chipbox
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: chipbox
Tags:
----------------------------------------------------------------------------------------- */

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

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

:root {
  /* Colors */
  --color-black: #000000;
  --color-black-light: #1a1a1a;
  --color-black-graphit: #14181b;
  --color-black-transparent: rgba(0, 0, 0, 0.6);
  --color-black-gradient: linear-gradient(to right, #000000, #434343);

  --color-white: #fff;
  --color-white-transparent: rgba(255, 255, 255, 0.122);

  --color-main: #01276c;

  --color-accent: #f64b01;
  --color-accent-light: #fd7c7d;

  --color-gray: #bbbbbb;
  --color-gray-dark: #333333;
  --color-gray-light: #f5f5f5;

  /* Fonts */
  --font-serif: ;
  --font-sans-serif: "Mont", sans-serif; /* 300, 400, 600, 700, 800 */
}

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

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

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

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

.container-short {
  max-width: 980px !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;
}

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

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

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

.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 {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  position: fixed;
  padding: 15px 0;
  transition: 0.05s;
  align-items: center;
  color: var(--color-white);
}

.site-header.fixed {
  background: var(--color-black-transparent);
  box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.2);
}

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

.site-header [class*="col-"] > *:not(:last-child) {
  margin-right: 30px;
}

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

.site-branding .logo {
  transition: 0.3s;
  max-height: 110px;
}

/*  */
.site-info > *:not(:last-child) {
  margin-bottom: 15px;
}

.site-info .phone-numbers {
  display: none;
}

/*  */

/* . */
.site-header .phone-numbers {
  font-size: 22px;
  transition: 0.3s;
}

.site-header .phone-numbers:hover {
  color: var(--color-accent);
}

/* Site Header Fixed
------------------------------- */
.site-header.fixed {
  background: var(--color-black-transparent);
  box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.2);
}

.site-header.fixed .site-branding .logo {
  max-height: 25px;
}

@media only screen and (max-width: 576px) {
  .site-header .buttons > .phone-numbers {
    display: none;
  }
  .site-header .buttons li:not(:first-child) {
    margin: 0 0 0 0;
  }
  .site-branding .site-info {
    display: flex;
  }
  .site-info .phone-numbers {
    display: flex;
  }
}

/*  Template Part: content-header.php
----------------------------------------------------------------------------------------- */
.content-header {
  padding: 0;
}

.content-header .overlaying {
  text-align: center;
  color: var(--color-white);
  padding: 180px 0 120px 0;
  background: var(--color-black-transparent);
}

.content-header .page-title {
  font-weight: 500;
}

/* .breadcrumb */
.breadcrumb .last {
  font-weight: 600;
  color: var(--color-accent);
}

@media only screen and (max-width: 576px) {
  .content-header .entry-title {
    font-size: 32px;
  }
}

/*  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 Part: Site Footer
----------------------------------------------------------------------------------------- */
.site-footer {
  padding: 60px 0;
  border-top: 1px solid var(--color-gray-light);
}

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

.site-footer [class*="col-"] .column {
  display: flex;
  flex-direction: column;
}

.site-footer [class*="col-"] .column > *:not(:last-child) {
  margin-bottom: 30px;
}

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

@media only screen and (max-width: 992px) {
  .site-footer [class*="col-"] .column {
    width: 50%;
  }
  .site-footer [class*="col-"] .column > *:not(:nth-last-child(n + 2)) {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 576px) {
  .site-footer {
    padding: 30px 0;
  }
  .site-footer [class*="col-"] {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer [class*="col-"] .column {
    width: 100%;
  }
  .site-footer [class*="col-"] .column > *:not(:last-child) {
    margin-bottom: 30px;
  }
}

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

/*  Block: Anounce Services
----------------------------------------------------------------------------------------- */
.anounce-service {
  display: flex;
  height: 280px;
  padding: 30px;
  transition: 0.3s;
  flex-direction: column;
  justify-content: space-between;
  background: var(--color-gray-light);
}

.anounce-service:hover {
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.2);
}

.anounce-service .service-label {
  display: block;
  min-width: 60px;
  max-width: 60px;
  max-height: 60px;
  min-height: 60px;
  margin-bottom: 15px;
}

.anounce-service .service-title {
  font-weight: 500;
  font-size: 15px;
}

/*  Block: Heading
----------------------------------------------------------------------------------------- */
.heading {
  display: flex;
  align-items: baseline;
}

.heading-title {
  width: 100%;
  font-size: 32px;
  margin: 0 0 0 0 !important;
}

@media only screen and (max-width: 992px) {
  .heading {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .heading > *:not(:last-child) {
    margin-bottom: 15px !important;
  }
}

/*  Block: Services List
----------------------------------------------------------------------------------------- */
.service-list__item {
  display: block;
  transition: 0.3s;
  padding: 15px 0;
}

.service-list__item:hover {
  cursor: pointer;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.08);
}

.service-list__item:not(:last-child) {
  border-bottom: 1px solid var(--color-gray-light);
}

.service-list__item [class*="col-"] > * {
  height: 100%;
  display: flex;
  align-items: center;
}

/*  */
.service-list__item .service-title {
  font-weight: 600;
  transition: 0.3s;
}

.service-list__item:hover .service-title {
  color: var(--color-accent);
}

.service-list__item .service-title::before {
  min-width: 75px;
  max-width: 75px;
  content: attr(data-number);
  display: block;
  font-size: 42px;
  font-weight: 500;
  color: var(--color-gray);
}

/*  */
.service-list__item .service-description::after {
  content: "";
  width: 40px;
  height: 40px;
  margin-left: 50px;
  transition: 0.3s;
  background: url("https://api.iconify.design/carbon:arrow-up-right.svg?color=%23f64b01")
    no-repeat center center / contain;
}

.service-list__item:hover .service-description::after {
  width: 55px;
  height: 55px;
}

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

.site-branding .logo {
  max-height: 30px;
}

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

section {
  padding: 60px 0;
}

section.border-bottom {
  border-bottom: 1px solid var(--color-gray-light);
}

section.gray-light {
  background: var(--color-gray-light);
}

@media only screen and (max-width: 576px) {
  section {
    padding: 30px 0;
  }
}

/*  Section: Entry Content
----------------------------------------------------------------------------------------- */
.entry-content {
  border-bottom: 1px solid var(--color-gray-light);
}

/*  Section: Partners
----------------------------------------------------------------------------------------- */
#partners {
  background: var(--color-gray-light);
}

/*  */

.partner-box > img {
  width: 240px;
  height: 90px;
  transition: 0.3s;
  object-fit: contain;
  filter: grayscale(100%);
}

.partner-box > img:hover {
  filter: grayscale(0%);
}

/*  Section: Google Map
----------------------------------------------------------------------------------------- */
section.google-map {
  padding: 0;
  line-height: 0;
}
section.google-map > iframe {
  width: 100%;
  border: none;
  height: 520px;
  filter: grayscale(100%);
}

/*  Section: 404
----------------------------------------------------------------------------------------- */

/* Hero Full Screen
------------------------------- */
.hero-fullscreen {
  padding: 0;
  font-size: 18px;
  overflow: hidden;
  position: relative;
}

.hero-fullscreen .overlaying {
  z-index: 1;
  height: 100%;
  display: flex;
  position: relative;
  align-items: center;
  padding: 200px 0;
  color: var(--color-white);
  background: var(--black-transparent);
  min-height: calc(var(--vh, 1vh) * 100);
}

.hero-fullscreen .overlaying [class*="col-"] > *:not(:last-child) {
  margin-bottom: 30px;
}

.hero-fullscreen__video {
  top: 0;
  left: 0;
  z-index: -1;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
}

@media only screen and (max-width: 576px) {
  .hero-fullscreen {
    font-size: 16px;
    background: url(/wp-content/themes/chipbox/assets/media/page-header-bg.jpeg)
      no-repeat center center / cover;
  }
  .hero-fullscreen .overlaying {
    padding: 120px 0;
  }
  .hero-fullscreen__video {
    display: none;
  }
}

/*  Section: 404
----------------------------------------------------------------------------------------- */

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

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

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

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

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

/*  */
.counters [class*="col-"] {
  padding: 0;
}

.counter-item {
  height: 160px;
  display: flex;
  padding: 15px;
  text-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.counter-value {
  font-size: 58px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 15px;
}

.counter-text {
  font-size: 15px;
  font-weight: 500;
  max-width: 160px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin-bottom: 15px;
}

h1 {
  font-size: 52px;
}

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

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

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

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

hr {
  margin: 15px 0;
  border-color: var(--color-gray-light);
}

/* .editor */
.editor h1::after,
.editor h2::after {
  display: block;
  width: 120px;
  margin: 20px 0 0 0;
  border-bottom: 1px solid var(--color-accent);
  content: "";
}

.editor p {
  line-height: 1.8;
}

.editor a {
  transition: ease-in-out 0.15s;
}

.editor a:hover {
  color: var(--color-accent);
}

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

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

.editor ul {
  list-style: square inside
    url("https://api.iconify.design/bi:dot.svg?color=%232B52C4");
}

.editor iframe {
  width: 100%;
}

@media only screen and (max-width: 576px) {
  h1 {
    font-size: 32px;
    line-height: 46px;
  }
  h2 {
    font-size: 24px;
    line-height: 34px;
  }
}

/*  Component: Form
----------------------------------------------------------------------------------------- */
input {
  width: 100%;
  padding: 15px 30px;
}

.form {
  padding: 45px 45px 20px 45px;
  background: var(--color-black-light);
  color: var(--color-white);
}

.form-title {
  font-size: 24px;
  text-align: center;
}

/* .wpcf7-form */
.wpcf7-form br {
  display: none;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form .wpcf7-form-control-wrap:not(:last-child) {
  margin-bottom: 10px;
}

@media only screen and (max-width: 576px) {
  .form {
    padding: 25px 25px 5px 25px;
  }
  .form-title {
    font-size: 20px;
  }
  form .buttons > *,
  form .buttons > * > * {
    min-width: 100%;
  }
}

/*  Component: Gallery
----------------------------------------------------------------------------------------- */
.gallery-box img {
  width: 100%;
  height: 207.5px;
  object-fit: cover;
}

@media only screen and (max-width: 576px) {
  .gallery-box img {
    height: 142px;
  }
}

/*  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: 0px 30px;
  text-align: center;
  color: var(--color-white);
  align-items: center;
  border-radius: 5px;
  justify-content: center;
  border: 1px solid transparent;
  background-color: var(--color-accent);
}

.buttons [class*="button-"]:hover {
  color: var(--color-accent);
  background: transparent;
  border-color: var(--color-accent);
}

/*  */
.buttons [class*="button-"].bordered {
  color: var(--color-accent);
  background-color: transparent;
  border-color: var(--color-accent);
}

.buttons [class*="button-"].bordered:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* .button-xl */
.buttons .button-xl {
  height: 60px;
  padding: 0 45px;
  min-width: 265px;
}

/* --- */
.details {
  transition: 0.3s;
  color: var(--color-accent);
}

.details:hover {
  letter-spacing: 2px;
}

@media only screen and (max-width: 576px) {
  .buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .buttons > *:not(:first-child) {
    margin: 15px 0 0 0;
  }
}

/*  Component: Modal
----------------------------------------------------------------------------------------- */
.modal {
  display: none;
}

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

/* .widget-title */
.widget-title {
  font-size: 18px;
  font-weight: 600;
}

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

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

/* .main-navigation */
.main-navigation {
  -ms-overflow-style: none;
  scrollbar-width: 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-right: 30px;
}

.main-navigation .menu > .menu-item > a {
  width: 100%;
  height: 50px;
  display: flex;
  cursor: pointer;
  font-size: 16px;
  transition: 0.2s;
  font-weight: 600;
  text-align: center;
  align-items: center;
  color: var(--color-white);
  justify-content: center;
}

.main-navigation .menu > .menu-item > a *::first-letter {
  text-transform: uppercase !important;
}

.main-navigation.mobile .menu > .menu-item > a > .iconify {
  font-size: 28px;
  background: #ffffff24;
  border-radius: 100%;
}

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

/* .main-navigation > .sub-menu */
.main-navigation .menu > .menu-item > .sub-menu {
  left: 50%;
  z-index: 1000;
  overflow: hidden;
  position: absolute;

  max-height: 0;

  transform: translateX(-50%);
  width: 100%;
  max-width: 576px;
  min-width: max-content;

  display: flex;
  flex-direction: column;

  color: var(--color-white);
  border-radius: 5px;
  background: var(--color-black-light);
}

.main-navigation .menu > .menu-item > a > .dropdown-toggle {
  width: 12px;
  height: 12px;
  display: block;
  margin-left: 15px;
  background: url("https://api.iconify.design/carbon:chevron-down.svg?color=%23ffffff")
    no-repeat center center / contain;
}

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

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

.main-navigation .menu > .menu-item > .sub-menu .menu-item a {
  display: flex;
  font-weight: 500;
  padding: 7px 14px;
  align-items: center;
  transition: 0.3s;
  max-width: 320px;
  font-size: 0.85rem;
}

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

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

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

/*  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: #d3531a;
  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%;
}

/*  */
@media only screen and (max-width: 1040px) {
  .menu-toggle {
    display: block;
  }
  .main-navigation {
    display: none;
  }
}

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