/*-----------------------------------------------------------------------------------

    Theme Name: dispenser - Hair Salon WordPress Theme
    Author: ThemeOri
    Author URL: https://themeforest.net/user/themeori
    Version: 1.0.0

-----------------------------------------------------------------------------------*/
:root {
  --body-font: "Poppins", sans-serif;
  --heading-font: "Poppins", cursive;
  --theme-body-color: #666666;
  --theme-white: #FFFFFF;
  --theme-primary-color: #0074BC;
  --theme-heading-color: #0F1212;
  --theme-border: #E7E7E7;
  --theme-bg-1: #FBFBFB;
  --theme-bg-2: #F7F9F9;
  --theme-bg-3: #EBEEEE;
  --theme-shadow:rgba(0, 0, 0, 0.08);
  --theme-shadow-2: 0 0 49px 21px rgba(0,0,0,.04);
}

/*==========================================================================
Theme Common Css
==========================================================================*/
body {
  font-family: var(--body-font);
  color: var(--theme-body-color);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

p {
  margin-bottom: 25px;
}

img {
  max-width: 100%;
}

/*==========================================================================
Theme Heading
========================================================================== */
h1 {
  color: var(--theme-heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  margin: 0;
  word-wrap: anywhere;
}

h2 {
  color: var(--theme-heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  margin: 0;
  word-wrap: anywhere;
}

h3 {
  color: var(--theme-heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  margin: 0;
  word-wrap: anywhere;
}

h4 {
  color: var(--theme-heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  margin: 0;
  word-wrap: anywhere;
}

h5 {
  color: var(--theme-heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  margin: 0;
  word-wrap: anywhere;
}

h6 {
  color: var(--theme-heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  margin: 0;
  word-wrap: anywhere;
}

/*==========================================================================
Theme Btn Css
========================================================================== */
.theme-button {
  display: inline-flex;
  background: var(--theme-primary-color);
  color: var(--theme-white);
  font-size: 16px;
  padding: 15px 35px 17px 35px;
  text-align: center;
  font-weight: 500;
  font-family: var(--heading-font);
  z-index: 3;
  position: relative;
  transition: all 0.4s ease-out 0s;
  align-items: center;
  text-decoration: none;
}
.theme-button:hover {
  color: var(--theme-white);
  background: var(--theme-heading-color);
}

@keyframes rotate {
  100% {
    transform: rotate(90deg);
  }
}
/*==========================================================================
Preloader Css
========================================================================== */
.spinner {
  width: 80px;
  height: 80px;
  position: relative;
  margin: 100px auto;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--theme-white);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  animation-delay: -1s;
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.theme-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--theme-heading-color);
  z-index: 9999999999;
}

.theme-loader .spinner {
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
}

/*==========================================================================
Scroll Top Css
========================================================================== */
.theme-scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--theme-shadow);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  transition: all 200ms linear;
}

.theme-scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.theme-scroll-up::after {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  content: "\f176";
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  color: var(--theme-primary-color);
  left: 0;
  top: 0;
  font-size: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.theme-scroll-up svg path {
  fill: none;
}

.theme-scroll-up svg.scroll-circle path {
  stroke: var(--theme-primary-color);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

/*==========================================================================
Custom Cursor Css
========================================================================== */
.theme__custom__cursor-one {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--theme-primary-color);
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999999;
}

.theme__custom__cursor-two {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--theme-primary-color);
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999999;
}

.theme__custom__cursor__hover {
  background-color: var(--theme-primary-color);
  opacity: 0.2;
  width: 60px;
  height: 60px;
}

/*==========================================================================
Theme Header
========================================================================== */
.theme__header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}
.theme__header-logo {
  position: relative;
}
.theme__header-logo a {
  display: inline-block;
}
.theme__header-logo a img {
  max-width: 150px;
  position: relative;
  z-index: 999;
}
.theme__header-menu {
  text-align: right;
}
.theme__header-menu ul {
  padding: 0;
  margin: 0;
}
.theme__header-menu ul li {
  display: inline-block;
  position: relative;
  list-style: none;
}
.theme__header-menu ul li:hover > a {
  color: var(--theme-primary-color);
}
.theme__header-menu ul li:hover > .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.theme__header-menu ul li .sub-menu {
  position: absolute;
  background: var(--theme-white);
  min-width: 240px;
  transition: all 0.3s ease-out 0s;
  top: 120%;
  right: 0;
  opacity: 0;
  visibility: hidden;
  border-top: 2px solid var(--theme-primary-color);
  z-index: 99;
  box-shadow: 0px 15px 30px 0px var(--theme-shadow);
  text-align: left;
}
.theme__header-menu ul li .sub-menu li {
  display: block;
  margin: 0;
  border-bottom: 1px solid var(--theme-border);
}
.theme__header-menu ul li .sub-menu li a {
  color: var(--theme-body-color);
  padding: 13px 25px;
  transition: all 0.4s ease-out 0s;
  font-size: 18px;
  font-weight: 400;
}
.theme__header-menu ul li .sub-menu li .sub-menu {
  right: 100%;
  top: -2px;
}
.theme__header-menu ul li .sub-menu li:hover > a {
  color: var(--theme-primary-color);
}
.theme__header-menu ul li .sub-menu li:last-child {
  border: none;
}
.theme__header-menu ul li .sub-menu .menu-item-has-children a::before {
  right: 28px;
}
.theme__header-menu ul li .sub-menu .menu-item-has-children a::after {
  right: 25px;
}
.theme__header-menu ul li ul .sub-menu li .sub-menu {
  color: var(--theme-heading-color);
  cursor: pointer;
}
.theme__header-menu ul li a {
  color: var(--theme-body-color);
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  transition: all 0.4s ease-out 0s;
  text-transform: capitalize;
  padding: 37px 22px;
  text-decoration: none;
}
.theme__header-menu ul li:last-child a {
  padding-right: 0;
}
.theme__header-menu ul li.menu-item-has-children > a {
  position: relative;
}
.theme__header-menu ul li.menu-item-has-children > a::before {
  content: "\f107";
  position: absolute;
  top: 50%;
  transform: translateY(-48%);
  right: 0px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  transition: all 0.3s ease;
}
.theme__header-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.theme__header-right {
  display: flex;
  align-items: center;
}
.theme__header-right-search {
  margin-left: 40px;
  padding: 30px 0;
}
.theme__header-right-search-icon i {
  cursor: pointer;
  position: relative;
  z-index: 9;
  color: var(--theme-heading-color);
}
.theme__header-right-search-box {
  position: fixed;
  bottom: 0;
  left: 50%;
  width: 100%;
  left: 0;
  right: 0;
  height: 0;
  background: var(--theme-heading-color);
  z-index: 999;
  transition: 0.5s;
  overflow: hidden;
}
.theme__header-right-search-box form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
}
.theme__header-right-search-box input {
  background: var(--theme-white);
  color: var(--theme-heading-color);
  border: 0;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  outline: none;
}
.theme__header-right-search-box button {
  position: absolute;
  right: 20px;
  top: 18px;
  background-color: transparent;
  text-align: center;
  font-size: 22px;
  color: var(--theme-primary-color);
  border: 0;
  outline: none;
  padding: 0;
  margin: 0;
}
.theme__header-right-search-box.active {
  height: 100%;
  top: 0;
}
.theme__header-right-search-box-icon {
  position: absolute;
  right: 50px;
  top: 50px;
  font-size: 22px;
  color: var(--theme-white);
  cursor: pointer;
  transform: rotate(0deg);
}
.theme__header-right-search-box-icon:hover {
  animation: rotate 0.4s ease 0s;
}
.theme__header-right-search-box-icon i {
  cursor: pointer;
  position: relative;
  z-index: 9;
}
.theme__header-right-search-box-icon i::before {
  display: block;
}
.theme__header-right-button {
  margin-left: 60px;
}
.theme__header .theme-responsive-menu {
  display: none;
}
.theme__header-sticky-menu {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  box-shadow: 0px 0px 20px var(--theme-shadow);
  animation: header_sticky 1.1s;
  background: var(--theme-bg-1);
  display: block;
}
@keyframes header_sticky {
  0% {
    top: -250px;
  }
  100% {
    top: 0;
  }
}

.header-get-start-btn {
  background: #0074BC;
  color: #fff;
  padding: 16px 30px;
  border-radius: 30px;
  margin-left: 250px;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 500;
}

.header-get-start-btn:hover {
  color: #fff;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .header-get-start-btn {
    margin-left: 50px;
  }
}
/*==========================================================================
Responsive Menu Css
========================================================================== */
.theme-responsive-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}

