/* html, body {
  overflow-x: hidden;
} */

body {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", sans-serif;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  list-style: none;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

button {
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  outline: none;
  color: #DA3437;
}

a:hover {
  text-decoration: none !important;
  cursor: pointer;
}

::placeholder {
  color: rgba(0, 0, 0, 0.2);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* begin:: Container */
.container {
  width: 100%;
  max-width: 1230px;
  padding: 0 15px;
}
/* Normal content width */
.page-content > *:not(.alignwide):not(.alignfull) {
    max-width: 1230px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Wide blocks */
.page-content .alignwide {
    width: 100%;
    max-width: 1230px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Full width blocks */
.page-content .alignfull {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* Prevent inner content touching edges */
.page-content .alignfull > * {
    padding-left: 15px;
    padding-right: 15px;
}
.has-title-hero-font-size {
    font-weight: 900;
    line-height: 68px;
}
/* end:: Container */

.bg-primary {
  background: #DA3437 !important;
}

.bg-dark {
  background: #102241 !important;
}

.bg-light {
  background: #EFF3FB !important;
}

.bg-gray {
  background: #707070 !important;
}

.border-gray {
  border-color: #707070 !important;
}

.border-light {
  border-color: #d9d9d9 !important;
}

.text-primary {
  color: #DA3437 !important;
}

.screen-height {
  min-height: calc(100dvh - 76px - 48px);
}
@media screen and (max-width: 575px) {
  .screen-height {
    min-height: calc(100dvh - 58px - 48px);
  }
}

.elementor-kit-8 .elementor-button {
    background-color: var( --e-global-color-primary ) !important;
    font-family: "Inter", Sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 22px !important;
    color: var( --e-global-color-0cc3aba );
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: var( --e-global-color-primary );
    border-radius: 25px 25px 25px 25px;
    transition: all 0.5s ease;
}
.elementor-kit-8 .elementor-button:hover, .elementor-kit-8 .elementor-button:focus {
    background-color: transparent !important;
    transition: all 0.5s ease;
}

/* begin:: Preloader CSS */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #DA3437;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}
#preloader #loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#preloader #box {
  width: 50px;
  height: 50px;
  background: #fff;
  animation: animate 0.5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
}
@keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
#preloader #shadow {
  width: 50px;
  height: 5px;
  background: #000;
  opacity: 0.1;
  position: absolute;
  bottom: -30px;
  left: 0;
  border-radius: 50%;
  animation: shadow 0.5s linear infinite;
}
@keyframes shadow {
  50% {
    transform: scale(1.2, 1);
  }
}

/* end:: Preloader CSS */
/* begin:: Title CSS */
.title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #383838;
}
@media screen and (max-width: 1199px) {
  .title {
    font-size: 20px;
    line-height: 26px;
  }
}
@media screen and (max-width: 1199px) {
  .title {
    font-size: 16px;
    line-height: 22px;
  }
}

.title-small {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #383838;
}
@media screen and (max-width: 1199px) {
  .title-small {
    font-size: 16px;
    line-height: 22px;
  }
}

.title-large {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: #383838;
}
@media screen and (max-width: 1199px) {
  .title-large {
    font-size: 32px;
    line-height: 42px;
  }
}
@media screen and (max-width: 1199px) {
  .title-large {
    font-size: 24px;
    line-height: 32px;
  }
}
@media screen and (max-width: 575px) {
  .title-large {
    font-size: 20px;
    line-height: 24px;
  }
}

.title-badge {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #383838;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .title-badge {
    font-size: 16px;
    line-height: 22px;
  }
}
.title-badge span {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}
@media screen and (max-width: 575px) {
  .title-badge span {
    font-size: 14px;
    line-height: 18px;
  }
}

.content {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #707070;
}
@media screen and (max-width: 575px) {
  .content {
    font-size: 10px;
    line-height: 14px;
  }
}

a.content {
  transition: 0.3s all;
}
a.content:hover {
  color: #DA3437;
}

/* end:: Title CSS */
/* begin:: Button CSS */
.btn_wrapper {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  border: 2px solid #DA3437;
  border-radius: 25px;
  background: #DA3437;
  padding: 11px 24px;
  transition: 0.3s all;
  display: block;
  width: max-content;
}
@media screen and (max-width: 575px) {
  .btn_wrapper {
    font-size: 12px;
    line-height: 18px;
    padding: 6px 16px;
  }
}
.btn_wrapper:hover {
  background: transparent;
  color: #DA3437;
}

/* end:: Button CSS */
/* begin:: Section Spacing CSS */
.section-gap {
  padding: 70px 0;
}
@media screen and (max-width: 1199px) {
  .section-gap {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .section-gap {
    padding: 40px 0;
  }
}

.shadow-light {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1882352941);
}

/* end:: Section Spacing CSS */
/* begin:: Select2 CSS */
.badge {
  font-size: 14px;
  border-radius: 16px;
  padding: 8px 12px;
  color: #fff;
  background: #707070 !important;
  font-weight: 500;
}
@media screen and (max-width: 575px) {
  .badge {
    font-size: 12px;
    padding: 6px 10px;
  }
}

.select2 {
  width: 100% !important;
}
.select2 .select2-selection {
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  padding: 9px 5px;
  height: auto;
}
@media screen and (max-width: 1199px) {
  .select2 .select2-selection {
    font-size: 14px;
    line-height: 20px;
    padding: 6px 5px;
  }
}
.select2 .select2-selection .select2-selection__arrow {
  height: 20px;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 20px;
  transform: translate(0px, -50%);
}
.select2 .select2-selection .select2-selection__arrow b {
  background: url(../images/icon/arrow-down.svg) no-repeat center;
  border: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  left: 0;
  top: 0;
  opacity: 0.5;
}
.select2.select2-container--open .select2-selection__arrow b {
  transform: rotate(180deg);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #DA3437;
  color: #fff;
}
/* end:: Select2 CSS */

/* begin:: Header CSS */
header {
  min-height: 72px;
}
@media screen and (max-width: 575px) {
  header {
    min-height: 58px;
  }
}
header .sticky-header.is-sticky {
  position: fixed;
  left: 0;
  width: 100%;
  top: -100px;
  z-index: 999;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2196078431);
  transition: 0.3s all;
}
header .sticky-header.is-sticky.active {
  transition: 0.3s all;
  top: 0;
}
@media screen and (max-width: 991px) {
  header .sticky-header {
    padding: 20px 0 14px;
  }
}
header .logo {
    max-width: 210px;
    display: block;
    font-size: 0;
}
@media screen and (max-width: 575px) {
  header .logo {
    max-width: 120px;
    display: block;
  }
}
header .navbar-collapse {
  flex-basis: auto;
}
@media screen and (max-width: 991px) {
  header .navbar-collapse {
    flex-basis: auto;
    position: fixed;
    top: 70px;
    right: 10px;
    z-index: 999;
    background: #FFF;
    border-radius: 8px;
    max-width: 196px;
    padding: 16px 14px;
    box-shadow: 1px 12px 56px rgba(0, 0, 0, 0.5);
  }
}
header .navbar-collapse .btn_wrapper {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  padding: 6px 24px;
  width: 100%;
  text-align: center;
  margin-top: 16px;
}
header .navbar-nav {
  gap: 48px;
}
@media screen and (max-width: 991px) {
  header .navbar-nav {
    gap: 16px;
  }
}
header .navbar-nav .menu-item .nav-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #383838;
  position: relative;
  transition: 0.3s all;
}
@media screen and (max-width: 991px) {
  header .navbar-nav .menu-item .nav-link {
    padding: 0;
  }
}
header .navbar-nav .menu-item .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 0;
  margin: auto;
  height: 2px;
  background: #DA3437;
  transition: 0.3s all;
}
@media screen and (max-width: 991px) {
  header .navbar-nav .menu-item .nav-link::after {
    content: none;
  }
}
header .navbar-nav .menu-item .nav-link:hover, header .navbar-nav .menu-item .nav-link.active {
  color: #DA3437;
}
header .navbar-nav .menu-item .nav-link:hover::after, header .navbar-nav .menu-item .nav-link.active::after {
  width: 100%;
}
header .header-action {
  display: flex;
  justify-content: end;
  gap: 32px;
  align-items: center;
}
@media screen and (max-width: 991px) {
  header .header-action {
    gap: 16px;
  }
}
header .header-action .search {
  width: 24px;
  height: 24px;
  display: block;
}
header .header-action .search img {
  display: block;
}
header .header-action .btn_wrapper {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  padding: 9px 24px;
}
header .header-action .navbar-toggler {
  display: flex;
  width: 24px;
  height: 24px;
  background: #DA3437;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1px;
}
header .header-action .navbar-toggler .navbar-toggler-icon {
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 100%;
}
/* end:: Header CSS */

