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

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

/* 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: 74px;
}
@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;
}
@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 .nav-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 .nav-item .nav-link {
    padding: 0;
  }
}
header .navbar-nav .nav-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 .nav-item .nav-link::after {
    content: none;
  }
}
header .navbar-nav .nav-item .nav-link:hover, header .navbar-nav .nav-item .nav-link.active {
  color: #DA3437;
}
header .navbar-nav .nav-item .nav-link:hover::after, header .navbar-nav .nav-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 */
/* =============== AUTH PAGE CSS START FROM HERE =============== */
.auth_wrapper {
  height: calc(100dvh - 76px - 48px);
}
@media screen and (max-width: 575px) {
  .auth_wrapper {
    height: calc(100dvh - 58px - 48px);
  }
  .auth_wrapper .logo {
    max-width: 140px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  position: relative;
  margin-bottom: 1.75rem;
}
.form-group:last-child {
  margin-bottom: 0;
}
.form-group label, .form-group a, .form-group span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.form-group > div {
  position: relative;
}
.form-group .close, .form-group .password-view {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0.5;
  cursor: pointer;
  z-index: 5;
  display: none;
  transition: 0.3s all;
}
.form-group .close:hover, .form-group .password-view:hover {
  opacity: 1;
}
@media screen and (max-width: 575px) {
  .form-group .close, .form-group .password-view {
    width: 12px;
    height: 12px;
  }
}
.form-group .password-view {
  display: block;
}
.form-group .password-view.active {
  right: 38px;
}
@media screen and (max-width: 575px) {
  .form-group .password-view.active {
    right: 28px;
  }
}
.form-group input {
  border: 1px solid #707070;
  padding: 14px 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #383838;
  outline: none;
  width: 100%;
  padding-right: 38px;
  border-radius: 8px;
}
.form-group input:focus {
  border-color: #DA3437;
}
.form-group input.password {
  padding-right: 40px;
}
@media screen and (max-width: 575px) {
  .form-group input.password {
    padding-right: 50px;
  }
}
@media screen and (max-width: 575px) {
  .form-group input {
    font-size: 12px;
    line-height: 16px;
    padding-right: 18px;
  }
}
.form-group button {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  border: 2px solid #DA3437;
  border-radius: 8px;
  background: #DA3437;
  padding: 14px 40px;
  transition: 0.3s all;
}
.form-group button:hover {
  background: transparent;
  color: #DA3437;
}
@media screen and (max-width: 575px) {
  .form-group button {
    font-size: 14px;
    line-height: 18px;
    padding: 12px 12px;
  }
}

/* =============== AUTH PAGE CSS END'S FROM HERE =============== */
/* =============== HOME PAGE CSS START FROM HERE =============== */
/* 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 */
/* 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, .hero_wrapper::before {
  content: "";
  background: url(../images/vector/hero-line.svg) repeat-x;
  width: 100%;
  height: 21px;
  left: 0;
  top: -1px;
  position: absolute;
}
@media screen and (max-width: 575px) {
  .hero_wrapper::after, .hero_wrapper::before {
    height: 11px;
    top: -2px;
    background-size: cover;
  }
}
.hero_wrapper::after {
  bottom: -1px;
  top: auto;
  transform: rotate(180deg);
}
.hero_wrapper .hero_content {
  padding: 168px 0;
}
@media screen and (max-width: 1640px) {
  .hero_wrapper .hero_content {
    padding: 120px 0;
  }
}
@media screen and (max-width: 1199px) {
  .hero_wrapper .hero_content {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .hero_wrapper .hero_content {
    padding: 70px 0;
  }
}
@media screen and (max-width: 575px) {
  .hero_wrapper .hero_content {
    padding: 40px 0;
  }
}
.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 h1 {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 58px;
  line-height: 68px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1199px) {
  .hero_wrapper .hero_content h1 {
    font-size: 42px;
    line-height: 52px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .hero_wrapper .hero_content h1 {
    font-size: 34px;
    line-height: 44px;
    max-width: 460px;
  }
}
@media screen and (max-width: 575px) {
  .hero_wrapper .hero_content h1 {
    font-size: 20px;
    line-height: 26px;
    max-width: 260px;
  }
}
.hero_wrapper .hero_content h1 span {
  position: relative;
}
.hero_wrapper .hero_content h1 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_wrapper .hero_content h1 span::after {
    bottom: -12px;
    height: 16px;
  }
}
@media screen and (max-width: 767px) {
  .hero_wrapper .hero_content h1 span::after {
    height: 13px;
  }
}
@media screen and (max-width: 575px) {
  .hero_wrapper .hero_content h1 span::after {
    height: 7px;
    bottom: -7px;
  }
}
.hero_wrapper .hero_content p {
  font-weight: 400;
  font-size: 26px;
  line-height: 120%;
  color: #fff;
}
@media screen and (max-width: 1199px) {
  .hero_wrapper .hero_content p {
    font-size: 22px;
  }
}
@media screen and (max-width: 575px) {
  .hero_wrapper .hero_content p {
    font-size: 12px;
  }
}
.hero_wrapper .hero_content form .form-group {
  padding: 12px 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 {
    padding: 4px 8px;
  }
  .hero_wrapper .hero_content form .form-group img {
    width: 12px;
    height: 12px;
  }
}
.hero_wrapper .hero_content 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) {
  .hero_wrapper .hero_content form .form-group .close {
    width: 12px;
    height: 12px;
  }
}
.hero_wrapper .hero_content 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) {
  .hero_wrapper .hero_content form .form-group input {
    font-size: 12px;
    line-height: 16px;
    padding-right: 18px;
  }
}
.hero_wrapper .hero_content 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;
}
.hero_wrapper .hero_content form button:hover {
  background: transparent;
  color: #DA3437;
}
@media screen and (max-width: 575px) {
  .hero_wrapper .hero_content form button {
    font-size: 10px;
    line-height: 16px;
    padding: 4px 12px;
  }
}

@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 */
.category_wrapper {
  padding: 70px 0;
}
@media screen and (max-width: 1199px) {
  .category_wrapper {
    padding: 40px 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .category_wrapper {
    padding: 30px 0 40px;
  }
}
.category_wrapper .catergory_block {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 991px) {
  .category_wrapper .catergory_block {
    display: grid;
    grid-template-columns: repeat(4, 2fr);
    gap: 8px;
  }
}
.category_wrapper .catergory_block a {
  background: #fff;
  border-radius: 24px;
  padding: 18px 8px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  width: 136px;
}
@media screen and (max-width: 1199px) {
  .category_wrapper .catergory_block a {
    padding: 16px 8px 16px;
  }
}
@media screen and (max-width: 991px) {
  .category_wrapper .catergory_block a {
    width: auto;
  }
}
@media screen and (max-width: 575px) {
  .category_wrapper .catergory_block a {
    border-radius: 16px;
    padding: 16px 6px;
  }
}
.category_wrapper .catergory_block a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(218, 52, 55, 0.08), transparent);
  transform: translateX(-100%);
  transition: 0.8s;
}
.category_wrapper .catergory_block a .icon-circle {
  width: 50px;
  height: 50px;
  margin: 0 auto 8px;
  border: 1px solid #FAE5E5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 60px;
  transition: 0.4s;
  position: relative;
}
@media screen and (max-width: 575px) {
  .category_wrapper .catergory_block a .icon-circle {
    width: 40px;
    height: 40px;
  }
  .category_wrapper .catergory_block a .icon-circle img {
    width: 20px;
    height: 20px;
  }
}
.category_wrapper .catergory_block a .icon-circle::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px dashed #DA3437;
  border-radius: 50%;
  opacity: 0;
}
.category_wrapper .catergory_block a h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  min-height: 44px;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #383838;
  transition: 0.3s all;
}
@media screen and (max-width: 1199px) {
  .category_wrapper .catergory_block a h3 {
    font-size: 14px;
    line-height: 18px;
    min-height: 36px;
  }
}
@media screen and (max-width: 991px) {
  .category_wrapper .catergory_block a h3 {
    font-size: 12px;
    line-height: 16px;
    min-height: 32px;
  }
}
@media screen and (max-width: 575px) {
  .category_wrapper .catergory_block a h3 {
    min-height: auto;
    font-size: 11px;
    line-height: 14px;
  }
}
@media screen and (max-width: 374px) {
  .category_wrapper .catergory_block a h3 {
    font-size: 10px;
    line-height: 14px;
    min-height: auto;
  }
}
.category_wrapper .catergory_block a:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 575px) {
  .category_wrapper .catergory_block a:hover {
    transform: translateY(-5px);
  }
}
.category_wrapper .catergory_block a:hover::before {
  transform: translateX(100%);
}
.category_wrapper .catergory_block a:hover .icon-circle {
  transform: scale(1.08);
}
.category_wrapper .catergory_block a:hover .icon-circle::before {
  opacity: 1;
  animation: spin 8s linear infinite;
}
.category_wrapper .catergory_block a:hover h3 {
  color: #DA3437;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* end:: Browse by Category Section CSS */
/* begin:: Featured Events Section CSS */
.featured_wrapper {
  padding: 90px 0;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .featured_wrapper {
    padding: 70px 0;
  }
}
@media screen and (max-width: 575px) {
  .featured_wrapper {
    padding: 48px 0;
  }
}
.featured_wrapper::after, .featured_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) {
  .featured_wrapper::after, .featured_wrapper::before {
    height: 14px;
    top: 12px;
  }
}
.featured_wrapper::after {
  bottom: 18px;
  top: auto;
  transform: rotate(180deg);
}
@media screen and (max-width: 575px) {
  .featured_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;
}

