*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow: unset;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  /* font-family: 'neue_powerultra' !important; */
  line-height: normal !important;
  font-weight: 400;
  color: var(--secondary-color);
}

h1 {
  font-size: clamp(36px, -49.6976px + 14.9038vw, 93.2px);
}

h2,
.h2 {
  font-size: clamp(32px, -17.76px + 8.6538vw, 68px);
}

h3 {
  font-size: clamp(30px, 9.2672px + 3.6058vw, 45px);
}

h4 {
  font-size: clamp(28px, 15.56px + 2.1635vw, 37px);
}

.font-lg,
h5 {
  font-size: clamp(24px, 11.56px + 2.1635vw, 33px);
}

h6 {
  font-size: clamp(20px, 8.9424px + 1.9231vw, 28px);
}

img {
  max-width: 100%;
}

a {
    text-decoration: none !important;
}

.spacer-y{padding-block:60px}

.button {
  text-align: center;
}

.button-secondary {
  color: #FFF;
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}

.spacer-y {
  padding-block: 5rem;
}

.bg-primary-light {
  background-color: var(--primary-color-200);
}

.bg-primary-dark {
  color: var(--white-color);
  background-color: var(--secondary-color);
}

.primary-text {
  color: var(--primary-color) !important;
}

.mb-50 {
  margin-bottom: clamp(30px, 2.3552px + 4.8077vw, 50px);
}


.img--block {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.link-hover:hover,
.link-hover:hover h1 {
    color: var(--Text-Colors-text-active, #ff5500);
}

/* Blog Categories */

.blog--category {
    /* display: flex; */
    align-items: center;
    flex-wrap: nowrap;
    gap: 30px;
    margin: 0;
    overflow-x: auto;
    padding: 0 0 10px;
    width: 100% !important;
}

.blog--category li {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 8px 0;
    transition: all 0.3s;
    font-size: 18px;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.blog--category li.active,
.blog--category li:hover {
    color: var(--Text-Colors-text-active, #ff5500);
    border-color: var(--Text-Colors-text-active, #ff5500);
    font-weight: 500;
}

.blog--category::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.blog--category::-webkit-scrollbar {
	width: 6px;
    height: 6px;
	background-color: #F5F5F5;
    cursor: pointer;
}

.blog--category::-webkit-scrollbar-thumb {
	background-color: #ff5500;
    cursor: pointer;
}

/* Blog List */

.sticky--column {
    position: sticky;
    top: 160px;
}

.read-more-link {
    color: #ff5500;
    text-transform: capitalize;
    display: flex;
    align-items: center;
}

.blog--list img {
    margin: 0 0 20px;
}

/* Share Blog */

.share--blog-list {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.share--blog-list li {
    position: relative;
    width: 50px;
    min-width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #23272a;
    border-radius: 8px;
    padding: 10px;
}


/* Blog Inner Pages */

.blog--content ul {
    padding: 0;
    margin: 0 0 20px;
    width: 100%;
}

.table--listing {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.table--content h4 {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.table--content {
    background: #ff550014;
    padding: 30px 30px;
    border-radius: 10px;
}

.table--listing li a {
    color: #1e212b;
}

.table--listing li::before {
    content: '';
    position: absolute;
    inset: 10px auto auto 0;
    margin: auto;
    background-color: #1e212b;
    width: 7px;
    height: 7px;
    min-width: 7px;
    border-radius: 50px;
    transition: all 0.3s;
}

.table--listing li {
    position: relative;
    padding: 0 0 0 20px;
    transition: all 0.3s;
}

.table--listing li:hover {
    padding: 0 0 0 25px;
}

.table--listing li:hover a {
    color: var(--Text-Colors-text-active, #ff5500);
}

.table--listing li:hover:before {
    background-color: #ff5500;
}

.blog--block {
    padding: 20px 20px;
    border: 1px solid #ff550029;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

.blog--detial p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #575757;
}

.blog--block:hover a,
.blog--block:hover h4 {
    color: var(--Text-Colors-text-active, #ff5500);
}

.blog--block:hover {
    border: 1px dashed var(--Text-Colors-text-active, #ff5500);
    transform: translateY(-5px);
}

/* Recent Blog */

.recent--blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin: 0;
    width: 100%;
}

.recent--blog-list li {
    padding: 0 0 15px;
    border-bottom: 1px solid #ff550029;
    transition: all 0.3s;
    cursor: pointer;
}

.recent--blog-list ul li:last-child {
    border: none !important;
}

.recent--blog-list li a {
    color: #575757;
    transition: all 0.3s;
}

.recent--blog-list li:hover {
    border-bottom: 1px dashed var(--Text-Colors-text-active, #ff5500);
    transform: translateY(-2px);
}

.recent--blog-list li:hover a,
.recent--blog-list li a:hover {
    color: var(--Text-Colors-text-active, #ff5500);
}



/* Responsive */


@media only screen  and (max-width: 1599px) {

    .table--content {
        padding: 15px 15px;
    }

    .table--content h4 {
        padding-bottom: 10px;
        margin: 0 0 10px !important;
    }

    .table--listing li {
        position: relative;
        padding: 0 0 0 15px;
        line-height: 24px;
    }

    .table--listing li a {
        font-size: 14px;
        line-height: 19px !important;
    }

    .table--listing {
        gap: 5px;
    }

}

@media only screen  and (max-width: 991px) {

    .seo-breadcrumb-sc {
        margin-top: 100px;
        margin-bottom: 0;
    }

    .row-order {
        flex-direction: column-reverse;
    }

    .blog--content {
        padding: 20px 20px;
        background-color: #dddddd30;
    }

}