/* begin:: Hero Section CSS */
.hero_wrapper {
  background: #DA3437 url(../images/banner/hero-banner.png) no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 991px) {
  .hero_wrapper {
    background-size: cover;
  }
}
.hero_wrapper::after {
  content: "" !important;
  background: url(../images/vector/hero-line.svg) repeat-x;
  width: 100%;
  height: 21px;
  left: 0;
  top: -1px;
  position: absolute;
  bottom: -1px;
  top: auto;
  transform: rotate(180deg);
}
@media screen and (max-width: 575px) {
  .hero_wrapper::after {
    height: 11px;
    top: -2px;
    background-size: cover;
  }
}
.hero-title h1{
  margin: 0 !important;
}
.hero-title span {
  position: relative;
}
.hero-title span::after {
  content: "";
  background: url(../images/vector/text-line.svg) no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0%;
  height: 22px;
  animation: revealLine 1s ease forwards;
  animation-delay: 1s;
}
@media screen and (max-width: 1199px) {
  .hero-title span::after {
    bottom: -12px;
    height: 16px;
  }
}
@media screen and (max-width: 767px) {
  .hero-title span::after {
    height: 13px;
  }
}
@media screen and (max-width: 575px) {
  .hero-title span::after {
    height: 7px;
    bottom: -7px;
  }
}
.hero_wrapper .hero_content{
    position: inherit;
  padding: 168px 0 !important;
}
@media screen and (max-width: 1640px) {
  .hero_wrapper .hero_content {
    padding: 120px 0 !important;
  }
}
@media screen and (max-width: 1199px) {
  .hero_wrapper .hero_content {
    padding: 100px 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .hero_wrapper .hero_content {
    padding: 70px 0 !important;
  }
}
@media screen and (max-width: 575px) {
  .hero_wrapper .hero_content {
    padding: 40px 0 !important;
  }
}
.hero_wrapper .hero_content::after, .hero_wrapper .hero_content::before {
  content: "";
  background: url(../images/vector/hero-circle-design.svg) no-repeat;
  background-size: contain;
  width: 640px;
  height: 640px;
  aspect-ratio: 1/1;
  left: -320px;
  top: -1px;
  position: absolute;
  opacity: 5%;
  animation: rotateClockwise 20s linear infinite;
}
@media screen and (max-width: 1799px) {
  .hero_wrapper .hero_content::after, .hero_wrapper .hero_content::before {
    width: 520px;
    height: 520px;
    left: -260px;
    top: 50px;
  }
}
@media screen and (max-width: 1640px) {
  .hero_wrapper .hero_content::after, .hero_wrapper .hero_content::before {
    width: 420px;
    height: 420px;
    left: -210px;
    top: 60px;
  }
}
@media screen and (max-width: 1399px) {
  .hero_wrapper .hero_content::after, .hero_wrapper .hero_content::before {
    left: -320px;
  }
}
@media screen and (max-width: 1299px) {
  .hero_wrapper .hero_content::after, .hero_wrapper .hero_content::before {
    left: -380px;
  }
}
@media screen and (max-width: 1199px) {
  .hero_wrapper .hero_content::after, .hero_wrapper .hero_content::before {
    left: -320px;
    top: 10px;
  }
}
@media screen and (max-width: 991px) {
  .hero_wrapper .hero_content::after, .hero_wrapper .hero_content::before {
    content: none;
    display: none;
  }
}
.hero_wrapper .hero_content::after {
  left: auto;
  right: -320px;
  animation: rotateAntiClockwise 20s linear infinite;
}
@media screen and (max-width: 1799px) {
  .hero_wrapper .hero_content::after {
    right: -260px;
  }
}
@media screen and (max-width: 1640px) {
  .hero_wrapper .hero_content::after {
    right: -210px;
  }
}
@media screen and (max-width: 1399px) {
  .hero_wrapper .hero_content::after {
    right: -320px;
  }
}
@media screen and (max-width: 1299px) {
  .hero_wrapper .hero_content::after {
    right: -380px;
  }
}
@media screen and (max-width: 1199px) {
  .hero_wrapper .hero_content::after {
    right: -320px;
  }
}

.hero_wrapper .hero_content form  {
    background: #FFF;
    display: flex;
    padding: 8px;
    border-radius: 50px;
}
.hero_wrapper .hero_content form p{
    margin: 0;
}
.hero_wrapper .hero_content form .form-group p{
  padding: 6px 16px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  width: 100%;
  position: relative;
  margin-bottom: 0;
}
.hero_wrapper .hero_content form .form-group:first-child {
  border-right: 1px solid #E0E0E0;
}
@media screen and (max-width: 575px) {
  .hero_wrapper .hero_content form .form-group p {
    padding: 4px 8px;
  }
  .hero_wrapper .hero_content form .form-group p img {
    width: 12px;
    height: 12px;
  }
}
.hero_wrapper .hero_content form .form-group p .close {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0.5;
  cursor: pointer;
  z-index: 5;
  display: none;
}
@media screen and (max-width: 575px) {
  .hero_wrapper .hero_content form .form-group p .close {
    width: 12px;
    height: 12px;
  }
}
.hero_wrapper .hero_content form .form-group p input {
  border: 0;
  padding: 6px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #383838;
  outline: none;
  width: 100%;
  padding-right: 24px;
  border-radius: 0;
}
@media screen and (max-width: 575px) {
  .hero_wrapper .hero_content form .form-group p input {
    font-size: 12px;
    line-height: 16px;
    padding-right: 18px;
  }
}
.hero_wrapper .hero_content form .wpcf7-spinner {
  display: none !important;
}
.hero_wrapper .hero_content form .wpcf7-submit {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  border: 2px solid #DA3437;
  border-radius: 25px;
  background: #DA3437;
  padding: 11px 40px;
  transition: 0.3s all;
}
.hero_wrapper .hero_content form .wpcf7-submit:hover {
  background: transparent;
  color: #DA3437;
}
@media screen and (max-width: 575px) {
  .hero_wrapper .hero_content form .wpcf7-submit {
    font-size: 10px;
    line-height: 16px;
    padding: 4px 12px;
  }
}
.hero_wrapper .hero_content form .form-group p input.wpcf7-not-valid {
    border-bottom: 1px solid red;
    padding-bottom: 6px;
}
.hero_wrapper .hero_content form .form-group .wpcf7-not-valid-tip{
    display: none !important;
}
.hero_wrapper .hero_content form .wpcf7-response-output {
    background: #ffb90061;
    border-radius: 25px;
    margin: 12px 0px 0 !important;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    padding: 11px 20px !important;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -60px;
}
.hero_wrapper .hero_content form.failed .wpcf7-response-output{
    background: #dc32328c;
}
@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotateAntiClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes revealLine {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/* end:: Hero Section CSS */


/* begin:: Browse by Category Section CSS */
.catergory {
  cursor: pointer;
  transition: all 0.4s ease !important;
  position: relative;
  overflow: hidden;
}
.catergory::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(218, 52, 55, 0.08), transparent);
  transform: translateX(-100%);
  transition: 0.8s;
}
.catergory .icon-circle {
  position: relative;
  transition: all 0.4s ease !important;
}
.catergory .icon-circle::before {
  content: "";
  position: absolute;
  inset: 0px;
  border: 2px dashed #DA3437;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease !important;
}
.catergory:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
.catergory:hover::before {
  transform: translateX(100%);
}
.catergory:hover .icon-circle {
  transform: scale(1.08);
}
.catergory:hover .icon-circle::before {
  opacity: 1;
  animation: spin 8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.catergory h3 {
  min-height: 44px;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
}
@media screen and (max-width: 1199px) {
  .catergory h3 {
    min-height: 36px;
  }
}
@media screen and (max-width: 991px) {
  .catergory h3 {
    min-height: 32px;
  }
}
@media screen and (max-width: 575px) {
  .catergory h3 {
    min-height: auto;
  }
}
/* end:: Browse by Category Section CSS */

/* begin:: Featured Events Section CSS */
.featured_wrapper::before,
.featured_wrapper::after {
    content: "" !important;
    position: absolute !important;
    top: 18px !important;
    left: 0 !important;
    width: 100% !important;
    height: 22px !important;

    background-image: url("../images/vector/design-line.svg") !important;
    background-repeat: repeat-x;
    background-position: 0 0;

    animation: moveLeft 50s linear infinite !important;
}
.featured_wrapper::after {
  bottom: 18px !important;
  top: auto !important;
  transform: rotate(180deg) !important;
}
@media screen and (max-width: 575px) {
  .featured_wrapper::after, .featured_wrapper::before {
    height: 14px !important;
    top: 12px !important;
  }
  .featured_wrapper::after {
    bottom: 12px !important;
  }
}
a#featured_prev,a#featured_next {
    width: 36px;
    height: 36px;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FAE5E5 !important;
}
a#featured_prev svg,a#featured_next svg{
  width: 24px;
  height: 24px;
}
@keyframes moveLeft {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -1000px 0;
    }
}

