@charset "UTF-8";
/*
primary : #ea0013, rgb(234, 0, 19)  Red
*/
:root {
  --bs-primary: #ea0013;
  --bs-primary-rgb: 234, 0, 19;
  --bs-primary-dark: #c10200;
  --bs-primary-dark-rgb: 193, 2, 0;

  --bs-bg-primary: #ea0013;
  --bs-bg-primary-rgb: 234, 0, 19;

  --bs-secondary: #fff;
  --bs-secondary-rgb: 255, 255, 255;

  --bs-body-font-family: "Play", sans-serif;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #333333;
  --bs-body-color-rgb: 51, 51, 51;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-body-text-align: left;

  --bs-heading-color: #333333;
  --bs-link-color: #ea0013;
  --bs-link-color-rgb: 234, 0, 19;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #c10200;
  --bs-link-hover-color-rgb: 193, 2, 0;

  --bs-heading-font-family: "Play", sans-serif;
  --bs-btn-font-family: "Play", sans-serif;

  --form-control-bg: "#f0f0f0";
}

/*
* Normalize
* ================ */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-family: "Play", sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  --bs-body-font-family: "Play", sans-serif;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #333333;
  --bs-body-color-rgb: 51, 51, 51;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-body-text-align: left;

  --bs-heading-font-family: var(--bs-body-font-family);
  --bs-btn-font-family: var(--bs-body-font-family);

  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  text-align: left;
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
  margin: 0;
  padding: 0;
  border: 0;
}

article,
aside,
details,
figcaption,
figure,
embed,
object,
video,
footer,
header,
hgroup,
menu,
nav,
main,
time,
section {
  display: block;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
label,
.btn,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bs-heading-font-family);
  letter-spacing: 0;
}
h1,
h2 {
  font-weight: 700;
}
h3,
h4 {
  font-weight: 600;
}
h5,
h6 {
  font-weight: 500;
}

/* Media ------------------------------------- */
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;

  -moz-user-select: none;
  /* These user-select properties are inheritable, used to prevent text selection */
  -webkit-user-select: none;
  -ms-user-select: none;
  /* From IE10 only */
  -webkit-user-drag: none;
  /* Prevents dragging of images/divs etc */
  user-drag: none;
}

.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

iframe {
  display: block;
  max-width: 100%;
  margin: auto;
}

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

section {
  position: relative;
  background: transparent;
}

.ofi {
  object-fit: cover;
  font-family: "object-fit: cover";
}