.theme__header .mean-container a.meanmenu-reveal {
  color: var(--theme-heading-color);
  width: 25px;
  height: 31px;
  top: -10px;
  padding: 12px 0 0 0;
  margin-right: 0;
  transition: all 0s ease-out 0s;
}
.theme__header .mean-container a.meanmenu-reveal span {
  background: var(--theme-heading-color);
  margin-top: 6px;
}
.theme__header .mean-container .mean-bar {
  background: transparent;
  padding: 0;
  z-index: 99;
}
.theme__header .mean-container .mean-bar a i {
  font-size: 32px;
  display: block;
}
.theme__header .mean-container .mean-nav {
  background: var(--theme-white);
  margin-top: 54px;
  box-shadow: 0 0 30px var(--theme-shadow);
}
.theme__header .mean-container .mean-nav li:first-child > a {
  border: none;
}
.theme__header .mean-container .mean-nav ul li a.mean-expand {
  background: var(--theme-primary-color);
  height: 34px;
  color: var(--theme-white);
}
.theme__header .mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--theme-primary-color);
}
.theme__header .mean-container .mean-nav .sub-menu li a.mean-expand {
  background: var(--theme-primary-color);
  height: 34px;
  color: var(--theme-white);
}
.theme__header .mean-container .mean-nav .sub-menu li a.mean-expand:hover {
  background: var(--theme-primary-color);
}
.theme__header .mean-container .mean-nav ul li a,
.theme__header .mean-container .mean-nav ul li li a,
.theme__header .mean-container .mean-nav li li:first-child > a {
  color: var(--theme-body-color);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: capitalize;
  border-top: 1px solid var(--theme-border);
  opacity: 1;
}