/* end:: Featured Events Section CSS */
























/* begin:: Footer CSS */
footer {
  padding: 100px 0;
  background: #102241;
}
@media screen and (max-width: 1199px) {
  footer {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding: 40px 0;
  }
}
footer .footer-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  footer .footer-about {
    gap: 12px;
  }
}
footer .footer-about .logo_wrapper {
  width: 100%;
  max-width: 210px;
}
@media screen and (max-width: 575px) {
  footer .footer-about .logo_wrapper {
    max-width: 150px;
  }
}
footer .footer-about .logo_wrapper img {
  display: block;
  margin-bottom: 2px;
}
footer .footer-about .logo_wrapper span {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: right;
  color: #FFF;
}
@media screen and (max-width: 575px) {
  footer .footer-about .logo_wrapper span {
    font-size: 10px;
  }
}
footer .footer-about .social {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 575px) {
  footer .footer-about .social {
    gap: 12px;
  }
}
footer .footer-about .social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #DA3437;
  border-radius: 50px;
  transition: 0.3s all !important;
  position: relative;
}
@media screen and (max-width: 575px) {
  footer .footer-about .social a {
    width: 24px;
    height: 24px;
    padding: 4px;
  }
}
footer .footer-about .social a::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px dashed #DA3437;
  border-radius: 50%;
  opacity: 0;
  transition: 0.3s all !important;
}
footer .footer-about .social a:hover {
  transform: scale(1.08);
  background: #102241;
}
footer .footer-about .social a:hover::before {
  opacity: 1;
  border-color: #FFF;
  animation: spin 8s linear infinite;
}
footer h3 {
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 19px !important;
    color: #FFF !important;
    margin-top: 0;
}
footer ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  footer ul {
    gap: 8px;
  }
}
footer ul li a {
    position: relative;
    transition: 0.3s all !important;
    font-weight: 500 !important;
    display: block;
    width: 100%;
    max-width: max-content;
    font-size: 14px !important;
    line-height: 20px !important;
    color: #9DB8E7 !important;
}
footer .content{
    font-size: 14px !important;
    line-height: 20px !important;
    color: #9DB8E7 !important;  
}
footer ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 0px;
  height: 2px;
  background: #FFF;
  transition: 0.3s all;
}
footer ul li a:hover {
  padding-left: 15px;
  color: #FFF !important;
}
footer ul li a:hover::before {
  width: 12px;
}