.bg {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bg-fixed {
  background-attachment: fixed;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none !important;
  outline: none !important;
}
a {
  text-decoration: none;
}
a,
button,
input {
  transition: 0.3s all ease;
  outline: none !important;
}

.text-s {
  font-size: 0.85rem;
}

.text-xs {
  font-size: 0.7rem;
}

.text-l {
  font-size: 1.2rem;
}

.text-xl {
  font-size: 1.6rem;
}

.text-xxl {
  font-size: 2rem;
}
.text-2xx {
  font-size: 2.5rem;
}
.text-3x {
  font-size: 3rem;
}

.modal-content {
  background: rgba(225, 225, 225, 0.9);
  border-radius: 3rem;
}
.modal-header .close {
  padding: 0;
  font-size: 30px;
  display: flex;
  align-self: center;
}

.form-control {
  background-color: var(--form-control-bg);
  border: 1px solid rgba(254, 254, 254, 0.4);
  color: var(--bs-body-color);
}

.form-error {
  color: rgb(185, 74, 72);
}

.rounded-16 {
  border-radius: 16px;
}
.rounded-8 {
  border-radius: 8px;
}

select,
select.form-control {
  cursor: pointer;
  color: var(--bs-body-color);
}

::-webkit-input-placeholder {
  opacity: 1;
  color: rgba(var(--bs-body-color-rgb), 0.5);
}

::-moz-placeholder {
  opacity: 1;
  color: rgba(var(--bs-body-color-rgb), 0.5);
}

:-ms-input-placeholder {
  opacity: 1;
  color: rgba(var(--bs-body-color-rgb), 0.5);
}

:-moz-placeholder {
  opacity: 1;
  color: rgba(var(--bs-body-color-rgb), 0.5);
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

ul.none {
  margin: 0;
  list-style: none;
}

ul.circle {
  list-style: circle;
}
ul.disc {
  list-style: disc;
}
ul.square {
  list-style: square;
}

.text-gray {
  color: var(--bs-gray-500);
}
.bg-gray {
  background-color: var(--bs-gray-500);
}
.text-dgray {
  color: var(--bs-gray);
}
.bg-dgray {
  background-color: var(--bs-gray);
}
.text-lgray {
  color: var(--bs-gray-100);
}
.bg-lgray {
  background-color: var(--bs-gray-100);
}
.bg-pgray {
  background-color: rgba(254, 254, 254, 0.2);
}
.text-white {
  color: #fff;
}

.bg-white {
  background-color: #fff;
}

.text-black {
  color: #262a30;
}
.bg-black {
  background-color: #262a30;
}
.text-normal {
  font-weight: normal;
}

.mw-125 {
  min-width: 125px;
}

.w-125 {
  width: 125px;
}

.mw-150 {
  min-width: 150px;
}

.w-150 {
  width: 150px;
}

.mw-200 {
  min-width: 200px;
}

.w-200 {
  width: 200px;
}

.mw-250 {
  min-width: 250px;
}

.width-250 {
  width: 250px;
}

.mxw-320 {
  max-width: 320px;
}
.max-860 {
  max-width: 860px;
  margin: auto;
}

.wpcf7-textarea {
  max-height: 124px;
}

.disabled-box {
  opacity: 50%;
  pointer-events: none;
}

.box-shadow {
  box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.18);
}

.box-shadow:hover {
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.img-box-shadow {
  border-radius: 15px;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
}

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

.header-container {
  width: 100%;
  /* max-width: 1400px; */
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}
.section-container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  /* max-width: 1440px; */
  max-width: 1320px;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.section-content {
  padding: 3rem 0;
}

body.full-width-container .section-container,
.section-container.full-width,
.section-container.max-percentage {
  width: 100%;
  max-width: unset;
  overflow: hidden;
}

.section-container.thin {
  max-width: 960px;
  width: 98%;
}

.section-container.small {
  max-width: 1140px;
  width: 97%;
}

.section-container.medium {
  max-width: 1320px;
}

.section-container.no-margin {
  margin: 0;
}

.entry-content .wpb_content_element {
  margin: 0;
}

.full-width-img {
  max-height: 720px;
  max-width: 1080px;
  margin: auto;
  width: 100%;
}

.page-title {
  font-size: 3rem;
}
.section-title {
  font-size: 2rem;
}

.line-title {
  position: relative;
  padding-bottom: 20px;
}
.line-title::after {
  content: "";
  height: 4px;
  width: 80px;
  background: var(--bs-primary);
  position: absolute;
  left: 0;
  bottom: 4px;
  border-radius: 18px;
}
.heading.text-center .line-title::after,
.line-title.text-center::after {
  left: calc(50% - 40px);
}

/* Header*/

#header-logo-desk {
  width: 200px;
  height: 165px;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 1000;
}

#header-logo-desk .site-logo,
#header-logo-desk .site-logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#header-logo-desk .site-logo img {
  max-height: 100%;
  width: auto;
}
#site-header {
  display: block;
  width: 100%;
  position: relative;
}

/* Menu */
#main-menu-wrapper {
  position: relative;
}
#main-menu {
  padding: 24px 0;
}
#main-menu .nav > li > a {
  position: relative;
  display: block;
  font-size: 1.1rem;
}

#main-menu ul.nav {
  list-style: none;
  padding: 0px;
  margin: 0;
}