@media (max-width: 991px) {
  .theme__header {
    padding: 30px 0;
  }
  .theme__header .theme-responsive-menu {
    display: block;
  }
  .theme__header-area {
    display: initial;
  }
  .theme__header-right {
    display: none;
  }
  .mean-container .mean-bar a i {
    color: var(--heading-color);
  }
}
.theme__core__css ol, .theme__core__css ul {
  padding-left: 25px;
}
.theme__core__css dl, .theme__core__css ol, .theme__core__css ul {
  margin-top: 0;
}
.theme__core__css img {
  max-width: 100%;
  height: auto;
}
.theme__core__css a {
  text-decoration: none;
  color: initial;
  transition: all 500ms ease;
}
.theme__core__css a:focus,
.theme__core__css a:hover {
  text-decoration: none;
  color: var(--theme-primary-color);
}
.theme__core__css button,
.theme__core__css input[type=button],
.theme__core__css input[type=reset],
.theme__core__css input[type=submit] {
  border: 1px solid var(--theme-border);
  border-color: transparent;
  border-radius: 0px;
  background: var(--theme-primary-color);
  color: var(--theme-white);
  padding: 15px 25px 14px 25px;
  margin: 0;
}
.theme__core__css button:hover,
.theme__core__css input[type=button]:hover,
.theme__core__css input[type=reset]:hover,
.theme__core__css input[type=submit]:hover {
  border-color: transparent;
}
.theme__core__css button:active,
.theme__core__css button:focus,
.theme__core__css input[type=button]:active,
.theme__core__css input[type=button]:focus,
.theme__core__css input[type=reset]:active,
.theme__core__css input[type=reset]:focus,
.theme__core__css input[type=submit]:active,
.theme__core__css input[type=submit]:focus {
  border-color: transparent;
}
.theme__core__css input[type=text],
.theme__core__css input[type=email],
.theme__core__css input[type=url],
.theme__core__css input[type=password],
.theme__core__css input[type=search],
.theme__core__css input[type=number],
.theme__core__css input[type=tel],
.theme__core__css input[type=range],
.theme__core__css input[type=date],
.theme__core__css input[type=month],
.theme__core__css input[type=week],
.theme__core__css input[type=time],
.theme__core__css input[type=datetime],
.theme__core__css input[type=datetime-local],
.theme__core__css input[type=color],
.theme__core__css textarea {
  color: var(--theme-heading-color);
  border: 1px solid;
  border-radius: 0px;
  width: 100%;
  height: 55px;
  border: 1px solid var(--theme-border);
  background: var(--theme-white);
  padding-left: 15px;
}
.theme__core__css input[type=text]:focus,
.theme__core__css input[type=email]:focus,
.theme__core__css input[type=url]:focus,
.theme__core__css input[type=password]:focus,
.theme__core__css input[type=search]:focus,
.theme__core__css input[type=number]:focus,
.theme__core__css input[type=tel]:focus,
.theme__core__css input[type=range]:focus,
.theme__core__css input[type=date]:focus,
.theme__core__css input[type=month]:focus,
.theme__core__css input[type=week]:focus,
.theme__core__css input[type=time]:focus,
.theme__core__css input[type=datetime]:focus,
.theme__core__css input[type=datetime-local]:focus,
.theme__core__css input[type=color]:focus,
.theme__core__css textarea:focus {
  color: var(--theme-heading-color);
  outline: none;
  box-shadow: none;
  border-color: var(--theme-primary-color);
}
.theme__core__css select {
  border: 1px solid var(--theme-border);
}
.theme__core__css textarea {
  width: 100%;
  height: 150px;
  padding-top: 15px;
}
.theme__core__css button,
.theme__core__css button:hover,
.theme__core__css button:focus {
  box-shadow: none;
  border: none;
  outline: none;
}
.theme__core__css h1 {
  font-size: 48px;
  line-height: 58px;
  margin: 0 0 15px 0;
}
.theme__core__css h2 {
  font-size: 36px;
  line-height: 46px;
  margin: 0 0 15px 0;
}
.theme__core__css h3 {
  font-size: 30px;
  line-height: 40px;
  margin: 0 0 15px 0;
}
.theme__core__css h4 {
  font-size: 24px;
  line-height: 34px;
  margin: 0 0 15px 0;
}
.theme__core__css h5 {
  font-size: 20px;
  line-height: 30px;
  margin: 0 0 15px 0;
}
.theme__core__css h6 {
  margin: 0 0 15px 0;
}

/*==========================================================================
Page
========================================================================== */
.theme__page__banner {
  background-color: var(--theme-heading-color);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding: 150px 0;
}
.theme__page__banner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  background-color: var(--theme-heading-color);
  z-index: -1;
}
.theme__page__banner-content h1 {
  font-size: 54px;
  line-height: 64px;
  color: var(--theme-white);
}
.theme__page__banner-content ul {
  padding: 0;
  margin: 0;
  margin-top: 20px;
}
.theme__page__banner-content ul li {
  display: inline-block;
  padding-right: 4px;
  list-style: none;
  color: var(--theme-primary-color);
  font-weight: 500;
  position: relative;
  font-size: 16px;
}
.theme__page__banner-content ul li i {
  position: relative;
  margin-left: 17px;
  margin-right: 9px;
  font-size: 14px;
}
.theme__page__banner-content ul li a {
  color: var(--theme-white);
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}
.theme__page__banner-content ul li a:hover {
  color: var(--theme-primary-color);
}

/*==========================================================================
 Elementor Service Box Page CSS
========================================================================== */
.ol-home-service-box-item {
  transition: 0.3s;
  background: var(--theme-white);
  border-radius: 16px;
  margin: 0px 15px 0px 15px;
}
.ol-home-service-box-item:hover {
  background: var(--theme-primary-color);
  filter: drop-shadow(0px 16px 38px rgba(0, 116, 188, 0.24));
}
.ol-home-service-box-item:hover .elementor-icon-box-icon .elementor-icon svg {
  filter: brightness(0) invert(1);
}
.ol-home-service-box-item:hover .elementor-icon-box-content .elementor-icon-box-title {
  color: var(--theme-white);
}
.ol-home-service-box-item:hover .elementor-icon-box-content .elementor-icon-box-description {
  color: var(--theme-white);
}

.ol-box-shawdo-section {
  filter: drop-shadow(0px 16px 38px rgba(0, 116, 188, 0.24));
}