.copyright {
  padding: 12px 0;
  border-top: 1px solid #E0E0E0;
}
.copyright{
  background: #102241;
  border-top: 1px solid #1A386A;
}
.copyright-content ul {
  display: flex;
  align-items: center;
}
.copyright-content ul li:after{
  content: "|";
  margin:0 8px;
  color: #9DB8E7;
}
.copyright-content ul li:last-child::after{
  content: none;
}
.copyright-content ul li a,.copyright-content p{
    font-size: 14px !important;
    line-height: 20px !important;
    color: #9DB8E7 !important;
    transition: all 0.3s ease;
    margin: 0;
}
.copyright-content ul li a:hover {
  transition: all 0.3s ease;
  color: #FFF !important;
}
/* end:: Footer CSS */



/* Start:: Blog Post Sidebar */
aside.sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 40px;
}
aside.sidebar .searchform div {
    display: flex;
    flex: auto;
    flex-wrap: nowrap;
    max-width: 100%;
}
aside.sidebar .wp-block-search__label,
aside.sidebar .searchform label {
    width: 100%;
    display: none;
}
aside.sidebar .wp-block-search__inside-wrapper input,
aside.sidebar .searchform div input[type="search"] {
    outline: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 14px;
    border: 1px solid #00000040;
    width: 100%;
    box-shadow: none;
}
aside.sidebar .wp-block-search__inside-wrapper input:focus,
aside.sidebar .searchform div input[type="search"]:focus {
    border-color: #1d1d1d;
}
aside.sidebar button.wp-block-search__button.wp-element-button,
aside.sidebar .searchform input[type="submit"] {
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    border: 2px solid #DA3437;
    border-radius: 8px;
    background: #DA3437;
    padding: 8px 24px;
    transition: 0.3s all;
    margin-left: 10px;
}
aside.sidebar button.wp-block-search__button.wp-element-button:hover,
aside.sidebar .searchform input[type="submit"]:hover {
    background: transparent;
    color: #DA3437;
}
aside.sidebar h2.wp-block-heading,
.recent-post-list-data h2{
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #383838;
  margin-bottom: 10px;
}
@media screen and (max-width: 575px) {
  aside.sidebar h2.wp-block-heading,
  .recent-post-list-data h2 {
    font-size: 14px;
    line-height: 22px;
  }
}