#main-menu ul.nav li {
  position: relative;
}
#main-menu ul.nav > li {
  margin: 0;
}

#main-menu ul.nav li a {
  padding: 8px 16px;
  text-decoration: none !important;
  white-space: nowrap;
  color: rgba(var(--bs-body-color-rgb), 1);
}
#main-menu ul.nav li > .arrow {
  color: rgba(var(--bs-body-color-rgb), 1);
}
#main-menu ul.nav li:hover > .arrow,
#main-menu ul.nav li:hover > a {
  color: var(--bs-primary);
}
#main-menu ul.nav li.menu-item-has-children {
  margin-right: 14px;
}
#main-menu ul.nav li a.icon-center {
  text-align: center;
}

#main-menu ul.nav li a.m-link {
  color: rgba(var(--bs-body-color-rgb), 0.7);
}

#main-menu ul.nav li.current-menu-parent > .arrow,
#main-menu ul.nav li.current-menu-item > .arrow,
#main-menu ul.nav li.current-menu-parent > a,
#main-menu ul.nav li.current-menu-item > a {
  color: var(--bs-primary);
}

#main-menu ul.nav li ul {
  position: absolute;
  top: 100%;
  left: 0;
  margin-left: 0;
  background: var(--bs-body-bg);
  min-width: 230px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  box-shadow: 0px 3px 3px 0px #0001;
  padding-left: 0;
  list-style: none;
}

#main-menu ul.nav li ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

#main-menu ul.nav li ul li a {
  display: block;
}

#main-menu ul.nav li ul li a:hover {
}

#main-menu ul.nav li ul li ul {
  left: 100%;
  right: auto;
  top: 0px;
  margin-left: 0px;
  width: 0px;
  overflow: hidden;
  display: block;
}

#main-menu ul.nav li ul li ul li {
  width: 230px;
}

#main-menu ul.nav li.right ul li ul {
  left: auto;
  right: 100%;
}
#main-menu ul.nav .hide-menu-item.menu-item {
  display: none !important;
}