@media (max-width: 767px) {
  .theme__page__banner-content h1 {
    font-size: 50px;
    line-height: 60px;
  }
  .theme__page__banner-content ul {
    margin-top: 10px;
  }
}
@media (max-width: 440px) {
  .theme__page__banner {
    padding: 90px 0;
  }
  .theme__page__banner-content h1 {
    font-size: 34px;
    line-height: 44px;
  }
}
/*==========================================================================
Theme Blog Standard
========================================================================== */
.theme__blog__list {
  padding: 130px 0;
}
.theme__blog__list-left-item {
  margin-bottom: 50px;
}
.theme__blog__list-left-item-image {
  overflow: hidden;
}
.theme__blog__list-left-item-image img {
  transition: all 0.6s ease-out 0s;
  transform: scale(1);
}
.theme__blog__list-left-item-image:hover img {
  transform: scale(1.04);
}
.theme__blog__list-left-item-content {
  padding: 25px 30px;
  border: 1px solid var(--theme-bg-3);
}
.theme__blog__list-left-item-content-meta {
  padding: 0 0 15px 0;
}
.theme__blog__list-left-item-content-meta ul {
  padding: 0;
  margin: 0;
}
.theme__blog__list-left-item-content-meta ul li {
  display: inline-block;
  margin-right: 20px;
  list-style: none;
}
.theme__blog__list-left-item-content-meta ul li:last-child {
  margin: 0;
}
.theme__blog__list-left-item-content-meta ul li a {
  color: var(--theme-body-color);
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.theme__blog__list-left-item-content-meta ul li a:hover {
  color: var(--theme-primary-color);
}
.theme__blog__list-left-item-content-meta ul li i::before {
  color: var(--theme-primary-color);
  margin-right: 10px;
}
.theme__blog__list-left-item-content h3 {
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 20px;
}
.theme__blog__list-left-item-content h3 a {
  transition: all 0.4s ease-out 0s;
  text-decoration: none;
  color: var(--theme-heading-color);
}
.theme__blog__list-left-item-content h3 a:hover {
  color: var(--theme-primary-color);
}
.theme__blog__list-left-item-content p {
  margin-bottom: 20px;
}
.theme__blog__list-left-item-content .button {
  transition: all 0.4s ease-out 0s;
  color: var(--theme-heading-color);
  font-weight: 700;
  text-decoration: none;
  color: var(--theme-heading-color);
}
.theme__blog__list-left-item-content .button:hover {
  color: var(--theme-primary-color);
}

/*==========================================================================
Theme Blog Details
========================================================================== */
.theme__blog__details {
  padding: 130px 0;
}
.theme__blog__details-left-meta {
  padding: 30px 0;
  border-bottom: 1px solid var(--theme-border);
}
.theme__blog__details-left-meta ul {
  padding: 0;
  margin: 0;
}
.theme__blog__details-left-meta ul li {
  display: inline-block;
  margin-right: 20px;
  list-style: none;
}
.theme__blog__details-left-meta ul li:last-child {
  margin: 0;
}
.theme__blog__details-left-meta ul li a {
  color: var(--theme-body-color);
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.theme__blog__details-left-meta ul li a:hover {
  color: var(--theme-primary-color);
}
.theme__blog__details-left-meta ul i::before {
  color: var(--theme-primary-color);
  margin-right: 10px;
}
.theme__blog__details-left-related {
  padding-top: 25px;
}
.theme__blog__details-left-related-tag a {
  font-family: var(--body-font);
  color: var(--body-color);
  font-size: 16px !important;
  line-height: 26px;
  font-weight: 400;
  margin-right: 7px;
  margin-bottom: 10px;
  display: inline-block;
  transition: all 500ms ease;
  border: 1px solid var(--border-color-1);
  padding: 7px 15px;
  border-radius: 3px;
}
.theme__blog__details-left-related-tag a:hover {
  background: var(--theme-primary-color);
  border: 1px solid var(--theme-primary-color);
  color: var(--theme-white);
}
.theme__blog__details-left-related-share {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}
.theme__blog__details-left-related-share ul {
  padding: 0;
  margin: 0;
}
.theme__blog__details-left-related-share ul li {
  display: inline-block;
  list-style: none;
  margin-right: 15px;
}
.theme__blog__details-left-related-share ul li a {
  color: var(--theme-body-color);
}
.theme__blog__details-left-related-share ul li a i {
  font-size: 14px;
  transition: all 0.3s ease-out 0s;
}
.theme__blog__details-left-related-share ul li a i:hover {
  color: var(--theme-primary-color);
}
.theme__blog__details-left-related-share ul li:last-child {
  margin: 0;
}
.theme__blog__details-left-post-author {
  padding: 30px;
  background: var(--theme-bg-2);
  display: flex;
  align-items: center;
  gap: 30px;
}
.theme__blog__details-left-post-author-image {
  width: 150px;
  height: 150px;
  min-width: 150px;
}
.theme__blog__details-left-post-author-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  max-width: 150px;
}
.theme__blog__details-left-post-author-content {
  max-width: 490px;
}
.theme__blog__details-left-post-author-content h4 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 34px;
}
.theme__blog__details-left-post-author-content p {
  margin: 0;
}
.theme__blog__details-left-comment {
  margin-top: 40px;
}
.theme__blog__details-left-comment h4 {
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 20px;
}
.theme__blog__details-left-comment-item {
  border-bottom: 1px solid var(--theme-border);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.theme__blog__details-left-comment-item:nth-child(3) {
  margin-left: 70px;
}
.theme__blog__details-left-comment-item-comment-image {
  float: left;
}
.theme__blog__details-left-comment-item-comment-content {
  padding-left: 30px;
  overflow: hidden;
}
.theme__blog__details-left-comment-item-comment-content span {
  font-size: 14px;
  margin-bottom: 15px;
  display: inline-block;
}
.theme__blog__details-left-comment-item-comment-content p {
  margin: 15;
}
.theme__blog__details-left-contact h4 {
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 30px;
}
.theme__blog__details-left-contact-form-item {
  position: relative;
}
.theme__blog__details-left-contact-form-item i {
  position: absolute;
  right: 20px;
  top: 20px;
  color: var(--theme-primary-color);
}
.theme__blog__details-left-contact-form-item input {
  font-size: 14px;
  margin-bottom: 30px;
}
.theme__blog__details-left-contact-form-item textarea {
  height: 220px;
  font-size: 14px;
  margin-bottom: 30px;
  resize: none;
}
.theme__blog__details-left-contact-form-item .theme-btn3 {
  background: var(--theme-primary-color);
}
.theme__blog__details-left-contact-form-item .theme-btn3 i {
  position: initial;
  color: var(--theme-white);
}
.theme__blog__details-left-contact-form-item .nice-select {
  width: 100%;
  border: 1px solid var(--theme-border-color);
  border-radius: 0;
  height: 60px;
  line-height: 60px;
  transition: all 0.3s ease-out 0s;
  padding: 0 20px;
}
.theme__blog__details-left-contact-form-item .nice-select:focus {
  border-color: var(--theme-primary-color);
}
.theme__blog__details-left-contact-form-item .nice-select .list {
  width: 100%;
  border-radius: 0;
  transition: all 0.3s ease-out 0s;
}
.theme__blog__details-left-contact-form-item .nice-select::after {
  border-right: 1px solid var(--theme-heading-color);
  border-bottom: 1px solid var(--theme-heading-color);
  right: 22px;
  width: 6px;
  height: 6px;
}

/*==========================================================================
post__pagination
========================================================================== */
.page-links a {
  color: var(--theme-heading-color);
  background: var(--theme-bg-2);
  display: inline-block;
  height: 40px;
  width: 40px;
  margin-right: 4px;
  border: 1px solid var(--border-color-2);
  line-height: 40px;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.page-links a:hover {
  color: var(--theme-primary-color);
  border-color: 1px solid var(--theme-primary-color);
}
.page-links .current {
  color: var(--theme-white);
  background: var(--theme-primary-color);
  display: inline-block;
  height: 40px;
  width: 40px;
  margin-right: 4px;
  line-height: 40px;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}

.theme__pagination {
  margin-top: 50px;
}
.theme__pagination ul {
  padding: 0;
  margin: 0;
}
.theme__pagination ul li {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}
.theme__pagination ul li .current {
  color: var(--theme-white);
  background: var(--theme-primary-color);
  display: block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  border-radius: 50px;
}
.theme__pagination ul li a {
  color: var(--theme-heading-color);
  background: var(--theme-bg-2);
  display: block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
.theme__pagination ul li a:hover {
  background: var(--theme-primary-color);
  color: var(--theme-white);
}

@media (max-width: 575px) {
  .theme__blog__list-left-item-content {
    padding: 25px 20px;
  }
  .theme__blog__list-left-item-content-meta ul li {
    margin-right: 18px;
  }
  .theme__blog__list-left-item-content h3 {
    font-size: 22px;
    line-height: 32px;
  }
  .theme__blog__details-left-meta ul li {
    margin-right: 18px;
  }
  .theme__blog__details-left-box {
    margin-bottom: 0;
  }
  .theme__blog__details-left-post-author {
    display: block;
    padding: 30px 25px;
  }
  .theme__blog__details-left-post-author-image {
    margin-bottom: 25px;
  }
  .theme__blog__details-left-img {
    margin-top: 30px;
  }
  .theme__blog__details-left-comment-item:nth-child(3) {
    margin-left: 0;
  }
  .theme__blog__details-left-comment-item-comment-image {
    float: initial;
    margin-bottom: 20px;
  }
  .theme__blog__details-left-comment-item-comment-content {
    padding-left: 0;
  }
  .theme__blog__details-left-related-share {
    justify-content: left;
    margin-top: 20px;
  }
}
.blog__standard-left > div {
  margin-bottom: 40px;
}

.blog__standard-left > div:last-child {
  margin-bottom: 0px;
}

/*==========================================================================
Theme Error
========================================================================== */
.theme__error {
  padding-top: 130px;
  padding-bottom: 130px;
}
.theme__error-title {
  text-align: center;
}
.theme__error-title h1 {
  font-size: 260px;
  line-height: 240px;
  font-weight: 900;
}
.theme__error-title h3 {
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 40px;
  margin-top: 20px;
}

@media (max-width: 1399px) {
  .theme__error-title h1 {
    font-size: 200px;
    line-height: 210px;
  }
}
@media (max-width: 768px) {
  .theme__error-title h1 {
    font-size: 170px;
    line-height: 180px;
  }
}
@media (max-width: 440px) {
  .theme__error-title h1 {
    font-size: 150px;
    line-height: 160px;
  }
}
@media (max-width: 359px) {
  .theme__error-title h1 {
    font-size: 130px;
    line-height: 140px;
  }
}
/*==========================================================================
Footer
========================================================================== */
.theme__footer {
  padding: 105px 0;
  background: var(--theme-bg-2);
}
.theme__footer-widget {
  margin: 15px 0;
}
.theme__footer-widget > h5 {
  margin-bottom: 25px;
  font-size: 20px;
  line-height: 30px;
}
.theme__footer-widget-about {
  margin-right: 40px;
}
.theme__footer-widget-about p {
  margin-bottom: 35px;
}
.theme__footer-widget-about-social ul {
  padding: 0;
  margin: 0;
}
.theme__footer-widget-about-social ul li {
  display: inline-block;
  list-style: none;
  margin-right: 10px;
}
.theme__footer-widget-about-social ul li:last-child {
  margin: 0;
}
.theme__footer-widget-about-social ul li a {
  text-decoration: none;
}
.theme__footer-widget-about-social ul li a i {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--theme-border);
  border-radius: 50%;
  color: var(--theme-heading-color);
  transition: all 0.4s ease-out 0s;
}
.theme__footer-widget-about-social ul li a i:hover {
  color: var(--theme-white);
  background: var(--theme-primary-color);
}
.theme__footer-widget-menu ul {
  padding: 0;
  margin: 0;
}
.theme__footer-widget-menu ul li {
  list-style: none;
  margin-bottom: 12px;
}
.theme__footer-widget-menu ul li a {
  position: relative;
  left: 0;
  transition: all 0.4s ease-out 0s;
  text-decoration: none;
  color: var(--theme-body-color);
}
.theme__footer-widget-menu ul li a i {
  font-size: 14px;
  margin-right: 10px;
  color: var(--theme-body-color);
  transition: all 0.4s ease-out 0s;
}
.theme__footer-widget-menu ul li a:hover {
  left: 5px;
  color: var(--theme-primary-color);
}
.theme__footer-widget-menu ul li a:hover i {
  color: var(--theme-primary-color);
}
.theme__footer-widget-menu ul li:last-child {
  margin: 0;
}
.theme__footer-widget-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.theme__footer-widget-info-item-icon {
  margin-right: 15px;
}
.theme__footer-widget-info-item-icon i {
  display: inline-block;
  width: 40px;
  line-height: 40px;
  height: 40px;
  border: 1px solid var(--theme-border);
  text-align: center;
  border-radius: 50%;
}
.theme__footer-widget-info-item-content h6 {
  font-size: 16px;
  line-height: 26px;
  color: var(--theme-heading-color);
}
.theme__footer-widget-info-item-content span a {
  display: inline-block;
  color: var(--theme-body-color);
  text-decoration: none;
  transition: all 0.4s ease-out 0s;
}
.theme__footer-widget-info-item-content span a:hover {
  color: var(--theme-primary-color);
}
.theme__footer-widget-info-item:last-child {
  margin: 0;
}

.ol-footer-address .elementor-icon-list-icon i {
  width: 28px !important;
  height: 28px;
  background: #85bde0;
  line-height: 28px;
  text-align: center;
  border-radius: 50px;
  font-size: 14px;
}

/*==========================================================================
Copyright
========================================================================== */
.theme__copyright {
  background: var(--theme-heading-color);
  padding: 25px 0;
}
.theme__copyright-title {
  text-align: center;
}
.theme__copyright-title p {
  margin: 0;
  color: var(--theme-white);
}
.theme__copyright-title p a {
  font-weight: 700;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
  color: var(--theme-primary-color);
}
.theme__copyright-title p a:hover {
  color: var(--theme-primary-color);
}

@media (max-width: 767px) {
  .footer__area-widget-about {
    margin-right: 20px;
  }
}
/*==========================================================================
All Side Bar
========================================================================== */
.theme__all__sidebar-item {
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid var(--border-color-1);
}
.theme__all__sidebar-item h2 {
  position: relative;
  font-size: 20px;
  line-height: 30px;
  padding-bottom: 10px;
  margin-bottom: 25px;
}
.theme__all__sidebar-item h2::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 30px;
  background: var(--theme-primary-color);
}
.theme__all__sidebar-item-category ul {
  padding: 0;
  margin: 0;
}
.theme__all__sidebar-item-category ul li {
  list-style: none;
}
.theme__all__sidebar-item-category ul li a {
  display: block;
  color: var(--theme-heading-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s ease-out 0s;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--theme-border);
}
.theme__all__sidebar-item-category ul li a span {
  float: right;
  position: relative;
  top: 2px;
}
.theme__all__sidebar-item-category ul li a:hover {
  color: var(--theme-primary-color);
}
.theme__all__sidebar-item-category ul li:last-child a {
  margin: 0;
  padding: 0;
  border: 0;
}
.theme__all__sidebar-item-search form {
  position: relative;
}
.theme__all__sidebar-item-search form button {
  position: absolute;
  right: 0;
  top: 0;
  color: var(--theme-white);
  width: 60px;
  bottom: 0;
  background: var(--theme-primary-color);
  display: inline-block;
  padding: 0;
}
.theme__all__sidebar-item-about {
  text-align: center;
}
.theme__all__sidebar-item-about img {
  border-radius: 50%;
  max-width: 140px;
  width: 140px;
  height: 140px;
  object-fit: cover;
}
.theme__all__sidebar-item-about h2 {
  font-size: 18px;
  line-height: 28px;
  margin-top: 15px;
  margin-bottom: 10px;
  color: var(--theme-heading-color);
}
.theme__all__sidebar-item-about p {
  max-width: 280px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.theme__all__sidebar-item-about ul {
  padding: 0;
  margin: 0;
}
.theme__all__sidebar-item-about ul li {
  display: inline-block;
  list-style: none;
  margin-right: 15px;
}
.theme__all__sidebar-item-about ul li a {
  text-decoration: none;
}
.theme__all__sidebar-item-about ul li a i {
  font-size: 14px;
  transition: all 0.3s ease-out 0s;
}
.theme__all__sidebar-item-about ul li a i:hover {
  color: var(--theme-primary-color);
}
.theme__all__sidebar-item-about ul li:last-child {
  margin: 0;
}
.theme__all__sidebar-item-tag ul {
  padding: 0;
  margin: 0;
}
.theme__all__sidebar-item-tag ul li {
  display: inline-block;
  list-style: none;
}
.theme__all__sidebar-item-tag ul li a {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  line-height: 30px;
  padding: 0 22px;
  background: var(--theme-bg-2);
  color: var(--theme-body-color);
  transition: all 0.4s ease-out 0s;
  margin: 5px 2px;
  text-decoration: none;
}
.theme__all__sidebar-item-tag ul li a:hover {
  background: var(--theme-primary-color);
  color: var(--theme-white);
}
.theme__all__sidebar-item:last-child {
  margin: 0;
}

.theme__widget-post-item {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  gap: 20px;
  border-bottom: 1px solid var(--theme-border);
}
.theme__widget-post-item-image img {
  max-width: 80px;
  border-radius: 5px;
}
.theme__widget-post-item-content span {
  font-size: 14px;
  line-height: 24px;
}
.theme__widget-post-item-content span i {
  color: var(--theme-primary-color);
  margin-right: 10px;
}
.theme__widget-post-item-content h6 {
  font-size: 16px;
  line-height: 26px;
}
.theme__widget-post-item-content h6 a {
  transition: all 0.4s ease-out 0s;
  max-width: 210px;
  display: inline-block;
  text-decoration: none;
  color: var(--theme-heading-color);
}
.theme__widget-post-item-content h6 a:hover {
  color: var(--theme-primary-color);
}
.theme__widget-post-item:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

@media (max-width: 1399px) {
  .theme__all__sidebar-item {
    padding: 35px 30px;
  }
}
@media (max-width: 1199px) {
  .theme__all__sidebar-item {
    padding: 35px 25px;
  }
  .theme__all__sidebar-item-tag ul li a {
    padding: 0 17px;
  }
  .theme__widget-post-item {
    gap: 17px;
  }
  .theme__widget-post-item-content h6 {
    line-height: 20px;
  }
}
@media (max-width: 991px) {
  .theme__all__sidebar {
    margin-top: 30px;
  }
}
body.logged-in .theme__header-sticky-menu {
  margin-top: 34px;
}

.theme__header-right-search-box input[type=search]:focus {
  border-color: var(--theme-primary-color);
}

.theme__header-logo h1 {
  font-size: 28px;
  line-height: 34px;
}
.theme__header-logo a {
  transition: all 0.4s ease-out 0s;
}
.theme__header-logo a:hover {
  color: var(--theme-primary-color);
}

.disable_sticky_header.theme__header-sticky-menu {
  display: none;
}

.blog-posts-list div:last-child .theme__blog__list-left-item {
  margin: 0;
}

.theme__blog__list-left-item-content-meta ul li span.meta-a-space i::before {
  margin-right: 5px;
}

.theme__blog__details-left-meta ul li span.meta-a-space i::before {
  margin-right: 5px;
}

.theme__all__sidebar-item .search-form label {
  display: block;
}

.theme__all__sidebar-item .search-form {
  position: relative;
}
.theme__all__sidebar-item .search-form .search-submit {
  position: absolute;
  right: 0;
  top: 0;
  padding: 13px 25px 13px 25px;
}

.comment-form-cookies-consent {
  display: none;
}

a.comment-reply-link {
  float: right;
  font-size: 14px;
  font-weight: 400;
  color: var(--theme-body-color);
  line-height: 36px;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
  margin-top: -20px;
}
a.comment-reply-link i {
  margin-right: 7px;
}

.theme__blog__details-left-comment-item-comment-image img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

.wp-block-search__label {
  display: none;
}

.theme__all__sidebar-item ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.theme__all__sidebar-item ul li {
  position: relative;
  margin-bottom: 10px;
}
.theme__all__sidebar-item ul li a {
  color: var(--heading-color);
  font-weight: 700;
  font-family: var(--heading-font);
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.theme__all__sidebar-item ul li :last-child {
  margin-bottom: 0;
}
.theme__all__sidebar-item ol {
  padding: 0;
  margin: 0;
}

.theme__all__sidebar-item ul li:last-child {
  margin-bottom: 0;
}

.wp-block-latest-comments__comment {
  line-height: inherit;
  list-style: none;
  margin-bottom: 10px;
}
.wp-block-latest-comments__comment a {
  color: var(--heading-color);
  font-weight: 700;
  font-family: var(--heading-font);
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.site-content-padding {
  padding: 130px 0px;
}

.page-links {
  clear: both;
}

.page-links-title {
  font-size: 16px;
  line-height: 26px;
  margin-right: 10px;
  font-weight: 700;
  color: var(--theme-heading-color);
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em !important;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/* clear
--------------------------------------------- */
.comments-area,
.alignright {
  clear: both;
  overflow: hidden;
}

.entry-content {
  overflow: hidden;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

.screen-reader-text {
  display: none;
}

/* Bug Fixing
--------------------------------------------- */
.wp-block-archives-dropdown label {
  display: none;
}

.theme__all__sidebar-item.widget_categories ul {
  margin-top: 0px;
  padding-top: 0px;
}
.theme__all__sidebar-item.widget_categories ul li {
  list-style: none;
  position: relative;
  margin-bottom: 0px;
}
.theme__all__sidebar-item.widget_categories ul li a {
  display: block;
  color: var(--heading-color);
  font-family: var(--heading-font);
  transition: all 0.4s ease-out 0s;
  padding: 15px 0px 12px 20px;
  padding-left: 18px;
  font-weight: 700;
  border-bottom: 1px solid var(--border-color-2);
  position: relative;
}
.theme__all__sidebar-item.widget_categories ul li a::after {
  position: absolute;
  content: "\f101";
  font-weight: 400;
  font-family: "Font Awesome 5 Pro";
  left: 0;
  transition: all 0.4s ease-out 0s;
  top: 50%;
  transform: translateY(-50%);
}
.theme__all__sidebar-item.widget_categories ul li a:hover {
  color: var(--primary-color);
  padding-left: 25px;
}
.theme__all__sidebar-item.widget_categories ul li a:hover::after {
  left: 6px;
}
.theme__all__sidebar-item.widget_categories ul li span {
  position: absolute;
  right: 0;
  top: 13px;
}

.theme__all__sidebar-item.widget_tag_cloud a {
  font-family: var(--body-font);
  color: var(--body-color);
  font-size: 16px !important;
  line-height: 26px;
  font-weight: 400;
  margin-right: 3px;
  margin-bottom: 10px;
  display: inline-block;
  transition: all 500ms ease;
  border: 1px solid var(--border-color-1);
  padding: 7px 15px;
  border-radius: 3px;
}
.theme__all__sidebar-item.widget_tag_cloud a:hover {
  color: var(--theme-white);
  border-color: var(--primary-color);
  background: var(--primary-color);
}

.comment-required-title {
  margin-bottom: 25px;
}

blockquote {
  background: #F8F8F8;
  padding: 50px 40px !important;
  position: relative;
  border-left: 4px solid var(--primary-color) !important;
  margin-bottom: 40px;
}
blockquote p {
  color: var(--theme-heading-color);
  font-family: var(--heading-font);
  font-size: 18px;
  line-height: 30px;
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote cite {
  padding-left: 65px;
  font-size: 18px !important;
  line-height: 28px;
  font-weight: 900;
  font-family: var(--heading-font);
  position: relative;
}
blockquote cite:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  left: 0;
  top: 13px;
  background: var(--primary-color);
}
blockquote::before {
  content: "\f10e";
  position: static;
  font-family: "Font Awesome 5 Pro";
  font-size: 32px;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 18px;
  margin-right: 10px;
  display: inline-block;
}

@media (min-width: 768px) and (max-width: 991px) {
  .theme__pagination {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .comments-area.theme__blog__details-left-comment .children {
    padding-left: 0;
  }
  .theme__pagination {
    margin-bottom: 30px;
  }
}
.format-standard {
  position: relative;
}

@media (max-width: 575px) {
  div.format-standard.sticky::before {
    top: 45px;
  }
  .wp-block-search button {
    padding: 10px 15px;
  }
  .page-content .search-form .search-submit {
    padding: 16px 15px;
  }
}
.format-standard.sticky::before {
  position: absolute;
  content: "\f5a2";
  right: 25px;
  top: 30px;
  font-family: "Font Awesome 5 Pro";
  color: var(--theme-primary-color);
  font-size: 35px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .all__sidebar-item-post-item {
    display: block;
    margin-bottom: 20px;
  }
  .all__sidebar-item-post-item-image {
    margin-bottom: 10px;
  }
  .all__sidebar-item-post-item-content span {
    margin-bottom: 2px;
  }
  .wp-block-search button {
    padding: 10px 15px;
  }
}
code {
  color: var(--theme-primary-color);
}

.wp-block-button {
  margin-bottom: 20px;
}
.wp-block-button .wp-block-button__link {
  color: var(--white);
}
.wp-block-button .wp-block-button__link:hover {
  color: var(--white);
}

.wp-block-cover-text {
  color: #fff !important;
}

.wp-block-cover {
  margin-bottom: 30px;
}

.wp-block-cover-text a {
  color: #fff;
}

.is-style-outline .wp-block-button__link {
  background-color: transparent;
  border: 2px solid #222;
  color: #222 !important;
}

.theme__core__css figure {
  margin-bottom: 30px;
}

.gallery .gallery-item .gallery-icon {
  margin: 5px;
}

.wp-block-calendar table {
  margin-top: 20px;
}

.wp-block-archives-dropdown.wp-block-archives select {
  padding: 10px 3px;
}

.wp-block-categories-dropdown select {
  padding: 10px 3px;
  margin-bottom: 10px;
}

.wp-block-tag-cloud a {
  font-family: var(--body-font);
  color: var(--body-color);
  font-size: 16px !important;
  line-height: 26px;
  font-weight: 400;
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
  transition: all 500ms ease;
  border: 1px solid var(--border-color-1);
  padding: 7px 15px;
  border-radius: 3px;
}
.wp-block-tag-cloud a:hover {
  color: var(--theme-white);
  border-color: var(--primary-color);
  background: var(--primary-color);
}

.blog__details-left ul {
  list-style: disc;
}

.wp-block-group.has-background {
  margin-bottom: 20px;
}

.has-large-font-size {
  line-height: 1.2;
}

.wp-block-separator {
  border: none;
  border-bottom: 2px solid #bcb8b8;
  margin: 35px 0;
  text-align: left;
  background: transparent;
}

.has-media-on-the-right.is-stacked-on-mobile {
  margin-bottom: 20px;
}

pre {
  padding: 1.6em;
}

.entry-content .wp-block-pullquote {
  border-top: 0;
  border-bottom: 0;
  margin-bottom: 0;
  padding: 0;
}

.wp-block-table td, .wp-block-table th {
  border: 1px solid #dedede;
  padding: 5px;
  text-align: center;
}

pre.wp-block-verse {
  font-family: inherit;
  overflow: auto;
  white-space: pre-wrap;
  font-size: 16px;
}

.blog__details-left table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 15px 0;
  width: 100%;
}
.blog__details-left table th, .blog__details-left table td {
  border: 1px solid var(--border-color-1);
  padding: 7px;
  text-align: center;
}
.blog__details-left dt {
  margin-bottom: 10px;
}
.blog__details-left dd {
  margin: 0 1.5em 1.5em;
}

blockquote.wp-block-quote {
  border-right: 0 !important;
}

.theme__blog__details-left-contact-form .comments-heading {
  margin-bottom: 5px;
}

.theme__blog__details-left-related-tag span {
  margin-right: 5px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 18px;
  line-height: 28px;
}

.widget_categories select, .widget_archive select, .widget_text select {
  width: 100%;
  padding: 15px 10px;
  border: 1px solid var(--theme-bg-2);
  border-radius: 10px;
  color: #000;
  outline: none;
}

.theme__all__sidebar-item.widget_calendar caption {
  caption-side: initial;
  text-align: center;
  font-weight: 600;
  border-radius: 3px 3px 0 0;
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 7px;
  margin-top: 0px;
}
.theme__all__sidebar-item.widget_calendar table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 15px 0;
  width: 100%;
}
.theme__all__sidebar-item.widget_calendar table th, .theme__all__sidebar-item.widget_calendar table td {
  border: 1px solid #ebebeb;
  padding: 5px;
  text-align: center;
}

.theme__all__sidebar-item.widget_calendar table td#today {
  background: var(--primary-color);
  color: var(--white);
}

.theme__all__sidebar-item ul.children li {
  margin-bottom: 0px;
  border-bottom: none;
}

.theme__all__sidebar-item ul ul {
  padding-left: 20px;
}

.theme__all__sidebar-item ul li ul {
  margin-top: 5px;
  padding-top: 5px;
}

.theme__all__sidebar-item.widget_pages ul li {
  margin-bottom: 10px;
}

.theme__all__sidebar-item.widget_calendar table td.pad {
  background: 0 !important;
}

.theme__all__sidebar-item.widget_calendar table td {
  transition: all 500ms ease;
}

.theme__all__sidebar-item.widget_calendar table td:hover {
  color: var(--white);
  background: var(--primary-color);
}

.theme__blog__details-left-comment-item-comment-content h5 {
  margin: 0 0 5px 0;
}

.wp-block-calendar table th {
  font-weight: 600;
  background: none;
}

.theme__all__sidebar-item time.wp-block-latest-comments__comment-date {
  font-size: 16px;
}

.theme__core__css table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 15px 0;
  width: 100%;
}
.theme__core__css table th, .theme__core__css table td {
  border: 1px solid #ebebeb;
  padding: 5px;
  text-align: center;
}

.theme__all__sidebar-item.widget_calendar table td#today a {
  color: #fff;
}

.alignleft {
  margin-right: 20px !important;
}

.site-content-padding.theme__blog__details.theme__core__css table th {
  border: 1px solid #ebebeb !important;
}

/*# sourceMappingURL=core.css.map */