.widget.recent-post-widget,
aside.sidebar .widget_block,
.recent-post-list-data {
    background: #F7F7F7;
    padding: 20px;
    border-radius: 12px;
}
.widget.widget_recent_entries .recent-post-list-data{
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.recent-post-widget .recent-posts-list .recent-post {
    margin-bottom: 1.154em;
    padding-bottom: 1.154em;
    border-bottom: 1px solid #e4e4e4;
    overflow: hidden;
}
.recent-post-widget .recent-posts-list .recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.recent-post-widget .recent-posts-list .recent-post-thumbnail {
    width: 40px;
    height: 40px;
    margin-right: 0.769em;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 5px;
    background: #00000011;
}
.recent-post-widget .recent-posts-list .recent-post-content {
    width: 100%;
    max-width: calc(100% - 40px - 12px);
}
.recent-post-widget .recent-posts-list .recent-post-thumbnail img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recent-post-widget .recent-posts-list .recent-post-content a {
    font-size: 14px;
    color: #383838;
    font-weight: 500;
    display: block;
    line-height: 18px;
    transition: all 0.3s ease;
}
.recent-post-widget .recent-posts-list .recent-post-content a:hover {
    color: #DA3437;
} 
.recent-post-widget .recent-posts-list .recent-post-content span {
    font-size: 12px;
    line-height: 18px;
    display: block;
    color: #383838;
    font-weight: 500;
    opacity: 0.7;
}
aside.sidebar .wp-block-categories,
aside.sidebar .wp-block-archives-list {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
aside.sidebar .wp-block-categories .cat-item a,
aside.sidebar .wp-block-archives-list a{
    display: block;
    width: max-content;
    font-size: 14px;
    padding: 4px 16px;
    line-height: 18px;
    background: #0000000f;
    border-radius: 25px;
    border: 1px solid #0000000f;
    color: #383838;
    transition: all 0.3s ease;
}
aside.sidebar .wp-block-categories .cat-item a:hover,
aside.sidebar .wp-block-archives-list a:hover{
  background: #DA3437;
  transition: all 0.3s ease;
  color: #fff;
  border-color: #DA3437;
}

/* Listing Page */
.blog-post-card {
    height: 100%;
    background: #F7F7F7;
}
.blog-post-card a.blog-post-card__thumb {
    aspect-ratio: auto 1200 / 885;
    display: block;
    overflow: hidden;
}
.blog-post-card a.blog-post-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-post-card .blog-post-card__body {
    padding: 20px;
    background: #F7F7F7;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.blog-post-card .blog-post-card__body .blog-post-card__meta {
    display: flex;
    gap: 8px;
}
.blog-post-card .blog-post-card__body .blog-post-card__meta span, .blog-post-card .blog-post-card__body .blog-post-card__meta p, .blog-post-card .blog-post-card__body .blog-post-card__meta a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #707070;
    transition:ease 0.3s all;
}
.blog-post-card .blog-post-card__body .blog-post-card__meta a:hover {
    color: #DA3437;
}
.blog-post-card span.wp-block-post-terms__separator {
    margin: 0 3px 0 2px;
}
.blog-post-card span.wp-block-post-terms__separator:last-child{
  display: none;
}
.blog-post-card span.blog-post-card__cats {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: calc(100% - 120px);
}
.blog-post-card .blog-post-card__title a {
    font-size: 18px;
    color: #383838;
    font-weight: 700;
    display: block;
    transition: all 0.3s ease;
    line-height: 24px;
}
.blog-post-card:hover .blog-post-card__title a {
    color: #DA3437;
}
.blog-post-card__excerpt {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #383838;
}
/* .blog .wp-block-image{
  height: auto;
}
.blog .wp-block-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: auto !important;
} */
.row-gap-24{
  row-gap: 24px;
}
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #00000010;
}
.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.custom-pagination .page-numbers {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #383838;
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: .3s;
}

.custom-pagination .page-numbers.current {
    background: #383838;
    color: #fff;
}

.custom-pagination .page-numbers:hover {
    background: #383838;
    color: #fff;
}

.custom-pagination .prev,
.custom-pagination .next {
    width: auto;
    padding: 0 15px;
}

.custom-pagination .dots {
    background: transparent;
}


/* Comments */
.blog-single__comments h3.comments-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: #383838;
    margin-bottom: 10px;
    position: relative;
}
h3.comments-title:after {
    content: "";
    background: url(../images/icon/twill.png);
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 1;
    left: 0;
    background-repeat: repeat;
}
/* End:: Blog Post Sidebar */

/* Start:: Single Post Full Width */
.single-post-full{
  position: relative;
}
.single-post-full header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
.single-post-full .post-hero {
    position: relative;
    min-height: 660px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding-top: 72px; */
}
.single-post-full .hero-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    border-radius: inherit;
    background-clip: padding-box;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-attachment: fixed;
}
.single-post-full .hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.single-post-full .hero-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1;
    opacity: 0.45;
}
.single-post-full .hero-content {
  padding: 144px 0px;
  position: relative;
  z-index: 99;
}
.hero-content h1 {
    font-size: 62px;
    font-weight: 800;
    color: #FFF;
    text-align: center;
}
.hero-content .categories {
    font-size: 16px;
    color: #FFF;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.single-post-full header .bg-light {
    background: transparent !important;
    transition: all 0.3s ease;
}
.single-post-full header .logo img,
.single-post-full header .header-action .search img {
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}
.single-post-full header .navbar-nav .menu-item .nav-link {
    color: #FFF;
    transition: all 0.3s ease;
}
.single-post-full header .navbar-nav .menu-item .nav-link::after{
  background: #FFF;
}