@media only screen and (min-width: 1025px) {
  #site-header ul.nav li.has-mega-menu {
    position: initial;
  }
  #site-header ul.nav li.has-mega-menu > ul.sub-menu {
    width: 100%;
    left: 0px;
    right: 0px;
    top: 85%;
    /* position: absolute; */
    /* z-index: 100; */
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: left;
  }

  #site-header ul.nav li.has-mega-menu > ul.sub-menu .menu-item {
    width: 140px;
    text-align: center;
    border-left: 1px solid #eee;
    height: auto;
    display: flex;
    margin: 10px 5px 10px 0;
    padding: 0 0 0 5px;
    order: 2;
  }
  #site-header ul.nav li.has-mega-menu > ul.sub-menu .menu-item.wbrs-inventory-menu-item {
    order: 1;
  }
  #site-header #menu ul.nav li.has-mega-menu > ul.sub-menu .menu-item a:hover img {
    scale: 97%;
  }
  #site-header #menu ul.nav li.has-mega-menu > ul.sub-menu .menu-item a {
    margin: auto auto 0 auto;
    padding: 0 5px;
    text-wrap: wrap;
    word-break: break-word;
  }
  #site-header ul.nav li.has-mega-menu .wbrs-cat-menu .menu-item-img {
    display: block;
    margin-bottom: 5px;
    height: 74px;
  }

  #main-menu ul li ul {
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }

  #main-menu ul.nav > li.current-menu-parent > a::after,
  #main-menu ul.nav > li.current_page_item > a::after {
    content: "";
    width: 80%;
    background: var(--bs-bg-primary);
    position: absolute;
    bottom: -4px;
    height: 4px;
    left: 10%;
    border-radius: 9px;
  }

  #main-menu ul li ul li ul {
    max-height: none;
    opacity: 1;
  }
  #main-menu ul li ul li:hover > ul {
    width: 230px;
  }
  #main-menu ul li:hover > ul {
    opacity: 1;
    max-height: 2000px;
    overflow: visible;
  }
  #main-menu ul li:hover > ul li {
    overflow: visible;
  }
  #main-menu ul li:hover > ul li ul {
    overflow: hidden;
    opacity: 1;
  }
  #main-menu {
    display: inline-block;
    width: 100%;
  }

  #main-menu .menu-left {
    float: left;
  }
  #main-menu .menu-right {
    float: right;
  }

  #main-menu ul li ul li:hover > a,
  #main-menu ul li ul li.active > a,
  #main-menu ul li ul li.current_page_item > a {
    color: var(--bs-primary);
  }
  #main-menu ul li ul li:hover a span.sub-arrow,
  #main-menu ul li ul li.active a span.sub-arrow,
  .header-section #menu ul li ul li.current_page_item a span.sub-arrow {
    color: var(--bs-primary);
  }

  #main-menu ul li.mega-menu li ul li a {
    /* color: #727272; */
  }
  #main-menu ul li.mega-menu li ul li:hover a,
  #main-menu ul li.mega-menu li ul li.active a,
  #main-menu ul li.mega-menu li ul li.current_page_item a {
    color: var(--bs-primary);
  }
  #main-menu ul li ul li a span.sub-arrow {
    float: right;
    font-size: 14px;
    color: #fff;
  }

  #site-header.pin-style.pin {
    padding: 0px;
  }
  #site-header.pin-style.pin .logo {
    top: 0px;
  }
  #site-header .main-nav .menu-container.menu-left .nav {
    justify-content: left;
  }
  #site-header .main-nav .menu-container.menu-right .nav {
    justify-content: flex-end;
  }
  #site-header .main-nav .nav {
    flex-flow: row;
  }
  #site-header .menu-container {
    width: 50%;
  }
  #menu {
    display: block;
  }
  .mobile-top {
    display: none;
  }

  #main-menu > .menu-container > ul li.menu-item-has-children a {
    padding-right: 20px;
  }
  #main-menu > .menu-container > ul li .arrow::after {
    position: absolute;
    top: 13px;
    right: -4px;
    content: "\F282";
    font-family: bootstrap-icons !important;
    font-size: 12px;
    color: inherit;
    display: inline-block;
  }

  #main-menu ul.nav li.menu-contact-us.menu-item a {
    background: var(--bs-primary);
    color: var(--bs-text-primary);
    border-radius: 8px;
  }
  #main-menu ul.nav > li.menu-contact-us.current_page_item > a::after {
    content: none;
  }
}

@media only screen and (max-width: 1024px) {
  #header-logo-desk {
    display: none;
  }
  .mobile-top {
    display: flex;
    justify-content: space-between;
    color: var(--bs-body-color);
    align-items: center;
  }
  .mobile-top #mobile-logo {
    max-width: 120px;
  }
}

@media only screen and (max-width: 360px) {
  #site-header .logo {
    width: 85px;
  }

  #site-header .main-nav .nav.top-nav {
    top: -7px;
  }

  #site-header .mobile-top .menu-icon {
    padding-left: 5px;
  }

  #site-header .main-nav .nav.top-nav {
    top: 7px;
  }
}

#site_content_wrapper {
  min-height: calc(100vh - 150px);
  position: relative;
  /* z-index: 0; */
}

/*
* Footer
*/
#site-footer {
  position: relative;
  z-index: 1;
  clear: both;
  background-color: #000;
  color: #fff;
}

#site-footer,
#site-footer a {
  color: rgba(256, 256, 256, 0.7);
}
#site-footer a:hover {
  color: #fff;
}
#site-footer section {
  background: transparent;
}

#site-footer .footer-container-top {
  margin-top: 20px;
  padding-top: 30px;
  padding-bottom: 0;
  display: block;
  box-shadow: 0px 1px 0px 0px rgba(256, 256, 256, 0.2);
}
#site-footer .footer-container-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#site-footer section.widget {
  margin-bottom: 20px;
}
#site-footer section.widget ul {
  padding-left: 0;
  list-style: none;
}
#site-footer section.widget .widget-title {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  /* text-transform: uppercase; */
  margin-bottom: 12px;
}

