@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Aref+Ruqaa+Ink:wght@400;700&display=swap");
@font-face {
    font-family: ZaridSerif;
    src: url("../fonts/alfont_com_29LT-Zarid-Serif-Regular-2.otf")
        format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: ZaridSlab;
    src: url("../fonts/alfont_com_29LTZaridSlab-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: ZaridSlabLight;
    src: url("../fonts/alfont_com_29LTZaridSlab-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a {
    font-family: ZaridSlab, sans-serif !important;
}

p {
    font-family: ZaridSlab, sans-serif !important;
}

:root {
    --primary-color: 56, 131, 255;
    --secondary-color: 254, 218, 3;
    --body-color: 135, 135, 135;
    --heading-color: 255, 255, 255;
    --white-color: 255, 255, 255;
    --dark-color: 12, 12, 12;
    --primary-bg: 56, 131, 255;
    --secondary-bg: 254, 218, 3;
    --gray-bg: 23, 23, 23;
    --gray-alt-bg: 54, 54, 54;
    --white-bg: 255, 255, 255;
    --body-bg: 12, 12, 12;
    --body-font-family: "Inter", sans-serif;
    --heading-font-family: "Inter", sans-serif;
    --body-font-size: clamp(15px, 1.2vw, 18px);
    --h1-font-size: clamp(40px, 5.5vw, 72px);
    --h2-font-size: clamp(34px, 4.5vw, 60px);
    --h3-font-size: clamp(26px, 3vw, 40px);
    --h4-font-size: clamp(22px, 2vw, 30px);
    --h5-font-size: clamp(18px, 1.6vw, 24px);
    --h6-font-size: clamp(15px, 1.2vw, 18px);
    --body-line-height: clamp(26px, 2vw, 32px);
    --h1-line-height: clamp(48px, 6vw, 82px);
    --h2-line-height: clamp(42px, 5vw, 70px);
    --h3-line-height: clamp(34px, 3.5vw, 50px);
    --h4-line-height: clamp(30px, 2.5vw, 40px);
    --h5-line-height: clamp(26px, 2vw, 34px);
    --h6-line-height: clamp(24px, 1.6vw, 28px);
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --normal-transition: 0.3s;
    --section-padding: 120px;
    --navbar-height: 110px;
}

body.dark-theme {
    --body-color: 135, 135, 135;
    --heading-color: 12, 12, 12;
    --secondary-bg: 254, 218, 3;
    --gray-bg: 255, 255, 255;
    --gray-alt-bg: 231, 231, 231;
    --white-bg: 255, 255, 255;
    --body-bg: 241, 241, 241;
}

body {
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    font-weight: var(--font-weight-normal);
    line-height: var(--body-line-height);
    color: rgba(var(--body-color), 1);
    background-color: rgba(var(--body-bg), 1);
}

hr {
    border-color: rgba(var(--body-color), 0.08);
}

a {
    outline: none;
    text-decoration: none;
    transition: var(--normal-transition);
    font-family: var(--heading-font-family);
}

a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-bold);
    margin: 0px 0px 15px;
    line-height: var(--heading-line-height);
    font-family: var(--heading-font-family);
    color: rgba(var(--heading-color), 1);
}

.h1,
h1 {
    font-size: var(--h1-font-size);
    line-height: var(--h1-line-height);
}

.h2,
h2 {
    font-size: var(--h2-font-size);
    line-height: var(--h2-line-height);
}

.h3,
h3 {
    font-size: var(--h3-font-size);
    line-height: var(--h3-line-height);
}

.h3_alt {
    font-size: calc(var(--h3-font-size) - 6px);
    line-height: calc(var(--h3-line-height) - 6px);
}

.h4,
h4 {
    font-size: var(--h4-font-size);
    line-height: var(--h4-line-height);
}

.h5,
h5 {
    font-size: var(--h5-font-size);
    font-weight: var(--font-weight-bold);
    line-height: var(--h5-line-height);
}

.h6,
h6 {
    font-size: var(--h6-font-size);
    font-weight: var(--font-weight-bold);
    line-height: var(--h6-line-height);
}

.full-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.single_image {
    overflow: hidden;
    display: inline-block;
    line-height: 0;
    border-radius: 15px;
    margin: 0px;
    position: relative;
}

.navbar_height {
    display: block;
    margin: 0px;
    width: 100%;
}

.solid_text {
    color: rgb(var(--heading-color)) !important;
}

.primary_text {
    color: rgb(190, 30, 45) !important;
}

.secondary_text {
    color: rgb(var(--secondary-color)) !important;
}

.overflow_hidden {
    overflow: hidden;
    width: 100%;
}