/* .single-post-full header:hover .bg-light{
  background: #EFF3FB !important;
  transition: all 0.3s ease;
}
.single-post-full header:hover .logo img,
.single-post-full header:hover .header-action .search img {
    filter: inherit;
    transition: all 0.3s ease;
}
.single-post-full header:hover .navbar-nav .menu-item .nav-link {
    color: #383838;
    transition: all 0.3s ease;
}
.single-post-full header .navbar-nav .menu-item .nav-link:hover {
    color: #DA3437;
    transition: all 0.3s ease;
} */
.blog .content-wrapper {
    font-size: 16px;
    font-weight: 400;
    color: #707070;
    display: flex;
    flex-direction: column;
    /* gap: 40px; */
}
.blog .content-wrapper > * {
  margin-bottom: 50px;
}
.blog .content-wrapper .wp-block-column > * {
  margin-bottom: 15px;
}
.blog .content-wrapper > *:last-child,
.blog .content-wrapper .wp-block-column > * {
    margin-bottom: 0;
}
.blog figure.wp-block-post-featured-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.blog blockquote {
    margin: 18px 0px 18px 0px;
    padding: 0px 0px 0px 28px;
    border-left: 2px solid;
}
.blog blockquote h2,
.blog blockquote h3,
.blog blockquote h4,
.blog blockquote h5,
.blog blockquote h6 {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 8px 0;
    color: #383838;
}
.blog blockquote p:last-child::before{
    content: "—";
    margin: 0px 9px 0px 0px;
}
.blog .wp-block-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}
.blog .content-wrapper h2.wp-block-heading {
    font-weight: 700;
    font-size: 26px;
    line-height: 34px;
    color: #383838;
    margin-bottom: 15px;
}
.blog .content-wrapper h3.wp-block-heading {
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    color: #383838;
    margin-bottom: 15px;
}
.blog .content-wrapper h4.wp-block-heading {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #383838;
    margin-bottom: 15px;
}
.blog .content-wrapper h5.wp-block-heading {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #383838;
    margin-bottom: 15px;
}
.blog .content-wrapper h6.wp-block-heading {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #383838;
    margin-bottom: 15px;
}
.blog .content-wrapper p.wp-block-paragraph {
    margin-bottom: 15px;
}
.blog .content-wrapper p.wp-block-paragraph:last-child {
    margin-bottom: 0px;
}
.blog .content-wrapper .wp-block-column > details {
    margin-bottom: 10px;
}
.blog .content-wrapper .wp-block-column > details:last-child{
    margin-bottom: 0px;
}

.blog .content-wrapper details {
    padding: 15px 20px;
    border-radius: 12px;
}
.blog .content-wrapper details summary {
    font-size: 16px;
    font-weight: 500;
    color: #383838;
    padding: 0px 40px 0px 0px;
    position: relative;
}
.blog .content-wrapper details summary:after {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    top: 0;
    background: url(../images/icon/arrow-down.svg) no-repeat center;
    transition: all 0.5s ease;
}
.blog .content-wrapper details p.wp-block-paragraph {
    font-size: 14px;
    margin-top: 10px;
    color: #383838;
}
.blog .content-wrapper details[open] summary:after {
    transform: rotate(180deg);
}
.has-primary-color.has-text-color {
    color: var(--wp--preset--color--primary) !important;
}
.blog .content-wrapper .wp-block-column ul.wp-block-list {
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}
.blog .content-wrapper .wp-block-column ul.wp-block-list li {
    list-style: disc;
}
@media screen and (max-width: 767px) {
  .blog .content-wrapper > * {
      margin-bottom: 30px;
  }
  .blog .content-wrapper h2.wp-block-heading {
      font-size: 20px;
      line-height: 24px;
  }
  .blog .content-wrapper h3.wp-block-heading {
      font-size: 18px;
      line-height: 24px;
  }
  .blog .content-wrapper h4.wp-block-heading {
      font-size: 16px;
      line-height: 22px;
  }
  .blog .content-wrapper h5.wp-block-heading {
      font-size: 14px;
      line-height: 22px;
  }
  .blog .content-wrapper h6.wp-block-heading {
      font-size: 13px;
      line-height: 20px;
  }
}

/* End:: Single Post Full Width */


/* Recent Post Slider */
.recent_post_wrapper {
    padding: 90px 0;
    position: relative;
    height: max-content;
    background: #EFF3FB !important;
}
@media screen and (max-width: 1199px) {
  .recent_post_wrapper {
    padding: 70px 0;
  }
}
@media screen and (max-width: 575px) {
  .recent_post_wrapper {
    padding: 48px 0;
  }
}
.recent_post_wrapper::after, .recent_post_wrapper::before {
  content: "";
  background: url(../images/vector/design-line.svg) repeat-x left;
  width: 100%;
  height: 22px;
  left: 0;
  top: 18px;
  position: absolute;
  animation: moveLeft 50s linear infinite;
}
@media screen and (max-width: 575px) {
  .recent_post_wrapper::after, .recent_post_wrapper::before {
    height: 14px;
    top: 12px;
  }
}
.recent_post_wrapper::after {
  bottom: 18px;
  top: auto;
  transform: rotate(180deg);
}
@media screen and (max-width: 575px) {
  .recent_post_wrapper::after {
    bottom: 12px;
  }
}

