/*!
Theme Name: Portal313
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: portal313
Tags:
----------------------------------------------------------------------------------------- */
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
}

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

:root {
  /* font */
  --font-sans-serif: "Montserrat", sans-serif;

  /* color */
  --color-black: rgb(0, 0, 0);
  --color-black-light: #202020;
  --color-black-trans: rgba(0, 0, 0, 0.08);

  --color-white: #ffffff;
  --color-white-trans: rgba(255, 255, 255, 0.08);

  --color-accent: #800080;
  --color-accent-trans: rgba(128, 0, 128, 0.08);

  --color-orange: #ff8c00;

  --color-gray: #878787;
  --color-gray-dark: #5d5d5d;
  --color-gray-light: #f8f8f8;
}

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

body {
  font-size: 14px;
  font-weight: 500;
  font-display: auto;
  color: var(--color-black-light);
  font-family: var(--font-sans-serif);
}

/*  responsive
------------------------------------------ */

/* responsive hide */
@media only screen and (max-width: 1280px) {
  .hide-1280 {
    display: none !important;
  }
}

@media only screen and (max-width: 992px) {
  .hide-992 {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .hide-768 {
    display: none !important;
  }
}

@media only screen and (max-width: 576px) {
  .hide-576 {
    display: none !important;
  }
}

/* responsive show */
@media only screen and (min-width: 1280px) {
  .show-1280 {
    display: none !important;
  }
}

@media only screen and (min-width: 992px) {
  .show-992 {
    display: none !important;
  }

  /* row gap 992 */
  .gap-992 {
    gap: 0 64px;
  }
  .gap-992 > [class*="col-"] {
    max-width: calc(50% - 32px);
  }
}

@media only screen and (min-width: 768px) {
  .show-768 {
    display: none !important;
  }
}

@media only screen and (min-width: 576px) {
  .show-576 {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  HTML
 *
 *  ——
 *  ——
 *
----------------------------------------------------------------------------------------- */

:root {
  /* heading */
  --font-size-h1: 48px;
  --font-size-h2: 32px;
  --font-size-h3: 28px;
  --font-size-h4: 24px;
  --font-size-h5: 20px;
  --font-size-h6: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin: 0 !important;
  font-family: var(--font-serif);
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

h6 {
  font-size: var(--font-size-h6);
}

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

a:hover {
  cursor: pointer;
}

p {
  line-height: 1.56;
}

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

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

hr {
  border: none;
  border-bottom: 1px solid var(--color-black-trans);
}

blockquote {
  padding: 16px;
  position: relative;
  background: var(--color-accent-trans);
  border-left: 2px solid var(--color-accent);
}

blockquote::after {
  top: 16px;
  right: 16px;
  content: "";
  width: 16px;
  height: 16px;
  opacity: 0.16;
  position: absolute;
  background: url("https://api.iconify.design/entypo/quote.svg") no-repeat
    center center / contain;
}

/*  table
------------------------------------------ */
table,
td,
th {
  border: 1px solid var(--color-black-trans);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
}

tr:nth-child(even) {
  background-color: var(--color-accent-trans);
}

td,
th {
  padding: 16px;
  text-align: left;
  position: relative;
}

td {
  vertical-align: top;
}

/* thaed */
thead {
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-accent);
}

/*  responsive max width
------------------------------------------ */
@media only screen and (max-width: 992px) {
  :root {
    /* heading */
    --font-size-h1: 26px;
    --font-size-h2: 24px;
    --font-size-h3: 22px;
    --font-size-h4: 20px;
    --font-size-h5: 18px;
    --font-size-h6: 16px;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  site header
 *
 *  —— masthead
 *  —— mastside
 *
----------------------------------------------------------------------------------------- */

:root {
  /* site header: masthead */
  --masthead-height: 56px;
}

/* site header */
.site-header {
  top: 0;
  width: 100%;
  z-index: 999;
  position: sticky;
  transition: ease-in-out 0.16s;
}

/*  site header: masthead
----------------------------------------------------------------------------------------- */
.masthead,
.masthead-panel,
.masthead [class*="col-"] {
  gap: 0 32px;
  display: flex;
  align-items: center;
}

/* masthead */
.masthead {
  font-weight: 600;
  height: var(--masthead-height);
}

/* masthead column */
.masthead [class*="col-"] {
  flex-direction: row;
  justify-content: space-between;
  padding: 0 var(--column-padding);
}

/*  masthead navigation
------------------------------------------ */
#masthead-navigation {
  padding: 0px 32px;
  border-radius: 4px;
  border: 1px solid var(--color-accent-trans);
}

/* masthead menu */
.masthead-navigation .menu {
  gap: 32px;
  display: flex;
}

/* masthead navigation menu item */
.masthead-navigation .menu-item {
  gap: 8px;
  height: 32px;
  display: flex;
  cursor: pointer;
  position: relative;
  align-items: center;
  transition: ease-in-out 0.16s;
  justify-content: space-between;
}

.masthead-navigation .menu-item > a {
  display: block;
  transition: ease-in-out 0.16s;
}

.masthead-navigation .menu-item:hover > a,
.masthead-navigation [class*="current-menu-"] > a {
  color: var(--color-orange);
}

/* masthead navigation sub menu */
.masthead-navigation .sub-menu {
  gap: 8px;
  left: 0;
  top: 30px;
  padding: 16px;
  display: none;
  font-size: 12px;
  min-width: 240px;
  position: absolute;
  border-radius: 4px;
  flex-direction: column;
  background: var(--color-white);
  color: var(--color-black) !important;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
}

.masthead-navigation .sub-menu .menu-item {
  height: unset;
}

/* masthead navigation sub menu first level */
.masthead-navigation .menu > *:hover > .sub-menu {
  display: flex;
}

/* masthead navigation sub menu second level */
.masthead-navigation .menu > * > * > *:hover > .sub-menu {
  top: 0;
  left: 100%;
  display: flex;
}

/*  responsive
------------------------------------------ */
@media only screen and (min-width: 992px) {
  /* site header / onscroll */
  .onscroll .site-header {
    color: var(--color-black);
    background: var(--color-white);
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.08);
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Site Footer
 *
 *  —— 
 *  —— 
 *
----------------------------------------------------------------------------------------- */
.site-footer {
  color: var(--color-gray);
  padding: var(--section-padding) 0;
  background: var(--color-black-light);
}

/*  colophon panel
------------------------------------------ */
.colophon-panel {
  display: flex;
  flex-wrap: wrap;
  gap: var(--section-padding);
}

/* colophon panel separator */
.colophon-separator {
  border-color: var(--color-white-trans);
}

/* --------------------------------------------------------------------------------------
 *
 *  Site Main
 *
 *  —— 
 *  —— 
 *
----------------------------------------------------------------------------------------- */

:root {
  /* section */
  --section-padding: 80px;
}

section {
  position: relative;
  padding: var(--section-padding) 0;
}

/*  section background
------------------------------------------ */
.section-background {
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  :root {
    /* section */
    --section-padding: 40px;
  }
}

/*  section layout
----------------------------------------------------------------------------------------- */

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  .section-layout {
    gap: 0;
    display: flex !important;
    flex-direction: column-reverse !important;
  }
}

/*  section: hero
----------------------------------------------------------------------------------------- */
section#hero {
  padding: 0;
  position: relative;
  color: var(--color-white);
}

/*  hero content
------------------------------------------ */
#hero-content__slider {
  color: var(--color-white);
}

/* hero content slider */
#hero-content__slider .swiper-slide {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-padding) 0;
}

/*  hero panel
------------------------------------------ */
.hero-panel {
  left: 50%;
  z-index: 1;
  width: 100%;
  bottom: -40px;
  max-width: 1640px;
  position: absolute;
  border-radius: 4px;
  transform: translateX(-50%);
  background: var(--color-accent);
  box-shadow: 0px 8px 48px rgba(29, 29, 29, 0.16);
}

/* hero panel slider */
#hero-panel__slider {
  height: 80px;
}