.section_padding {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.section_padding-top {
    padding-top: var(--section-padding);
}

.section_padding-bottom {
    padding-bottom: var(--section-padding);
}

.padding_100 {
    padding-top: calc(var(--section-padding) / 1.2);
    padding-bottom: calc(var(--section-padding) / 1.2);
}

.padding_top_100 {
    padding-top: calc(var(--section-padding) / 1.2);
}

.padding_bottom_100 {
    padding-bottom: calc(var(--section-padding) / 1.2);
}

.grid_space {
    margin-bottom: -30px;
}

.grid_space > div {
    margin-bottom: 30px;
}

.relative {
    position: relative;
    z-index: 1;
}

.gr_text {
    background: text rgb(255, 255, 255);
    -webkit-text-fill-color: transparent;
}

.g-4,
.gy-4 {
    --bs-gutter-y: 30px;
}

.g-4,
.gx-4 {
    --bs-gutter-x: 30px;
}

.primary_button {
    display: inline-block;
    font-size: calc(var(--body-font-size) - 1px);
    line-height: 26px;
    padding: 14px 35px;
    background-color: rgb(190, 30, 45);
    color: rgb(255, 255, 255);
    position: relative;
    z-index: 1;
    border: none;
    box-shadow: unset;
    border-radius: 5px;
    text-align: center;
    font-weight: var(--font-weight-bold);
    font-family: var(--heading-font-family);
    transition: var(--normal-transition);
    outline: none;
}

.primary_button:hover {
    background-color: rgba(var(--secondary-bg), 1);
    color: rgba(var(--dark-color), 1);
    box-shadow: 0 0 0 1px rgba(var(--secondary-color), 1);
}

.outline_button {
    display: inline-block;
    font-size: calc(var(--body-font-size) - 1px);
    line-height: 26px;
    padding: 14px 33px;
    background: rgb(var(--gray-bg));
    color: rgba(var(--body-color), 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
    box-shadow: 0 0 0 1px rgba(var(--gray-alt-bg), 1);
    border-radius: 100px;
    text-align: center;
    font-weight: var(--font-weight-semibold);
    font-family: var(--heading-font-family);
    transition: var(--normal-transition);
    outline: none;
}

.outline_button:hover {
    border-color: rgba(var(--secondary-color), 1);
    color: rgb(var(--dark-color));
    background-color: rgb(var(--secondary-bg));
    box-shadow: 0 0 0 1px rgba(var(--gray-alt-bg), 1);
}

.gr_button {
    display: inline-block;
    font-size: calc(var(--body-font-size) - 1px);
    line-height: 26px;
    padding: 15px 33px;
    background: linear-gradient(
        270deg,
        rgb(88, 5, 5) 0%,
        rgb(211, 27, 40) 100%
    );
    color: rgba(var(--white-color), 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
    border-radius: 100px;
    text-align: center;
    font-weight: var(--font-weight-bold);
    font-family: var(--heading-font-family);
    transition: var(--normal-transition);
    outline: none;
}

.gr_button:hover {
    color: rgba(var(--white-color), 1);
    box-shadow: 0 8px 16px rgba(var(--heading-color), 0.1);
}

.preloader {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--body-bg), 1);
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    z-index: 99999;
}

.preloader .loader,
.preloader .loader::after {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.preloader .loader {
    margin: 30px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 5px solid rgba(var(--gray-alt-bg), 1);
    border-right: 5px solid rgba(var(--gray-alt-bg), 1);
    border-bottom: 5px solid rgba(var(--gray-alt-bg), 1);
    border-left: 5px solid rgb(var(--heading-color));
    transform: translateZ(0px);
    animation: 1.1s linear 0s infinite normal none running load8;
}

@-webkit-keyframes load8 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.nav_area {
    left: 0px;
    width: 100%;
    z-index: 999999;
    transition: var(--normal-transition);
    white-space: nowrap;
    margin: 0px auto;
    right: 0px;
    top: 0px;
    padding: 0px;
    background-color: rgb(12, 12, 12);
    direction: rtl;
    position: fixed !important;
}

.nav_area.affix {
    background-color: rgba(var(--gray-bg), 1);
    --navbar-height: 80px;
}

.nav_area .nav_row {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin: auto;
    min-height: var(--navbar-height);
    max-width: 1660px;
    transition: 0.3s;
    width: 100%;
}

.nav_area.affix .nav_row {
    min-height: calc(var(--navbar-height) - 20px);
}

.nav_area .nav_right {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    width: calc(100% - 200px);
    -webkit-box-pack: end;
    justify-content: flex-end;
}

.nav_area .nav_logo .nav_logo-image {
    display: block;
}

.nav_area .nav_logo .nav_logo-image.logo_dark {
    display: none;
}

body.dark-theme .nav_area .nav_logo .nav_logo-image.logo_dark {
    display: block;
}

body.dark-theme .nav_area .nav_logo .nav_logo-image.logo_light {
    display: none;
}

.nav_area .nav_logo .nav_logo-text {
    margin-bottom: 0px;
}

.nav_area .nav_logo .nav_logo-text a {
    min-width: 100px;
    display: block;
    font-size: 40px;
    overflow: hidden;
    position: relative;
    color: rgba(var(--body-color), 1);
}

.nav_area .nav_menu ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.nav_area .nav_menu ul li {
    position: relative;
}

.nav_area .nav_menu ul li > a {
    padding: 15px 14px;
    position: relative;
    font-weight: var(--font-weight-semibold);
    color: rgb(255, 255, 255);
    text-transform: capitalize;
    background: none;
    font-size: clamp(13px, 1.05vw, 16px);
    line-height: 1.5;
    display: block;
    white-space: normal;
}

.nav_area .nav_menu ul li.current-menu-item > a,
.nav_area .nav_menu ul li:hover > a,
.nav_area .nav_menu ul li:hover > i {
    color: rgba(var(--heading-color), 1) !important;
}

.nav_area .nav_menu ul li .new-badge {
    font-size: 8px;
    font-weight: 600;
    color: rgb(var(--white-color));
    display: block;
    border-radius: 100px;
    width: 34px;
    height: 15px;
    line-height: 15px;
    background: linear-gradient(
        270deg,
        rgb(56, 131, 255) 0%,
        rgb(251, 3, 185) 100%
    );
    text-align: center;
}

.nav_area .nav_right .nav > li {
    position: relative;
    padding: 0px;
}

.nav_area .nav_right .nav > li > a {
    padding: 0px;
    margin: 0px 20px;
    position: relative;
}

.nav_area .nav_menu ul li i.plus {
    width: 10px;
    height: 10px;
    line-height: 10px;
    display: inline-block;
    transition: var(--normal-transition);
    position: relative;
    margin-right: 5px;
}

.nav_area .nav_menu ul li i.plus::before,
.nav_area .nav_menu ul li i.plus::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 2px;
    display: block;
    background-color: rgb(255 255 255);
    transition: var(--normal-transition);
}

.nav_area .nav_menu ul li i.plus::before {
    transform: translate(-50%, -50%) rotate(90deg);
}

.nav_area .nav_menu ul li:hover > a > i.plus::before {
    transform: translate(-50%, -50%) rotate(0deg);
}

.nav_area .nav_menu ul li.current-menu-item > a > i.plus::before,
.nav_area .nav_menu ul li.current-menu-item > a > i.plus::after,
.nav_area .nav_menu ul li:hover > a > i.plus::before,
.nav_area .nav_menu ul li:hover > a > i.plus::after {
    background-color: rgba(var(--heading-color), 1) !important;
}

.nav_area .nav_dark {
    cursor: pointer;
    color: rgba(var(--body-color), 1);
}

.nav_area .nav_close {
    position: absolute;
    top: 13px;
    right: 20px;
    cursor: pointer;
    color: rgba(var(--body-color), 1);
    display: none;
}

.nav_area .nav_toggle {
    cursor: pointer;
    color: rgba(var(--body-color), 1);
    display: none;
}

.circle-button {
    border: 1px solid rgb(var(--gray-alt-bg));
    color: rgb(var(--body-color));
    width: 60px;
    height: 60px;
    display: block;
    text-align: center;
    line-height: 58px;
    border-radius: 100px;
    transition: 0.3s;
    background: none;
    outline: none;
    position: relative;
}

.circle-button:not(.no-hover):hover {
    border-color: rgb(var(--secondary-color));
    background-color: rgb(var(--secondary-color));
    color: rgb(var(--dark-color));
}

.circle-button:focus {
    outline: none;
}

.nav_area .nav_search {
    position: relative;
    z-index: 1;
}

.nav_area .nav_search-form {
    width: 100%;
    display: flex;
    background-color: rgba(var(--gray-alt-bg), 1);
    border: 1px solid rgba(var(--gray-alt-bg), 1);
    padding: 10px;
    border-radius: 6px;
    transition: var(--normal-transition);
}

.nav_area .nav_search-form input {
    border: none;
    background: none;
    outline: none;
    width: calc(100% - 50px);
    padding: 5px 20px;
    color: rgba(var(--heading-color), 1);
    font-weight: var(--font-weight-medium);
}

.nav_area .nav_search-form input::-webkit-input-placeholder {
    color: rgba(var(--body-color), 1);
}

.nav_area .nav_search-form input::-webkit-input-placeholder {
    color: rgba(var(--body-color), 1);
}

.nav_area .nav_search-form input::placeholder {
    color: rgba(var(--body-color), 1);
}

.nav_area .nav_search-form button {
    border: none;
    background: rgb(var(--secondary-bg));
    color: rgba(var(--dark-color), 1);
    padding: 0px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 7px;
}

.nav_area .nav_search-form button:hover {
    background-color: rgba(var(--secondary-bg), 1);
    color: rgba(var(--dark-color), 1);
}

.nav_area .nav_right .primary_button {
    margin-left: 20px;
}

.nav_area.nav_transparent {
    position: fixed;
    top: 0px;
    left: 0px;
}

body:not(.dark-theme)
    .nav_area.nav_transparent:not(.affix)
    .nav_logo
    .nav_logo-image.logo_dark {
    display: none;
}

body:not(.dark-theme)
    .nav_area.nav_transparent:not(.affix)
    .nav_logo
    .nav_logo-image.logo_light {
    display: block;
}

.nav_area.nav_transparent:not(.affix) .nav_toggle {
    color: rgba(var(--body-color), 1);
}

.progress-wrap {
    position: fixed;
    right: 20px;
    bottom: 15px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(var(--body-color), 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: rgba(var(--secondary-bg), 1);
    stroke-width: 4;
    box-sizing: border-box;
    transition: 200ms linear;
}

.progress-wrap .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(var(--secondary-color), 1);
}

.header_area {
    padding: 230px 0px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header_text .hot_icon {
    margin-bottom: 27px;
}

.header_text .title {
    font-size: clamp(2.5rem, 6vw, 6rem);
    line-height: 1.15;
    background: linear-gradient(to left, rgb(251, 251, 251), rgb(255, 255, 255))
        text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 9999999;
    margin-bottom: 22px !important;
}

.header_text p {
    font-size: clamp(1.1rem, 1.6vw, 1.5rem);
    line-height: 1.7;
    color: rgb(255, 255, 255);
}

.header_text .desc {
    font-size: var(--h5-font-size);
    font-weight: 500;
    margin-bottom: 45px;
}

.header_area .home_button {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.section_title {
    display: flex;
    flex-flow: column wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

.section_title .title_icon {
    margin-bottom: 25px;
    line-height: 0;
}

.section_title .main_title {
    font-size: var(--h3-font-size);
    line-height: var(--h3-line-height);
    margin: 0px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.section_title.align-items-center {
    text-align: center;
}

.section_title.align-items-center .main_title {
    -webkit-box-pack: center;
    justify-content: center;
}

.section_title .main_title.big {
    font-size: calc(var(--h2-font-size) * 1.6);
    line-height: calc(var(--h2-line-height) * 1.6);
    margin-bottom: 26px;
}

.section_title .main_title .icon {
    width: 30px;
    display: inline-block;
    margin-left: 10px;
}

.section_title .desc {
    font-weight: 500;
    font-size: var(--h5-font-size);
    line-height: var(--h5-line-height);
    max-width: 600px;
    color: rgb(var(--heading-color));
}

.custom_arrow {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.custom_arrow .arrow_control {
    border: 1px solid rgb(var(--gray-alt-bg));
    color: rgb(var(--body-color));
    width: 56px;
    height: 56px;
    display: block;
    text-align: center;
    line-height: 54px;
    border-radius: 100px;
    transition: 0.3s;
    background: none;
    margin-right: 20px;
    outline: none;
    rotate: 180deg;
}

.custom_arrow .arrow_control:hover {
    border-color: rgb(var(--secondary-color));
    color: rgb(var(--dark-color));
    background-color: rgb(var(--secondary-bg));
}

.custom_arrow .arrow_control:focus {
    outline: none;
}

.single_card {
    border-radius: 10px;
    background-color: rgb(var(--gray-bg));
    border: 1px solid rgb(var(--gray-alt-bg));
    position: relative;
}

.specifications .single_card {
    height: 290px;
}

.specifications h1 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    margin-top: 30px;
}

.specifications p {
    font-size: clamp(1rem, 1.8vw, 1.6rem);
    line-height: 1.5;
}

.single_card img {
    width: 100%;
}

.single_card.live {
    margin-top: 25px;
}

.single_card .card_image {
    margin: -1px -1px 0px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    display: block;
}

.single_card .card_content {
    padding: 22px;
}

.card_author {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 20px;
    color: rgb(var(--body-color));
}

.card_author:hover {
    color: rgb(var(--body-color));
}

.card_author .author_photo {
    display: inline-block;
    margin-right: 15px;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    overflow: hidden;
}

.single_card .card_title {
    font-size: var(--h5-font-size);
    line-height: var(--h5-line-height);
    margin-bottom: 12px;
}

.single_card .card_title a {
    color: rgb(var(--heading-color));
}

.single_card .card_title a:hover {
    color: rgb(var(--primary-color));
}

.single_card .card_footer {
    margin-top: 30px;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.single_card .card_love:focus,
.single_card .card_love {
    border: none;
    background: none;
    outline: none;
    color: rgb(var(--heading-color));
}

.single_card .card_love .icon {
    background: linear-gradient(
            83.48deg,
            rgb(190, 30, 45) 3.34%,
            rgb(65, 7, 12) 96.58%
        )
        text;
    -webkit-text-fill-color: transparent;
}

.single_card .card_price {
    border-radius: 7px;
    overflow: hidden;
    background-color: rgb(var(--gray-bg));
    border: 1px solid rgb(var(--gray-alt-bg));
    margin-top: 25px;
    padding: 10px 16px;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.countdown {
    background-color: rgb(var(--gray-bg));
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0px);
    top: 0px;
    padding: 15px 30px;
    border-radius: 100px;
    font-weight: 700;
    font-size: calc(var(--body-font-size) - 1px);
    overflow: hidden;
    z-index: 1;
}

.single_card .countdown {
    transform: translate(-50%, -50%);
}

.countdown-container {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    background: linear-gradient(
            83.48deg,
            rgb(56, 131, 255) 3.34%,
            rgb(251, 3, 185) 96.58%
        )
        text;
    -webkit-text-fill-color: transparent;
}

.countdown-container::before {
    content: "";
    width: 16px;
    height: 16px;
    background: url("../images/fire.png") center center / cover no-repeat scroll;
    margin-right: 8px;
}

.countdown .number::after {
    content: ":";
    margin: 5px;
}

.countdown .number:last-child::after {
    display: none;
}

.sq_button,
.single_card .outline_button {
    padding: 12px 30px;
    border-radius: 5px;
}

.single_card .outline_button {
    margin-top: 25px;
}

.sq_button .icon,
.single_card .outline_button .icon {
    margin-right: 10px;
}

.single_card .card_top_label {
    color: rgb(var(--heading-color));
    font-size: calc(var(--body-font-size) + 2px);
    line-height: calc(var(--body-line-height) + 2px);
    padding: 30px;
    text-align: center;
}

.single_card.card_preview .card_image {
    border-radius: 0px;
    position: relative;
    display: block;
}

.single_card.card_preview .countdown {
    top: auto;
    bottom: 10px;
}

.creator_box {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.creator_box:last-child {
    margin-bottom: 0px;
}

.creator_box .author_pic {
    width: 120px;
    height: 120px;
    position: relative;
    margin: 0px 30px 0px 0px;
}

.creator_box .author_pic > img {
    width: 120px;
    height: 120px;
    border-radius: 100px;
}

.creator_box .author_pic .number {
    position: absolute;
    right: 3px;
    top: 3px;
    width: 30px;
    height: 30px;
    background-color: rgb(var(--secondary-bg));
    text-align: center;
    color: rgb(var(--dark-color));
    border-radius: 100px;
    line-height: 30px;
    font-size: 10px;
    font-weight: 600;
}

.creator_box .title {
    margin-bottom: 8px;
    font-size: calc(var(--h5-font-size) - 2px);
}

.creator_box .author_info b {
    font-size: 12px;
    line-height: 1em;
}

.profile_card {
    border-radius: 10px;
    background-color: rgb(var(--gray-bg));
    border: 1px solid rgb(31, 30, 30);
    text-align: center;
    height: 100%;
}

.profile_card .card_image {
    margin: -1px -1px 0px;
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
    display: block;
}

.profile_card .card_content {
    padding: 0px 20px 25px;
}

.profile_card .author_photo {
    display: inline-block;
    position: relative;
    margin-top: -50px;
    border-radius: 1000px;
}

.profile_card .author_photo > .pic {
    border-radius: 1000px;
    width: 100px;
    height: 100px;
    overflow: hidden;
    display: block;
}

.profile_card .author_photo .verified {
    position: absolute;
    right: 2px;
    bottom: 8px;
}

.profile_card .card_header {
    margin-bottom: 25px;
}

.profile_card .card_price .amount {
    font-weight: 500;
    color: rgb(var(--primary-color));
}

.profile_card .card_price .mail {
    font-weight: 500;
    color: rgb(var(--primary-color));
}

.profile_card .card_title {
    margin-bottom: 10px;
    font-size: calc(var(--h5-font-size) - 2px);
}

.profile_card .card_footer {
    display: flex;
    justify-content: space-around;
    -webkit-box-align: center;
    align-items: center;
    border-top: 1px solid rgb(var(--gray-alt-bg));
    padding: 15px 30px;
}

.profile_card .card_footer .card_footer_title {
    font-size: calc(var(--h5-font-size) - 2px);
    line-height: calc(var(--h5-line-height) - 2px);
    font-weight: 500;
    margin-bottom: 5px;
}

.profile_card .card_footer .outline_button {
    border-radius: 7px;
    padding: 15px 30px;
    line-height: 1em;
}

.profile_card.second_card .author_photo {
    margin-top: 0px;
}

.profile_card.second_card .card_content {
    padding: 40px;
}

.profile_card.second_card .author_photo > img {
    width: 150px;
    height: 150px;
}

.profile_card.second_card .author_photo .verified {
    right: 0px;
    bottom: 12px;
}

.profile_card .card_mid {
    border-top: 1px solid rgb(var(--gray-alt-bg));
    padding: 40px;
}

.icon_box {
    display: block;
    position: relative;
}

.icon_box .icon {
    margin-bottom: 35px;
}

.icon_box .title {
    margin-bottom: 15px;
}

.icon_box .desc {
    font-size: calc(var(--body-font-size) - 1px);
}

.icon-hero {
    background: transparent;
    border: 2px solid rgb(102, 8, 9);
}

.footer_main {
    background: #910c26;
    position: relative;
    z-index: 1;
}

.footer_main::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0px;
    top: 0px;
}

body.dark-theme .footer_main::after {
    background: linear-gradient(
        0deg,
        rgb(var(--gray-bg)) 33.46%,
        rgba(var(--gray-bg), 1) 81.11%
    );
    z-index: -1;
}

body.dark-theme .footer_main {
    background-color: rgb(var(--gray-bg));
}

.footer_main {
    position: relative;
    z-index: 1;
}

.footer_main .element_1 {
    position: absolute;
    left: 5%;
    top: 35%;
    width: 87px;
}

.footer_main .element_2 {
    position: absolute;
    right: 5%;
    top: 50%;
    width: 42px;
}

.footer_area {
    padding-top: 55px;
    position: relative;
    z-index: 1;
}

.footer_area .changeable_logo {
    margin-bottom: 25px;
}

body:not(.dark-theme) .changeable_logo .logo_dark {
    display: none;
}

body.dark-theme .changeable_logo .logo_light {
    display: none;
}

.footer_area .widget {
    margin-bottom: 60px;
}

.social_link {
    display: flex;
    flex-wrap: wrap;
    margin: -6px;
}

.social_link a {
    width: 40px;
    height: 40px;
    text-align: center;
    color: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 5px;
    line-height: 38px;
    font-size: 14px;
    margin: 6px;
}

.social_link a:hover {
    color: rgb(var(--secondary-color));
    border-color: rgb(var(--secondary-color));
}

.subs_section {
    padding-top: 100px;
    z-index: 1;
}

.subscribe_form {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    background-color: rgb(var(--gray-bg));
    position: relative;
    border-radius: 1000px;
}

.subscribe_form::before {
    content: "";
    position: absolute;
    left: -2px;
    top: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: -1;
    border-radius: 1000px;
    background: linear-gradient(
        270deg,
        rgb(60, 4, 10) -3.53%,
        rgb(166, 25, 39) 100%
    );
}

.subscribe_form .mc-input {
    width: 100%;
    padding: 20px 40px;
    height: 90px;
    border-radius: 100px;
    border: none;
    font-size: var(--h5-font-size);
    background: none;
    color: rgb(var(--heading-color));
}

.subscribe_form button {
    background: linear-gradient(
        270deg,
        rgb(39, 0, 4) -3.53%,
        rgb(190, 30, 45) 100%
    );
    border: none;
    border-radius: 100px;
    padding: 20px;
    width: 260px;
    height: 90px;
    font-size: calc(var(--h5-font-size) - 2px);
    font-weight: 700;
    color: rgb(var(--white-color));
    position: absolute;
    left: 0px;
    top: 0px;
}

.subscribe_form label {
    position: absolute;
    top: 100%;
    left: 0px;
}

.widget .widget_title {
    font-size: clamp(1.3rem, 1.7vw, 1.6rem);
    line-height: 1.4;
    margin-bottom: 20px;
}

.nav_link {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.nav_link li:not(:last-child) {
    display: block;
    margin-bottom: 15px;
}

.nav_link li a {
    color: rgb(var(--body-color));
    display: inline-block;
    font-weight: 500;
    position: relative;
    font-family: ZaridSlabLight !important;
    font-size: 20px;
}

.nav_link li a::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 10px;
    background-color: rgb(var(--secondary-bg));
    transition: 0.3s;
    opacity: 0;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.nav_link li a:hover::before {
    opacity: 1;
}

.nav_link li a:hover {
    color: rgb(var(--heading-color));
    padding-left: 16px;
}

.contact_info {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.contact_info li:not(:last-child) {
    margin-bottom: 15px;
}

.copyright_text {
    background: linear-gradient(
        270deg,
        rgb(190, 30, 45) -3.53%,
        rgb(60, 2, 7) 100%
    );
    text-align: center;
    color: rgb(var(--white-color));
    font-weight: 500;
    border-radius: 100px;
    padding: 13px;
    margin: 30px auto;
    max-width: 1545px;
    width: 90vw;
}

.header_element {
    position: relative;
    z-index: 1;
}

.header_element .element {
    position: absolute;
    left: -50px;
    top: 30%;
    z-index: -1;
}

.header_element .element_2 {
    left: auto;
    right: -1%;
    top: 66%;
    width: 80px;
}

.header_element .element_3 {
    left: auto;
    right: 8%;
    width: 20px;
    top: 8%;
}

.header_element .element_4 {
    left: 8%;
    top: 15%;
}

.header_element .element_5 {
    left: 26%;
    top: 80%;
}

.header_element .element_6 {
    left: auto;
    top: 32%;
    right: 16%;
}

.header_element .element_7 {
    left: 5%;
    top: 70%;
}

.header_element .element_8 {
    left: 77%;
    top: 83%;
}

.second_page_wrapper {
    background: url("../images/home2-bg.png") center top / cover no-repeat
        scroll;
}

.second_page_wrapper .header_area {
    padding: 130px 0px;
}

.updown_slider .swiper-slide {
    overflow: hidden;
    border-radius: 20px;
}

.updown_slider .swiper-slide:nth-child(2n + 1) {
    margin-top: var(--section-padding);
}

.second_page_wrapper .icon_box .desc {
    color: rgb(198, 191, 204);
}

body.dark-theme .second_page_wrapper .icon_box .desc {
    color: rgb(101, 101, 101);
}

.buy_sell_slide .swiper-slide {
    line-height: 1em;
    background: linear-gradient(
            267.41deg,
            rgb(56, 131, 255) 7.79%,
            rgb(251, 3, 185) 91.77%
        )
        text;
    -webkit-text-fill-color: transparent;
    font-size: 350px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    width: 2800px;
    padding-top: 40px;
    padding-bottom: 40px;
    white-space: nowrap;
}

.buy_sell_slide .swiper-wrapper {
    position: relative;
    transition-timing-function: linear !important;
}

.buy_sell_border {
    border-bottom: 1px solid transparent;
    border-image: url("../images/bottom_border_line.png") 100 / 1 / 0 stretch;
}

.author_box_2 {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 25px;
    border-radius: 7px;
    background: linear-gradient(
        83.48deg,
        rgb(56, 131, 255) 3.34%,
        rgb(251, 3, 185) 96.58%
    );
    z-index: 1;
}

.author_box_2::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(var(--gray-bg));
    z-index: -1;
    border-radius: 4px;
    border: 1px solid rgb(var(--gray-alt-bg));
    transition: 0.3s;
}

.author_box_2:hover::before {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    left: 2px;
    top: 2px;
    border-color: rgb(var(--gray-bg));
}

.author_box_2 .author_photo {
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin-right: 20px;
    position: relative;
}

.author_box_2 .author_photo a {
    width: 60px;
    height: 60px;
    border-radius: 100px;
    display: block;
    overflow: hidden;
}

.author_box_2 .author_photo .verified {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 18px;
    z-index: 2;
}

.author_box_2 .author_photo .online {
    width: 10px;
    height: 10px;
    display: block;
    position: absolute;
    right: 4px;
    top: 4px;
    border-radius: 100px;
    z-index: 2;
}

.author_box_2 .author_photo .online.active {
    background-color: rgb(0, 204, 131);
    border: 1px solid rgb(var(--heading-color));
}

.title a {
    color: rgb(var(--heading-color));
    display: block;
}

.title a:hover {
    color: rgb(var(--primary-color));
}

.author_box_2 .title {
    margin-bottom: 8px;
}

.author_box_2 .author_info {
    width: calc(100% - 80px);
}

.author_box_2 .num {
    position: absolute;
    left: -8px;
    top: -8px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background-color: rgb(var(--secondary-bg));
    color: rgb(var(--dark-color));
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    border-radius: 100px;
}

.profile_cover {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: -230px;
}

.site_header {
    background: url("../images/site_header.jpg") center center / cover no-repeat
        scroll;
    position: relative;
    z-index: 1;
    padding: 170px 0px;
    text-align: center;
}

.site_header::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(
        0deg,
        rgb(12, 12, 12) 2.48%,
        rgba(0, 0, 0, 0.49) 86.7%
    );
}

.section_border_top {
    border-top: 1px solid transparent;
    border-image: url("../images/comment-bottom-line.png") 100 / 1 / 0 stretch;
}

.site_header .page_title {
    margin-bottom: 30px;
    color: rgb(var(--white-color));
}

.site_header .sub_title {
    color: rgb(var(--white-color));
    font-weight: 500;
}

.contact_area {
    background-color: rgb(var(--gray-bg));
    padding: calc(var(--section-padding) / 2) var(--section-padding);
    border-radius: 10px;
    border: 1px solid rgb(var(--gray-alt-bg));
}

.input_control {
    width: 100%;
    padding: 0px 0px 15px;
    outline: none;
    color: rgba(var(--heading-color), 1);
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    border-bottom: 1px solid rgb(var(--gray-alt-bg));
    background: none;
}

.input_control:focus {
    border-color: rgba(var(--heading-color), 1);
}

.has-error .input_control {
    border-color: red;
    color: red;
}

.has-error .help-block {
    color: red;
}

textarea.input_control {
    height: 140px;
}

.input_control::-webkit-input-placeholder {
    color: rgba(var(--body-color), 1);
}

.input_control::-webkit-input-placeholder {
    color: rgba(var(--body-color), 1);
}

.input_control::placeholder {
    color: rgba(var(--body-color), 1);
}

.gr_button.full {
    border-radius: 7px;
    display: block;
    width: 100%;
    margin-top: 15px;
}

.icon_list {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.icon_list li {
    margin-bottom: 30px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.icon_list li .icon {
    color: rgb(var(--heading-color));
    font-size: 20px;
    width: 40px;
    min-width: 40px;
}

.lang_select {
    color: rgb(var(--body-color));
    font-weight: 500;
}

.lang_select:hover {
    color: rgb(var(--heading-color));
}

.map_frame iframe {
    width: 100%;
    height: 180px;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 30px;
}

.social_menu {
    margin: -10px;
}

.social_menu a {
    color: rgb(var(--body-color));
    display: inline-block;
    margin: 10px;
}

.social_menu a:hover {
    color: rgb(var(--secondary-color));
}

.video_content {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
}

.video_content video {
    width: 100%;
    line-height: 0;
}

.video_content .video_button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border: none;
    border-radius: 100px;
    background-color: rgba(var(--secondary-bg), 1);
    outline: none;
    font-size: 16px;
    color: rgba(var(--dark-color), 1);
    transition: 0.3s;
    z-index: 3;
}

.video_content.play .video_button {
    opacity: 0;
}

.video_content.play:hover .video_button {
    opacity: 1;
}

.video_content .video_poster {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: 0.3s;
}

.video_content.play .video_poster {
    opacity: 0;
}

@media screen and (max-width: 768px) {
    .video_content .video_button {
        width: 50px;
        height: 50px;
        font-size: 16px;
        line-height: 50px;
    }

    .experience .image-text {
        bottom: 15rem !important;
    }

    .experience .description {
        font-size: 12px !important;
        bottom: 17rem !important;
    }

    .products .sections {
        justify-content: center;
        display: grid !important;
    }

    .services .card-service {
        display: grid !important;
        text-align: center;
    }

    .contact-card {
        text-align: center;
        margin: auto;
        justify-content: space-between;
    }

    .header_text p {
        font-size: 1.6rem;
        color: rgb(255, 255, 255);
        max-width: 70%;
    }

    .footer_bottom .col-lg-6 {
        text-align: center !important;
        margin: auto;
        width: 100%;
    }
}

.comment_list-area {
    margin-top: 60px;
    margin-bottom: 50px;
}

.comment_respond .comment_respond-title,
.comment_list-area .comment_list-title {
    margin-bottom: 40px;
    font-family: var(--body-font-family);
    font-weight: 700;
    font-size: calc(var(--h5-font-size) + 2px);
}

.comments_list {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.comments_list ul,
.comments_list ol {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.comments_list li {
    padding-left: 110px;
    position: relative;
}

.comment_body {
    margin-bottom: 40px;
}

.comment_body .comment_author img {
    position: absolute;
    left: 0px;
    width: 80px;
    height: 80px;
    border-radius: 100px;
}

.comment_body .comment_author .fn a {
    font-size: calc(var(--body-font-size) + 2px);
    color: rgba(var(--heading-color), 1);
    display: inline-block;
    font-weight: 500;
}

.comment_body .comment_date a {
    font-family: var(--body-font-family);
    color: rgba(var(--body-color), 1);
    font-size: calc(var(--body-font-size) - 4px);
    text-transform: uppercase;
    font-weight: 500;
}

.comment_body .comment_footer {
    margin-bottom: 10px;
}

.comment_body .comment_desc {
    margin-bottom: 10px;
}

.comment_body .comment-reply-link .svg_element {
    width: 28px;
    height: 21px;
}

.comment_body .comment-reply-link {
    color: rgba(var(--heading-color), 1);
    display: inline-block;
    margin-top: 10px;
}

.comment_form .input_control {
    margin-bottom: 30px;
    width: 100%;
    padding: 16px 28px;
    min-height: 70px;
    background-color: rgba(var(--gray-bg), 1);
    border: 1px solid rgba(var(--heading-color), 0.08);
    border-radius: 5px;
}

.comment_form .input_control:focus {
    border-color: rgba(var(--header-color), 1);
}

.comment_respond {
    padding-top: 40px;
    border-top: 1px solid transparent;
    border-image: url("../images/comment-bottom-line.png") 100 / 1 / 0 stretch;
}

@media screen and (max-width: 992px) {
    .comments_list li {
        padding-left: 0px;
    }

    .comment_body .comment_author img {
        position: static;
        margin-bottom: 15px;
        display: block;
    }

    .comments_list .children {
        margin-left: 30px;
    }

    .comment_body {
        margin-bottom: 30px;
        padding-bottom: 0px;
    }

    .sidebar_area {
        margin-top: 60px;
    }
}

.post_share-menu {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
}

.post_share-menu .title {
    margin: 0px 30px 0px 0px;
    font-size: calc(var(--h5-font-size) + 2px);
    font-weight: 700;
}

.post_share-menu .social_share {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -12px;
}

.post_share-menu .social_share a {
    margin: 12px;
    color: rgb(var(--body-color));
    display: inline-block;
    line-height: 1;
}

.post_share-menu .social_share a i.fa-linkedin {
    color: rgb(0, 114, 172);
}

.post_share-menu .social_share a i.fa-pinterest {
    color: rgb(218, 0, 33);
}

.post_share-menu .social_share a i.fa-facebook {
    color: rgb(0, 114, 172);
}

.post_share-menu .social_share a i.fa-twitter {
    color: rgb(58, 196, 255);
}

.single_details {
    background-color: rgb(var(--gray-bg));
    padding: 60px 70px;
    border: 1px solid rgb(var(--gray-alt-bg));
    border-radius: 10px;
}

.single_meta {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px -20px;
    padding: 0px;
}

.single_details .single_meta {
    padding: 30px 0px 50px;
}

.single_meta li {
    margin: 8px 20px;
}

.single_meta li .icon {
    color: rgb(var(--heading-color));
    margin-right: 5px;
}

.single_meta li .text {
    color: rgb(var(--body-color));
}

.single_meta li.tags {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.single_meta li.tags a {
    background-color: rgb(var(--secondary-bg));
    border-radius: 3px;
    color: rgb(var(--dark-color));
    font-size: 12px;
    font-weight: 700;
    padding: 3px 15px;
    text-transform: uppercase;
}

.single_details .title {
    margin-bottom: 30px;
}

.single_details .description > * {
    margin-bottom: 24px;
}

.single_details .description > :last-child {
    margin-bottom: 0px;
}

.single_details .description ul {
    color: rgba(var(--heading-color), 1);
    padding-left: 20px;
}

.single_details .description ul li {
    padding: 4px 0px 4px 10px;
}

.widget-alt {
    margin-bottom: 30px;
    padding: 40px 35px;
    border: 1px solid rgba(var(--heading-color), 0.05);
}

.widget-alt .widget-search {
    padding: 0px;
    border: none;
}

.widget-alt .widget:last-child {
    margin-bottom: 0px;
}

.widget-alt .widget-title {
    font-family: var(--body-font-family);
    margin-bottom: 30px;
}

.widget-title .toggle_arrow {
    border: none;
    background: none;
    float: right;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transition: 0.3s;
    transform: rotate(-180deg);
}

.widget-title.collapsed .toggle_arrow {
    transform: rotate(0deg);
}

.info_list {
    list-style: none;
    margin: -12px 0px;
    padding: 0px;
}

.info_list li {
    margin: 12px 0px;
}

.info_list li strong {
    font-weight: 500;
    color: rgba(var(--heading-color), 1);
}

.widget_social {
    margin: -12px;
    display: flex;
    flex-wrap: wrap;
    line-height: 0.8em;
}

.widget_social a {
    margin: 12px;
    color: rgba(var(--primary-color), 1);
}

.widget_social a i.ri-dribbble-fill {
    color: rgb(222, 72, 130);
}

.widget_social a i.ri-behance-fill {
    color: rgb(22, 100, 242);
}

.widget_social a i.ri-linkedin-box-fill {
    color: rgb(0, 114, 172);
}

.widget_social a i.ri-pinterest-fill {
    color: rgb(218, 0, 33);
}

.widget_social a i.ri-facebook-circle-fill {
    color: rgb(0, 114, 172);
}

.widget_social a i.ri-youtube-fill {
    color: rgb(218, 0, 33);
}

.widget_social a i.ri-twitter-fill {
    color: rgb(58, 196, 255);
}

.search-form {
    position: relative;
}

.search-form input[type="text"] {
    width: 100%;
    background-color: rgba(var(--body-bg), 1);
    padding: 16px 50px 16px 30px;
    border: 1px solid rgb(var(--gray-alt-bg));
    border-radius: 7px;
    height: 60px;
    color: rgba(var(--heading-color), 1);
    margin: 0px;
}

.search-form button {
    border: none;
    background: none;
    color: rgba(var(--heading-color), 1);
    position: absolute;
    right: 20px;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    outline: none;
}

.post_box {
    margin-bottom: 50px;
}

.post_box:last-child {
    margin-bottom: 0px;
}

.post_box .thumb {
    margin: 0px;
    overflow: hidden;
    border-radius: 10px;
}

.post_box .content {
    position: relative;
    padding-top: 35px;
}

.post_box .content .author {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.post_box .content .author .pic {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    overflow: hidden;
}

.post_box .content .author strong {
    font-weight: 500;
    color: rgba(var(--heading-color), 1);
    margin-right: 5px;
}

.post_box .content .title {
    margin-bottom: 20px;
    font-size: calc(var(--h4-font-size) + 4px);
    line-height: calc(var(--h4-line-height) + 4px);
}

.post_box .content .title a {
    color: rgba(var(--heading-color), 1);
}

.post_box .content .title a:hover {
    text-decoration: underline;
}

.meta_list {
    display: flex;
    list-style: none;
    margin: 0px -30px;
    padding: 20px 0px 0px;
    flex-wrap: wrap;
}

.meta_list li {
    padding: 0px 30px;
}

.meta_list li a {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    color: rgba(var(--body-color), 1);
    font-size: calc(var(--body-font-size) - 1px);
}

.meta_list li a:hover {
    color: rgba(var(--secondary-color), 1);
}

.meta_list li .icon {
    margin-right: 10px;
    color: rgb(var(--heading-color));
}

.post_box .content .desc {
    padding-bottom: 30px;
    border-bottom: 1px solid rgb(var(--gray-alt-bg));
    font-size: calc(var(--body-font-size) + 2px);
    line-height: calc(var(--body-line-height) + 2px);
}

.meta_list li:last-child {
    margin-left: auto;
}

.widget {
    margin-bottom: 30px;
}

.sidebar_main .widget:last-child {
    margin-bottom: 0px;
}

.sidebar_main .widget {
    border-bottom: 1px solid transparent;
    padding-bottom: 30px;
    border-image: url("../images/bottom_border_line.png") 100 / 1 / 0 stretch;
}

.widget .widget-title {
    font-family: var(--body-font-family);
    position: relative;
    margin-bottom: 20px;
    font-weight: 700;
    color: rgb(var(--heading-color));
    transition: 0.3s;
}

.widget .widget-title.collapsed {
    margin-bottom: 0px;
}

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

.widget.widget_categories ul li {
    display: block;
    padding: 10px 0px;
}

.widget.widget_categories ul ul {
    margin-left: 30px;
}

.widget.widget_categories ul li:first-child {
    padding-top: 0px;
}

.widget.widget_categories ul li:last-child {
    padding-bottom: 0px;
}

.widget.widget_categories ul li a {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    color: rgba(var(--body-color), 1);
    font-weight: 400;
}

.widget-appointment_form .input_control {
    background-color: rgba(var(--body-bg), 1);
    margin-bottom: 20px;
}

.widget.widget_categories ul li {
    padding: 6px 0px;
}

.widget_categories ul li a {
    -webkit-box-align: center;
    align-items: center;
    border: 1px solid rgb(var(--gray-alt-bg));
    background-color: rgb(var(--gray-bg));
    display: block;
    padding: 10px 15px;
    border-radius: 7px;
}

.widget_categories ul li a:hover {
    color: rgb(var(--heading-color));
}

.widget_categories ul li a::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 10px;
    display: inline-block;
    background-color: rgb(var(--gray-alt-bg));
    margin-right: 10px;
    transition: 0.3s;
}

.widget_categories ul li:hover > a::before {
    background-color: rgb(var(--secondary-bg));
}

.popular_posts {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.popular_posts li {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.popular_posts li:last-child {
    margin-bottom: 0px;
}

.popular_posts li .post-pic {
    width: 90px;
    min-width: 90px;
    margin-right: 20px;
    overflow: hidden;
    height: 90px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 7px;
}

.popular_posts li .title a {
    color: rgba(var(--heading-color), 1);
}

.popular_posts li .title a:hover {
    color: rgb(var(--secondary-color));
}

.popular_posts li .title {
    margin-bottom: 8px;
}

.popular_posts li .post-meta-item {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    color: rgba(var(--body-color), 1);
    font-family: var(--body-font-family);
    font-size: calc(var(--body-font-size) - 1px);
}

.popular_posts li .post-meta-item .icon {
    line-height: 1em;
    margin-right: 10px;
    color: rgb(var(--heading-color));
}

.tagcloud {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.tagcloud a {
    border: 1px solid rgb(var(--gray-alt-bg));
    background-color: rgb(var(--gray-bg));
    color: rgba(var(--body-color), 1);
    font-size: calc(var(--body-font-size) - 2px);
    font-weight: 500;
    padding: 8px 20px;
    margin: 5px;
    border-radius: 7px;
    text-transform: capitalize;
}

.tagcloud a:hover {
    color: rgba(var(--dark-color), 1);
    background-color: rgb(var(--secondary-color));
    border-color: rgb(var(--secondary-color));
}

.widget.recent-comment ul li {
    margin-bottom: 15px;
}

.widget.recent-comment ul li:last-child {
    margin-bottom: 0px;
}

.widget.recent-comment ul li a {
    display: block;
    font-weight: 500;
    color: rgba(var(--heading-color), 1);
    margin-bottom: 8px;
}

.widget.recent-comment ul li a::before {
    content: "";
    margin-right: 10px;
    color: rgba(var(--secondary-color), 1);
    font-family: "Font Awesome 5 Pro" !important;
}

blockquote {
    padding: 30px;
    border-radius: 10px;
    background-color: rgba(var(--gray-bg), 1);
    font-size: 20px;
    position: relative;
    margin: 30px 0px;
}

blockquote::before {
    content: "";
    position: absolute;
    right: 16%;
    font-size: 100px;
    line-height: 50px;
    color: rgba(var(--primary-color), 0.3);
    font-family: icomoon !important;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
    margin: -4px;
    padding-top: 60px;
    width: 100%;
}

.nav-links .page-numbers {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin: 4px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 7px;
    border: 1px solid rgb(var(--gray-alt-bg));
    background-color: rgb(var(--gray-bg));
    color: rgb(var(--body-color));
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
    background-color: rgba(var(--secondary-bg), 1);
    color: rgba(var(--dark-color), 1);
    border-color: rgb(var(--secondary-bg));
}

.sidebar_main {
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgb(var(--gray-alt-bg));
    background-color: rgb(var(--gray-bg));
}

.post_box.grid_post {
    margin: 0px;
}

.post_box.grid_post .content .title {
    margin-top: 30px;
    margin-bottom: 25px;
    font-size: calc(var(--h4-font-size) - 2px);
    line-height: calc(var(--h4-line-height) - 2px);
}

.post_box.grid_post .content .desc {
    border: none;
}

.post_box.grid_post .content .author {
    margin: 0px;
    padding: 0px;
}

.post_box.grid_post .content .author .pic {
    width: 36px;
    height: 36px;
}

.login_box_area {
    background-color: rgb(var(--gray-bg));
    padding: 100px;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgb(var(--gray-alt-bg));
}

.login_bg {
    border-radius: 20px;
}

.normal_button {
    border: 1px solid rgb(var(--gray-alt-bg));
    background-color: rgba(var(--heading-color), 0.05);
    border-radius: 7px;
    padding: 10px 16px;
    width: 100%;
    font-size: 12px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.normal_button .icon {
    width: 24px;
    margin-right: 10px;
    display: inline-block;
}

.or-separetor {
    font-weight: 500;
    font-size: calc(var(--body-font-size) - 2px);
}

.text_button {
    color: rgb(var(--body-color));
    display: inline-block;
}

.text_button:hover {
    color: rgb(var(--heading-color));
}

.text_button .icon {
    margin-left: 10px;
}

.link {
    color: rgb(var(--primary-color));
}

.page_desc {
    font-size: calc(var(--body-font-size) + 2px);
    line-height: calc(var(--body-line-height) + 2px);
}

.load_more {
    font-weight: 600;
    color: rgb(var(--heading-color));
}

.dots_list {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.dots_list li {
    display: block;
    margin-bottom: 40px;
}

.dots_list li a {
    color: rgb(var(--body-color));
    font-size: calc(var(--body-font-size) + 2px);
    line-height: calc(var(--body-line-height) + 2px);
    font-weight: 500;
    display: flex;
}

.dots_list li a::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 10px;
    background-color: rgba(var(--gray-alt-bg), 1);
    margin-left: 12px;
    transition: 0.3s;
    margin-top: 5px;
}

.dots_list li.active > a::before,
.dots_list li:hover > a::before {
    background-color: rgb(190, 30, 45);
}

.dots_list li.active > a,
.dots_list li:hover > a {
    color: rgb(var(--heading-color));
}

.patner_slider .swiper-wrapper {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.single_item {
    background-color: rgba(var(--dark-color), 1);
    height: 100px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 5px;
    padding: 30px;
}

.section_small_title {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    position: relative;
}

.section_small_title .main_title {
    text-transform: uppercase;
    color: rgb(var(--secondary-color));
    font-size: 16px;
    margin: 0px;
    white-space: nowrap;
}

.dark-theme .section_small_title .main_title {
    color: rgb(var(--heading-color));
}

.section_small_title::before,
.section_small_title::after {
    content: "";
    width: calc(50% - 200px);
    display: block;
    height: 2px;
    border-bottom: 1px solid transparent;
    border-image: url("../images/bottom_border_line.png") 100 / 1 / 0 stretch;
}

.counter_box {
    position: relative;
    z-index: 1;
    padding: 50px 30px;
    text-align: center;
}

.border_box {
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-image: url("../images/right-line.png") 30 / 1 / 0 stretch;
}

.counter_box .number {
    font-size: clamp(2.8rem, 4.5vw, 4.5rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.counter_box .label {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 0px;
}

.team_box {
    text-align: center;
}

.team_box .team_image {
    margin-bottom: 30px;
}

.team_box .team_name {
    font-size: calc(var(--body-font-size) + 2px);
    line-height: calc(var(--body-line-height) + 2px);
    font-weight: 500;
    margin-bottom: 8px;
}

.team_box .team_position {
    font-size: calc(var(--body-font-size) - 1px);
    font-weight: 500;
}

.team_box .team_social {
    margin: -8px;
    padding-top: 20px;
}

.team_box .team_social a {
    display: inline-block;
    color: rgb(var(--heading-color));
    margin: 8px;
}

.team_box .team_social a:hover {
    color: rgb(var(--secondary-color));
}

.post_box.left_align {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post_box.left_align .thumb {
    min-width: 40%;
}

.post_box.left_align .content {
    padding: 15px 30px;
}

.post_box.left_align .content .title {
    margin-top: 0px;
    font-size: calc(var(--h5-font-size) - 2px);
    line-height: calc(var(--h5-line-height) - 2px);
    margin-bottom: 20px;
}

.post_box.left_align .content .desc {
    font-size: calc(var(--body-font-size) - 1px);
    line-height: calc(var(--body-line-height) - 1px);
    padding-bottom: 25px;
}

.post_box.left_align .content .author {
    font-size: calc(var(--body-font-size) - 1px);
    line-height: calc(var(--body-line-height) - 1px);
}

.sort_header_card {
    background-color: rgb(var(--gray-bg));
    border: 1px solid rgb(var(--gray-alt-bg));
    border-radius: 7px;
    padding: 12px 20px;
}

.dropdown {
    position: relative;
    z-index: 110;
    font-weight: 600;
    display: inline-block;
    border-radius: 5px;
    text-align: left;
    cursor: pointer;
}

.rtl .dropdown {
    text-align: right;
}

.dropdown a,
.dropdown a:hover {
    text-decoration: none;
    outline: none;
    display: inline-block;
    pointer-events: none;
}

.dropdown a,
.header-light .dropdown a:hover {
    color: rgb(51, 51, 51);
}

.dark-scheme .dropdown a,
.dark-scheme .header-light .dropdown a:hover {
    color: rgb(var(--heading-color));
}

.dropdown:not(.day_sort) .btn-selector {
    display: inline-block;
    padding: 15px 25px;
    min-width: 140px;
    border: 1px solid rgb(var(--gray-alt-bg));
    color: rgb(var(--body-color));
    border-radius: 5px;
}

.dropdown.day_sort .btn-selector {
    font-size: var(--h3-font-size);
    color: rgb(var(--primary-color));
    font-weight: 700;
}

.dropdown .btn-selector:hover {
    color: rgb(var(--heading-color));
}

.dropdown > a::after {
    font-size: 16px;
    content: "";
    position: relative;
    float: right;
    margin-left: 10px;
    font-family: "Font Awesome 5 Pro" !important;
}

.dropdown.day_sort .btn-selector::after {
    content: "";
    font-size: var(--h3-font-size);
}

.rtl .dropdown > a::after {
    float: left;
}

.dropdown ul,
.dropdown li {
    list-style: none;
    display: block;
    padding: 0px;
    margin: 0px;
}

.dropdown ul {
    z-index: 10;
    position: absolute;
    min-width: 100%;
    display: none;
    height: 0px;
    cursor: pointer;
    border-top: solid 1px rgb(var(--gray-alt-bg));
}

.dropdown li span {
    background: rgb(var(--gray-bg));
    display: block;
    padding: 8px 16px;
    border-top: none;
    width: 100%;
    font-weight: 400;
    white-space: nowrap;
}

.dropdown li span:hover {
    background-color: rgb(var(--gray-alt-bg));
    color: rgb(var(--heading-color));
}

.dropdown li.active {
    display: none;
}

.sort_actions {
    margin: -5px -10px;
}

.sort_actions .dropdown {
    margin: 5px 10px;
}

.dropdown.fullwidth,
.dropdown.fullwidth a,
.dropdown.fullwidth ul,
.dropdown.fullwidth li {
    width: 100%;
}

.icon_padlock {
    margin-right: 10px;
}

.rtl .icon_padlock {
    margin-right: 0px;
    margin-left: 10px;
}

.rank_table {
    margin: 50px 0px 0px;
    border-radius: 10px;
    border-spacing: 0px 15px;
    border-collapse: separate;
}

.rank_table td {
    vertical-align: middle;
    font-weight: 500;
}

.rank_table .no {
    color: rgb(var(--secondary-color));
    font-size: 10px;
    font-weight: 600;
    display: inline-block;
    margin-right: 10px;
}

.rank_table .photo {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    overflow: hidden;
    margin-right: 15px;
}

.rank_table .title {
    color: rgb(var(--heading-color));
    font-size: calc(var(--body-font-size) - 1px);
}

.rank_table .info {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.rank_table thead th {
    border: none;
    padding-bottom: 30px;
    font-weight: 500;
    font-size: calc(var(--body-font-size) + 2px);
    color: rgb(var(--heading-color));
}

.rank_table tbody tr td {
    border-bottom: 1px solid rgb(var(--gray-alt-bg));
    border-top: 1px solid rgb(var(--gray-alt-bg));
    background-color: rgb(var(--gray-bg));
    padding: 12px;
    vertical-align: middle;
    color: rgb(var(--body-color));
}

.rank_table tbody tr td:first-child {
    border-left: 1px solid rgb(var(--gray-alt-bg));
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.rank_table tbody tr td:last-child {
    border-right: 1px solid rgb(var(--gray-alt-bg));
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.rank_table .arrow {
    border: none;
    padding: 0px;
    margin: 0px 6px 0px 0px;
    background: none;
}

.wallet_area_box {
    padding: 70px 100px;
    border-radius: 10px;
    border: 1px solid rgb(var(--gray-alt-bg));
    background-color: rgb(var(--gray-bg));
}

.wallet_area_box .wallet_header .title {
    font-size: calc(var(--h5-font-size) + 2px);
    line-height: calc(var(--h5-line-height) + 2px);
}

.wallet_area_box .wallet_header .desc {
    font-size: calc(var(--body-font-size) - 1px);
}

.wallet_area_box .wallet_header {
    margin-bottom: 50px;
}

.wallet_list {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.wallet_list li {
    border: 1px solid rgb(var(--gray-alt-bg));
    border-radius: 7px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.wallet_list li .icon {
    display: inline-block;
    width: 56px;
    margin-right: 20px;
}

.wallet_list li .label {
    color: rgb(var(--heading-color));
    font-weight: 500;
}

.wallet_list li .hot {
    margin-left: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.wallet_list li .hot img {
    width: 15px;
    margin-left: 6px;
}

.wallet_list li:hover,
.wallet_list li.active {
    background-color: rgb(var(--body-bg));
}

.modal-backdrop {
    opacity: 0.9 !important;
}

.modal-dialog {
    height: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

[data-toggle="collapse"] {
    cursor: pointer;
}

.collapse.in {
    display: block;
}

.tooltip.top {
    padding: 0.4rem 0px;
}

.tooltip.top .tooltip-inner {
    background-color: rgb(var(--heading-color));
    color: rgb(var(--white-color));
    white-space: nowrap;
}

body:not(.dark-theme) .tooltip.top .tooltip-inner {
    color: rgb(var(--dark-color));
}

.tooltip.top .tooltip-arrow {
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.tooltip.top .tooltip-arrow::before {
    border-width: 0.4rem 0.4rem 0px;
    border-top-color: rgb(var(--heading-color));
}

.fade.in {
    opacity: 1;
}

.tab-content > .active {
    opacity: 1;
}

.notification_box {
    padding: 40px;
}

.tab_buttons {
    list-style: none;
    margin: -10px;
    padding: 0px 0px 40px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.tab_buttons li {
    margin: 10px;
}

.tab_buttons li a {
    color: rgb(var(--body-color));
    border: 1px solid rgb(var(--gray-alt-bg));
    padding: 15px 34px;
    display: block;
    border-radius: 5px;
    background-color: rgb(var(--gray-bg));
    font-weight: 700;
    font-size: calc(var(--body-font-size) - 1px);
}

.tab_buttons li.active a,
.tab_buttons li:hover a {
    color: rgb(var(--secondary-color));
    border-color: rgba(var(--secondary-color), 1);
}

.dark-theme .tab_buttons li.active a,
.dark-theme .tab_buttons li:hover a {
    color: rgb(var(--heading-color));
    border-color: rgba(var(--heading-color), 1);
}

.notify_box {
    border: 1px solid rgb(var(--gray-alt-bg));
    background-color: rgb(var(--gray-bg));
    border-radius: 7px;
    margin-bottom: 15px;
    padding: 20px 25px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.notify_box .thumb {
    position: relative;
    z-index: 1;
    line-height: 0;
    margin-right: 15px;
    min-width: 60px;
}

.notify_box .thumb .photo {
    display: inline-block;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 100px;
}

.notify_box .thumb .icon {
    position: absolute;
    right: 0px;
    top: -2px;
}

.notify_box .title {
    font-weight: 500;
    font-size: calc(var(--body-font-size) - 1px);
    line-height: calc(var(--body-line-height) - 1px);
    margin-bottom: 8px;
}

.notify_box .title a {
    color: rgb(var(--heading-color));
}

.notify_box:hover {
    background-color: rgb(var(--body-bg));
}

.header_text_slider {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: calc(100% - 30px);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    z-index: 3;
}

.header_area_3 {
    position: relative;
    z-index: 2;
}

.header_area_3::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: url("path_to_image.jpg") 0% 0% / cover rgba(0, 0, 0, 0.6);
    background-blend-mode: overlay;
}

.header_text_slider .header_text {
    text-align: center;
}

.header_text_slider .header_text .main_title {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 40px;
    font-size: 100px;
    color: rgb(var(--white-color));
}

.header_text_slider .header_text .main_title .icon {
    margin-left: 15px;
    width: 80px;
    line-height: 0;
}

.header_text_slider .header_text .sub_title {
    color: rgb(var(--white-color));
    font-weight: 500;
    font-size: var(--h5-font-size);
    line-height: var(--h5-line-height);
    margin-bottom: 50px;
}

.header_text_slider .header_text .sub_title .icon {
    margin: 0px 30px;
}

.header_area_3 .scroll_down {
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    color: rgb(var(--white-color));
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    overflow: hidden;
}

.header_area_3 .scroll_down .icon {
    width: 30px;
    height: 55px;
    margin-bottom: 30px;
    animation: 2s linear 0s infinite normal none running MoveUpDown;
}

@-webkit-keyframes MoveUpDown {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(10px);
    }
}

@keyframes MoveUpDown {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(10px);
    }
}

.play_button {
    display: inline-flex;
    font-weight: 600;
    color: rgb(var(--white-color));
    -webkit-box-align: center;
    align-items: center;
}

.play_button:hover {
    color: rgb(var(--white-color));
}

.play_button .icon {
    margin-left: 10px;
    background: linear-gradient(
            270deg,
            rgb(56, 131, 255) -9.83%,
            rgb(251, 3, 185) 116.67%
        )
        text;
    -webkit-text-fill-color: transparent;
}

.arrow_controls .control {
    border: none;
    width: 80px;
    height: 80px;
    background: none;
    color: rgba(var(--white-color), 0.4);
    transition: 0.3s;
    overflow: hidden;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin: 15px;
    z-index: 4;
}

.arrow_controls .control:hover {
    color: rgb(var(--white-color));
}

.arrow_controls .control .svg_element {
    width: 78px;
    height: 16px;
}

.arrow_controls {
    display: flex;
    margin: -15px;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.header_text_slider .arrow_controls {
    margin: 0px;
    width: 0px;
    height: 0px;
}

.header_text_slider .arrow_controls .arrow_left {
    position: absolute;
    left: 5vw;
    top: calc(50% - 70px);
}

.header_text_slider .arrow_controls .arrow_right {
    position: absolute;
    right: 5vw;
    top: calc(50% - 70px);
}

.priccess_box_3 {
    position: relative;
    z-index: 1;
}

.priccess_box_3::before {
    content: "";
    position: absolute;
    right: 0px;
    top: 40px;
    width: 170px;
    max-width: calc(100% - 120px);
    height: 10px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: right center;
    background-image: url("../images/long-dots-arrow-dark.png");
}

.dark-theme .priccess_box_3::before {
    background-image: url("../images/long-dots-arrow-light.png");
}

.priccess_box_3 .box_icon {
    background: linear-gradient(
        225.37deg,
        rgb(56, 131, 255) 1.57%,
        rgb(251, 3, 185) 97.83%
    );
    width: 80px;
    height: 80px;
    line-height: 80px;
    display: block;
    text-align: center;
    border-radius: 40px 40px 40px 5px;
    padding: 0px;
    margin-bottom: 30px;
}

.priccess_box_3 .box_icon img {
    width: 35px;
}

.priccess_box_3 .sirial {
    position: absolute;
    left: 80px;
    width: 25px;
    height: 25px;
    background-color: rgb(var(--secondary-bg));
    text-align: center;
    line-height: 25px;
    color: rgb(var(--dark-color));
    font-weight: 600;
    font-size: 10px;
    border-radius: 100px;
}

.priccess_box_3 .desc {
    font-size: calc(var(--body-font-size) - 1px);
    line-height: calc(var(--body-line-height) - 1px);
}

.priccess_box_3 .title {
    margin-bottom: 20px;
}

.live_bidding_2 {
    width: 100vw;
}

.bidding_card {
    background-color: rgb(var(--gray-bg));
    border: 1px solid rgb(var(--gary-alt-bg));
    border-radius: 10px;
    padding: 50px 50px 0px;
}

.bidding_card .card_header {
    display: flex;
}

.bidding_card .card_header .card_left {
    width: calc(100% - 100px);
}

.bidding_card .card_header .members {
    list-style: none;
    margin: 0px 16px 0px 0px;
    padding: 0px;
    display: flex;
}

.bidding_card .card_header .members li:not(:first-child) {
    margin-left: -20px;
}

.bidding_card .card_header .members li .photo {
    display: block;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 100px;
}

.bidding_card .card_header .members li {
    position: relative;
}

.bidding_card .card_header .members li .active {
    position: absolute;
    right: 10px;
    top: 0px;
    width: 10px;
    height: 10px;
    background-color: rgb(0, 204, 131);
    border-radius: 10px;
    border: 1px solid rgb(var(--gray-bg));
}

.bidding_card .card_header .members li .verifyy {
    position: absolute;
    right: 3px;
    bottom: 0px;
    width: 16px;
    line-height: 0;
}

.bidding_card .card_header .bids_members {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.bidding_card .card_header .card_left .card_title a {
    color: rgb(var(--heading-color));
}

.bidding_card .card_header .card_left .card_title a:hover {
    color: rgb(var(--primary-color));
}

.bidding_card .card_header .card_left .card_title {
    margin-bottom: 10px;
    font-size: calc(var(--h5-font-size) - 2px);
    line-height: calc(var(--h5-line-height) - 2px);
}

.bidding_card .card_header .card_left .card_footer {
    margin-top: 30px;
}

.bidding_card .card_image {
    margin-top: 40px;
    position: relative;
    display: block;
}

.bidding_card .card_love:focus,
.bidding_card .card_love {
    border: none;
    background: none;
    outline: none;
    color: rgb(var(--heading-color));
}

.bidding_card .card_love .icon {
    background: linear-gradient(
            83.48deg,
            rgb(56, 131, 255) 3.34%,
            rgb(251, 3, 185) 96.58%
        )
        text;
    -webkit-text-fill-color: transparent;
}

.bidding_card .card_header .card_right {
    width: 100px;
    display: flex;
    -webkit-box-align: end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin-bottom: -32px;
}

.bidding_card .card_header .card_right > * {
    margin-bottom: 32px;
}

.bidding_card .countdown {
    top: auto;
    bottom: 30px;
}

.bidding_card .price {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.single_image .countdown {
    top: 30px;
}

.space_list {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.space_list li:not(:last-child) {
    margin-bottom: 16px;
}

.space_list h6 {
    margin-bottom: 8px;
}

.icon_button_list {
    list-style: none;
    margin: -10px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
}

.icon_button_list > li {
    margin: 10px;
}

.icon_button_list > li > a {
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 48px;
    border: 1px solid rgb(var(--gray-alt-bg));
    border-radius: 3px;
    background-color: rgb(var(--gray-bg));
    color: rgb(var(--body-color));
}

.icon_button_list > li > a:hover {
    color: rgb(var(--heading-color));
}

.sm_title {
    font-size: calc(var(--body-font-size) - 1px);
    line-height: calc(var(--body-line-height) - 1px);
}

.item_desc .title {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    align-items: flex-start;
    border-bottom: 1px solid transparent;
    border-image: url("../images/left-border-line.png") 100 / 1 / 0 stretch;
}

.meta_icon {
    display: flex;
    list-style: none;
    margin: -10px;
    padding: 0px;
}

.meta_icon li {
    margin: 10px;
}

.meta_icon li .text {
    color: rgb(var(--heading-color));
    font-weight: 700;
    margin-right: 3px;
}

.meta_icon li .icon {
    background: linear-gradient(
            83.48deg,
            rgb(56, 131, 255) 3.34%,
            rgb(251, 3, 185) 96.58%
        )
        text;
    -webkit-text-fill-color: transparent;
}

.item-details .primary_button .icon,
.item-details .gr_button .icon {
    margin-right: 5px;
}

.single_card.upload_form {
    padding: 40px;
}

.upload_control .control_box {
    border: 1px solid rgb(var(--gray-alt-bg));
    width: 100%;
    min-height: 200px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 5px;
    padding: 45px;
    text-align: center;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    background-color: rgb(var(--body-bg));
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
}

.upload_control {
    width: 100%;
    display: block;
}

.upload_form .label {
    display: inline-block;
    color: rgb(var(--heading-color));
    margin-bottom: 15px;
}

.upload_control .control_box .add_icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    border: 1px solid rgb(var(--gray-alt-bg));
    line-height: 38px;
    text-align: center;
    border-radius: 100px;
    margin-top: 25px;
}

.box_control {
    width: 100%;
    display: block;
    background: rgb(var(--body-bg));
    border: 1px solid rgb(var(--gray-alt-bg));
    padding: 15px 22px;
    border-radius: 5px;
    min-height: 60px;
}

.modal-content.modal_card {
    background-color: rgb(12 12 12);
    padding: 60px;
    border-radius: 10px;
    border: 1px solid rgb(30 29 29);
}

.modal-content.modal_card .modal_header {
    position: relative;
}

.modal-content.modal_card .modal_header .close {
    border: none;
    background: none;
    margin: 0px;
    padding: 0px;
    color: rgb(var(--heading-color));
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 20px;
}

.input_control_group .label {
    color: rgb(var(--heading-color));
    margin-bottom: 15px;
}

.group_input {
    display: flex;
    white-space: nowrap;
    -webkit-box-align: center;
    align-items: center;
    margin: 6px;
}

.group_input .input_text {
    background-color: rgb(var(--gray-alt-bg));
    border-radius: 5px;
    height: 60px;
    padding: 0px 30px;
    line-height: 60px;
    margin: -6px;
    position: relative;
    z-index: 2;
    color: rgb(var(--heading-color));
}

.group_input .box_control {
    width: 100%;
}

.group_input .input_text .icon {
    margin-right: 8px;
    width: 15px;
    display: inline-block;
}

.modal-content.modal_card .modal_footer {
    position: relative;
    /* margin-top: 60px; */
}

.checkbox_input {
    position: relative;
}

.checkbox_input .label {
    position: relative;
    padding-left: 30px;
}

.checkbox_input .label::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 1px;
    width: 18px;
    height: 18px;
    background-color: rgb(var(--gray-alt-bg));
    border-radius: 2px;
}

.checkbox_input .label::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 1px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    background-color: rgb(var(--gray-alt-bg));
    color: rgb(0, 204, 131);
    border-radius: 2px;
    font-size: 12px;
    text-align: center;
    display: none;
    font-family: "Font Awesome 5 Pro" !important;
}

.checkbox_input input[type="checkbox"]:checked ~ .label::after {
    display: block;
}

.user_mini_cart {
    position: absolute;
    left: 0px;
    top: calc(100% + 35px);
    background-color: rgb(var(--gray-alt-bg));
    padding: 20px;
    border-radius: 8px;
    width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.user_cirlce:hover .user_mini_cart {
    opacity: 1;
    visibility: visible;
}

.user_mini_cart::after {
    content: "";
    width: 0px;
    height: 0px;
    top: -8px;
    left: 40px;
    position: absolute;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom: 8px solid rgba(var(--gray-alt-bg), 1);
    z-index: -1;
}

.user_mini_cart .title {
    margin-bottom: 5px;
}

.user_mini_cart .desc {
    font-size: 14px;
    margin-bottom: 15px;
}

.user_mini_cart .text_copy .text {
    width: 160px;
    overflow: hidden;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user_mini_cart .text_copy .copy_button {
    border: none;
    background-color: rgb(var(--secondary-color));
    padding: 5px 8px;
    font-weight: 700;
    color: rgb(var(--dark-color));
    border-radius: 3px;
    line-height: 1em;
    float: right;
    font-size: 10px;
    text-transform: uppercase;
}

.user_mini_cart .icon_list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.user_mini_cart .icon_list li:last-child {
    margin-bottom: 0px;
}

.user_mini_cart .icon_list li a {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    color: rgb(var(--heading-color));
}

.user_mini_cart .icon_list li a .icon {
    width: 30px;
    min-width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: rgba(var(--gray-bg), 0.4);
    display: block;
    font-size: 12px;
    text-align: center;
    border-radius: 100px;
    margin-right: 10px;
}

.dropdown_menu {
    position: relative;
    z-index: 9;
}

.dropdown_menu .dropdown_content {
    position: absolute;
    right: 0px;
    top: 100%;
    background-color: rgba(var(--gray-alt-bg), 1);
    border-radius: 5px;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.dropdown_menu:hover .dropdown_content {
    opacity: 1;
    visibility: visible;
}

.social-share-menu {
    margin: -7px;
}

.social-share-menu a {
    display: block;
    margin: 7px;
    opacity: 0.5;
}

.social-share-menu a:hover {
    opacity: 1;
}

.social-share-menu a i {
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 12px;
    display: block;
    text-align: center;
    background-color: rgb(var(--gray-bg));
    border-radius: 4px;
    color: rgb(255, 255, 255);
    transition: 0.3s;
}

.social-share-menu a .fa-facebook-f {
    background-color: rgb(66, 103, 178);
}

.social-share-menu a .fa-instagram {
    background: linear-gradient(
        226.76deg,
        rgb(245, 133, 41) -21.85%,
        rgb(254, 218, 119) 12.25%,
        rgb(221, 42, 123) 50.05%,
        rgb(129, 52, 175) 81.36%,
        rgb(81, 91, 212) 104.48%
    );
}

.social-share-menu a .fa-twitter {
    background-color: rgb(29, 161, 242);
}

.social-share-menu a .fa-pinterest-p {
    background-color: rgb(255, 0, 0);
}

.dropdown-menu-list {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.dropdown-menu-list li {
    display: block;
}

.dropdown-menu-list li a {
    opacity: 0.5;
    padding: 5px;
    display: block;
    font-weight: 500;
    color: rgb(var(--heading-color));
}

.dropdown-menu-list li:hover a {
    opacity: 1;
}

.header_area {
    position: relative;
    background: url("../images/bg-11.png");
    overflow-x: clip;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header_area_sectors {
    position: relative;
    background-image: linear-gradient(
            rgba(0, 0, 0, 0) 65%,
            rgb(12, 12, 12) 100%
        ),
        url("../images/Manfucuring-01.png") !important;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow-x: clip;
    min-height: 100vh;
}

.header_area_about {
    position: relative;
    background-image: linear-gradient(
            rgba(0, 0, 0, 0) 65%,
            rgb(12, 12, 12) 100%
        ),
        url("../images/About-01.png") !important;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow-x: clip;
    min-height: 100vh;
}

.header_video {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.header_overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.header_area {
    position: relative;
    background-image: linear-gradient(
            rgba(0, 0, 0, 0) 65%,
            rgb(12, 12, 12) 100%
        ),
        url("../images/bg-11.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow-x: clip;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header_area::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 12, 12, 0.67);
    z-index: -99999999;
}

.lang-btn {
    background: transparent;
    border-color: rgb(255, 255, 255);
}

.container_mouse {
    text-align: center;
    color: var(--color);
    font-weight: bold;
    text-transform: uppercase;
    padding-top: 2rem;
    cursor: pointer;
    float: left;
}

.container_mouse .mouse-btn {
    margin: 10px auto;
    width: 25px;
    height: 50px;
    border: 4px solid rgb(255, 255, 255);
    border-radius: 30px;
    display: flex;
}

.container_mouse .mouse-btn .mouse-scroll {
    display: block;
    width: 10px;
    height: 10px;
    background: linear-gradient(
        170deg,
        rgba(255, 255, 255, 0.92),
        rgb(203, 191, 191)
    );
    border-radius: 50%;
    margin: auto;
    animation: 1s ease-in-out 0s infinite alternate none running scrolling;
}

@keyframes scrolling {
    0% {
        opacity: 1;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(20px);
    }
}

.profile_card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.client_logo_area .single_item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.client_logo_area .single_item img:hover {
    filter: grayscale(0%);
}

section.video .col-lg-2 {
    flex: 0 0 auto;
    width: 20%;
}

.text-left {
    text-align: left;
}

.social-media.d-grid.text-left {
    gap: 21px;
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
}

.preloader .waviy {
    font-size: 30px;
    margin-top: 10px;
    -webkit-box-reflect: below -35px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
    font-weight: bold;
    font-family: "Josefin Sans", sans-serif;
}

.preloader .waviy span {
    animation: 1s ease 0s infinite normal none running waviy;
}

.preloader .waviy span:nth-child(2) {
    animation-delay: 0.2s;
}

.preloader .waviy span:nth-child(3) {
    animation-delay: 0.3s;
}

.preloader .waviy span:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes waviy {
    0%,
    40%,
    100% {
        transform: translateY(0px);
    }

    20% {
        transform: translateY(-20px);
    }
}

.specifications .single_card .card_image {
    padding: 15px 15px 0px 0px;
}

.specifications .single_card img {
    width: 100px;
    background: rgb(255, 255, 255);
    padding: 10px;
    object-fit: contain;
    border-radius: 15px;
}

.letter p {
    font-size: 18px;
}

.letter a {
    font-size: 18px;
}

section.letter .padding-global {
    background: rgb(12, 12, 12);
}

.card-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-btn {
    background-color: rgb(190, 30, 45);
    color: white;
    padding: 5px 15px 5px 43px;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    clip-path: polygon(0px 0px, 100% 0px, 100% 318%, 0px 3%);
}

.service-more-btn {
    color: rgb(190, 30, 45);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.service-more-btn i {
    margin-right: 5px;
}

.service-btn:hover,
.service-more-btn:hover {
    opacity: 0.8;
}

.text-right {
    text-align: right;
}

.suppliers img {
    border: 0px;
    max-width: 100%;
    height: auto;
    padding: 5px;
}

.services .card_price p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3.6em;
    line-height: 1.8em;
}

.services .title h3 {
    font-size: clamp(1.6rem, 2.2vw, 2rem);
}

.services .description p {
    font-family: "ZaridSlabLight" !important;
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1.7;
}

.read-more {
    color: rgb(0, 123, 255);
    cursor: pointer;
    text-decoration: underline;
}

@media only screen and (max-width: 900px) {
    .suppliers .col-md-2.col-sm-4.col-6.anim_top {
        width: 33.3% !important;
        margin-bottom: 90px !important;
    }
}

@media only screen and (max-width: 600px) {
    .header_text .title {
        font-size: clamp(1.6rem, 5vw, 2rem) !important;
        text-align: right;
    }

    .hero-btns {
        display: grid !important;
        float: right;
    }

    section.video .col-lg-2 {
        flex: 0 0 auto;
        width: 100%;
    }

    .suppliers .col-md-2.col-sm-4.col-6.anim_top {
        width: 50% !important;
        margin-bottom: 70px !important;
    }
}

.suppliers .col-md-2.col-sm-4.col-6.anim_top {
    width: 20%;
    margin-bottom: 110px;
}

.custom-btn {
    background: transparent;
    border: 2px solid rgb(190, 30, 45);
    border-radius: 50px;
    padding: 13px 30px;
    position: relative;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
}

.gray-custom-btn {
    border: 2px solid rgb(127, 128, 129);
}

.custom-btn:hover,
.lang-btn:hover {
    background: transparent;
    color: rgb(255, 255, 255);
    box-shadow: none;
}

.custom-btn i::before {
    content: "";
    position: absolute;
    background: rgb(12, 12, 12);
    z-index: 2147483647;
}

.nav_area.affix .custom-btn i::before {
    background: rgba(var(--gray-bg), 1);
}

.i-1::before {
    width: 11px;
    height: 6px;
    left: 65%;
    top: -4px;
}

.i-2::before,
.i-3::before {
    width: 2px;
    height: 6px;
    top: -4px;
}

.i-2::before {
    left: 23%;
}

.i-3::before {
    left: 20%;
}

.i-4::before {
    width: 5px;
    height: 6px;
    left: 98%;
    top: 25px;
}

.i-5::before {
    width: 10px;
    height: 4px;
    left: 92%;
    top: 3px;
}

.i-6::before {
    width: 2px;
    height: 6px;
    left: 71%;
    top: 55px;
}

.i-7::before {
    width: 6px;
    height: 6px;
    left: 50%;
    top: 55px;
}

.i-8::before {
    width: 10px;
    height: 6px;
    left: 19%;
    top: 55px;
}

.lang-btn {
    display: flex;
    align-items: center;
    padding: 7px 15px;
    border: none;
    border-radius: 50px;
    background-color: transparent;
}

.lang-btn i {
    margin-right: 5px;
    font-size: 18px;
}

.lang-btn select {
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
    cursor: pointer;
}

.lang-btn option {
    color: rgb(0, 0, 0);
}

.video-loader {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999999999999999999999999999999999999999999999999999999999999999;
    overflow: hidden;
}

.video-loader video {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    position: relative;
    z-index: 2147483647;
}

.hide-scroll {
    overflow: hidden;
}

.hero-btns .custom-btn {
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    padding: 14px 40px;
    margin-top: 20px;
}

.red-title {
    color: rgb(190, 30, 45);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-family: ZaridSlabLight !important;
}

.letter-title {
    font-family: ZaridSlabLight !important;
}

.letter .description {
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    line-height: 1.7;
    color: rgb(255, 255, 255);
    font-family: ZaridSlabLight !important;
}

.name-person {
    float: left;
    font-family: "Aref Ruqaa Ink" !important;
    font-size: 26px !important;
}

.centered-text {
    display: flex;
    align-items: center;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 60px;
    font-weight: bold;
    justify-content: space-between;
}

.centered-text .line {
    width: 100%;
    height: 3px;
    background-color: rgb(190, 30, 45);
}

.centered-text .text {
    font-family: Cairo, sans-serif;
    text-align: center;
    width: 100%;
    max-width: 355px;
}

.description {
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    color: rgb(255, 255, 255);
    line-height: 1.7;
}

.primary-color {
    color: rgb(190, 30, 45);
}

.statics {
    position: relative;
    background: url("../images/bg-12.png") center center / cover no-repeat;
}

.statics::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.34);
    z-index: 1;
}

.statics .container {
    position: relative;
    z-index: 2;
}

.counter_box {
    text-align: center;
    color: white;
}

.experience .image-text {
    position: relative;
    bottom: 48rem;
    max-width: 30%;
}

.experience .image-text h1 {
    position: relative;
    z-index: 9999;
}

.experience .background-text {
    background: rgb(190, 30, 45);
    position: relative;
    top: -60px;
    width: 100%;
    height: 40px;
}

.experience .description {
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    color: rgb(255, 255, 255);
    max-width: 70%;
    text-align: center;
    line-height: 1.6;
    position: relative;
    bottom: 22rem;
    line-height: normal;
    right: 25%;
}

.specifications .single_item {
    background-color: transparent;
    width: 160px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 5px;
}

.border-line {
    height: 10px;
    background: rgb(178, 29, 43);
    border-radius: 10px;
    margin-top: 25px;
    width: 85%;
    margin-right: auto;
    margin-bottom: 50px;
}

.products .profile_card .card_title {
    margin-bottom: 10px;
    font-size: clamp(1.4rem, 1.8vw, 1.7rem);
    text-align: right;
    margin-top: 15px;
}

.products .custom-btn {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.btn-primary {
    color: rgb(255, 255, 255);
    background-color: rgb(178, 29, 43);
    border-color: rgb(178, 29, 43);
    margin-right: auto;
    width: 100%;
    text-align: center;
}

.services {
    position: relative;
    background: url("../images/bg-12.png") center center / cover no-repeat;
}

.services::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.61);
}

.services .container {
    position: relative;
    z-index: 2;
}

.services .card-service img {
    border: 0px;
    max-width: 285px;
    height: auto;
}

.services .description {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1.7;
}

.client_logo_area_p .description {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1.7;
}

.contact .contact-card img {
    border: 0px;
    max-width: 150px;
    height: auto;
}

.contact .details h2 {
    font-size: clamp(1.4rem, 1.8vw, 1.7rem) !important;
}

.btn-primary.download {
    width: fit-content;
}

footer ul li,
footer ul li a,
footer .desc,
footer .footer_bottom {
    color: rgb(255, 255, 255) !important;
}

@media screen and (max-width: 1430px) {
    .nav_area {
        zoom: 0.8;
    }
}

/* About Page */

.header-about {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    width: auto;
    margin-bottom: 30px;
    color: #fff;
}

p.description-serv {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-family: "ZaridSlabLight" !important;
    line-height: 1.7;
    color: #dddddd;
}

img.img-serv {
    width: 110px;
}

.border-bottom-text {
    border: 5px solid #be1e2d;
    border-radius: 10px;
    margin-top: 33px;
    position: relative;
    right: 57px;
    z-index: -999999;
}

.header_area_about .header_text .title {
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    line-height: 1.15;
}

.header_area_about .border-bottom-text {
    width: 20%;
    margin-top: 0;
    right: 25px;
    border-width: 8px;
}

.about-hero .title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem) !important;
    margin: 0 !important;
}

.about-hero .desc {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1.7;
    font-family: "ZaridSlabLight" !important;
}

.about-hero .border-bottom-text {
    margin-top: 0;
    width: 5%;
    right: auto;
}

.target-sec .border-bottom-text {
    margin: 0;
    width: 5%;
    right: auto;
}

.targets li.list {
    list-style: none;
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    font-family: "ZaridSlabLight";
    color: #fff;
    gap: 10px;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

/* Sectors */
.text-hero {
    width: fit-content;
}

.text-hero .title {
    width: fit-content;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.15;
    background: linear-gradient(to left, rgb(251, 251, 251), rgb(255, 255, 255))
        text;
    -webkit-text-fill-color: transparent;
    position: relative;
    /* z-index: 9999999; */
    margin-bottom: 0 !important;
}

.text-hero .border-bottom-text {
    margin: 0;
    right: auto;
    width: 100%;
    border: 20px solid #be1e2d82;
    border-radius: 0;
    bottom: 58px;
}

.sectors-hero {
    background: #be1e2d82;
    padding: 35px;
}

.sectors-hero .desc {
    margin: 0;
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1.7;
    font-family: "ZaridSlabLight" !important;
}

.qoute-top {
    position: relative;
    bottom: 55px;
}

.qoute-bottom {
    position: relative;
    right: 90%;
    top: 48px;
}

.qoute-bottom img {
    rotate: 180deg;
}

p.prod-desc {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1.7;
    font-family: "ZaridSlabLight" !important;
    color: #fff;
}

.item-prod .prod-desc {
    font-size: 1rem;
}

.item-prod .prod-desc {
    font-size: 1rem;
    position: relative;
    bottom: 45px;
}

.services-productivity .icon {
    background: #ffffff;
    width: fit-content;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 50px;
    color: #be1e2d;
}

p.service-desc {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-family: "ZaridSlabLight" !important;
    line-height: 1.7;
    color: #fff;
}

.border-virtical {
    border-left: 7px solid #be1e2d;
    height: 100%;
    border-radius: 10px;
    width: 0;
    margin: auto;
}

.locations .details {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    font-family: "ZaridSlabLight" !important;
    line-height: 1.6;
}

.contact .details a {
    color: #fff !important;
}

.locations .details a:hover {
    color: #be1e2d;
}