.swiper_btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 575px) {
  .swiper_btn {
    gap: 5px;
  }
}
.swiper_btn button {
  width: 36px;
  height: 36px;
  background: #FAE5E5;
  border-radius: 8px;
  border: 2px solid #FAE5E5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
}
@media screen and (max-width: 575px) {
  .swiper_btn button {
    width: 24px;
    height: 24px;
    padding: 4px;
  }
}
.swiper_btn button:hover {
  background: transparent;
  border-color: #DA3437;
}
@keyframes moveLeft {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: -1000px;
  }
}
.recent_post_events_swiper .swiper-slide{
  height: auto;
}
.recent_post_events_swiper .blog-post-card .blog-post-card__body{
  background: transparent;
}
.recent_post_events_swiper .blog-post-card {
    height: 100%;
    background: #FFF;
    border-radius: 12px;
    overflow: hidden;
}
.post-navigation-wrapper {
  padding: 30px 0;
  border-top: 1px solid #EFEFEF;
}
.post-navigation {
    display: flex;
    width: 100%;
}
.post-navigation .nav-card.prev-post,
.post-navigation .nav-card.next-post{
  width: 40%;
}
.post-navigation .nav-card.grid-post {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.post-navigation .nav-card h4, .post-navigation .nav-card span {
    font-size: 16px;
    color: #383838;
    font-weight: 500;
    transition: all 0.3s ease;
}
.post-navigation .nav-card span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #707070;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 4px;
}
.post-navigation .nav-card.next-post {
    text-align: right;
}
.post-navigation .nav-card.next-post span{
  justify-content: end;
}

.post-navigation-single {
    padding: 20px 0;
}
.post-navigation-single span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: #707070;
    font-weight: 400;
}
.post-navigation-single h4 {
    font-size: 18px;
    color: #383838;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 12px;
}
.post-navigation .nav-card a:hover h4,
.post-navigation-single a:hover h4{
  color: #DA3437;
}

.blog .content-wrapper .hero-post {
    gap: 8px;
}
.single-post-with-sidebar .hero-image {
    aspect-ratio: 16 / 9;
    background-size: cover;
    border-radius: 12px;
    position: relative;
}
.single-post-with-sidebar h1 {
    width: 100%;
    font-size: 26px;
    font-weight: 700;
    color: #383838;
}
.categories {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #383838;
    font-size: 14px;
}
/* Recent Post Slider */

/* begin:: Search Modal Section CSS */
.search_modal {
  position: fixed;
  top: 80px;
  width: 100%;
  padding: 0px;
  z-index: 998;
  display: none;
}
.search_modal.active {
  display: block;
}
@media screen and (max-width: 575px) {
  .search_modal {
    top: 60px;
  }
}
.search_modal form {
  background: #fff;
  padding: 14px 20px;
  border-radius: 5px;
  box-shadow: 1px 12px 56px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 575px) {
  .search_modal form {
    padding: 12px 16px;
  }
}
.search_modal form .form-group {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  position: relative;
  flex-direction: row;
  margin-bottom: 0;
}
.search_modal form .form-group:first-child {
  border-right: 1px solid #E0E0E0;
  padding-left: 0;
}
@media screen and (max-width: 575px) {
  .search_modal form .form-group {
    padding: 4px 8px;
  }
  .search_modal form .form-group img {
    width: 12px;
    height: 12px;
  }
}
.search_modal form .form-group .close {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0.5;
  cursor: pointer;
  z-index: 5;
  display: none;
}
@media screen and (max-width: 575px) {
  .search_modal form .form-group .close {
    width: 12px;
    height: 12px;
  }
}
.search_modal form .form-group input {
  border: 0;
  padding: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #383838;
  outline: none;
  width: 100%;
  padding-right: 24px;
  border-radius: 0;
}
@media screen and (max-width: 575px) {
  .search_modal form .form-group input {
    font-size: 12px;
    line-height: 16px;
    padding-right: 18px;
  }
}
.search_modal form button {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  border: 2px solid #DA3437;
  border-radius: 25px;
  background: #DA3437;
  padding: 11px 40px;
  transition: 0.3s all;
}
.search_modal form button:hover {
  background: transparent;
  color: #DA3437;
}
@media screen and (max-width: 575px) {
  .search_modal form button {
    font-size: 10px;
    line-height: 16px;
    padding: 4px 12px;
  }
}

/* end:: Search Modal Section CSS */