#site-footer section.widget .menu .menu-item a {
  padding: 4px 10px;
  display: inline-block;
}
#site-footer section.widget .menu li a:hover,
#site-footer section.widget .quick-links li a:hover {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
}

#footer-menu {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.footer-social-links {
  line-height: initial;
  list-style: none;
  display: flex;
  gap: 1rem;
  font-size: 1.5rem;
  padding: 0;
  margin-bottom: 0;
}

.social-icons ul {
  margin: 0;
  padding: 0;
  line-height: initial;
  list-style: none;
  display: flex;
  gap: 5px;
}

.social-icons ul li {
}

.social-icons ul li a {
  display: inline-grid;
  transition: all 0.2s ease 0s;
  height: 32px;
  width: 32px;
  text-align: center;
  align-items: center;
}

.social-icons ul li a i {
  font-size: 1.2rem;
}

#footer-container-bottom {
  --bs-border-color: rgba(var(--bs-body-color-rgb), 0.2);
}
#footer-container-bottom .footer_poweredby {
  text-align: right;
  opacity: 0.5;
}
#footer-container-bottom .footer_poweredby:hover {
  opacity: 1;
}
#footer-container-bottom .footer-copyrights-wrapper {
}

/*
**	404 page not found
*/
.not-found-wrapper {
  background: url("../images/mountain-dark.jpg") transparent;
  background-size: cover;
}
.not-found-wrapper .not-found-container {
  padding: 60px 0 50px;
  background-color: #0000005e;
}

.not-found-wrapper .not-found-container .not-found-title h1 {
  font-size: 72px;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1;
  color: #fff;
}

@media (max-width: 991.98px) {
  .not-found-wrapper .not-found-container .not-found-title h1 {
    font-size: 42px;
  }
}

.not-found-wrapper .not-found-container .not-found-desc {
  font-size: 16px;
  max-width: 550px;
  margin: 0 auto;
  color: #ccc;
}

.not-found-wrapper .not-found-container .not-found-subtitle {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0;
  color: #fff;
}

@media (max-width: 991.98px) {
  .not-found-wrapper .not-found-container .not-found-subtitle {
    font-size: 24px;
  }
}

/* 
** Widget for sidebar
*/

.wp-sidebar input,
.wp-sidebar textarea,
.wp-sidebar select,
.elementor-widget-sidebar input,
.elementor-widget-sidebar textarea,
.elementor-widget-sidebar select {
  max-width: 100%;
}

.wp-sidebar .widget,
.elementor-widget-sidebar .widget {
  overflow: hidden;
  margin-bottom: 30px;
  padding: 45px 35px;
  position: relative;
}

@media (max-width: 1199.98px) {
  .wp-sidebar .widget,
  .elementor-widget-sidebar .widget {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.wp-sidebar .widget:before,
.elementor-widget-sidebar .widget:before {
  width: 20px;
  height: 12px;
  position: absolute;
  top: -5px;
  left: 30px;
  z-index: 1;
}

.wp-sidebar ul,
.elementor-widget-sidebar ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0 !important;
}

.wp-sidebar ul li,
.elementor-widget-sidebar ul li {
  list-style: none;
}

.wp-sidebar ul li a,
.elementor-widget-sidebar ul li a {
  padding: 8px 0;
  display: inline-block;
}

.wp-sidebar ul li a:hover,
.elementor-widget-sidebar ul li a:hover {
  color: #1e83ef;
}

.wp-sidebar ul li .count,
.elementor-widget-sidebar ul li .count {
  margin-left: 3px;
  color: #262626;
}

.wp-sidebar ul > li ul,
.elementor-widget-sidebar ul > li ul {
  padding-left: 16px;
}

.wp-sidebar .wpb_single_image,
.elementor-widget-sidebar .wpb_single_image {
  margin-bottom: 30px !important;
}

.wp-sidebar .post-author,
.wp-sidebar .post-date,
.elementor-widget-sidebar .post-author,
.elementor-widget-sidebar .post-date {
  font-size: 14px;
  margin: 0 0 2px;
  font-weight: 500;
  color: #1e83ef;
}

/* *****	 POST TYPE	***** */
.post-container .entry-title {
  font-size: 40px;
  margin-bottom: 39px;
  margin-top: 10px;
}

.post-container .post a {
  /* color: #1e93b4; */
}
.post-container .post a:hover {
  /* color: #00a7d7; */
}
.post-container .post p {
  line-height: 1.8;
}
/* .post-container a {
  color: #1d92b3;
} */

.post-items .post {
  margin-bottom: 30px;
}

.post-items .post {
  -webkit-box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.03);
  box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.03);
  padding: 15px;
  border: 1px solid #f0f0f0;
}