#hero-panel__slider .swiper-slide {
  display: flex;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 600;
  flex-direction: column;
  justify-content: center;
}

#hero-panel__slider .swiper-wrapper > .swiper-slide:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.16);
}



/*  section: flowaround
----------------------------------------------------------------------------------------- */
@media only screen and (min-width: 1280px) {
  section.flowaround {
    border-radius: 8px;
    margin: 0 var(--section-padding);
  }
}

/*  section: social media
----------------------------------------------------------------------------------------- */
section#social-media {
  padding: 40px 0;
  position: relative;
  color: var(--color-white);
  background: var(--color-accent);
}

/* section social media image */
section#social-media::after {
  right: 16%;
  bottom: 0;
  content: "";
  width: 256px;
  height: 256px;
  display: block;
  position: absolute;
  background: url(/wp-content/themes/portal313/assets/media/iphone.png)
    no-repeat center center / contain;
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  section#social-media::after {
    display: none;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Component
 *
 *  —— 
 *  —— 
 *
----------------------------------------------------------------------------------------- */

/*  component: map
----------------------------------------------------------------------------------------- */

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  #map {
    height: 256px !important;
  }
}

/*  component: widget
----------------------------------------------------------------------------------------- */
.widget {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

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

/*  widget navigation
------------------------------------------ */

/* widget navigation / menu */
.widget-navigation .menu {
  gap: 8px;
  display: flex;
  flex-direction: column;
}

/* widget navigation / sub menu */
.widget-navigation .sub-menu {
  display: none;
}

/*  component: accordion
----------------------------------------------------------------------------------------- */
.accordion {
  position: relative;
}

/*  accordion button
------------------------------------------ */
.accordion-button {
  cursor: pointer;
  position: relative;
}

.accordion-button::selection {
  background: transparent;
}

/*  accordion panel
------------------------------------------ */
.accordion-panel {
  display: none;
}

/*  component: tab
----------------------------------------------------------------------------------------- */

/*  tab content
----------------------------------------- */
.tab-content {
  gap: 16px;
  height: 100%;
  display: none;
  overflow: hidden;
  position: relative;
  flex-direction: column;
  animation: fadeEffect 0.16s;
  -webkit-animation: fadeEffect 0.16s;
}

/* tab content active */
.tab-content.active {
  display: flex;
}

/*  tab animation
----------------------------------------- */
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*  component: sidebar
----------------------------------------------------------------------------------------- */
:root {
  --sidebar-width: 320px;
}

/* sidebar */
.sidebar {
  top: 0;
  right: 0;
  height: 100%;
  position: fixed;
  overflow-y: scroll;
  color: var(--color-white);
  width: var(--sidebar-width);
  transform: translateX(100%);
  background: var(--color-black-light);
  transition: transform 0.16s ease-out;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sidebar > *:not(:last-child) {
  border-bottom: 1px solid var(--color-white-trans);
}

/* sidebar head */
.sidebar-head {
  padding: 0 32px;
  justify-content: flex-start;
  height: calc(var(--masthead-height) * 1);
}

/* sidebar panel */
.sidebar-panel {
  gap: 16px;
  padding: 32px;
}

/*  sidebar navigation
------------------------------------------ */
.sidebar-navigation .menu *::selection {
  background: transparent;
}

/* sidebar navigation menu-item */
.sidebar-navigation .menu .menu-item {
  position: relative;
}

.sidebar-navigation .menu .menu-item:not(:last-child) {
  border-bottom: 1px solid var(--color-white-trans);
}

/* sidebar navigation menu-item > a */
.sidebar-navigation .menu .menu-item > a {
  z-index: 1;
  display: block;
  position: relative;
  padding: 16px 0 16px 32px;
  max-width: calc(100% - 80px);
  transition: ease-in-out 0.16s;
}

.sidebar-navigation .menu .menu-item > a:hover,
.sidebar-navigation .menu [class*="current-menu-"] > a {
  color: var(--color-accent);
}

.sidebar-navigation .menu .menu-item > a:hover {
  text-decoration: underline;
}

/* sidebar navigation menu-item-has-children > a */
.sidebar-navigation .menu .menu-item-has-children > a {
  display: inline-block;
}

/* sidebar navigation menu-item > accordion-button */
.sidebar-navigation .menu-item > span {
  right: 0;
  top: 14px;
  width: 100%;
  height: 24px;
  opacity: 0.32;
  display: block;
  cursor: pointer;
  position: absolute;
  transition: ease-in-out 0.16s;
  background: url("https://api.iconify.design/mdi-light/chevron-down.svg?color=white")
    no-repeat right 32px center / contain;
}

.sidebar-navigation .menu-item > span {
  opacity: 1;
}

/* sidebar navigation sub-menu */
.sidebar-navigation .sub-menu {
  background: var(--color-white-trans);
}

/*  component: headline
----------------------------------------------------------------------------------------- */
.headline {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

/* headline center */
.headline.center {
  text-align: center;
  align-items: center;
}

.headline.center * {
  text-align: center;
}

/*  headline label
------------------------------------------ */
.headline-label {
  font-weight: 600;
  text-transform: uppercase;
}

/*  headline title
------------------------------------------ */
.headline-title {
  font-weight: 600;
  line-height: 1.16;
  font-size: var(--font-size-h2);
}

/* h1 headline title */
h1.headline-title {
  font-size: var(--font-size-h1);
}

/*  component: contact
----------------------------------------------------------------------------------------- */

/*  contact
------------------------------------------ */
.contact {
  display: flex;
  line-height: 1.56;
  flex-direction: column;
}

/* contact label */
.contact-label {
  font-size: 12px;
  margin-top: 8px;
  font-weight: 600;
}

/*  contact group
------------------------------------------ */
.contact-group {
  gap: 0 8px;
  display: flex;
  flex-direction: column;
}

/* contact group inline */
.contact-group.inline {
  flex-direction: row;
}

/*  component: editor
----------------------------------------------------------------------------------------- */
.editor {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

/* editor list */
.editor ul,
.editor ol {
  gap: 8px;
  display: flex;
  flex-direction: column;
}

.editor ul {
  list-style: square inside;
}

.editor ol {
  list-style: decimal inside;
}

/* editor iframe */
.editor iframe {
  width: 100%;
  height: 420px;
}

/* editor link */
.editor a {
  text-decoration: underline;
  color: var(--color-accent);
}

/* editor bold */
.editor strong,
.editor b {
  font-weight: 600;
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  /* editor br */
  .editor br {
    display: none;
  }
}

/*  component: swiper
----------------------------------------------------------------------------------------- */

/*  swiper slide
----------------------------------------- */
.swiper-slide {
  height: auto !important;
}

/* swiper slide media */
.swiper-slide__bg,
.swiper-slide__media,
.swiper-slide__media::after {
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
}

.swiper-slide__media::after {
  content: "";
  background: rgba(0, 0, 0, 0.72);
}

.swiper-slide__bg {
  z-index: -3;
  object-fit: cover;
}

/*  component: form
----------------------------------------------------------------------------------------- */
form {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

input,
select,
textarea {
  width: 100%;
  height: 48px;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid var(--color-black-trans);
}

/* textarea */
textarea {
  height: 120px;
}

/* label */
label {
  font-weight: 600;
}

/* input [type="checkbox"] */
input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

/* input [type="submit"] */
input[type="submit"] {
  width: max-content;
}

/*  Form Layout
------------------------------------------ */
.form-field {
  gap: 8px;
  display: flex;
  flex-direction: column;
}

/*  Contact Form 7
------------------------------------------ */

/* .wpcf7-form-control-wrap */
.wpcf7-form-control-wrap {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

/* wpcf7-form-control */
.wpcf7-form-control {
  gap: 16px;
  display: flex;
}

/* .wpcf7-list-item */
.wpcf7-list-item {
  gap: 8px;
  margin: 0;
  display: flex;
  align-items: center;
}

/* .wpcf7-spinne */
.wpcf7-spinner {
  top: 50%;
  right: 25px;
  position: absolute;
  transform: translateY(-50%);
}

/* .wpcf7-response-output */
.wpcf7-response-output {
  font-size: 12px;
  border-width: 1px;
  border-radius: 8px;
  margin: 0 !important;
  padding: 16px !important;
}

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

/* site logo */
.site-logo {
  max-height: 24px;
  border-radius: 4px;
}

/*  component: button
----------------------------------------------------------------------------------------- */
:root {
  --button-height: 32px;
}

/*  button group
------------------------------------------ */
.button-group {
  gap: 8px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
}

/* button group center */
.button-group.center {
  justify-content: center;
}

/*  button
------------------------------------------ */
button,
.button {
  gap: 8px;
  display: flex;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  padding: 0px 16px;
  border-radius: 4px;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  height: var(--button-height);
  transition: ease-in-out 0.16s;
  border: 1px solid transparent;
  background: var(--color-accent);
}

/* button transparent */
.button.transparent {
  color: inherit;
  background: var(--color-accent-trans);
}

.button.transparent:hover {
  background: rgba(128, 0, 128, 0.32);
}

/* button small */
.button-small {
  font-size: 12px;
  background: var(--color-white-trans);
}

/* button orange */
.button-orange {
  color: var(--color-black-light);
  background: var(--color-orange);
}

/*  button square / round
------------------------------------------ */
.button-round,
.button-square {
  padding: 0;
  font-size: 18px;
  width: var(--button-height);
  height: var(--button-height);
  min-width: var(--button-height);
  min-height: var(--button-height);
}

/* button square */
.button-square {
  border-radius: 4px;
}

/* button round */
.button-round {
  border-radius: 100%;
}

/*  button sidebar
------------------------------------------ */
.button-sidebar {
  z-index: 1;
  position: relative;
}

/*  component: modal
----------------------------------------------------------------------------------------- */
.modal {
  display: none;
  border-radius: 4px;
}

/*  component: thumbnail
----------------------------------------------------------------------------------------- */
.thumbnail {
  gap: 8px;
  height: 256px;
  padding: 32px;
  display: flex;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--color-white);
  transition: ease-in-out 0.16s;
  background: var(--color-black-trans);
}

/* thumbnail square */
.thumbnail.square {
  height: unset;
  padding: 100% 0 0 0;
}

/* thumbnail small */
/*  .thumbnail.small {
  height: 156px;
}
*/

/* thumbnail small v2.0 */
.thumbnail.small {
    height: auto;
    aspect-ratio: 3 / 2;
}

/*  thumbnail image
------------------------------------------ */
.thumbnail-image {
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

/*  component: taxonomy
----------------------------------------------------------------------------------------- */

/*  taxonomy list
------------------------------------------ */
.taxonomy-list {
  gap: 8px;
  display: flex;
  flex-wrap: wrap;
}

/* taxonomy list label */
.taxonomy-list__label {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--color-white);
  text-transform: lowercase;
  transition: ease-in-out 0.16s;
  background: var(--color-accent);
}

.taxonomy-list__label:hover {
  background: var(--color-orange);
}

/*  component: site banner
----------------------------------------------------------------------------------------- */

/*  component: brand
----------------------------------------------------------------------------------------- */

/*  brand box
------------------------------------------ */
.brand-box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* brand box image */
.brand-box__image {
  opacity: 0.8;
  max-height: 72px;
  filter: grayscale(100%);
}

/*  component: card
----------------------------------------------------------------------------------------- */

/*  card group
------------------------------------------ */
.card-group {
  display: flex;
  flex-wrap: wrap;
}

/* card group / card */
.card-group > .card {
  width: 50%;
  height: unset;
  margin: 0 0 32px 0;
  padding: 0 32px 32px 0;
  border-bottom: 1px solid var(--color-accent);
}

/*  card
------------------------------------------ */
.card,
.card-panel {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.card {
  height: 100%;
}

/* card panel */
.card-panel {
  gap: 8px;
}

.card-panel.inline {
  flex-direction: row;
}

/* card inline */
.card-inline {
  flex-direction: row;
}

/*  card title
------------------------------------------ */
.card-title {
  gap: 16px;
  display: flex;
  font-weight: 600;
  line-height: 1.56;
  justify-content: space-between;
}

/* card title active */
.card-title.active {
  color: var(--color-accent);
}

/*  card box
------------------------------------------ */
.card-box {
  gap: 16px;
  display: flex;
  align-items: center;
}

/* <a> card box */
a.card-box {
  height: 100%;
}

.card-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  object-fit: contain;
}

/*  card bordered
------------------------------------------ */
.card-bordered {
  padding: 32px;
  border-radius: 8px;
  transition: ease-in-out 0.16s;
  background: var(--color-white-trans);
  border: 1px solid var(--color-accent-trans);
  box-shadow: 0px 40px 64px rgba(0, 0, 0, 0.024);
}

.card-bordered:hover {
  box-shadow: 0px 40px 64px rgba(0, 0, 0, 0.08);
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  .card-title {
    font-size: 15px;
  }
}

/*  component: flexgrid
----------------------------------------------------------------------------------------- */

/*  flexgrid sidebar
------------------------------------------ */
.flexgrid-sidebar {
  padding: var(--section-padding) 32px;
  background: var(--color-gray-light);
}

/*  component: preloader
----------------------------------------------------------------------------------------- */
.preloader {
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 998;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: var(--color-white);
  animation: fadeOut 1.16s ease-in-out 1.16s forwards; /* Trigger fade out after the side animations */
}

.preloader-side {
  top: 0;
  width: 50%;
  content: "";
  height: 100%;
  display: flex;
  font-size: 96px;
  font-weight: 700;
  position: absolute;
  flex-direction: column;
  justify-content: center;
  animation: shrinkWidth 1.32s ease-in-out 0.16s forwards;
}

/* preloader line */
.preloader-line {
  width: 128px;
  border-top: 8px solid var(--color-white);
}

/* preloader animation */
@keyframes shrinkWidth {
  from {
    width: 50%;
  }
  to {
    width: 0%;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    z-index: -1; /* Set z-index to -1 to move it behind other content */
  }
}

.preloader-side:first-child {
  left: 0;
  align-items: flex-end;
  background: var(--color-orange);
}

.preloader-side:first-child .preloader-line {
  border-radius: 8px 0 0 8px;
}

.preloader-side:last-child {
  right: 0;
  align-items: flex-start;
  background: var(--color-accent);
}

.preloader-side:last-child .preloader-line {
  border-radius: 0 8px 8px 0;
}

/* Responsive */
@media only screen and (max-width: 992px) {
  .preloader-side {
    font-size: 48px;
  }
  .preloader-line {
    width: 64px;
    border-top: 4px solid var(--color-white);
  }
}