.featured_events {
  display: block;
  border-radius: 16px;
  border: 1px dashed #C4C4C4;
  transition: 0.3s all;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .featured_events {
    border-radius: 8px;
  }
}
.featured_events .featured_img {
  padding: 8px 8px 0;
  transition: 0.3s all;
  line-height: 0;
  font-size: 0;
  aspect-ratio: 267/371;
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (max-width: 575px) {
  .featured_events .featured_img {
    border-radius: 5px;
  }
}
.featured_events .featured_img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s all;
  object-position: top;
}
@media screen and (max-width: 575px) {
  .featured_events .featured_img img {
    border-radius: 5px;
  }
}
.featured_events .featured_content {
  padding: 12px 8px;
}
@media screen and (max-width: 575px) {
  .featured_events .featured_content {
    padding: 10px 8px 8px;
  }
}
.featured_events .featured_content h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #383838;
  margin-bottom: 8px;
  transition: 0.3s all;
}
@media screen and (max-width: 575px) {
  .featured_events .featured_content h3 {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 6px;
  }
}
.featured_events .featured_content ul li {
  display: flex;
  align-items: center;
  gap: 4px;
}
.featured_events .featured_content ul li img {
  width: 14px;
  height: 14px;
}
.featured_events .featured_content ul li span {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #707070;
  width: 100%;
  display: block;
}
@media screen and (max-width: 575px) {
  .featured_events .featured_content ul li span {
    font-size: 10px;
    line-height: 14px;
  }
}
.featured_events:hover {
  border: 1px solid #DA3437;
}
.featured_events:hover .featured_img {
  padding: 0;
  border-radius: 0;
}
.featured_events:hover .featured_content h3 {
  color: #DA3437;
}