.post-items .post:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
  border: 1px solid #ccc;
}
/* .post-items .post:hover .entry-title > a {
  color: var(--bs-secondary);
} */

.post-items .post .entry-title {
  font-size: 24px;
  text-transform: none;
  line-height: 32px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 12px;
}

.post-items .post .entry-meta {
  font-size: 14px;
  margin-bottom: 5px;
  color: #8d8d8d;
}
.post-items .post .entry-meta a {
  color: #8d8d8d;
}

.post-items .post .entry-meta > span {
  margin-right: 16px;
}

.post-items .post .entry-meta > span i {
  color: #ff4332;
  margin-right: 4px;
}

.post-items .post .entry-meta > span:last-child {
  margin-right: 0;
}

.post-items .post .entry-description {
  margin-bottom: 10px;
}

.post-items .post.post-block-list {
  margin-bottom: 30px;
}
.post-items .post.post-block-list .read-more a {
  font-size: 14px;
  /* color: #00a7d7; */
}
.post-items .post.post-block-list .read-more a:hover {
  /* color: #8d8d8d; */
}

.post-items .post.post-block-list:before,
.post-items .post.post-block-list:after {
  content: " ";
  display: table;
}

.post-items .post.post-block-list:after {
  clear: both;
}

.post-items .post.post-block-list .post-content .post-thumbnail {
  width: 280px;
  float: left;
}

.post-items .post.post-block-list .post-content .content-inner {
  padding-left: 300px;
}

/* hide thumb image from feature-releases category listing */
.post-items .post.post-block-list.category-feature-releases .post-content .post-thumbnail {
  display: none;
}
.post-items .post.post-block-list.category-feature-releases .post-content .content-inner {
  padding-left: 0;
}

@media (max-width: 768px) {
  .post-items .post.post-block-list .post-content .post-thumbnail {
    width: 100%;
    margin-bottom: 12px;
  }

  .post-items .post.post-block-list .post-content .content-inner {
    padding-left: 0;
  }
}

@media (max-width: 500px) {
  .post-items .post.post-block-list .post-content .content-inner .entry-title {
    font-size: 18px;
    line-height: 30px;
  }
}

.single-post article.post {
  -webkit-box-shadow: none;
  box-shadow: none;
  display: inline-block;
}

.single-post article.post .entry-title {
  font-size: 42px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 700;
  margin: 5px 0 20px;
  position: relative;
}

@media (max-width: 1199.98px) {
  .single-post article.post .entry-title {
    font-size: 36px;
  }
}

@media (max-width: 991.98px) {
  .single-post article.post .entry-title {
    font-size: 28px;
  }
}

@media (max-width: 767.98px) {
  .single-post article.post .entry-title {
    font-size: 22px;
  }
}

.single-post article.post .post-thumbnail {
  margin-bottom: 30px;
}
.single-post article.post .post-thumbnail img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.single-post article.post .entry-content {
  margin: 0;
  width: 100%;
  float: left;
  display: block;
  padding: 10px 0px;
  position: relative;
}