@media screen and (max-width: 1199px) {
  .hero-content h1 {
      font-size: 42px;
  }
  .blog-post-card .blog-post-card__title a {
      font-size: 16px;
      line-height: 22px;
  }
  .blog-post-card .blog-post-card__body {
      padding: 16px;
      gap: 6px;
  }
}
@media screen and (max-width: 991px) {
  .single-post-full .post-hero {
      min-height: 420px;
  }
  .single-post-full .hero-content {
      padding: 170px 0px 110px;
  }
  .single-post-full .hero-image {
      background-attachment: inherit;
  }
  .hero-content h1 {
      font-size: 36px;
  }
  .single-post-with-sidebar h1 {
      font-size: 22px;
  }
  .post-navigation .nav-card h4, .post-navigation .nav-card span {
      font-size: 14px;
  }
  .post-navigation .nav-card span {
      font-size: 12px;
      margin-bottom: 4px;
  }
  .post-navigation .nav-card.prev-post, .post-navigation .nav-card.next-post {
      width: 45%;
  }
  .post-navigation .nav-card.grid-post {
      width: 10%;
  }
}
@media screen and (max-width: 767px) {
  .single-post-full .hero-content {
      padding: 110px 0px 70px;
  }
  .single-post-full .post-hero {
      min-height: auto;
  }
  .hero-content h1 {
      font-size: 28px;
  }
  .hero-content .categories {
      font-size: 14px;
      margin-top: 10px;
  }
  .blog .content-wrapper {
      font-size: 14px;
      /* gap: 14px; */
  }
  .blog .wp-block-image {
      border-radius: 8px;
  }
  .blog blockquote {
      margin: 8px 0px 8px 0px;
      padding: 0px 0px 0px 18px;
  }
  .blog blockquote h2, .blog blockquote h3, .blog blockquote h4, .blog blockquote h5, .blog blockquote h6 {
      font-size: 14px;
      line-height: 22px;
      margin: 0 0 8px 0;
  }
  .blog-post-card .blog-post-card__body {
      padding: 15px;
      gap: 6px;
  }
  .blog-post-card .blog-post-card__title a {
      font-size: 14px;
      line-height: 20px;
  }
  .blog-post-card .blog-post-card__body .blog-post-card__meta span, .blog-post-card .blog-post-card__body .blog-post-card__meta p, .blog-post-card .blog-post-card__body .blog-post-card__meta a {
      font-size: 11px;
      line-height: 16px;
  }
  .blog-post-card__excerpt {
      font-size: 12px;
      line-height: 16px;
  }
  .post-navigation .nav-card h4, .post-navigation .nav-card span {
      font-size: 12px;
  }
  .single-post-with-sidebar h1 {
      font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .hero-content h1 {
      font-size: 24px;
      font-weight: 700;
  }
  .single-post-full .hero-content {
      padding: 90px 0px 50px;
  }
  .recent-post-widget .recent-posts-list .recent-post-content a {
      font-size: 12px;
      line-height: 16px;
  }
  .widget.recent-post-widget, aside.sidebar .widget_block, .recent-post-list-data {
      padding: 15px;
      border-radius: 8px;
  }
  aside.sidebar .wp-block-categories .cat-item a, aside.sidebar .wp-block-archives-list a {
      font-size: 12px;
      padding: 3px 16px;
      line-height: 18px;
  }
  aside.sidebar .wp-block-search__inside-wrapper input, aside.sidebar .searchform div input[type="search"] {
      border-radius: 6px;
      font-size: 12px;
      padding: 6px 12px;
  }
  aside.sidebar button.wp-block-search__button.wp-element-button, aside.sidebar .searchform input[type="submit"] {
      font-size: 12px;
      line-height: 20px;
      border-radius: 6px;
      padding: 8px 24px;
  }
  
  .post-navigation-single span {
      gap: 8px;
      font-size: 14px;
  }
  .post-navigation-single h4 {
    font-size: 14px;
    margin-top: 6px;
    line-height: 22px;
  }
  .post-navigation-wrapper {
      padding: 20px 0;
  }
  .post-navigation-single {
      padding: 0px 0;
  }
  .post-navigation {
      flex-direction: column;
      gap: 12px;
  }
  .post-navigation .nav-card.prev-post, .post-navigation .nav-card.next-post {
      width: 100%;
      text-align: center;
  }
  .post-navigation .nav-card.grid-post {
      width: 100%;
  }
  .post-navigation .nav-card.grid-post a {
      display: block;
      font-size: 0;
  }
  .post-navigation .nav-card span {
      justify-content: center !important;
  }
  .single-post-with-sidebar h1 {
      font-size: 18px;
  }
}

/* Business Page CSS */
.event-grow-card {
    border: 1px dashed #C4C4C4 !important;
    border-radius: 16px;
    padding: 8px !important;
}
.event-group-inner{
  padding: 4px 4px 0 4px !important;
}


















/* THEME MODE */
.wp-block-buttons .wp-block-button__link {
    width: 100%;
    font-weight: 600;
    line-height: 24px;
    transition: all 0.5s ease;
}
.wp-block-heading {
    font-weight: 700;
}
.spacer-border {
    height: 23px;
    border: 0;
    width: 100%;
    max-width: 100% !important;
    padding: 0 !important;
    position: relative;
    opacity: 1;
}
.spacer-border::after{
    content: "";
    background: url(../images/vector/design-line.svg) repeat-x left;
    width: 100%;
    height: 22px;
    left: 0;
    top: 0;
    position: absolute;
    animation: moveLeft 50s linear infinite;
}
.spacer-border.revert::after{
  transform: rotate(180deg);
}
@keyframes moveLeft {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: -1000px;
  }
}

/* COLOR MODE */
.has-primary-background-color.has-white-color {
  color: var(--wp--preset--color--white) !important;
  transition: all 0.5s ease;
}
.wp-block-buttons .wp-block-button__link.has-primary-background-color.has-white-color {
  color: var(--wp--preset--color--white) !important;
  border-color: var(--wp--preset--color--primary) !important;
  transition: all 0.5s ease;
}
.wp-block-buttons .wp-block-button__link.has-primary-background-color.has-white-color:hover {
  color:  var(--wp--preset--color--white) !important;
  border-color: var(--wp--preset--color--white) !important;
  background-color: transparent !important;
  transition: all 0.5s ease;
}
.wp-block-buttons .wp-block-button__link.has-primary-color.has-text-color:hover {
  color:  var(--wp--preset--color--white) !important;
  border-color: var(--wp--preset--color--white) !important;
}