@keyframes moveLeft {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: -1000px;
  }
}
/* end:: Featured Events Section CSS */
/* begin:: Celebrating Section CSS */
.celebrating_wrapper {
  padding: 70px 0;
}
@media screen and (max-width: 1199px) {
  .celebrating_wrapper {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .celebrating_wrapper {
    padding: 40px 0;
  }
}
.celebrating_wrapper p {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #9DB8E7;
}
@media screen and (max-width: 575px) {
  .celebrating_wrapper h3 {
    font-size: 14px;
    line-height: 20px;
  }
}
.celebrating_wrapper .celebrating_img {
  box-shadow: -8px 4px 80px rgba(144, 170, 215, 0.4);
  border-radius: 16px;
  overflow: hidden;
  max-width: 412px;
}
@media screen and (max-width: 767px) {
  .celebrating_wrapper .celebrating_img {
    max-width: 100%;
    width: 100%;
  }
}
.celebrating_wrapper .celebrating_img img {
  object-fit: cover;
}

/* end:: Celebrating Section CSS */
/* =============== HOME PAGE CSS END'S FROM HERE =============== */
/* =============== EVENT PAGE CSS START FROM HERE =============== */
.tabsSlider .nav-tabs .nav-item .nav-link {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding: 0 34px 14px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: #383838;
}
@media screen and (max-width: 575px) {
  .tabsSlider .nav-tabs .nav-item .nav-link {
    padding: 0 16px 14px;
    font-size: 16px;
    gap: 8px;
  }
}
.tabsSlider .nav-tabs .nav-item .nav-link.active {
  color: #DA3437;
  background-color: transparent;
  border-color: #DA3437;
}

/* =============== EVENT PAGE CSS END'S FROM HERE =============== */
/* Desktop (Default) */
/* Tablet */
/* Mobile */
/* Small Mobile */
.content_wrapper h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 50px;
  margin-bottom: -20px !important;
}
.content_wrapper h1:first-child {
  margin-top: 0;
}
.content_wrapper h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 50px;
}
.content_wrapper h2:first-child {
  margin-top: 0;
}
.content_wrapper p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
}
.content_wrapper h4 span {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  display: block;
  margin-top: -10px;
  margin-bottom: 0;
}
.content_wrapper h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 30px;
  padding-left: 10px;
}
.content_wrapper h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 30px;
}
.content_wrapper h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 20px;
  font-family: "Inter", sans-serif;
}
.content_wrapper ul {
  margin-left: 0;
  margin-bottom: 20px;
}
.content_wrapper ul li {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
}
.content_wrapper ul ul {
  margin-top: 15px;
}
.content_wrapper b {
  font-weight: 600;
}
.content_wrapper *:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .content_wrapper h1 {
    font-size: 28px;
    margin-top: 40px;
  }
  .content_wrapper h2 {
    font-size: 28px;
    margin-top: 40px;
  }
  .content_wrapper h3 {
    font-size: 22px;
  }
  .content_wrapper h4 {
    font-size: 18px;
  }
  .content_wrapper h4 span {
    font-size: 15px;
    line-height: 24px;
  }
  .content_wrapper h5 {
    font-size: 17px;
  }
  .content_wrapper p {
    font-size: 15px;
    line-height: 24px;
  }
  .content_wrapper ul li {
    font-size: 15px;
    line-height: 24px;
  }
}
@media (max-width: 767.98px) {
  .content_wrapper h1 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .content_wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .content_wrapper h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    line-height: 26px;
  }
  .content_wrapper h4 {
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 15px;
    padding-left: 5px;
  }
  .content_wrapper h4 span {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
  }
  .content_wrapper h5 {
    font-size: 16px;
    margin-top: 15px;
  }
  .content_wrapper p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
  }
  .content_wrapper ul li {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
    margin-bottom: 8px;
  }
  .content_wrapper ul {
    padding-left: 15px;
    margin-bottom: 15px;
  }
}
@media (max-width: 575.98px) {
  .content_wrapper h1 {
    font-size: 22px;
  }
  .content_wrapper h2 {
    font-size: 22px;
  }
  .content_wrapper p {
    line-height: 20px;
  }
  .content_wrapper h3 {
    font-size: 18px;
    margin-top: 20px;
  }
  .content_wrapper h4 {
    font-size: 16px;
  }
  .content_wrapper h5 {
    font-size: 15px;
  }
}
/* begin:: Footer CSS */
footer {
  padding: 100px 0;
}
@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: #102241;
}
@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;
  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;
}
footer .footer-about .social a:hover {
  transform: scale(1.08);
  background: #102241;
}
footer .footer-about .social a:hover::before {
  opacity: 1;
  border-color: #102241;
  animation: spin 8s linear infinite;
}
footer h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #102241;
}
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;
  font-weight: 500 !important;
  display: block;
  width: 100%;
  max-width: max-content;
}
footer ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 0px;
  height: 2px;
  background: #DA3437;
  transition: 0.3s all;
}
footer ul li a:hover {
  padding-left: 15px;
  color: #DA3437;
}
footer ul li a:hover::before {
  width: 12px;
}

.copyright {
  padding: 12px 0;
  border-top: 1px solid #E0E0E0;
}

/* end:: Footer CSS */