.single-post article.post .entry-meta {
  clear: both;
  margin: 20px 0 15px;
}

.single-post article.post .entry-meta .line {
  display: inline-block;
  margin: 0 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #3f3836;
}

.single-post article.post .entry-meta .entry-date {
  font-weight: 500;
  color: #817a78;
}

.single-post article.post .entry-meta .entry-date a {
  color: #817a78;
}

.post-navigation {
  width: 100%;
  float: left;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-top: 15px;
  border-top: 1px solid #f8f8f8;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  width: 40%;
}
.post-navigation .nav-previous {
  float: left;
}
.post-navigation .nav-next {
  float: right;
  text-align: right;
}

.post-navigation a {
  display: inline-block;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
}

@media (max-width: 767.98px) {
  .post-navigation a .post-title {
    display: none;
  }
}

.post-navigation a span.meta-nav {
  display: block;
  font-size: 14px;
  color: #888888;
}

/************************* Pagination ************************/
.pager .paginations {
  text-align: center;
}

.pager .paginations .page-numbers {
  font-size: 14px;
  background: #fff;
  color: #3f3836;
  font-weight: 600;
  padding: 0 12px 0 12px;
  line-height: 32px;
  position: relative;
  z-index: 9;
  display: inline-block;
  -webkit-transition: all 0.35s !important;
  transition: all 0.35s !important;
  -moz-transition: all 0.35s !important;
  -ms-transition: all 0.35s !important;
  text-decoration: none;
  border: none;
  margin-right: 10px;
  margin-bottom: 10px;
  border: 1px solid #1e93b4;
}
.pager .paginations .page-numbers:hover {
  color: #1e93b4;
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  border-color: #1e93b4;
}

.pager .paginations .page-numbers.dots {
  border: none;
}
.pager .paginations .page-numbers.dots:hover {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pager .paginations .page-numbers.current,
.pager .paginations .page-numbers.active {
  background: #1e93b4;
  border-color: #1e93b4;
  color: #fff;
}

.wp-block-image .alignright {
  clear: both;
}

.fade-in-image {
  animation: fadeIn 5s;
  -webkit-animation: fadeIn 5s;
  -moz-animation: fadeIn 5s;
  -o-animation: fadeIn 5s;
  -ms-animation: fadeIn 5s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

ol[type="i"] {
  /* list-style: lower-roman; */
}
ol[type="i"] > li {
  margin-bottom: 2px;
}
ol[type="a"] {
  /* list-style: lower-alpha; */
}
ol[type="a"] > li {
  margin-bottom: 5px;
}

ol[type="1"] {
  /* list-style: decimal; */
}
ol[type="1"] > li {
  margin-bottom: 15px;
}

.max-1080 {
  max-width: 1080px;
  margin: 0 auto;
}

.list.column-2 {
  columns: 2;
}
.list.column-3 {
  columns: 3;
}
.list.column-4 {
  columns: 4;
}
.list .list-item {
  padding: 4px 10px 4px 5px;
}

/* HOME PAGE*/

.section-bg {
  position: relative;
  /* background-color: rgba(var(--bs-primary-rgb), 0.05); */
}
.section-bg::before {
  content: "";
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  /* transform: rotate(5deg) skew(5deg); */
}
.section-bg.right::before {
  /* transform: rotate(-5deg) skew(-5deg); */
}

@media (min-width: 768px) {
  .section-bg.max-h-80::before {
    max-height: 80%;
    top: 10%;
  }
  .section-bg::before {
    max-height: 85%;
    top: 5%;
  }
}

.model-list-wrapper .card {
  --bs-card-height: 100%;
  border: none;
}

.page-banner {
  background-color: rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 1;
}
.page-banner .banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 15px;
}

@media only screen and (max-width: 1024px) {
  .page-banner .banner-content {
    padding-top: 15px;
  }
}
