/*CSS Table Of Content Ends Here*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;display=swap");
:root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme: #1b1e63;
    --theme-2: #a6a182;
    --header: #000000;
    --base: #00813d;
    --text: #54595f;
    --text2: #bfbfbf;
    --border: #e6e6e6;
    --border2: #373737;
    --ratting: #f8bc26;
    --bg: #f8f8f8;
    --bg2: #0d0d0d;
    --color-gradient-1: linear-gradient(to left, #fd4a81, #ff5e73, #ff7269, #ff8662, #fc9860);
    ---color-gradient-2: linear-gradient(to left, #ff8662, #fc9860, #ff7269, #fd4a81, #ff5e73);
    ---box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.05);
}

.theme-btn {
    background-color: var(--theme);
    color: var(--white);
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 22px 15px;
    border-radius: 0;
    letter-spacing: 1.2px;
    line-height: 1;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    border: 2px solid #1b1e63;
}
.theme-btn::before {
    content: "";
    background-color: #fff;
    width: 0;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
    border-radius: 5px 5px 0 0;
}
.theme-btn::after {
    content: "";
    background-color: #fff;
    width: 0;
    height: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
    border-radius: 0 0 5px 5px;
}
.theme-btn i {
    margin-left: 5px;
}
.theme-btn:hover {
    color: #1b1e63;
    border: 2px solid #1b1e63;
}
.theme-btn:hover::before,
.theme-btn:hover::after {
    width: 100%;
}
.theme-btn.bg-transparent {
    background-color: transparent;
    border: 1px solid var(--theme);
    color: var(--header);
}
.theme-btn.bg-transparent::before {
    border-radius: 5px 5px 0 0;
    background-color: var(--theme);
}
.theme-btn.bg-transparent::after {
    border-radius: 0 0 5px 5px;
    background-color: var(--theme);
}
.theme-btn.bg-transparent:hover {
    color: var(--white);
}
.theme-btn.padding-style {
    padding: 24px 40px;
    line-height: 1.3;
}
@media (max-width: 767px) {
    .theme-btn.padding-style {
        padding: 18px 32px;
    }
}
@media (max-width: 575px) {
    .theme-btn.padding-style {
        padding: 16px 30px;
        font-size: 14px;
    }
}
.theme-btn.bg-white {
    background-color: var(--white);
    color: var(--header);
}
.theme-btn.bg-white::before,
.theme-btn.bg-white::after {
    background-color: var(--header);
}
.theme-btn.bg-white:hover {
    color: var(--white);
}
.theme-btn.radius-none {
    border-radius: 0;
}
.theme-btn.radius-none::before,
.theme-btn.radius-none::after {
    border-radius: 0;
}
.theme-btn.hover-white::before,
.theme-btn.hover-white::after {
    background-color: var(--white);
}
.theme-btn.hover-white:hover {
    color: var(--header);
}
@media (max-width: 767px) {
    .theme-btn {
        padding: 18px 32px;
    }
}
@media (max-width: 575px) {
    .theme-btn {
        padding: 16px 30px;
        font-size: 14px;
    }
}

.link-btn {
    letter-spacing: 1.2px;
    text-transform: capitalize;
    color: var(--header);
    font-weight: 600;
    display: inline-block;
    font-size: 14px;
}
.link-btn i {
    margin-left: 5px;
}
.link-btn:hover {
    color: var(--theme);
}
.link-btn.white-btn {
    color: var(--white);
}
.link-btn.white-btn:hover {
    color: var(--theme);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 28px;
    color: var(--text);
    background-color: var(--white);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    border: none;
    background-color: transparent;
    padding: 0;
}

input:focus {
    color: var(--white);
    outline: none;
}

input {
    color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    margin: 0px;
    padding: 0;
    color: var(--header);
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

h1 {
    font-size: 68px;
    font-weight: 700;
    line-height: 118%;
}

h2 {
    font-size: 38px;
    line-height: 125%;
    font-weight: 700;
}
@media (max-width: 1199px) {
    h2 {
        font-size: 42px;
    }
}
@media (max-width: 767px) {
    h2 {
        font-size: 36px;
    }
}
@media (max-width: 575px) {
    h2 {
        font-size: 32px;
    }
}

h3 {
    font-size: 21px;
    font-weight: 600;
    line-height: 133%;
}
@media (max-width: 575px) {
    h3 {
        font-size: 20px;
    }
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

h5 {
    font-size: 20px;
    font-weight: 600;
}

h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 145%;
}

a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    color: var(--header);
    transition: all 0.4s ease-in-out;
}

p {
    margin: 0px;
    transition: all 0.4s ease-in-out;
}

.preloader {
    align-items: center;
    cursor: default;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
}
.preloader .animation-preloader {
    z-index: 1000;
}
.preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--theme);
    height: 9em;
    margin: 0 auto 3.5em auto;
    width: 9em;
}
@media (max-width: 767px) {
    .preloader .animation-preloader .spinner {
        width: 7.5em;
        height: 7.5em;
        margin: 0 auto 1.5em auto;
    }
}
.preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}
.preloader .loader .row {
    height: 100%;
}
.preloader .loader .loader-section {
    padding: 0px;
}
.preloader .loader .loader-section .bg {
    background-color: #fff;
    height: 100%;
    left: 0;
    width: 100%;
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
    width: 0;
    transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.search-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background-color: rgba(255, 255, 255, 0.9);
}
.search-wrap .search-inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.search-wrap .search-cell {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}
.search-wrap .search-field-holder {
    width: 50%;
    margin: auto;
    position: relative;
    animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search-wrap .search-field-holder {
        width: 70%;
    }
}
@media (max-width: 575px) {
    .search-wrap .search-field-holder {
        width: 80%;
    }
}
.search-wrap .main-search-input {
    width: 100%;
    height: 70px;
    border: 0;
    padding: 0 50px;
    text-transform: capitalize;
    background: transparent;
    font-size: 25px;
    color: var(--header);
    border-bottom: 2px solid var(--header);
    text-align: center;
    letter-spacing: 2px;
}

@media (max-width: 575px) {
    .search-wrap .main-search-input {
        height: 50px;
        padding: 0 0;
        line-height: 50px;
        font-size: 18px;
    }
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
    background-color: var(--header);
}

input.main-search-input::placeholder {
    color: var(--header);
    opacity: 1;
    font-size: 25px;
}

@media (max-width: 575px) {
    input.main-search-input::placeholder {
        font-size: 18px;
    }
}
.search-close {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 30px;
    color: var(--theme);
    cursor: pointer;
}

.scroll-up {
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    position: fixed;
    right: 25px;
    bottom: 35px;
    height: 50px;
    width: 50px;
    transition: all 0.4s ease-in-out;
}

.scroll-up::after {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: "\f176";
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    font-size: 18px;
    color: #ed2a30;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.scroll-up svg path {
    fill: none;
}

.scroll-up svg.scroll-circle path {
    stroke: #ed2a30;
    stroke-width: 4px;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
}

.scroll-up.active-scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}
@media (max-width: 767px) {
    .mouse-cursor {
        display: none;
    }
}

.cursor-inner {
    width: 6px;
    height: 6px;
    z-index: 10000001;
    background-color: var(--theme);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -35px;
    margin-top: -35px;
    width: 70px;
    height: 70px;
    background-color: var(--theme);
    opacity: 0.3;
}

.cursor-outer {
    margin-left: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--theme);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.5;
    -webkit-transition: all 0.08s ease-out;
    -o-transition: all 0.08s ease-out;
    transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
    opacity: 0;
}

.section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
    margin-top: -6px;
}
@media (max-width: 767px) {
    .section-title {
        margin-bottom: 0;
    }
}
.section-title h6 {
    color: var(--theme);
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 18px;
}
.section-title h2 {
    text-transform: capitalize !important;
}
.section-title span {
    text-transform: capitalize !important;
}
.section-title h3 {
    font-size: 28px;
    font-weight: 700;
}
@media (max-width: 767px) {
    .section-title br {
        display: none;
    }
}

.section-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .section-title-area {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.center {
    text-align: center;
    margin: 0 auto;
}

.section-bg {
    background-color: var(--bg) !important;
}

.section-bg-2 {
    background-color: var(--bg2);
}

.section-padding {
    padding: 120px 0;
}
@media (max-width: 1199px) {
    .section-padding {
        padding: 100px 0;
    }
}
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
}

@-webkit-keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}
@keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}
@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rounded {
    50% {
        transform: rotate(15deg);
    }
}
@keyframes rounded-2 {
    50% {
        transform: rotate(5deg);
    }
}
@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.animation__rotate {
    -webkit-animation: rotate 40s linear infinite;
    animation: rotate 40s linear infinite;
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}
@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}
@-webkit-keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}
@keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}
@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes tpswing {
    0% {
        -webkit-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
@keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
@-webkit-keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes loaderpulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}
.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}
@keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}
@keyframes top-image-bounce {
    0% {
        transform: translateX(-8px);
    }
    50% {
        transform: translateX(12px);
    }
    100% {
        transform: translateX(-8px);
    }
}
@keyframes top-image-bounce-2 {
    0% {
        transform: translatey(-8px);
    }
    50% {
        transform: translatey(12px);
    }
    100% {
        transform: translatey(-8px);
    }
}
@keyframes toggle {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes moveCursor1 {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}
@keyframes moveCursor1 {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}
@-webkit-keyframes moveCursor2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}
@keyframes moveCursor2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}
.splt-txt .whitespace {
    width: 8px;
}
.splt-txt.animated .char {
    -webkit-animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(30ms * var(--char-index));
    animation-delay: calc(30ms * var(--char-index));
}

.header-top-section {
    position: relative;
    z-index: 9;
}
@media (max-width: 991px) {
    .header-top-section {
        display: none;
    }
}
.header-top-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--theme);
    left: 60%;
    clip-path: polygon(2% 0%, 100% 0%, 100% 100%, 0 100%);
    z-index: -1;
}
@media (max-width: 1199px) {
    .header-top-section::before {
        left: 50%;
    }
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
}
.header-top-wrapper .contact-list {
    display: flex;
    align-items: center;
}
.header-top-wrapper .contact-list li i {
    color: var(--theme);
    margin-right: 10px;
}
.header-top-wrapper .contact-list li a {
    color: var(--text);
}
.header-top-wrapper .contact-list li .link {
    color: var(--white);
}
.header-top-wrapper .top-right {
    display: flex;
    align-items: center;
    gap: 80px;
}
.header-top-wrapper .top-right .social-icon {
    gap: 25px;
}
.header-top-wrapper .top-right .social-icon span {
    color: var(--white);
}
.header-top-wrapper .top-right .social-icon i {
    color: var(--white);
    transition: all 0.4s ease-in-out;
}
.header-top-wrapper .top-right .social-icon i:hover {
    color: #fff;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
@media (max-width: 1199px) {
    .header-main {
        padding: 15px 0px;
    }
}
.header-main .main-menu ul {
    margin-bottom: 0;
}
.header-main .main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-inline-end: 30px;
    padding: 30px 0;
}
.header-main .main-menu ul li:last-child {
    margin-inline-end: 0;
}
.header-main .main-menu ul li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--header);
    text-align: left;
    position: relative;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
    font-size: 15px;
    font-weight: 600;
    margin-left: 5px;
}
.header-main .main-menu ul li a:hover {
    color: var(--theme) !important;
}
.header-main .main-menu ul li .sub-menu {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    min-width: 240px;
    background: var(--white);
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    color: var(--header);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    transform: translateY(10px);
    transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .sub-menu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}
.header-main .main-menu ul li .sub-menu li a {
    position: relative;
    z-index: 11;
    font-size: 16px;
    font-weight: 500;
    color: var(--header);
    padding: 0 25px;
    padding-bottom: 11px;
    padding-top: 11px;
    width: 100%;
    border-bottom: 1px solid #eeeeee;
}
.header-main .main-menu ul li .sub-menu li:last-child a {
    border: none;
}
.header-main .main-menu ul li .sub-menu li .sub-menu {
    inset-inline-start: 100%;
    top: 0;
    visibility: hidden;
    opacity: 0;
}
.header-main .main-menu ul li .sub-menu li:hover > a {
    background: var(--theme);
    color: var(--white) !important;
}
.header-main .main-menu ul li .sub-menu li:hover > a::after {
    color: var(--theme);
}
.header-main .main-menu ul li .sub-menu li:hover > .sub-menu {
    -webkit-transform: translateY(1);
    -moz-transform: translateY(1);
    -ms-transform: translateY(1);
    -o-transform: translateY(1);
    transform: translateY(1);
    visibility: visible;
    opacity: 1;
}
.header-main .main-menu ul li .sub-menu li.has-dropdown > a::after {
    position: absolute;
    top: 50%;
    inset-inline-end: 25px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
    width: 1100px;
    padding: 30px 30px 10px 30px;
    opacity: 0;
    left: -250px;
    visibility: hidden;
    padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu {
    position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb {
    position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    margin-top: 20px;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 12px 15px;
    color: var(--white) !important;
    width: initial;
    font-size: 14px;
    text-align: center;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    color: var(--white) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb img {
    width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 16px;
}
.header-main .main-menu ul li:hover > a {
    color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
    color: var(--theme);
}
.header-main .main-menu ul li:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.header-1 {
    position: relative;
    z-index: 9;
    background-color: #fff;
}
.header-1 .mega-menu-wrapper .header-main .header-left {
    display: flex;
    align-items: center;
    gap: 90px;
}
.header-1 .mega-menu-wrapper .header-main .header-right {
    gap: 40px;
}
@media (max-width: 1399px) {
    .header-1 .mega-menu-wrapper .header-main .header-right {
        gap: 20px;
    }
}
.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart {
    position: relative;
}
@media (max-width: 1199px) {
    .header-1 .mega-menu-wrapper .header-main .header-right .menu-cart {
        display: none;
    }
}
.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart .cart-box {
    background: var(--white) none repeat scroll 0 0;
    box-shadow: 0 0 7px 0.5px rgba(0, 0, 0, 0.15);
    padding: 5px 20px 0px;
    position: absolute;
    left: -70px;
    top: 150%;
    transform: rotateX(90deg);
    transform-origin: center top 0;
    transition: all 0.5s ease 0s;
    visibility: hidden;
    width: 340px;
    z-index: 9999;
}
@media (max-width: 1399px) {
    .header-1 .mega-menu-wrapper .header-main .header-right .menu-cart .cart-box {
        left: -260px;
    }
}
.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart .cart-box ul li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    gap: 15px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}
.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart .cart-box ul li a {
    padding: 0;
    position: relative;
    font-size: 16px;
    text-transform: capitalize;
}
.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart .cart-box ul li a::after {
    position: absolute;
    content: "\f00d";
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    top: 15px;
    right: -88px;
    color: var(--white);
    font-size: 10px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 30px;
    background-color: var(--theme);
    text-align: center;
}
.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart .cart-box ul li span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--header);
}
.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart .cart-box ul li img {
    width: 90px;
}
.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart .cart-box .shopping-items {
    margin-top: 10px;
}
.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart .cart-box .shopping-items span {
    font-size: 16px;
    font-weight: 600;
    color: var(--header);
    text-transform: capitalize;
}
.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart .cart-box .cart-button {
    margin-top: 20px;
}
.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart .cart-box .cart-button .theme-btn {
    padding: 16px 28px;
    font-size: 14px;
}
.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart .cart-icon {
    position: relative;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    background-color: var(--bg);
    display: inline-block;
    border-radius: 50%;
}
.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart .cart-icon::before {
    position: absolute;
    top: -7px;
    right: -8px;
    content: "1";
    width: 18px;
    line-height: 18px;
    height: 18px;
    border-radius: 18px;
    background-color: var(--theme);
    color: var(--white);
    font-size: 12px;
    text-align: center;
    font-weight: 500;
}
.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart .cart-icon i {
    color: var(--header);
}
.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart:hover .cart-box {
    transform: rotateX(0deg);
    visibility: visible;
}
@media (max-width: 1399px) {
    .header-1 .mega-menu-wrapper .header-main .header-right .header-button {
        display: none;
    }
}
.header-1.header-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
.header-1.header-2 .container-fluid {
    padding: 0 80px;
}
@media (max-width: 1399px) {
    .header-1.header-2 .container-fluid {
        padding: 0 20px;
    }
}
.header-1.header-2 .mega-menu-wrapper .header-main .main-menu ul li a {
    color: var(--white);
}
.header-1.header-2 .mega-menu-wrapper .header-main .main-menu ul li:hover a {
    color: var(--theme);
}
.header-1.header-2 .mega-menu-wrapper .header-main .main-menu ul li .sub-menu li a {
    color: var(--header);
}
.header-1.header-2 .mega-menu-wrapper .header-main .main-menu ul li .sub-menu li:hover a {
    color: var(--header);
}
.header-1.header-2 .mega-menu-wrapper .header-main .header-right {
    gap: 40px;
}
@media (max-width: 1399px) {
    .header-1.header-2 .mega-menu-wrapper .header-main .header-right .header-button {
        display: none;
    }
}
.header-1.header-2 .mega-menu-wrapper .header-right {
    gap: 50px;
}
.header-1.header-2 .mega-menu-wrapper .header-right .icon-items {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 1399px) {
    .header-1.header-2 .mega-menu-wrapper .header-right .icon-items {
        display: none;
    }
}
.header-1.header-2 .mega-menu-wrapper .header-right .icon-items .icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background-color: var(--theme);
    border-radius: 5px;
    color: var(--white);
}
.header-1.header-2 .mega-menu-wrapper .header-right .icon-items .content p {
    color: var(--white);
    margin-bottom: 5px;
}
.header-1.header-2 .mega-menu-wrapper .header-right .icon-items .content h4 a {
    color: var(--white);
}
.header-1.header-2 .mega-menu-wrapper .header-right .search-icon {
    color: var(--white);
    border-left: 1px solid var(--text);
    border-right: 1px solid var(--text);
    padding: 0 20px;
}

.header-3 {
    background-color: var(--bg);
    position: relative;
    z-index: 9;
}
.header-3 .container-fluid {
    padding: 0 80px;
}
@media (max-width: 1399px) {
    .header-3 .container-fluid {
        padding: 0 20px;
    }
}
.header-3 .mega-menu-wrapper .header-main {
    padding: 0;
}
.header-3 .mega-menu-wrapper .header-main .header-right {
    gap: 40px;
}
@media (max-width: 1399px) {
    .header-3 .mega-menu-wrapper .header-main .header-right .header-button {
        display: none;
    }
}
.header-3 .mega-menu-wrapper .header-right {
    gap: 50px;
}
.header-3 .mega-menu-wrapper .header-right .icon-items {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 1399px) {
    .header-3 .mega-menu-wrapper .header-right .icon-items {
        display: none;
    }
}
.header-3 .mega-menu-wrapper .header-right .icon-items .icon {
    color: var(--theme);
    font-size: 32px;
}
.header-3 .mega-menu-wrapper .header-right .icon-items .content p {
    color: var(--text);
    margin-bottom: 5px;
}
.header-3 .mega-menu-wrapper .header-right .icon-items .content h4 a {
    color: var(--text);
}
.header-3 .mega-menu-wrapper .header-right .search-icon {
    color: var(--white);
    padding: 30px;
    background-color: var(--theme);
}

.header-4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}
@media (max-width: 1199px) {
    .header-4 {
        background-color: var(--white);
    }
}
.header-4 .mega-menu-wrapper .header-main {
    padding: 10px 40px;
    background-color: var(--white);
    box-shadow: var(---box-shadow);
}
@media (max-width: 1199px) {
    .header-4 .mega-menu-wrapper .header-main {
        box-shadow: none;
        padding: 20px 0;
    }
}
.header-4 .mega-menu-wrapper .header-main .header-left {
    display: flex;
    align-items: center;
    gap: 90px;
}
.header-4 .mega-menu-wrapper .header-main .header-right {
    gap: 40px;
}
.header-4 .mega-menu-wrapper .header-main .header-right .search-icon {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    padding: 0 20px;
}

.header-5 {
    position: relative;
    z-index: 9;
}
@media (max-width: 1399px) {
    .header-5 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
        left: -350px;
    }
}
.header-5 .mega-menu-wrapper .header-main .main-menu ul li a {
    color: var(--white);
}
.header-5 .mega-menu-wrapper .header-main .main-menu ul li:hover a {
    color: var(--theme);
}
.header-5 .mega-menu-wrapper .header-main .main-menu ul li .sub-menu li a {
    color: var(--header);
}
.header-5 .mega-menu-wrapper .header-main .main-menu ul li .sub-menu li:hover a {
    color: var(--header);
}
.header-5 .mega-menu-wrapper .header-main .header-right {
    gap: 20px;
}
.header-5 .mega-menu-wrapper .header-main .header-right .search-icon {
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    background-color: var(--bg2);
    color: var(--white);
}
.header-5 .mega-menu-wrapper .header-main .header-right .sidebar__toggle {
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    background-color: var(--bg2);
}
@media (max-width: 1199px) {
    .header-5 .mega-menu-wrapper .header-main .header-right .sidebar__toggle {
        display: block !important;
    }
}
.header-5 .mega-menu-wrapper .header-main .header-right .header-button .theme-btn {
    border-radius: 0;
}
.header-5 .mega-menu-wrapper .header-main .header-right .header-button::before,
.header-5 .mega-menu-wrapper .header-main .header-right .header-button::after {
    border-radius: 0;
}
@media (max-width: 1399px) {
    .header-5 .mega-menu-wrapper .header-main .header-right .header-button {
        display: none;
    }
}

.sidebar__toggle {
    cursor: pointer;
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.9s;
    background-color: var(--white);
    box-shadow: var(---box-shadow);
    -webkit-transition: all 0.9s;
    transition: all 0.9s;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.sticky.header-2 {
    background-color: #060606;
}
.sticky .header-main .main-menu ul li {
    padding: 20px 0;
}
.sticky.header-4 .mega-menu-wrapper .header-main {
    box-shadow: none;
}
.sticky.header-5 {
    background-color: #060606;
}
.sticky.header-5 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
    left: -450px;
}
.sticky.header-5 .mega-menu-wrapper .header-main .header-right .search-icon {
    display: none;
}
.sticky.header-5 .mega-menu-wrapper .header-main .header-right .sidebar__toggle {
    display: none;
}
.sticky.header-5 .mega-menu-wrapper .header-main .header-right .header-button {
    display: none;
}

.offcanvas__info {
    background: var(--white) none repeat scroll 0 0;
    border-left: 2px solid var(--theme);
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    -webkit-transform: translateX(calc(100% + 80px));
    -moz-transform: translateX(calc(100% + 80px));
    -ms-transform: translateX(calc(100% + 80px));
    -o-transform: translateX(calc(100% + 80px));
    transform: translateX(calc(100% + 80px));
    -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    z-index: 99999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
    display: none;
}

.offcanvas__info.info-open {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.offcanvas__wrapper {
    position: relative;
    height: 100%;
    padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
    color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    position: relative;
    z-index: 9;
    cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
    color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
    margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
    margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
    color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
    width: 100%;
    padding: 16px 40px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
    margin-top: 30px;
    gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 16px;
    display: block;
    background: transparent;
    color: var(--header);
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #151515;
    z-index: 900;
    top: 0;
    opacity: 0;
    visibility: hidden;
    right: 0;
}

.offcanvas__overlay.overlay-open {
    opacity: 0.8;
    visibility: visible;
}

@media (max-width: 450px) {
    .offcanvas__info {
        width: 300px;
    }
}
@media (max-width: 575px) {
    .offcanvas__wrapper {
        padding: 20px;
    }
}
.breadcrumb-wrapper {
    position: relative;
    overflow: hidden;
}
.breadcrumb-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.285) 0%, rgba(0, 0, 0, 0.47) 100%);
}
.breadcrumb-wrapper .page-heading {
    position: relative;
    z-index: 9;
    margin-top: 55px;
}
@media (max-width: 1199px) {
    .breadcrumb-wrapper .page-heading {
        margin-top: 35px;
    }
}
@media (max-width: 991px) {
    .breadcrumb-wrapper .page-heading {
        text-align: center;
    }
}
.breadcrumb-wrapper .page-heading h1 {
    color: var(--white);
    font-size: 68px;
    position: relative;
    z-index: 9;
    line-height: 1.3;
}
@media (max-width: 991px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 50px;
    }
}
@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 42px;
    }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}
@media (max-width: 991px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items {
        justify-content: center;
    }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    text-transform: capitalize;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
    color: var(--white);
    transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
    color: var(--theme);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    color: var(--white);
}
@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items li i {
        font-size: 16px;
    }
}

.error-items .error-image {
    margin-bottom: 50px;
}
.error-items .error-image img {
    width: 100%;
    height: 100%;
}

.mean-container a.meanmenu-reveal {
    display: none;
}

.mean-container .mean-nav {
    background: none;
    margin-top: 0;
}

.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
}

.mean-container .mean-nav > ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}
.mean-container .mean-nav > ul .homemenu {
    position: relative;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb {
    position: relative;
    width: 280px;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 10px 30px;
    color: var(--white) !important;
    width: initial;
    font-size: 14px;
    text-align: center;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    color: var(--white) !important;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb img {
    width: 100%;
}
.mean-container .mean-nav > ul .homemenu .homemenu-content .homemenu-title {
    margin-top: 15px;
    display: inline-block;
    font-size: 16px;
}

.mean-container a.meanmenu-reveal {
    display: none !important;
}

.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: var(--header);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}
.mean-container .mean-nav ul li a:hover {
    color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
    border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
    color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 5px;
    padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
    display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
    display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
    border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
    height: 200px;
    width: 100%;
    padding: 0;
    border-top: 0;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .mean-container .mean-nav ul li.menu-thumb {
        display: none;
    }
}

.hero-1 {
    position: relative;
    position: relative;
    padding: 215px 0 90px;
}
@media (max-width: 1199px) {
    .hero-1 {
        margin-bottom: -20px;
        padding: 160px 0 90px;
    }
}
@media (max-width: 991px) {
    .hero-1 {
        margin-bottom: -40px;
        padding: 130px 0 90px;
    }
}
@media (max-width: 767px) {
    .hero-1 {
        margin-bottom: -50px;
        padding: 100px 0 90px;
    }
}
@media (max-width: 575px) {
    .hero-1 {
        padding: 70px 0 90px;
    }
}
.hero-1 .star-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 3%;
}
.hero-1 .hero-image-2 {
    position: absolute;
    top: 55.5%;
    left: 17%;
}
@media (max-width: 1199px) {
    .hero-1 .hero-image-2 {
        left: 4%;
    }
}
@media (max-width: 991px) {
    .hero-1 .hero-image-2 {
        top: 40%;
        left: 45%;
        max-width: 300px;
        z-index: 9;
    }
    .hero-1 .hero-image-2 img {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 767px) {
    .hero-1 .hero-image-2 {
        top: 45%;
        left: 45%;
        max-width: 230px;
    }
}
@media (max-width: 575px) {
    .hero-1 .hero-image-2 {
        top: 39.5%;
        left: 42%;
        max-width: 200px;
    }
}
.hero-1 .hero-image-2 img {
    border-radius: 5px;
}
.hero-1 .hero-image-2::before {
    content: "";
    width: 100%;
    height: 109%;
    position: absolute;
    right: 0px;
    right: -15px;
    top: -15px;
    border: 1px solid var(--theme);
    border-radius: 5px;
    z-index: -1;
}
.hero-1 .hero-image-2::after {
    position: absolute;
    right: -12%;
    top: -12%;
    width: 22px;
    height: 22px;
    border-radius: 5px;
    content: "";
    background-color: var(--theme);
    z-index: 2;
}
.hero-1::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
    height: 60%;
    z-index: -1;
}
.hero-1 .hero-content {
    position: relative;
    z-index: 9;
    margin-top: 50px;
}
@media (max-width: 991px) {
    .hero-1 .hero-content {
        margin-bottom: 70px;
        margin-top: 0;
    }
}
@media (max-width: 767px) {
    .hero-1 .hero-content {
        margin-bottom: 60px;
    }
}
@media (max-width: 575px) {
    .hero-1 .hero-content {
        text-align: center;
        margin-top: 0;
        margin-bottom: 50px;
    }
}
.hero-1 .hero-content h1 {
    margin-bottom: 20px;
}
@media (max-width: 1199px) {
    .hero-1 .hero-content h1 {
        font-size: 48px;
    }
}
@media (max-width: 767px) {
    .hero-1 .hero-content h1 {
        font-size: 42px;
    }
}
@media (max-width: 575px) {
    .hero-1 .hero-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
}
.hero-1 .hero-content h1 span {
    margin-left: 80px;
}
@media (max-width: 1199px) {
    .hero-1 .hero-content h1 span {
        margin-left: 0;
    }
}
.hero-1 .hero-content p {
    max-width: 300px;
    margin: 0 auto;
    text-align: right;
}
@media (max-width: 1199px) {
    .hero-1 .hero-content p {
        text-align: left;
        max-width: initial;
    }
}
@media (max-width: 575px) {
    .hero-1 .hero-content p {
        text-align: center;
    }
}
.hero-1 .hero-image {
    max-width: 660px;
    height: 750px;
    margin-left: -120px;
    position: relative;
    border-radius: 5px;
}
@media (max-width: 991px) {
    .hero-1 .hero-image {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .hero-1 .hero-image {
        height: 500px;
    }
}
@media (max-width: 575px) {
    .hero-1 .hero-image {
        height: 400px;
    }
}
.hero-1 .hero-image::before {
    content: "";
    width: 100%;
    height: 104%;
    position: absolute;
    right: 0px;
    left: -20px;
    top: -15px;
    border: 1px solid var(--theme);
    border-radius: 5px;
    z-index: -1;
}
@media (max-width: 575px) {
    .hero-1 .hero-image::before {
        left: 0;
        height: 100%;
        top: 0;
    }
}
.hero-1 .hero-image .client-items {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: var(---box-shadow);
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.hero-1 .hero-image .client-items .client-content h3 {
    font-size: 28px;
    font-weight: 700;
}

.hero-2 {
    padding-top: 150px;
    padding-bottom: 110px;
    position: relative;
    z-index: 9;
}
@media (max-width: 767px) {
    .hero-2 {
        padding-top: 130px;
    }
}
@media (max-width: 575px) {
    .hero-2 {
        padding-top: 100px;
    }
}
.hero-2 .line {
    position: absolute;
    bottom: 20%;
    left: 5%;
    z-index: 2;
}
@media (max-width: 1600px) {
    .hero-2 .line {
        display: none;
    }
}
.hero-2 .star-shape {
    position: absolute;
    left: 3%;
    top: 20%;
}
.hero-2 .star-shape-2 {
    position: absolute;
    right: 10%;
    bottom: 20%;
}
.hero-2 .text {
    position: absolute;
    bottom: 12%;
    left: 72%;
    transform: translateX(-50%);
}
.hero-2 .text::before {
    position: absolute;
    top: 28px;
    left: -150px;
    content: "";
    width: 106px;
    height: 1px;
    background-color: var(--theme);
}
@media (max-width: 991px) {
    .hero-2 .text::before {
        display: none;
    }
}
@media (max-width: 575px) {
    .hero-2 .text {
        left: 50%;
        bottom: 7%;
        text-align: center;
    }
}
.hero-2 .text p {
    color: var(--white);
}
.hero-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url(../img/hero/overlay-shape.jpg);
    width: 50%;
    z-index: -1;
}
.hero-2::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    width: 100%;
    z-index: -1;
    left: 48%;
    background-color: var(--black);
    opacity: 0.7;
}
.hero-2 .hero-content {
    position: relative;
    z-index: 9;
}
@media (max-width: 575px) {
    .hero-2 .hero-content {
        text-align: center;
        margin: 0 auto;
    }
}
.hero-2 .hero-content h1 {
    font-size: 100px;
    color: var(--theme);
    margin-bottom: 20px;
}
@media (max-width: 1399px) {
    .hero-2 .hero-content h1 {
        font-size: 90px;
    }
}
@media (max-width: 1199px) {
    .hero-2 .hero-content h1 {
        font-size: 80px;
    }
}
@media (max-width: 991px) {
    .hero-2 .hero-content h1 {
        font-size: 62px;
    }
}
@media (max-width: 767px) {
    .hero-2 .hero-content h1 {
        font-size: 48px;
    }
}
@media (max-width: 575px) {
    .hero-2 .hero-content h1 {
        font-size: 38px;
    }
}
.hero-2 .hero-content h1 span {
    font-weight: 300;
}
.hero-2 .hero-content p {
    color: rgba(255, 255, 255, 0.7019607843);
    margin-bottom: 40px;
}
@media (max-width: 575px) {
    .hero-2 .hero-content p {
        margin-bottom: 20px;
    }
}
.hero-2 .hero-content .social-icon {
    gap: 20px;
    margin-top: 50px;
    position: relative;
}
@media (max-width: 575px) {
    .hero-2 .hero-content .social-icon {
        justify-content: center;
        margin-top: 30px;
        margin-bottom: 75px;
    }
}
.hero-2 .hero-content .social-icon a {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 5px;
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    transition: all 0.4s ease-in-out;
    border: 1px solid var(--text);
}
.hero-2 .hero-content .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid transparent;
}

.hero-3 {
    padding: 155px 0;
}
@media (max-width: 991px) {
    .hero-3 {
        padding-top: 130px;
    }
}
@media (max-width: 767px) {
    .hero-3 {
        padding-top: 100px;
    }
}
@media (max-width: 575px) {
    .hero-3 {
        padding-top: 80px;
    }
}
@media (max-width: 575px) {
    .hero-3 .hero-content {
        text-align: center;
        margin: 0 auto;
    }
}
.hero-3 .hero-content span {
    font-size: 18px;
    font-weight: 600;
    color: var(--header);
}
.hero-3 .hero-content h1 {
    margin-bottom: 20px;
}
@media (max-width: 1399px) {
    .hero-3 .hero-content h1 {
        font-size: 56px;
    }
}
@media (max-width: 1199px) {
    .hero-3 .hero-content h1 {
        font-size: 48px;
    }
}
@media (max-width: 991px) {
    .hero-3 .hero-content h1 {
        font-size: 52px;
    }
}
@media (max-width: 767px) {
    .hero-3 .hero-content h1 {
        font-size: 42px;
    }
}
@media (max-width: 575px) {
    .hero-3 .hero-content h1 {
        font-size: 32px;
    }
}
.hero-3 .hero-content p {
    color: var(--black);
}
.hero-3 .hero-content .hero-button {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}
@media (max-width: 1199px) {
    .hero-3 .hero-content .hero-button {
        gap: 25px;
    }
}
@media (max-width: 767px) {
    .hero-3 .hero-content .hero-button {
        margin-top: 30px;
        gap: 30px;
    }
}
@media (max-width: 575px) {
    .hero-3 .hero-content .hero-button {
        margin-top: 25px;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
}
.hero-3 .hero-content .hero-button .icon-items {
    display: flex;
    align-items: center;
    gap: 15px;
}
.hero-3 .hero-content .hero-button .icon-items .icon {
    width: 55px;
    height: 55px;
    background-color: transparent;
    text-align: center;
    line-height: 45px;
    color: var(--theme);
    border: 5px solid rgba(166, 161, 130, 0.28);
    border-radius: 50%;
}
.hero-3 .hero-content .hero-button .icon-items .content {
    text-align: left !important;
}
.hero-3 .hero-content .hero-button .icon-items .content p {
    font-weight: 500;
    color: var(--black);
    margin-bottom: 5px;
}
.hero-3 .hero-slider-items {
    margin-right: -90%;
    transform: rotate(-45deg);
}
@media (max-width: 1199px) {
    .hero-3 .hero-slider-items {
        transform: rotate(0);
    }
}
@media (max-width: 991px) {
    .hero-3 .hero-slider-items {
        margin-right: 0;
    }
}
.hero-3 .hero-slider-items .hero-image {
    max-width: 410px;
}
.hero-3 .hero-slider-items .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 767px) {
    .hero-3 .hero-slider-items .hero-image {
        max-width: 590px;
        height: 500px;
    }
}
@media (max-width: 575px) {
    .hero-3 .hero-slider-items .hero-image {
        max-width: 450px;
        height: 420px;
    }
}

.hero-4 {
    position: relative;
    z-index: 9;
}
.hero-4 .hero-content {
    margin-top: 160px;
    margin-bottom: 90px;
    padding: 80px 60px;
    background-color: var(--white);
    position: relative;
    z-index: 9;
}
@media (max-width: 991px) {
    .hero-4 .hero-content {
        margin-bottom: 0;
    }
}
@media (max-width: 767px) {
    .hero-4 .hero-content {
        padding: 50px 40px;
    }
}
@media (max-width: 575px) {
    .hero-4 .hero-content {
        padding: 40px 30px;
        text-align: center;
    }
}
.hero-4 .hero-content::before {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    content: "";
    background-color: var(--theme);
    opacity: 0.4;
}
.hero-4 .hero-content span {
    font-size: 18px;
    font-weight: 600;
    color: var(--theme);
    margin-bottom: 10px;
    display: inline-block;
}
.hero-4 .hero-content h1 {
    margin-bottom: 20px;
}
@media (max-width: 1199px) {
    .hero-4 .hero-content h1 {
        font-size: 56px;
    }
}
@media (max-width: 1399px) {
    .hero-4 .hero-content h1 {
        font-size: 60px;
    }
}
@media (max-width: 991px) {
    .hero-4 .hero-content h1 {
        font-size: 50px;
    }
}
@media (max-width: 767px) {
    .hero-4 .hero-content h1 {
        font-size: 42px;
    }
}
@media (max-width: 575px) {
    .hero-4 .hero-content h1 {
        font-size: 32px;
    }
}
.hero-4 .hero-content p {
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .hero-4 .hero-content p {
        margin-bottom: 30px;
    }
}
@media (max-width: 575px) {
    .hero-4 .hero-content p {
        margin-bottom: 20px;
    }
}
.hero-4 .hero-image {
    width: 1050px;
    height: 650px;
    border-radius: 5px;
    margin-left: -80px;
    position: relative;
}
@media (max-width: 991px) {
    .hero-4 .hero-image {
        width: initial;
        max-width: 1050px;
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .hero-4 .hero-image {
        height: 500px;
    }
}
@media (max-width: 575px) {
    .hero-4 .hero-image {
        height: 430px;
    }
}
.hero-4 .hero-image::before {
    position: absolute;
    bottom: -7%;
    right: 0;
    width: 800px;
    height: 90px;
    content: "";
    background-color: var(--theme);
    z-index: -1;
}
@media (max-width: 1199px) {
    .hero-4 .hero-image::before {
        display: none;
    }
}

.hero-5 {
    overflow: hidden;
    margin-top: 160px;
}
.hero-5 .hero-wrapper {
    margin-left: -350px;
    margin-right: -350px;
    overflow: hidden;
}
@media (max-width: 1199px) {
    .hero-5 .hero-wrapper {
        margin-left: 0;
        margin-right: 0;
    }
}
.hero-5 .hero-wrapper .hero-items {
    overflow: hidden;
}
.hero-5 .hero-wrapper .hero-items .hero-image img {
    width: 100%;
    height: 100%;
}
.hero-5 .hero-wrapper .hero-items .hero-content {
    padding: 60px 80px;
    background-color: var(--bg2);
    max-width: 1070px;
    margin: 0 auto;
    margin-top: -110px;
    position: relative;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    border-left: 4px solid var(--theme);
}
@media (max-width: 1199px) {
    .hero-5 .hero-wrapper .hero-items .hero-content {
        margin-top: 0;
    }
}
@media (max-width: 767px) {
    .hero-5 .hero-wrapper .hero-items .hero-content {
        padding: 50px 40px;
    }
}
@media (max-width: 575px) {
    .hero-5 .hero-wrapper .hero-items .hero-content {
        padding: 40px 30px;
    }
}
.hero-5 .hero-wrapper .hero-items .hero-content h1 {
    color: var(--white);
    margin-bottom: 20px;
}
@media (max-width: 1399px) {
    .hero-5 .hero-wrapper .hero-items .hero-content h1 {
        font-size: 60px;
    }
}
@media (max-width: 1199px) {
    .hero-5 .hero-wrapper .hero-items .hero-content h1 {
        font-size: 52px;
    }
}
@media (max-width: 991px) {
    .hero-5 .hero-wrapper .hero-items .hero-content h1 {
        font-size: 48px;
    }
}
@media (max-width: 767px) {
    .hero-5 .hero-wrapper .hero-items .hero-content h1 {
        font-size: 42px;
    }
}
@media (max-width: 575px) {
    .hero-5 .hero-wrapper .hero-items .hero-content h1 {
        font-size: 32px;
    }
}
.hero-5 .hero-wrapper .hero-items .hero-content h1 span {
    font-weight: 300;
}
.hero-5 .hero-wrapper .hero-items .hero-content p {
    color: var(--white);
}
.hero-5 .hero-wrapper .swiper-slide.swiper-slide-active .hero-items .hero-content {
    visibility: visible;
    opacity: 1;
}

.work-process-items {
    margin-top: 30px;
    padding: 40px;
    background-color: var(--white);
    box-shadow: var(---box-shadow);
    position: relative;
    z-index: 9;
    border-radius: 5px;
}
@media (max-width: 575px) {
    .work-process-items {
        padding: 30px;
    }
}
.work-process-items::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/process-bg.jpg);
    z-index: -1;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.work-process-items::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--black);
    z-index: -1;
    opacity: 0.7;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.work-process-items h6 {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--black);
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 48px;
    opacity: 0.2;
    margin-bottom: 40px;
    display: inline-block;
    line-height: 1;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
    .work-process-items h6 {
        margin-bottom: 20px;
    }
}
.work-process-items h3 {
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 20px;
}
.work-process-items .icon {
    margin-top: 25px;
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 9;
    font-size: 48px;
    color: var(--black);
}
@media (max-width: 575px) {
    .work-process-items .icon {
        margin-top: 15px;
    }
}
.work-process-items:hover h6 {
    -webkit-text-stroke-color: var(--white);
    opacity: 1;
}
.work-process-items:hover h3 {
    border-bottom: 2px solid rgba(230, 230, 230, 0.5);
}
.work-process-items:hover h3,
.work-process-items:hover p {
    color: var(--white);
}
.work-process-items:hover .icon {
    color: var(--white);
}
.work-process-items:hover::before,
.work-process-items:hover::after {
    opacity: 0.7;
    visibility: visible;
}
.work-process-items.active h6 {
    -webkit-text-stroke-color: var(--white);
    opacity: 1;
}
.work-process-items.active h3 {
    border-bottom: 2px solid rgba(230, 230, 230, 0.5);
}
.work-process-items.active h3,
.work-process-items.active p {
    color: var(--white);
}
.work-process-items.active .icon {
    color: var(--white);
}
.work-process-items.active::before,
.work-process-items.active::after {
    opacity: 0.7;
    visibility: visible;
}

.achievement-section {
    position: relative;
}
.achievement-section .shape-left {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.1;
}

.achievement-wrapper {
    position: relative;
    z-index: 9;
}
.achievement-wrapper .achievement-content .about-button {
    margin-top: 40px;
}
.achievement-wrapper .counter-area {
    margin-left: 40px;
}
@media (max-width: 1199px) {
    .achievement-wrapper .counter-area {
        margin-left: 0;
    }
}
.achievement-wrapper .counter-area .counter-item {
    background-color: var(--white);
    text-align: center;
    padding: 30px;
}
.achievement-wrapper .counter-area .counter-item .icon {
    color: var(--theme);
    font-size: 48px;
}
.achievement-wrapper .counter-area .counter-item .content {
    margin-top: 20px;
}
.achievement-wrapper .counter-area .counter-item .content h2 {
    font-size: 48px;
    color: var(--header);
    margin-bottom: 5px;
}
@media (max-width: 767px) {
    .achievement-wrapper .counter-area .counter-item .content h2 {
        font-size: 36px;
    }
}
@media (max-width: 575px) {
    .achievement-wrapper .counter-area .counter-item .content h2 {
        font-size: 32px;
    }
}

.cta-video-wrapper {
    padding: 230px 0;
    margin: 0 120px;
    position: relative;
}
@media (max-width: 1399px) {
    .cta-video-wrapper {
        padding: 210px 0;
    }
}
@media (max-width: 1199px) {
    .cta-video-wrapper {
        margin: 0;
        padding: 190px 0;
    }
}
@media (max-width: 991px) {
    .cta-video-wrapper {
        padding: 150px 0;
    }
}
@media (max-width: 767px) {
    .cta-video-wrapper {
        padding: 100px 0;
    }
}
@media (max-width: 575px) {
    .cta-video-wrapper {
        padding: 80px 0;
    }
}
.cta-video-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
.cta-video-wrapper .video-box {
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 9;
}
.cta-video-wrapper .video-box .video-btn {
    width: 115px;
    height: 115px;
    line-height: 115px;
    text-align: center;
    background-color: var(--theme);
    display: inline-block;
    border-radius: 50%;
    font-size: 28px;
    color: var(--white);
}
@media (max-width: 767px) {
    .cta-video-wrapper .video-box .video-btn {
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 20px;
    }
}
@media (max-width: 575px) {
    .cta-video-wrapper .video-box .video-btn {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .cta-video-wrapper .video-box .ripple::before,
    .cta-video-wrapper .video-box .ripple::after {
        width: 80px;
        height: 80px;
    }
}
@media (max-width: 575px) {
    .cta-video-wrapper .video-box .ripple::before,
    .cta-video-wrapper .video-box .ripple::after {
        width: 70px;
        height: 70px;
    }
}

.work-process-wrapper .section-title h2 {
    font-size: 68px;
}
@media (max-width: 1399px) {
    .work-process-wrapper .section-title h2 {
        font-size: 62px;
    }
}
@media (max-width: 1199px) {
    .work-process-wrapper .section-title h2 {
        font-size: 58px;
    }
}
@media (max-width: 991px) {
    .work-process-wrapper .section-title h2 {
        font-size: 48px;
    }
}
@media (max-width: 767px) {
    .work-process-wrapper .section-title h2 {
        font-size: 42px;
    }
}
@media (max-width: 575px) {
    .work-process-wrapper .section-title h2 {
        font-size: 32px;
    }
}
.work-process-wrapper .section-title h2 span {
    font-size: 68px;
    font-weight: 700;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white);
    -webkit-text-fill-color: transparent;
}
@media (max-width: 1399px) {
    .work-process-wrapper .section-title h2 span {
        font-size: 62px;
    }
}
@media (max-width: 1199px) {
    .work-process-wrapper .section-title h2 span {
        font-size: 58px;
    }
}
@media (max-width: 991px) {
    .work-process-wrapper .section-title h2 span {
        font-size: 48px;
    }
}
@media (max-width: 767px) {
    .work-process-wrapper .section-title h2 span {
        font-size: 42px;
    }
}
@media (max-width: 575px) {
    .work-process-wrapper .section-title h2 span {
        font-size: 32px;
    }
}
.work-process-wrapper .work-process-items-2 {
    margin-top: 30px;
}
.work-process-wrapper .work-process-items-2 .work-process-content {
    position: relative;
}
.work-process-wrapper .work-process-items-2 .work-process-content h3 {
    color: var(--white);
    border-bottom: 1px solid var(--text);
    padding-bottom: 30px;
}
.work-process-wrapper .work-process-items-2 .work-process-content .number {
    font-weight: 700;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white);
    -webkit-text-fill-color: transparent;
    font-size: 68px;
    opacity: 0.2;
    position: absolute;
    top: -30px;
    right: 0;
}
@media (max-width: 575px) {
    .work-process-wrapper .work-process-items-2 .work-process-content .number {
        font-size: 48px;
        top: -20px;
    }
}
.work-process-wrapper .work-process-items-2 .work-process-content p {
    padding-top: 30px;
    color: var(--white);
}
@media (max-width: 575px) {
    .work-process-wrapper .work-process-items-2 .work-process-content p {
        padding-top: 20px;
    }
}
.work-process-wrapper.style-2 .section-title h2 {
    color: var(--header) !important;
}
.work-process-wrapper.style-2 .work-process-items-2 {
    margin-top: 30px;
}
.work-process-wrapper.style-2 .work-process-items-2 .work-process-content {
    position: relative;
}
.work-process-wrapper.style-2 .work-process-items-2 .work-process-content h3 {
    color: var(--header);
}
.work-process-wrapper.style-2 .work-process-items-2 .work-process-content .number {
    -webkit-text-stroke-color: var(--black);
}
.work-process-wrapper.style-2 .work-process-items-2 .work-process-content p {
    color: var(--text);
}

.counter-wrapper {
    margin-top: -30px;
}
@media (max-width: 1199px) {
    .counter-wrapper {
        margin-top: -80px;
    }
}
@media (max-width: 991px) {
    .counter-wrapper {
        margin-top: -100px;
    }
}
.counter-wrapper .counter-box-items {
    padding: 30px 20px;
    text-align: center;
    background-color: var(--white);
    box-shadow: var(---box-shadow);
}
@media (max-width: 575px) {
    .counter-wrapper .counter-box-items {
        padding: 20px;
    }
}

.counter-items {
    display: flex;
    align-items: center;
    gap: 40px;
}
@media (max-width: 767px) {
    .counter-items {
        display: inline;
        text-align: center;
        margin: 0 auto;
    }
}
.counter-items .icon {
    width: 80px;
    line-height: 90px;
    height: 80px;
    background-color: var(--theme);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 38px;
}
@media (max-width: 767px) {
    .counter-items .icon {
        text-align: center;
        margin: 0 auto;
        width: 70px;
        height: 70px;
        line-height: 80px;
    }
}
@media (max-width: 575px) {
    .counter-items .icon {
        width: 60px;
        height: 60px;
        line-height: 75px;
    }
}
.counter-items .content {
    border-left: 1px solid var(--black);
    padding-left: 20px;
}
@media (max-width: 767px) {
    .counter-items .content {
        padding-left: 0;
        margin-top: 30px;
        border: none;
    }
}
.counter-items .content p {
    color: var(--black);
}

.counter-wrapper-2 {
    padding: 60px 50px;
}
.counter-wrapper-2 .counter-items-2 {
    display: flex;
    align-items: center;
    gap: 40px;
}
.counter-wrapper-2 .counter-items-2 .icon {
    font-size: 60px;
    color: var(--theme);
}
.counter-wrapper-2 .counter-items-2 .content {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 25px;
}
.counter-wrapper-2 .counter-items-2 .content h2 {
    color: var(--white);
    margin-bottom: 5px;
}
.counter-wrapper-2 .counter-items-2 .content p {
    color: var(--white);
}

.about-wrapper {
    margin-top: 45px;
}
.about-wrapper .about-left-items {
    position: relative;
}
.about-wrapper .about-left-items .dot-shape {
    position: absolute;
    bottom: 55px;
    right: 20px;
}
.about-wrapper .about-left-items .about-counter-items {
    background-color: var(--theme);
    padding: 50px 45px;
    border-radius: 5px;
    height: 100%;
}
@media (max-width: 575px) {
    .about-wrapper .about-left-items .about-counter-items {
        padding: 30px;
        text-align: center;
    }
}
.about-wrapper .about-left-items .about-counter-items h2 {
    color: var(--white);
}
.about-wrapper .about-left-items .about-counter-items h5 {
    color: var(--white);
    margin-top: 15px;
}
.about-wrapper .about-left-items .about-image-1 img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.about-wrapper .about-left-items .about-image-2 {
    max-width: 480px;
    height: 300px;
    border-radius: 5px;
    position: relative;
}
@media (max-width: 991px) {
    .about-wrapper .about-left-items .about-image-2 {
        max-width: 800px;
    }
}
.about-wrapper .about-left-items .about-image-2 .client-items {
    padding: 12px 20px;
    background-color: var(--white);
    box-shadow: var(---box-shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    top: 40px;
    right: -90px;
    border-radius: 5px;
}
.about-wrapper .about-left-items .about-image-2 .client-items .clinet-img {
    width: 63px;
    height: 63px;
    border-radius: 50%;
}
@media (max-width: 1199px) {
    .about-wrapper .about-left-items .about-image-2 .client-items {
        right: -30px;
    }
}
@media (max-width: 991px) {
    .about-wrapper .about-left-items .about-image-2 .client-items {
        right: 0;
    }
}
.about-wrapper .about-content {
    margin-left: 40px;
}
@media (max-width: 991px) {
    .about-wrapper .about-content {
        margin-left: 0;
    }
}
@media (max-width: 1199px) {
    .about-wrapper .about-content br {
        display: none;
    }
}
.about-wrapper .about-content .about-button {
    margin-top: 40px;
}
@media (max-width: 767px) {
    .about-wrapper .about-content .about-button {
        margin-top: 30px;
    }
}
@media (max-width: 575px) {
    .about-wrapper .about-content .about-button {
        margin-top: 20px;
    }
}
.about-wrapper .about-content.style-3 .icon-items {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}
@media (max-width: 575px) {
    .about-wrapper .about-content.style-3 .icon-items {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.about-wrapper .about-content.style-3 .icon-items .icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    background-color: var(--bg2);
    text-align: center;
}
.about-wrapper .about-content.style-3 .icon-items .content h3 {
    color: var(--white);
    margin-bottom: 5px;
}
.about-wrapper .about-content.style-3 .icon-items .content p {
    color: var(--white);
}
.about-wrapper .about-image-2 img {
    width: 100%;
    height: 100%;
}

.about-wrapper-2 {
    position: relative;
    z-index: 9;
}
.about-wrapper-2 .about-content p {
    color: rgba(255, 255, 255, 0.7019607843);
}
.about-wrapper-2 .about-content .progress-wrap {
    margin-top: 30px;
    margin-bottom: 55px;
}
.about-wrapper-2 .about-content .progress-wrap .pro-items:not(:last-child) {
    margin-bottom: 30px;
}
.about-wrapper-2 .about-content .progress-wrap .pro-items .pro-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.about-wrapper-2 .about-content .progress-wrap .pro-items .pro-head .title {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2.4px;
}
.about-wrapper-2 .about-content .progress-wrap .pro-items .pro-head .point {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2.4px;
}
.about-wrapper-2 .about-content .progress-wrap .pro-items .progress {
    background: var(--bg);
    justify-content: flex-start;
    border-radius: 100px;
    align-items: center;
    position: relative;
    display: flex;
    height: 10px;
    width: 100%;
    border-radius: 0;
}
.about-wrapper-2 .about-content .progress-wrap .pro-items .progress-value {
    animation: load 3s normal forwards;
    border-radius: 0;
    background: var(--theme);
    height: 10px;
    width: 0;
    border-radius: 0;
}
.about-wrapper-2 .about-content .progress-wrap .pro-items .style-two {
    animation: load2 3s normal forwards;
}
@keyframes load {
    0% {
        width: 0;
    }
    100% {
        width: 75%;
    }
}
@keyframes load2 {
    0% {
        width: 0;
    }
    100% {
        width: 55%;
    }
}
.about-wrapper-2 .about-image {
    max-width: 510px;
    height: 539px;
    border-radius: 5px;
    margin-left: 100px;
    position: relative;
    margin-bottom: 10px;
}
@media (max-width: 1199px) {
    .about-wrapper-2 .about-image {
        margin-left: 55px;
    }
}
@media (max-width: 991px) {
    .about-wrapper-2 .about-image {
        margin-left: 0;
        max-width: 730px;
    }
}
@media (max-width: 767px) {
    .about-wrapper-2 .about-image {
        margin-bottom: 0;
    }
}
@media (max-width: 767px) {
    .about-wrapper-2 .about-image {
        height: 500px;
    }
}
@media (max-width: 575px) {
    .about-wrapper-2 .about-image {
        height: 450px;
    }
}
.about-wrapper-2 .about-image::before {
    position: absolute;
    top: 20%;
    right: -10px;
    content: "";
    height: 440px;
    width: 411px;
    background-color: var(--theme);
    z-index: -1;
    border-radius: 5px;
}
@media (max-width: 767px) {
    .about-wrapper-2 .about-image::before {
        display: none;
    }
}
.about-wrapper-2 .about-image .counter-shape {
    position: absolute;
    bottom: 40px;
    left: -14%;
    padding: 25px;
    background-color: var(--bg2);
    display: inline-block;
    color: rgba(255, 255, 255, 0.7019607843);
    border-radius: 5px;
    border: 1px solid var(--theme);
}
.about-wrapper-2 .about-image .counter-shape h3 {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.7019607843);
    margin-bottom: 5px;
}
@media (max-width: 991px) {
    .about-wrapper-2 .about-image .counter-shape {
        left: 0;
        bottom: 0;
    }
}
.about-wrapper-2 .about-image .line-shape {
    position: absolute;
    bottom: 30%;
    left: -7%;
}
@media (max-width: 991px) {
    .about-wrapper-2 .about-image .line-shape {
        left: 40px;
        bottom: 123px;
    }
}

.about-wrapper-3 .about-image img {
    width: 100%;
    height: 100%;
}
.about-wrapper-3 .about-content {
    margin-left: 40px;
}
@media (max-width: 1399px) {
    .about-wrapper-3 .about-content {
        margin-left: 15px;
    }
    .about-wrapper-3 .about-content br {
        display: none;
    }
}
@media (max-width: 991px) {
    .about-wrapper-3 .about-content {
        margin-left: 0;
    }
}
.about-wrapper-3 .about-content .about-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}
@media (max-width: 767px) {
    .about-wrapper-3 .about-content .about-list {
        margin-top: 20px;
        margin-bottom: 30px;
    }
}
@media (max-width: 575px) {
    .about-wrapper-3 .about-content .about-list {
        margin-top: 15px;
        margin-bottom: 25px;
    }
}
.about-wrapper-3 .about-content .about-list ul li:not(:last-child) {
    margin-bottom: 15px;
}
.about-wrapper-3 .about-content .about-list ul li i {
    color: var(--theme);
    margin-right: 5px;
}
.about-wrapper-3.style-2 .about-image-items .about-image-1 {
    max-width: 490px;
    height: 465px;
    border-radius: 5px;
    margin-left: 100px;
    position: relative;
}
@media (max-width: 991px) {
    .about-wrapper-3.style-2 .about-image-items .about-image-1 {
        margin-left: 0;
    }
}
@media (max-width: 575px) {
    .about-wrapper-3.style-2 .about-image-items .about-image-1 {
        height: 450px;
        max-width: 550px;
    }
}
.about-wrapper-3.style-2 .about-image-items .about-image-1::before {
    position: absolute;
    top: 0;
    left: -30px;
    content: "";
    height: 100%;
    width: 15px;
    border-radius: 5px;
    background-color: var(--theme);
}
.about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 {
    position: absolute;
    bottom: -65px;
    left: -100px;
    max-width: 300px;
}
@media (max-width: 991px) {
    .about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 {
        left: 0;
        bottom: 0;
    }
}
@media (max-width: 767px) {
    .about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 {
        max-width: 250px;
    }
}
@media (max-width: 575px) {
    .about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 {
        max-width: 200px;
    }
}
.about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.about-wrapper-3.style-2 .about-content {
    margin-left: 20px;
}
.about-wrapper-3.style-2 .about-content .progress-wrap {
    margin-bottom: 55px;
    margin-top: 30px;
}
.about-wrapper-3.style-2 .about-content .progress-wrap .pro-items:not(:last-child) {
    margin-bottom: 30px;
}
.about-wrapper-3.style-2 .about-content .progress-wrap .pro-items .pro-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.about-wrapper-3.style-2 .about-content .progress-wrap .pro-items .pro-head .title {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}
.about-wrapper-3.style-2 .about-content .progress-wrap .pro-items .pro-head .point {
    font-size: 16px;
    font-weight: 500;
    color: var(--theme);
}
.about-wrapper-3.style-2 .about-content .progress-wrap .pro-items .progress {
    background: var(--white);
    justify-content: flex-start;
    border-radius: 5px;
    align-items: center;
    position: relative;
    display: flex;
    height: 6px;
    width: 100%;
    border-radius: 5px;
}
.about-wrapper-3.style-2 .about-content .progress-wrap .pro-items .progress-value {
    animation: load 3s normal forwards;
    border-radius: 0;
    background: var(--theme);
    height: 6px;
    width: 0;
    border-radius: 5px;
}
.about-wrapper-3.style-2 .about-content .progress-wrap .pro-items .style-two {
    animation: load2 3s normal forwards;
}
@keyframes load {
    0% {
        width: 0;
    }
    100% {
        width: 70%;
    }
}
@keyframes load2 {
    0% {
        width: 0;
    }
    100% {
        width: 85%;
    }
}

.service-section {
    position: relative;
}
.service-section .bg-shape {
    position: absolute;
    top: 0;
    left: 0;
}
.service-section .bg-shape img {
    width: 100%;
    height: 100%;
}

.service-items {
    position: relative;
    z-index: 9;
    padding: 30px;
}
@media (max-width: 991px) {
    .service-items {
        margin-top: 0 !important;
    }
}
.service-items::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--white);
    border-radius: 5px;
    z-index: -1;
    height: initial;
    top: 23%;
}
.service-items .icon {
    width: 65px;
    height: 65px;
    line-height: 75px;
    border-radius: 5px;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    font-size: 40px;
    color: var(--white);
}
.service-items .content {
    margin-top: 20px;
}
.service-items .content h3 {
    margin-bottom: 10px;
}
.service-items .content h3 a:hover {
    color: var(--theme);
}
.service-items .content p {
    margin-bottom: 20px;
}
.service-items.style-2 {
    margin-top: -30px !important;
}
.service-items.style-2::before {
    background-color: var(--bg);
}

.service-wrapper .service-image {
    max-width: 615px;
    height: 740px;
    margin-right: -100%;
    margin-top: -120px;
    margin-bottom: -120px;
}
@media (max-width: 1199px) {
    .service-wrapper .service-image {
        margin-top: 0;
        margin-bottom: 0;
        margin-right: 0;
    }
}
@media (max-width: 991px) {
    .service-wrapper .service-image {
        height: 600px;
    }
}
@media (max-width: 767px) {
    .service-wrapper .service-image {
        height: 500px;
    }
}
@media (max-width: 575px) {
    .service-wrapper .service-image {
        height: 430px;
    }
}

.service-box-items {
    margin-top: 30px;
    background-color: var(--bg2);
    padding: 40px;
    border-radius: 5px;
}
@media (max-width: 575px) {
    .service-box-items {
        padding: 30px 25px;
    }
}
.service-box-items .icon {
    font-size: 55px;
    color: var(--theme);
}
.service-box-items .content {
    margin-top: 30px;
}
@media (max-width: 575px) {
    .service-box-items .content {
        margin-top: 20px;
    }
}
.service-box-items .content h3 {
    margin-bottom: 15px;
}
.service-box-items .content h3 a {
    color: var(--white);
}
.service-box-items .content h3 a:hover {
    color: var(--theme);
}
.service-box-items .content p {
    color: rgba(255, 255, 255, 0.7019607843);
}
.service-box-items .content ul {
    margin-top: 20px;
}
.service-box-items .content ul li {
    color: rgba(255, 255, 255, 0.7019607843);
}
.service-box-items .content ul li i {
    color: var(--text);
    margin-right: 5px;
}
.service-box-items .content ul li:not(:last-child) {
    margin-bottom: 10px;
}
.service-box-items .content .link-btn {
    color: var(--white);
    margin-top: 30px;
}
.service-box-items .content .link-btn i {
    color: var(--theme);
}
.service-box-items .content .link-btn:hover {
    color: var(--theme);
}
.service-box-items.style-2 {
    padding: 40px 30px;
    border: 1px solid transparent;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
    .service-box-items.style-2 {
        padding: 30px;
    }
}
@media (max-width: 575px) {
    .service-box-items.style-2 {
        padding: 25px 20px;
    }
}
.service-box-items.style-2 .icon {
    font-size: 45px;
}
.service-box-items.style-2 .content h4 {
    margin-bottom: 20px;
}
@media (max-width: 575px) {
    .service-box-items.style-2 .content h4 {
        margin-bottom: 15px;
    }
}
.service-box-items.style-2 .content h4 a {
    color: var(--white);
}
.service-box-items.style-2 .content h4 a:hover {
    color: var(--theme);
}
.service-box-items.style-2 .content .link-btn {
    margin-top: 20px;
    color: var(--theme);
}
@media (max-width: 575px) {
    .service-box-items.style-2 .content .link-btn {
        margin-top: 15px;
    }
}
.service-box-items.style-2:hover {
    border: 1px solid var(--theme);
}
.service-box-items.style-2.active {
    border: 1px solid var(--theme);
}
.service-box-items.style-3 {
    background-color: transparent;
    border: 1px solid var(--bg2);
    transition: all 0.4s ease-in-out;
    border-radius: 0;
}
.service-box-items.style-3 .icon {
    color: var(--theme);
    font-size: 48px;
}
.service-box-items.style-3 .content h3 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 0;
}
.service-box-items.style-3 .content p {
    color: var(--white);
    padding-top: 20px;
}
.service-box-items.style-3:hover {
    background-color: var(--bg2);
    border-bottom: 3px solid var(--theme);
}
.service-box-items.style-3.active {
    background-color: var(--bg2);
    border-bottom: 3px solid var(--theme);
}

@media (max-width: 1399px) {
    .service-section-2 .section-title-area {
        flex-wrap: wrap;
    }
}

.service-section-3 {
    position: relative;
}
.service-section-3 .bg-shape {
    position: absolute;
    top: 0;
    left: 0;
}
.service-section-3 .bg-shape img {
    width: 100%;
    height: 100%;
}

.service-box-items-2 {
    margin-top: 30px;
    padding: 40px;
    background-color: var(--bg2);
    position: relative;
    z-index: 9;
}
@media (max-width: 767px) {
    .service-box-items-2 {
        padding: 30px 35px;
    }
}
@media (max-width: 767px) {
    .service-box-items-2 {
        padding: 25px 20px;
    }
}
.service-box-items-2 .icon {
    color: var(--theme);
    font-size: 45px;
}
.service-box-items-2 .content {
    margin-top: 30px;
}
@media (max-width: 575px) {
    .service-box-items-2 .content {
        margin-top: 20px;
    }
}
.service-box-items-2 .content h3 a {
    color: var(--white);
}
.service-box-items-2 .content h3 a:hover {
    color: var(--theme);
}
.service-box-items-2 .content p {
    color: var(--white);
    margin-top: 15px;
}
@media (max-width: 575px) {
    .service-box-items-2 .content p {
        margin-top: 10px;
    }
}

.service-wrapper-2 .main-service-items .theme-btn {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.service-wrapper-2 .main-service-items:hover .theme-btn {
    opacity: 1;
    visibility: visible;
}
.service-wrapper-2 .theme-btn {
    width: 100%;
    text-align: center;
}

.service-details-wrapper .service-details-items .service-image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    min-width: 850px;
    max-width: 850px;
    max-height: 400px;
    min-height: 400px;
    object-fit: cover;
}

.service-details-wrapper .service-details-items .details-content {
    margin-top: 30px;
}
.service-details-wrapper .service-details-items .details-content h3 {
    font-size: 28px;
}
.service-details-wrapper .service-details-items .details-content .list {
    margin-top: 30px;
    margin-bottom: 40px;
}
.service-details-wrapper .service-details-items .details-content .list li {
    position: relative;
    padding-left: 25px;
}
.service-details-wrapper .service-details-items .details-content .list li::before {
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    content: "";
    background-color: var(--theme);
}
.service-details-wrapper .service-details-items .details-content .list li:not(:last-child) {
    margin-bottom: 10px;
}
.service-details-wrapper .service-details-items .details-content h4 {
    font-size: 24px;
    margin-bottom: 20px;
}
.service-details-wrapper .service-details-items .details-content .list-items {
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.service-details-wrapper .service-details-items .details-content .list-items .d-list li i {
    color: var(--theme);
    margin-right: 5px;
}
.service-details-wrapper .service-details-items .details-content .list-items .d-list li:not(:last-child) {
    margin-bottom: 15px;
}
.service-details-wrapper .service-details-items .details-content .list-items .icon-box {
    padding: 30px 30px;
    text-align: center;
    background-color: var(--bg);
}
.service-details-wrapper .service-details-items .details-content .list-items .icon-box i {
    font-size: 40px;
    color: var(--theme);
    margin-bottom: 20px;
}
.service-details-wrapper .service-details-items .details-content .list-items .icon-box h4 {
    margin-bottom: 5px;
}
.service-details-wrapper .main-sidebar .single-sidebar-widget {
    margin-bottom: 40px;
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .widget-categories ul li {
    padding: 18px 30px;
    background-color: var(--bg);
    font-size: 18px;
    font-weight: 600;
    color: var(--header);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
    .service-details-wrapper .main-sidebar .single-sidebar-widget .widget-categories ul li {
        font-size: 16px;
    }
}
@media (max-width: 991px) {
    .service-details-wrapper .main-sidebar .single-sidebar-widget .widget-categories ul li {
        font-size: 18px;
    }
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .widget-categories ul li i {
    font-size: 22px;
    color: var(--theme);
    transition: all 0.4s ease-in-out;
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .widget-categories ul li:not(:last-child) {
    margin-bottom: 20px;
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .widget-categories ul li:hover {
    background-color: var(--theme);
    color: var(--white);
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .widget-categories ul li:hover i {
    color: var(--white);
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .widget-categories ul li:hover a {
    color: var(--white);
}
.service-details-wrapper .main-sidebar .bg-image {
    max-width: 500px;
    position: relative;
}
@media (max-width: 991px) {
    .service-details-wrapper .main-sidebar .bg-image {
        max-width: 800px;
    }
}
.service-details-wrapper .main-sidebar .bg-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--black);
    opacity: 0.7;
    border-radius: 5px;
}
.service-details-wrapper .main-sidebar .bg-image .contact-text {
    position: relative;
    text-align: center;
    padding: 40px 35px;
    margin: 0 auto;
}
.service-details-wrapper .main-sidebar .bg-image .contact-text .icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background-color: var(--theme);
    text-align: center;
    color: var(--white);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
}
.service-details-wrapper .main-sidebar .bg-image .contact-text p {
    color: var(--white);
}
.service-details-wrapper .main-sidebar .bg-image .contact-text h3 {
    margin-top: 15px;
}
.service-details-wrapper .main-sidebar .bg-image .contact-text h3 a {
    color: var(--white);
}
.service-details-wrapper .main-sidebar .download-service-doc .theme-btn {
    font-size: 22px;
    font-weight: 600;
}
@media (max-width: 1199px) {
    .service-details-wrapper .main-sidebar .download-service-doc .theme-btn {
        font-size: 16px;
        padding: 22px 20px;
    }
}
@media (max-width: 991px) {
    .service-details-wrapper .main-sidebar .download-service-doc .theme-btn {
        font-size: 18px;
    }
}
.service-details-wrapper .main-sidebar .download-service-doc .theme-btn.style-2 {
    text-align: left;
    background-color: var(--bg);
    color: var(--header);
}
.service-details-wrapper .main-sidebar .download-service-doc .theme-btn.style-2 i {
    font-size: 24px;
    margin-right: 15px;
}
@media (max-width: 1199px) {
    .service-details-wrapper .main-sidebar .download-service-doc .theme-btn.style-2 i {
        font-size: 16px;
    }
}
@media (max-width: 991px) {
    .service-details-wrapper .main-sidebar .download-service-doc .theme-btn.style-2 i {
        font-size: 18px;
    }
}
.service-details-wrapper .main-sidebar .download-service-doc .theme-btn.style-2::before,
.service-details-wrapper .main-sidebar .download-service-doc .theme-btn.style-2::after {
    background-color: var(--theme);
}
.service-details-wrapper .main-sidebar .download-service-doc .theme-btn.style-2:hover {
    color: var(--white);
}

.project-carousel-items {
    margin-top: 30px;
    overflow: hidden;
}
.project-carousel-items .project-image {
    position: relative;
}
@media (max-width: 767px) {
    .project-carousel-items .project-image {
        height: 550px;
    }
}
@media (max-width: 575px) {
    .project-carousel-items .project-image {
        height: 450px;
    }
}
.project-carousel-items .project-image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}
.project-carousel-items .project-image .project-content {
    position: absolute;
    bottom: -150px;
    left: 30px;
    right: 30px;
    background-color: var(--white);
    padding: 30px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
}
.project-carousel-items .project-image .project-content h3 {
    margin-bottom: 10px;
}
.project-carousel-items .project-image .project-content h3 a:hover {
    color: var(--theme);
}
.project-carousel-items .project-image .project-content p {
    color: #616670;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.4px;
}
.project-carousel-items .project-image .project-content .icon {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    display: inline-block;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
    position: absolute;
    right: 15px;
    top: -25px;
}
.project-carousel-items .project-image .project-content .icon:hover {
    background-color: var(--header);
    color: var(--white);
}
.project-carousel-items:hover .project-image .project-content {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

.project-wrapper .swiper-slide.swiper-slide-active .project-carousel-items .project-image .project-content {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

.project-details-wrapper .project-details-items .project-image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.project-details-wrapper .project-details-items .project-details-content {
    background-color: var(--bg);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 5px;
    margin: -150px 40px 0;
    position: relative;
    z-index: 9;
}
@media (max-width: 767px) {
    .project-details-wrapper .project-details-items .project-details-content {
        margin: 0;
        padding: 30px;
    }
}
.project-details-wrapper .project-details-items .project-details-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}
.project-details-wrapper .project-details-items .project-details-content .d-list {
    margin-top: 20px;
}
.project-details-wrapper .project-details-items .project-details-content .d-list li i {
    color: var(--theme);
    margin-right: 5px;
}
.project-details-wrapper .project-details-items .project-details-content .d-list li:not(:last-child) {
    margin-bottom: 15px;
}
.project-details-wrapper .project-details-items .pro-details-items {
    margin-top: 50px;
}
.project-details-wrapper .project-details-items .pro-details-items .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.project-details-wrapper .project-details-items .pro-details-items .pro-details-content-items {
    padding: 40px 30px;
    background-color: var(--bg);
    height: 100%;
}
.project-details-wrapper .project-details-items .pro-details-items .pro-details-content-items .pro-details-cont {
    margin-bottom: 17px;
}
.project-details-wrapper .project-details-items .pro-details-items .pro-details-content-items .pro-details-cont h3 {
    margin-bottom: 15px;
}
.project-details-wrapper .main-sidebar .single-sidebar-widget .project-catagory {
    background-color: var(--bg);
    padding: 30px;
    border-radius: 5px;
}
.project-details-wrapper .main-sidebar .single-sidebar-widget .project-catagory h3 {
    margin-bottom: 10px;
}
.project-details-wrapper .main-sidebar .single-sidebar-widget .project-catagory ul {
    margin-top: 30px;
}
.project-details-wrapper .main-sidebar .single-sidebar-widget .project-catagory ul li {
    font-weight: 600;
    color: var(--header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    padding: 14px 20px;
    font-size: 20px;
    border-radius: 5px;
}
.project-details-wrapper .main-sidebar .single-sidebar-widget .project-catagory ul li:not(:last-child) {
    margin-bottom: 15px;
}
.project-details-wrapper .main-sidebar .single-sidebar-widget .project-catagory ul li span {
    font-weight: 400;
    font-size: 16px;
    color: var(--text);
}
.project-details-wrapper .main-sidebar .single-sidebar-widget .project-catagory .social-icon {
    margin-top: 30px;
    gap: 10px;
}
.project-details-wrapper .main-sidebar .single-sidebar-widget .project-catagory .social-icon a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 5px;
    background-color: var(--black);
    color: var(--white);
    transition: all 0.4s ease-in-out;
}
.project-details-wrapper .main-sidebar .single-sidebar-widget .project-catagory .social-icon a:hover {
    background-color: var(--theme);
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--theme);
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--theme);
    border-radius: 10px;
}

.fix {
    overflow: hidden;
}

.ralt {
    position: relative;
}

.ripple {
    position: relative;
}
.ripple::before,
.ripple::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 115px;
    height: 115px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(166, 161, 130, 0.7);
    animation: rippleOne 3s infinite;
}
.ripple::before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}
.ripple::after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.swiper-dot {
    text-align: center;
    margin-top: 40px;
    margin-bottom: -7px;
}
.swiper-dot .swiper-pagination-bullet {
    width: 12px;
    height: 8px;
    transition: 0.6s;
    background-color: #d9d9d9;
    opacity: 1;
    border-radius: 60px;
    position: relative;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
    transition: 0.6s;
    position: relative;
    width: 51px;
}

.array-button {
    position: relative;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 20px;
}
.array-button .array-prev {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: rgba(166, 161, 130, 0.2);
    color: var(--theme);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
    .array-button .array-prev {
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
}
.array-button .array-prev:hover {
    background-color: var(--theme);
    color: var(--white);
}
.array-button .array-next {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--theme);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
    .array-button .array-next {
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
}
.array-button .array-next:hover {
    background-color: rgba(166, 161, 130, 0.2);
    color: var(--theme);
}
.array-button.radius-none .array-prev,
.array-button.radius-none .array-next {
    border-radius: 0 !important;
}

.mt-10 {
    margin-top: 10px;
}

@media (max-width: 575px) {
    br {
        display: none;
    }
}

/* background */
.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}

.nice-select {
    font-size: 16px;
    width: unset;
    outline: none;
    background-color: transparent;
    border: var(--bs-border-width) solid var(--bs-border-color);
    color: var(--white);
    padding: 16px 20px;
    font-weight: normal;
    border-radius: 5px;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
    .nice-select {
        padding: 14px 20px;
    }
}
@media (max-width: 575px) {
    .nice-select {
        padding: 12px 18px;
    }
}
.nice-select span {
    color: #1b1e63;
    font-size: 16px;
    margin-bottom: 0 !important;
}

.nice-select option {
    color: rgba(255, 255, 255, 0.7019607843);
}

.nice-select .current {
    margin-right: 12px;
}

.nice-select:after {
    right: 23px;
    border-bottom: 1px solid var(--theme);
    border-right: 1px solid var(--theme);
    width: 10px;
    height: 10px;
}

.nice-select.open .list {
    margin-top: 16px;
    width: 100%;
    text-transform: capitalize;
    color: #fff;
}

.nice-select .option.selected.focus {
    outline: none;
    color: #fff;
    text-transform: capitalize;
    font-size: 16px;
}

.nice-select .option {
    border: none;
}

.nice-select .option:hover {
    background: transparent;
}

.head-color {
    color: var(--header);
}

.footer-bg {
    position: relative;
    background-color: #1b1e63;
    overflow: hidden;
}

.footer-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg/footer-bg.png);
    background-position: right;
    background-size: 85%;
    background-repeat: no-repeat;
    opacity: 0.07;
    z-index: 1;
    transform: scaleX(-1);
}

.footer-bg > * {
    position: relative;
    z-index: 2;
}

.background-black {
    background-color: var(--black) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

.border-none {
    border-top: none !important;
}

.ml-100 {
    margin-left: 100px !important;
}
@media (max-width: 991px) {
    .ml-100 {
        margin-left: 0 !important;
    }
}

.border-radius-none {
    border-radius: 0 !important;
}
.border-radius-none input {
    border-radius: 0 !important;
}

.text-color {
    color: rgba(255, 255, 255, 0.7019607843);
}

@media (max-width: 991px) {
    .title-responsive {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

.mb-10 {
    margin-bottom: -10px !important;
}

.style-2-bg {
    position: relative;
}
.style-2-bg::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
    top: -100px;
    z-index: -1;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.box-shadow {
    background-color: var(--white);
    box-shadow: var(---box-shadow);
}

.w-100 {
    width: 100% !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mb-15 {
    margin-bottom: -15px !important;
}

.mt-40 {
    padding-top: 40px;
}

.team-section {
    position: relative;
}
.team-section .light-shape {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    right: 0;
}
@media (max-width: 1399px) {
    .team-section .light-shape {
        display: none;
    }
}

.single-team-items {
    margin-top: 30px;
    overflow: hidden;
}
.single-team-items .team-image {
    max-width: 370px;
    height: 353px;
    border-radius: 5px;
    position: relative;
}
@media (max-width: 1199px) {
    .single-team-items .team-image {
        max-width: 550px;
    }
}
.single-team-items .team-image .team-content {
    padding: 20px;
    background-color: var(--bg);
    border-radius: 5px 0 5px 0;
    position: absolute;
    bottom: 0;
    left: 40px;
    width: 100%;
}
@media (max-width: 1399px) {
    .single-team-items .team-image .team-content {
        left: 0;
        border-radius: 0;
    }
}
.single-team-items .team-image .team-content h3 a:hover {
    color: var(--theme);
}
.single-team-items .team-image .team-content p {
    margin-bottom: 5px;
}
.single-team-items .team-image .team-content .social-profile {
    position: absolute;
    right: -5px;
    bottom: 56px;
    content: "";
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 2;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
}
.single-team-items .team-image .team-content .social-profile ul {
    transform: translateY(100px);
    transition: all 0.6s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}
.single-team-items .team-image .team-content .social-profile ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
    background: var(--theme);
    color: var(--white);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    margin: 0 auto;
    border-radius: 0 5px 5px 0;
    margin-bottom: 10px;
}
.single-team-items .team-image .team-content .social-profile .plus-btn {
    z-index: 2;
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
    background: var(--header);
    color: var(--white);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 0 5px 0 5px;
}
.single-team-items .team-image .team-content .social-profile .plus-btn:hover {
    background-color: var(--theme);
    color: var(--white);
}
.single-team-items .team-image .team-content .social-profile:hover ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.team-card-items {
    margin-top: 30px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: var(--bg2);
    text-align: center;
}
.team-card-items .team-image img {
    width: 100%;
    height: 100%;
    border-radius: 5px 5px 0 0;
}
.team-card-items .team-content {
    padding: 30px 15px;
}
.team-card-items .team-content h3 {
    margin-bottom: 5px;
}
.team-card-items .team-content h3 a {
    color: var(--white);
}
.team-card-items .team-content h3 a:hover {
    color: var(--theme);
}
.team-card-items .team-content p {
    color: var(--white);
}
.team-card-items .team-content .social-icon {
    gap: 20px;
    position: relative;
    margin-top: 20px;
}
.team-card-items .team-content .social-icon a {
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 5px;
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    transition: all 0.4s ease-in-out;
    border: 1px solid var(--text);
}
.team-card-items .team-content .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid transparent;
}
.team-card-items.style-2 {
    margin-top: 0;
    background-color: var(--bg);
    border: none;
}
.team-card-items.style-2 .team-content h3 a {
    color: var(--header);
}
.team-card-items.style-2 .team-content h3 a:hover {
    color: var(--theme);
}
.team-card-items.style-2 .team-content p {
    color: var(--text);
}
.team-card-items.style-2 .team-content .social-icon a {
    border: 1px solid var(--border);
    color: var(--header);
}
.team-card-items.style-2 .team-content .social-icon a:hover {
    color: var(--white);
}

.team-box-items {
    margin-top: 30px;
}
.team-box-items .team-image img {
    width: 100%;
    height: 100%;
}
.team-box-items .team-content {
    padding: 40px;
    background-color: var(--bg2);
    position: relative;
    z-index: 9;
    margin-top: -120px;
    margin-left: 20px;
    margin-right: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
    .team-box-items .team-content {
        padding: 30px;
    }
}
@media (max-width: 575px) {
    .team-box-items .team-content {
        padding: 25px 20px;
    }
}
.team-box-items .team-content p {
    color: var(--white);
    margin-bottom: 5px;
}
.team-box-items .team-content h3 {
    font-size: 28px;
}
@media (max-width: 1199px) {
    .team-box-items .team-content h3 {
        font-size: 26px;
    }
}
@media (max-width: 767px) {
    .team-box-items .team-content h3 {
        font-size: 24px;
    }
}
@media (max-width: 575px) {
    .team-box-items .team-content h3 {
        font-size: 22px;
    }
}
.team-box-items .team-content h3 a {
    color: var(--white);
}
.team-box-items .team-content h3 a:hover {
    color: var(--theme);
}
.team-box-items .team-content .social-profile {
    position: absolute;
    right: 30px;
    bottom: 40px;
    content: "";
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 2;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
}
@media (max-width: 1399px) {
    .team-box-items .team-content .social-profile {
        bottom: 90px;
    }
}
@media (max-width: 1199px) {
    .team-box-items .team-content .social-profile {
        right: 30px;
        bottom: 40px;
    }
}
@media (max-width: 991px) {
    .team-box-items .team-content .social-profile {
        right: 20px;
        bottom: 70px;
    }
}
@media (max-width: 767px) {
    .team-box-items .team-content .social-profile {
        right: 10px;
        bottom: 60px;
    }
}
@media (max-width: 575px) {
    .team-box-items .team-content .social-profile {
        right: 30px;
        bottom: 40px;
    }
}
.team-box-items .team-content .social-profile ul {
    transform: translateY(100px);
    transition: all 0.6s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}
.team-box-items .team-content .social-profile ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
    background: var(--theme);
    color: var(--white);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    margin: 0 auto;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 16px;
}
.team-box-items .team-content .social-profile .plus-btn {
    z-index: 2;
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    background: var(--white);
    color: var(--black);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    font-size: 16px;
}
.team-box-items .team-content .social-profile .plus-btn:hover {
    background-color: var(--theme);
    color: var(--white);
}
.team-box-items .team-content .social-profile:hover ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.team-box-items:hover .team-content {
    opacity: 1;
    visibility: visible;
}
.team-box-items.active .team-content {
    opacity: 1;
    visibility: visible;
}

.team-details-wrapper .team-details-image {
    max-width: 630px;
    height: 714px;
    position: relative;
    z-index: -1;
}
@media (max-width: 991px) {
    .team-details-wrapper .team-details-image {
        height: 650px;
    }
}
@media (max-width: 767px) {
    .team-details-wrapper .team-details-image {
        height: 550px;
    }
}
@media (max-width: 575px) {
    .team-details-wrapper .team-details-image {
        height: 450px;
    }
}
.team-details-wrapper .team-details-content {
    background-color: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 60px 40px;
    margin-left: -100px;
    z-index: 9;
}
@media (max-width: 991px) {
    .team-details-wrapper .team-details-content {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .team-details-wrapper .team-details-content {
        padding: 40px 30px;
    }
}
.team-details-wrapper .team-details-content .progress-wrap {
    margin-bottom: 40px;
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items:not(:last-child) {
    margin-bottom: 30px;
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items .pro-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items .pro-head .title {
    font-size: 20px;
    font-weight: 600;
    color: var(--header);
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items .pro-head .point {
    font-size: 16px;
    font-weight: 400;
    color: var(--header);
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items .progress {
    background: #e6e6e6;
    justify-content: flex-start;
    border-radius: 100px;
    align-items: center;
    position: relative;
    display: flex;
    height: 10px;
    width: 100%;
    border-radius: 5px;
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items .progress-value {
    animation: load 3s normal forwards;
    border-radius: 0;
    background: var(--theme);
    height: 10px;
    width: 0;
    border-radius: 5px;
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items .style-two {
    animation: load2 3s normal forwards;
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items .style-three {
    animation: load3 3s normal forwards;
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items .style-four {
    animation: load4 3s normal forwards;
}
@keyframes load {
    0% {
        width: 0;
    }
    100% {
        width: 80%;
    }
}
@keyframes load2 {
    0% {
        width: 0;
    }
    100% {
        width: 70%;
    }
}
@keyframes load3 {
    0% {
        width: 0;
    }
    100% {
        width: 85%;
    }
}
@keyframes load4 {
    0% {
        width: 0;
    }
    100% {
        width: 90%;
    }
}

.team-contact-wrapper .contact-form-items .form-clt {
    position: relative;
}
.team-contact-wrapper .contact-form-items .form-clt input,
.team-contact-wrapper .contact-form-items .form-clt textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: var(--bg);
    border: none;
    color: var(--text);
    padding: 16px 30px;
    border-radius: 5px;
    font-weight: 500;
}
@media (max-width: 767px) {
    .team-contact-wrapper .contact-form-items .form-clt input,
    .team-contact-wrapper .contact-form-items .form-clt textarea {
        padding: 14px 20px;
    }
}
@media (max-width: 575px) {
    .team-contact-wrapper .contact-form-items .form-clt input,
    .team-contact-wrapper .contact-form-items .form-clt textarea {
        padding: 12px 18px;
    }
}
.team-contact-wrapper .contact-form-items .form-clt input::placeholder,
.team-contact-wrapper .contact-form-items .form-clt textarea::placeholder {
    color: var(--text);
}
.team-contact-wrapper .contact-form-items .form-clt textarea {
    padding-bottom: 135px;
}
.team-contact-wrapper .team-biography h3 {
    font-size: 28px;
    margin-bottom: 15px;
}
.team-contact-wrapper .team-biography .contact-info-items {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.team-contact-wrapper .team-biography .contact-info-items .icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    text-align: center;
    color: var(--header);
    background-color: var(--bg);
}
.team-contact-wrapper .team-biography .contact-info-items .content h6 {
    font-size: 16px;
    font-weight: 400;
}
.team-contact-wrapper .team-biography .contact-info-items .content h6 a {
    color: var(--text);
}

.shop-section .array-button .array-prev {
    background-color: transparent;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    line-height: 50px;
    border: 1px solid var(--border);
    color: var(--white);
    font-weight: bold;
}
.shop-section .array-button .array-prev:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid transparent;
}
.shop-section .array-button .array-next {
    background-color: transparent;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    line-height: 50px;
    border: 1px solid var(--theme);
    color: var(--theme);
    font-weight: bold;
}
.shop-section .array-button .array-next:hover {
    background-color: var(--theme);
    color: var(--white);
}

.shop-items {
    margin-top: 30px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: var(--bg2);
}
.shop-items .shop-image img {
    width: 100%;
    height: 100%;
    border-radius: 5px 5px 0 0;
}
.shop-items .shop-content {
    padding: 30px;
}
@media (max-width: 575px) {
    .shop-items .shop-content {
        padding: 25px;
    }
}
.shop-items .shop-content .price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.shop-items .shop-content .price .star i {
    font-size: 14px;
    color: var(--theme);
}
.shop-items .shop-content .price .star .color-2 {
    color: var(--text);
}
.shop-items .shop-content .price h4 {
    color: var(--theme);
}
.shop-items .shop-content .title {
    margin-top: 25px;
}
@media (max-width: 575px) {
    .shop-items .shop-content .title {
        margin-top: 15px;
    }
}
.shop-items .shop-content .title a {
    color: var(--white);
}
.shop-items .shop-content .title a:hover {
    color: var(--theme);
}
.shop-items .shop-content .link-btn {
    margin-top: 20px;
    color: var(--theme);
}
@media (max-width: 575px) {
    .shop-items .shop-content .link-btn {
        margin-top: 10px;
    }
}

.shop-card-items .shop-image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.shop-card-items .shop-content {
    padding: 20px;
    background-color: var(--white);
    position: relative;
    box-shadow: var(---box-shadow);
    z-index: 9;
    border-radius: 0 5px 5px 5px;
    margin-right: 30px;
    margin-top: -60px;
}
.shop-card-items .shop-content h3 {
    margin-bottom: 10px;
}
.shop-card-items .shop-content h3 a:hover {
    color: var(--theme);
}
.shop-card-items .shop-content .star {
    margin-top: 15px;
}
.shop-card-items .shop-content .star i {
    color: var(--ratting);
}
.shop-card-items .shop-content .star .color-2 {
    color: #e6e6e6;
}
.shop-card-items .shop-content h4 {
    font-size: 24px;
    margin-top: 15px;
}

.main-cart-wrapper {
    border-radius: 5px;
}
.main-cart-wrapper .cart-wrapper {
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
    padding: 40px 40px;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table {
    width: 100%;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table thead {
    border-bottom: 1px solid var(--border);
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table thead tr th {
    padding-bottom: 16px;
    color: var(--header);
    text-transform: capitalize;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item td {
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-price {
    color: var(--header);
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--bg);
    width: 100px;
    border-radius: 5px;
    padding: 2px 20px;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-quantity span {
    display: block;
    color: var(--header);
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-quantity .cart-item-quantity-controller a {
    display: block;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-quantity .cart-item-quantity-controller a i {
    color: var(--header);
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-remove a i {
    color: var(--header);
}
.main-cart-wrapper .cart-wrapper-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.main-cart-wrapper .cart-wrapper-footer form {
    border: 1px solid var(--border);
    padding: 8px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-cart-wrapper .cart-wrapper-footer form input {
    padding: 5px 5px;
    border: none;
    text-transform: capitalize;
    font-size: 16px;
    outline: none;
    background: transparent;
    color: var(--text);
}
.main-cart-wrapper .cart-wrapper-footer form button {
    outline: none;
    border: none;
}
.main-cart-wrapper .cart-pragh-box {
    margin-top: 24px;
    padding-right: 30px;
}
.main-cart-wrapper .cart-graph {
    border: 1px solid var(--border);
    padding: 30px 30px;
    border-radius: 5px;
}
.main-cart-wrapper .cart-graph h4 {
    text-align: center;
    color: var(--header);
    margin-bottom: 30px;
}
.main-cart-wrapper .cart-graph ul {
    margin-bottom: 30px;
}
.main-cart-wrapper .cart-graph ul li {
    display: flex;
}
.main-cart-wrapper .cart-graph ul li:not(:last-child) {
    border-bottom: 1px solid var(--border);
}
.main-cart-wrapper .cart-graph ul li span {
    width: 50%;
    color: var(--header);
    font-size: 18px;
    text-transform: capitalize;
    padding: 16px 0;
    font-weight: 500;
}

@media (max-width: 767px) {
    .cart-wrapper {
        overflow-x: scroll;
    }
    .cart-wrapper .cart-items-wrapper {
        width: 700px;
    }
    .cart-wrapper .cart-wrapper-footer {
        width: 700px;
    }
}
.checkout-radio {
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    padding: 24px;
}
.checkout-radio .primary-text {
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 16px;
    color: var(--header);
    text-transform: capitalize;
}
.checkout-radio h4 {
    color: var(--header);
    margin-bottom: 16px;
    font-weight: 600;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input {
    border-radius: 50%;
    width: 18px;
    height: 18px;
    box-shadow: none;
    outline: none;
    border: 1px solid var(--border);
    font-weight: 500;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single label {
    color: var(--header);
    text-transform: capitalize;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single:not(:last-child) {
    margin-bottom: 12px;
}
@media (max-width: 500px) {
    .checkout-radio {
        padding: 10px;
    }
}

.checkout-single-wrapper .checkout-single h4 {
    color: var(--header);
    margin-bottom: 2rem;
    font-weight: 600;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single input {
    width: 100%;
    outline: none;
    box-shadow: none;
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 12px 24px;
    color: var(--header);
    text-transform: capitalize;
    font-weight: 500;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single label {
    color: var(--header);
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-weight: 500;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single ::placeholder {
    color: var(--header);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select {
    background-color: var(--white);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select span {
    font-size: 18px;
    color: var(--header);
    font-weight: 500;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select::after {
    border-right: 1px solid var(--header);
    border-bottom: 1px solid var(--header);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .payment {
    color: var(--header);
    margin-bottom: 12px;
    text-transform: capitalize;
}
.checkout-single-wrapper .boxshado-single {
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    padding: 32px;
    margin-bottom: 24px;
}
@media (max-width: 575px) {
    .checkout-single-wrapper .boxshado-single {
        padding: 14px;
    }
}
.checkout-single-wrapper .checkout-single-bg {
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    padding: 32px;
}
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single input {
    border: 1px solid var(--border);
    background: transparent;
    text-transform: capitalize;
}
@media (max-width: 575px) {
    .checkout-single-wrapper .checkout-single-bg {
        padding: 14px;
    }
}
.checkout-single-wrapper .checkout-single-bg .payment-save {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.checkout-single-wrapper .checkout-single-bg .payment-save input {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid var(--border);
    background-color: var(--theme);
    outline: none;
    color: var(--header);
}
.checkout-single-wrapper .checkout-single-bg .payment-save label {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.shop-details-wrapper .shop-details-image {
    position: relative;
}
.shop-details-wrapper .shop-details-image .nav {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}
.shop-details-wrapper .shop-details-image .nav img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.shop-details-wrapper .shop-details-image .nav .nav-link {
    padding: 0;
}
.shop-details-wrapper .shop-details-image .shop-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.shop-details-wrapper .product-details-content {
    margin-left: 60px;
}
@media (max-width: 1399px) {
    .shop-details-wrapper .product-details-content {
        margin-left: 30px;
    }
}
@media (max-width: 991px) {
    .shop-details-wrapper .product-details-content {
        margin-left: 0;
    }
}
.shop-details-wrapper .product-details-content .star a {
    color: var(--theme);
    font-size: 16px;
    font-weight: 600;
}
.shop-details-wrapper .product-details-content .star span {
    margin-left: 10px;
}
.shop-details-wrapper .product-details-content .price-list {
    gap: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px;
}
.shop-details-wrapper .product-details-content .price-list h3 {
    font-size: 40px;
}
.shop-details-wrapper .product-details-content .cart-wrp {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity {
    padding-right: 15px;
}
.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity input {
    width: 50px;
    height: 40px;
    text-align: center;
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--header);
}
.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .minus {
    color: var(--header);
}
.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .plus {
    color: var(--header);
}
.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .qty {
    color: var(--header);
}
.shop-details-wrapper .product-details-content .cart-wrp .icon {
    width: 50px;
    height: 40px;
    text-align: center;
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--header);
    line-height: 40px;
}
.shop-details-wrapper .product-details-content .cart-wrp .theme-btn {
    padding: 20px 35px;
}
.shop-details-wrapper .product-details-content .details-info {
    position: relative;
}
.shop-details-wrapper .product-details-content .details-info:not(:last-child) {
    margin-bottom: 10px;
}
.shop-details-wrapper .product-details-content .details-info span {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    position: absolute;
    left: 0;
    top: 2px;
}
.shop-details-wrapper .product-details-content .details-info a {
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
    margin-left: 150px;
    text-transform: capitalize;
}
.shop-details-wrapper .single-tab {
    padding-top: 80px;
}
@media (max-width: 575px) {
    .shop-details-wrapper .single-tab {
        padding-top: 50px;
    }
}
.shop-details-wrapper .single-tab .nav {
    justify-content: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}
.shop-details-wrapper .single-tab .nav .nav-link.active {
    position: relative;
}
.shop-details-wrapper .single-tab .nav .nav-link.active h6 {
    color: var(--theme);
}
.shop-details-wrapper .single-tab .nav .nav-link.active::before {
    position: absolute;
    bottom: -21px;
    left: 0;
    height: 2px;
    width: 100%;
    content: "";
    background: var(--theme);
    transition: 0.3s;
}
@media (max-width: 470px) {
    .shop-details-wrapper .single-tab .nav .nav-link.active::before {
        display: none;
    }
}
.shop-details-wrapper .single-tab .nav .nav-link h6 {
    font-size: 18px;
}
.shop-details-wrapper .single-tab .description-items .description-content {
    margin-right: 50px;
}
@media (max-width: 1399px) {
    .shop-details-wrapper .single-tab .description-items .description-content {
        margin-right: 30px;
    }
}
@media (max-width: 991px) {
    .shop-details-wrapper .single-tab .description-items .description-content {
        margin-right: 0;
    }
}
.shop-details-wrapper .single-tab .description-items .description-content h3 {
    margin-bottom: 15px;
}
.shop-details-wrapper .single-tab .description-items .description-content .description-list-items {
    margin-top: 30px;
}
@media (max-width: 575px) {
    .shop-details-wrapper .single-tab .description-items .description-content .description-list-items {
        flex-wrap: wrap;
        gap: 30px;
    }
}
.shop-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--header);
    font-weight: 600;
}
.shop-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li span {
    color: var(--text);
    font-weight: 400;
}
@media (max-width: 767px) {
    .shop-details-wrapper .single-tab .review-items .admin-items {
        justify-content: center;
        gap: 30px;
    }
}
.shop-details-wrapper .single-tab .review-items .admin-items .admin-img {
    width: 100px;
    height: 100px;
}
.shop-details-wrapper .single-tab .review-items .admin-items .admin-img img {
    border-radius: 50%;
}
.shop-details-wrapper .single-tab .review-items .admin-items .content {
    position: relative;
    border: 1px solid var(--border);
}
.shop-details-wrapper .single-tab .review-items .admin-items .content::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    background-color: var(--white);
    border-left: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transform: rotate(45deg);
    top: 40%;
    left: -16px;
}
@media (max-width: 575px) {
    .shop-details-wrapper .single-tab .review-items .admin-items .content::before {
        display: none;
    }
}
.shop-details-wrapper .single-tab .review-items .admin-items .content .head-content h5 span {
    font-size: 14px;
    margin-left: 30px;
}
.shop-details-wrapper .single-tab .review-items .admin-items .content .star i {
    font-size: 16px;
    color: var(--theme);
}
.shop-details-wrapper .single-tab .review-title .rate-now {
    margin-top: 15px;
    gap: 15px;
}
.shop-details-wrapper .single-tab .review-title .rate-now p {
    font-size: 16px;
    text-transform: capitalize;
}
.shop-details-wrapper .single-tab .review-title .rate-now i {
    font-size: 16px;
    color: var(--theme);
}
.shop-details-wrapper .single-tab .review-form {
    margin-top: 40px;
}
.shop-details-wrapper .single-tab .review-form .form-clt input {
    width: 100%;
    outline: none;
    border: none;
    padding: 18px 35px;
    color: var(--text);
    background-color: var(--bg);
    font-size: 16px;
    text-transform: capitalize;
}
@media (max-width: 575px) {
    .shop-details-wrapper .single-tab .review-form .form-clt input {
        padding: 15px 20px;
    }
}
.shop-details-wrapper .single-tab .review-form .form-clt-big textarea {
    padding: 18px 35px 170px;
    width: 100%;
    outline: none;
    color: var(--text);
    background-color: rgb(245, 245, 245);
    font-size: 14px;
    border: none;
    text-transform: uppercase;
}
@media (max-width: 575px) {
    .shop-details-wrapper .single-tab .review-form .form-clt-big textarea {
        padding: 15px 20px;
    }
}

.faq-section {
    position: relative;
}

.faq-wrapper .faq-box-area {
    padding: 30px 50px 30px 30px;
    border-radius: 5px;
    border: 1px solid var(--theme);
    display: inline-block;
    margin-top: 40px;
}
.faq-wrapper .faq-box-area .box-items {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.faq-wrapper .faq-box-area .box-items .content {
    display: flex;
    align-items: center;
    gap: 15px;
}
.faq-wrapper .faq-box-area .box-items .content h3 {
    font-size: 28px;
    font-weight: 700;
}
.faq-wrapper .accordion-item {
    border: none !important;
    background-color: var(--white);
}
.faq-wrapper .accordion-item .accordion-header .accordion-button {
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.2px;
    border: none !important;
    border-radius: 0;
    box-shadow: none;
    background-color: var(--theme);
    padding: 30px 30px 0;
    text-transform: capitalize;
    font-size: 24px;
    border-radius: 5px 5px 0 0;
}
@media (max-width: 1199px) {
    .faq-wrapper .accordion-item .accordion-header .accordion-button {
        font-size: 20px;
    }
}
@media (max-width: 575px) {
    .faq-wrapper .accordion-item .accordion-header .accordion-button {
        font-size: 18px;
        padding: 20px 20px 0;
    }
}
.faq-wrapper .accordion-item .accordion-header .accordion-button span {
    margin-right: 20px;
}
.faq-wrapper .accordion-item .accordion-header .accordion-button::after {
    content: "\f324";
    font-family: "Font Awesome 5 Pro";
    background: transparent;
    font-weight: 500;
    transition: all 0.3s ease-in-out !important;
    color: var(--header);
    font-size: 16px;
}
.faq-wrapper .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: "\f325";
    font-family: "Font Awesome 5 Pro";
    background: transparent;
    font-weight: 500;
    color: var(--white);
}
.faq-wrapper .accordion-item .accordion-header .accordion-button.collapsed {
    background-color: var(--white);
    box-shadow: var(---box-shadow);
    padding: 25px 30px;
    color: var(--header);
}
.faq-wrapper .accordion-item .accordion-collapse .accordion-body {
    padding-left: 70px;
    padding-top: 25px;
    padding-right: 40px;
    color: rgba(255, 255, 255, 0.7019607843);
    background-color: var(--theme);
    border-radius: 0 0 5px 5px;
    padding-bottom: 28px;
}
@media (max-width: 767px) {
    .faq-wrapper .accordion-item .accordion-collapse .accordion-body {
        padding-left: 60px;
    }
}
@media (max-width: 575px) {
    .faq-wrapper .accordion-item .accordion-collapse .accordion-body {
        padding-left: 50px;
        padding-bottom: 20px;
    }
}

.cta-banner-section {
    position: relative;
    z-index: 9;
}
.cta-banner-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
    z-index: -1;
    height: 50%;
}

.cta-banner-wrapper {
    background-color: var(--black);
    padding: 60px 120px;
    display: flex;
    align-items: center;
    gap: 110px;
    border-radius: 5px;
}
@media (max-width: 991px) {
    .cta-banner-wrapper {
        flex-wrap: wrap;
        gap: 40px;
    }
}
@media (max-width: 767px) {
    .cta-banner-wrapper {
        gap: 30px;
        padding: 50px 40px;
    }
}
@media (max-width: 575px) {
    .cta-banner-wrapper {
        padding: 40px;
        text-align: center;
    }
}
.cta-banner-wrapper .icon {
    position: relative;
    z-index: 9;
}
@media (max-width: 575px) {
    .cta-banner-wrapper .icon {
        margin: 0px auto;
    }
}
.cta-banner-wrapper .icon::before {
    position: absolute;
    top: -120%;
    left: -12px;
    content: "";
    width: 180px;
    height: 390px;
    background-image: linear-gradient(180deg, #a6a182 0%, rgba(166, 161, 130, 0) 100%);
    z-index: -1;
    transform: rotate(15deg);
    bottom: 0;
}
@media (max-width: 1399px) {
    .cta-banner-wrapper .icon::before {
        display: none;
    }
}
.cta-banner-wrapper .content h2 {
    color: var(--white);
    margin-bottom: 20px;
}
.cta-banner-wrapper .content p {
    color: rgba(255, 255, 255, 0.7019607843);
}
.cta-banner-wrapper .newsletter-items {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 1399px) {
    .cta-banner-wrapper .newsletter-items {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
        gap: 20px;
    }
}
.cta-banner-wrapper .newsletter-items .form-clt {
    flex-basis: 60%;
}
@media (max-width: 1199px) {
    .cta-banner-wrapper .newsletter-items .form-clt {
        flex-basis: 100%;
    }
}
.cta-banner-wrapper .newsletter-items .form-clt input {
    position: relative;
    padding: 18px 30px;
    border: none;
    outline: none;
    background-color: transparent;
    border: 1px solid var(--white);
    width: 100%;
    font-size: 16px;
    color: var(--white);
    border-radius: 5px;
}
@media (max-width: 767px) {
    .cta-banner-wrapper .newsletter-items .form-clt input {
        padding: 14px 30px;
    }
}
@media (max-width: 575px) {
    .cta-banner-wrapper .newsletter-items .form-clt input {
        padding: 14px 25px;
    }
}
.cta-banner-wrapper .newsletter-items .form-clt input::placeholder {
    color: var(--white);
}
.cta-banner-wrapper .newsletter-items .theme-btn {
    padding: 25px 30px;
}
@media (max-width: 1199px) {
    .cta-banner-wrapper .newsletter-items .theme-btn {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .cta-banner-wrapper .newsletter-items .theme-btn {
        width: 100%;
        padding: 20px 30px;
    }
}
@media (max-width: 575px) {
    .cta-banner-wrapper .newsletter-items .theme-btn {
        padding: 18px 25px;
    }
}
.cta-banner-wrapper.style-2 {
    gap: 0;
    justify-content: space-between;
    padding: 60px 80px;
    background-color: var(--theme);
    border-radius: 0;
}
@media (max-width: 1199px) {
    .cta-banner-wrapper.style-2 {
        gap: 30px;
    }
}
@media (max-width: 991px) {
    .cta-banner-wrapper.style-2 {
        gap: 0;
    }
}
@media (max-width: 767px) {
    .cta-banner-wrapper.style-2 {
        padding: 50px 40px;
    }
}
@media (max-width: 575px) {
    .cta-banner-wrapper.style-2 {
        padding: 40px 30px;
    }
}
.cta-banner-wrapper.style-2 .newsletter-items {
    flex-basis: 70%;
}
@media (max-width: 1399px) {
    .cta-banner-wrapper.style-2 .newsletter-items {
        flex-basis: 100%;
        flex-wrap: initial;
    }
}
@media (max-width: 1199px) {
    .cta-banner-wrapper.style-2 .newsletter-items {
        flex-wrap: wrap;
    }
}
.cta-banner-wrapper.style-2 .newsletter-items .form-clt {
    flex-basis: 65%;
}
@media (max-width: 1399px) {
    .cta-banner-wrapper.style-2 .newsletter-items .form-clt {
        flex-basis: 50%;
    }
}
@media (max-width: 1199px) {
    .cta-banner-wrapper.style-2 .newsletter-items .form-clt {
        flex-basis: 100%;
    }
}
.cta-banner-wrapper.style-3 {
    background-color: transparent;
    border-radius: 0;
    display: initial;
    position: relative;
    z-index: 9;
}
.cta-banner-wrapper.style-3 .cta-shape {
    position: absolute;
    bottom: 0;
    left: -20px;
    z-index: -1;
}
@media (max-width: 1399px) {
    .cta-banner-wrapper.style-3 .cta-shape {
        bottom: -315px;
    }
}
@media (max-width: 1199px) {
    .cta-banner-wrapper.style-3 .cta-shape {
        display: none;
    }
}
.cta-banner-wrapper.style-3 .cta-img-2 img {
    width: 100%;
    height: 100%;
}
.cta-banner-wrapper.style-3 .content {
    position: relative;
}
.cta-banner-wrapper.style-3 .content .arrow-shape {
    position: absolute;
    right: 15%;
    top: 30%;
}
@media (max-width: 1199px) {
    .cta-banner-wrapper.style-3 .content .arrow-shape {
        display: none;
    }
}
@media (max-width: 1399px) {
    .cta-banner-wrapper.style-3 .content .newsletter-items .form-clt {
        flex-basis: 74%;
    }
}
@media (max-width: 1199px) {
    .cta-banner-wrapper.style-3 .content .newsletter-items .form-clt {
        flex-basis: 100%;
    }
}
.cta-banner-wrapper.style-3 .content .newsletter-items .form-clt input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: none;
    border-radius: 0;
}
.cta-banner-wrapper.style-3 .content .newsletter-items .theme-btn {
    border-radius: 0;
}
.cta-banner-wrapper.style-3 .content .newsletter-items .theme-btn::before,
.cta-banner-wrapper.style-3 .content .newsletter-items .theme-btn::after {
    border-radius: 0;
}

.cta-banner-wrapper-2 {
    background-color: var(--theme);
    border-radius: 5px;
    padding: 75px 60px;
    position: relative;
    margin-top: 70px;
}
@media (max-width: 1399px) {
    .cta-banner-wrapper-2 {
        margin-top: -30px;
    }
}
@media (max-width: 767px) {
    .cta-banner-wrapper-2 {
        padding: 50px 40px;
    }
}
@media (max-width: 575px) {
    .cta-banner-wrapper-2 {
        padding: 40px 30px;
    }
}
.cta-banner-wrapper-2 .cta-image {
    position: absolute;
    bottom: 0;
    left: 30px;
    z-index: 9;
}
@media (max-width: 1399px) {
    .cta-banner-wrapper-2 .cta-image {
        display: none;
    }
}
.cta-banner-wrapper-2 .cta-image .circle-shape {
    position: absolute;
    bottom: 0;
    left: -30px;
    z-index: -1;
}
.cta-banner-wrapper-2 .section-title-area {
    margin-left: 350px;
}
@media (max-width: 1399px) {
    .cta-banner-wrapper-2 .section-title-area {
        margin-left: 0;
    }
}
@media (max-width: 991px) {
    .cta-banner-wrapper-2 .section-title-area {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 30px;
    }
}

.cta-banner-section-2 {
    position: relative;
}
.cta-banner-section-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg2);
    top: 50%;
}

.cta-banner-section-3 {
    position: relative;
    z-index: 9;
}
.cta-banner-section-3::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--black);
    top: 50%;
    z-index: -1;
}

.cta-banner-section-4 {
    background-color: var(--theme);
}

.cta-banner-wrapper-3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg2);
    padding: 70px 80px;
    position: relative;
}
@media (max-width: 1199px) {
    .cta-banner-wrapper-3 {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        text-align: center;
    }
}
@media (max-width: 767px) {
    .cta-banner-wrapper-3 {
        padding: 50px 40px;
    }
}
@media (max-width: 575px) {
    .cta-banner-wrapper-3 {
        padding: 40px 30px;
    }
}
.cta-banner-wrapper-3 .dot-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.cta-banner-wrapper-3 .dot-shape img {
    width: 100%;
    height: 100%;
}
.cta-banner-wrapper-3 .content {
    position: relative;
    z-index: 9;
}
.cta-banner-wrapper-3 .content h2 {
    color: var(--white);
}
.cta-banner-wrapper-3 .content .newsletter-items .form-clt {
    position: relative;
    margin-top: 40px;
}
.cta-banner-wrapper-3 .content .newsletter-items .form-clt input {
    border: 1px solid var(--white);
    width: 600px;
    padding: 25px 20px;
    background-color: transparent;
    border-radius: 5px;
}
@media (max-width: 767px) {
    .cta-banner-wrapper-3 .content .newsletter-items .form-clt input {
        width: 450px;
        padding: 18px 20px;
    }
}
@media (max-width: 575px) {
    .cta-banner-wrapper-3 .content .newsletter-items .form-clt input {
        width: 480px;
    }
}
@media screen and (max: 550px) {
    .cta-banner-wrapper-3 .content .newsletter-items .form-clt input {
        width: 400px;
    }
}
@media (max-width: 470px) {
    .cta-banner-wrapper-3 .content .newsletter-items .form-clt input {
        width: 345px;
    }
}
.cta-banner-wrapper-3 .content .newsletter-items .form-clt input::placeholder {
    color: var(--white);
}
.cta-banner-wrapper-3 .content .newsletter-items .form-clt .theme-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
}
@media (max-width: 767px) {
    .cta-banner-wrapper-3 .content .newsletter-items .form-clt .theme-btn {
        padding: 14px 18px;
        font-size: 12px;
    }
}

.marque-section {
    position: relative;
}
@media (max-width: 1199px) {
    .marque-section .line-area {
        display: none;
    }
}
.marque-section .line-area span {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 26%;
    background-color: #efefef;
    z-index: -1;
}
.marque-section .line-area span:nth-child(2) {
    left: 50%;
}
.marque-section .line-area span:nth-child(3) {
    left: 80%;
}

.marquee-wrapper {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 45px;
    margin-top: -2px;
}
@media (max-width: 575px) {
    .marquee-wrapper {
        margin-top: -25px;
    }
}
.marquee-wrapper.style-2 {
    line-height: 40px;
}
.marquee-wrapper.style-2 .text-slider {
    font-size: 24px;
    color: var(--header);
    margin-right: 40px;
}

.text-slider {
    font-size: 120px;
    height: 100px;
    line-height: 90px;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 20px;
    color: #e1e1de;
}
@media (max-width: 575px) {
    .text-slider {
        font-size: 50px;
        height: 70px;
        line-height: 65px;
    }
}

.marquee-inner {
    position: absolute;
    display: inline-flex;
    width: 200%;
}

.marquee-list {
    float: left;
    width: 50%;
}

.marquee-item {
    float: left;
    transition: animation 0.2s ease-out;
}

.marquee-inner.to-left {
    animation: marqueeLeft 25s linear infinite;
}

@keyframes marqueeLeft {
    0% {
        left: 0;
    }
    100% {
        left: -100%;
    }
}
.marquee-inner.to-right {
    animation: marqueeRight 25s linear infinite;
}

@keyframes marqueeRight {
    0% {
        right: 0;
    }
    100% {
        right: -100%;
    }
}
.testimonial-wrapper {
    position: relative;
    margin-top: 30px;
    display: inline-block;
}
@media (max-width: 991px) {
    .testimonial-wrapper {
        width: 100%;
    }
}
.testimonial-wrapper .array-button {
    position: absolute;
    top: 0;
    right: 0;
}
@media (max-width: 1199px) {
    .testimonial-wrapper .array-button {
        display: none;
    }
}
.testimonial-wrapper .array-button .array-prev {
    background-color: transparent;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    line-height: 50px;
    border: 1px solid var(--border);
    color: var(--header);
    font-weight: bold;
}
.testimonial-wrapper .array-button .array-prev:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid transparent;
}
.testimonial-wrapper .array-button .array-next {
    background-color: transparent;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    line-height: 50px;
    border: 1px solid var(--theme);
    color: var(--theme);
    font-weight: bold;
}
.testimonial-wrapper .array-button .array-next:hover {
    background-color: var(--theme);
    color: var(--white);
}
.testimonial-wrapper .testimonial-image {
    height: 534px;
    width: 850px;
    border-radius: 5px;
}
@media (max-width: 1199px) {
    .testimonial-wrapper .testimonial-image {
        width: 600px;
    }
}
@media (max-width: 991px) {
    .testimonial-wrapper .testimonial-image {
        width: initial;
        max-width: 850px;
    }
}
@media (max-width: 767px) {
    .testimonial-wrapper .testimonial-image {
        height: 480px;
    }
}
@media (max-width: 575px) {
    .testimonial-wrapper .testimonial-image {
        height: 430px;
    }
}
.testimonial-wrapper .testimonial-area {
    max-width: 670px;
}
.testimonial-wrapper .testimonial-items {
    padding: 60px;
    background-color: var(--white);
    border-radius: 5px;
    position: relative;
    z-index: 9;
}
@media (max-width: 767px) {
    .testimonial-wrapper .testimonial-items {
        padding: 40px 30px;
    }
}
.testimonial-wrapper .testimonial-items .icon {
    position: absolute;
    top: 60px;
    right: 20px;
    font-size: 48px;
    color: var(--theme);
}
@media (max-width: 767px) {
    .testimonial-wrapper .testimonial-items .icon {
        top: 50px;
        right: 50px;
    }
}
@media (max-width: 575px) {
    .testimonial-wrapper .testimonial-items .icon {
        top: 40px;
        right: 20px;
        font-size: 38px;
    }
}
.testimonial-wrapper .testimonial-items .client-items {
    display: flex;
    align-items: center;
    gap: 20px;
}
.testimonial-wrapper .testimonial-items .client-items .client-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
.testimonial-wrapper .testimonial-items .client-items .client-content h3 {
    margin-bottom: 5px;
}
.testimonial-wrapper .testimonial-items .star {
    margin-top: 30px;
}
@media (max-width: 575px) {
    .testimonial-wrapper .testimonial-items .star {
        margin-top: 20px;
    }
}
.testimonial-wrapper .testimonial-items .star i {
    color: var(--ratting);
}
.testimonial-wrapper .testimonial-items .star .text-color {
    color: #e6e6e6;
}
.testimonial-wrapper .testimonial-items p {
    font-size: 18px;
    margin-top: 20px;
}
@media (max-width: 575px) {
    .testimonial-wrapper .testimonial-items p {
        margin-top: 15px;
        font-size: 16px;
    }
}
.testimonial-wrapper.style-2 {
    position: relative;
}
.testimonial-wrapper.style-2 .testimonial-image {
    height: 393px;
    margin-top: -160px;
    width: 960px;
}
@media (max-width: 991px) {
    .testimonial-wrapper.style-2 .testimonial-image {
        max-width: 960px;
        margin-top: 0;
        width: initial;
    }
}
.testimonial-wrapper.style-2 .testimonial-area {
    padding-top: 110px;
    max-width: 740px;
    margin-left: -100px;
}
@media (max-width: 991px) {
    .testimonial-wrapper.style-2 .testimonial-area {
        padding-top: 0;
        margin-left: 0;
    }
}
.testimonial-wrapper.style-2 .testimonial-items {
    background-color: var(--black);
    border-radius: 0;
    position: relative;
}
.testimonial-wrapper.style-2 .testimonial-items::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 45px;
    content: "";
    background-color: var(--theme);
    opacity: 0.5;
}
.testimonial-wrapper.style-2 .testimonial-items h4 {
    color: var(--white);
    font-weight: 400;
    line-height: 145%;
    font-size: 18px;
}
@media (max-width: 575px) {
    .testimonial-wrapper.style-2 .testimonial-items h4 {
        font-size: 16px;
    }
}
.testimonial-wrapper.style-2 .testimonial-items .client-content {
    margin-top: 30px;
}
.testimonial-wrapper.style-2 .testimonial-items .client-content h3 {
    color: var(--white);
    margin-bottom: 5px;
}
.testimonial-wrapper.style-2 .testimonial-items .client-content span {
    color: var(--white);
    font-weight: 400;
}
.testimonial-wrapper.style-2 .testimonial-items .icon {
    bottom: 55px;
    right: 60px;
    top: initial;
    opacity: 0.5;
}
.testimonial-wrapper.style-2 .array-button {
    position: absolute;
    bottom: -88%;
    left: 55%;
    transform: translateX(-50%);
    gap: 0;
}
.testimonial-wrapper.style-2 .array-button .array-prev {
    color: var(--black);
    border-radius: 0;
}
.testimonial-wrapper.style-2 .array-button .array-prev:hover {
    background-color: var(--theme);
    color: var(--white);
}
.testimonial-wrapper.style-2 .array-button .array-next {
    background-color: var(--theme);
    color: var(--white);
    border-radius: 0;
}
.testimonial-wrapper.style-2 .array-button .array-next:hover {
    background-color: var(--black);
}
.testimonial-wrapper.style-2::before {
    position: absolute;
    bottom: 25px;
    left: 0;
    height: 1px;
    width: 350px;
    content: "";
    background-color: var(--theme);
}

.testimonial-wrapper-2 {
    position: relative;
}
.testimonial-wrapper-2 .testimonial-image {
    max-width: 630px;
    height: 507px;
}
@media (max-width: 767px) {
    .testimonial-wrapper-2 .testimonial-image {
        height: 480px;
    }
}
@media (max-width: 575px) {
    .testimonial-wrapper-2 .testimonial-image {
        height: 430px;
    }
}
.testimonial-wrapper-2 .testimonial-content {
    padding: 0 90px;
    position: relative;
    z-index: 9;
}
@media (max-width: 1199px) {
    .testimonial-wrapper-2 .testimonial-content {
        padding: 0 40px;
    }
}
@media (max-width: 991px) {
    .testimonial-wrapper-2 .testimonial-content {
        padding: 0;
    }
}
.testimonial-wrapper-2 .testimonial-content .client-info {
    margin-bottom: 30px;
}
@media (max-width: 575px) {
    .testimonial-wrapper-2 .testimonial-content .client-info {
        margin-bottom: 20px;
    }
}
.testimonial-wrapper-2 .testimonial-content .client-info h3 {
    color: var(--white);
    margin-bottom: 5px;
}
.testimonial-wrapper-2 .testimonial-content .client-info span {
    color: var(--white);
}
.testimonial-wrapper-2 .testimonial-content p {
    color: var(--white);
    font-size: 18px;
}
.testimonial-wrapper-2 .testimonial-content .social-icon {
    padding: 10px 35px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    margin-top: 30px;
}
.testimonial-wrapper-2 .testimonial-content .social-icon a {
    color: var(--white);
}
.testimonial-wrapper-2 .testimonial-content .social-icon a:hover {
    color: var(--theme);
}
.testimonial-wrapper-2 .array-button {
    position: absolute;
    bottom: 0;
    right: 0;
}
@media (max-width: 767px) {
    .testimonial-wrapper-2 .array-button {
        display: none;
    }
}
.testimonial-wrapper-2 .array-button .array-prev {
    background-color: transparent;
    color: var(--theme) !important;
    border: 1px solid var(--theme);
}
.testimonial-wrapper-2 .array-button .array-prev i {
    color: var(--theme);
}
.testimonial-wrapper-2 .array-button .array-prev:hover {
    background-color: var(--theme);
    color: var(--white);
}
.testimonial-wrapper-2 .array-button .array-next {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}
.testimonial-wrapper-2 .array-button .array-next i {
    color: var(--theme);
    transition: all 0.4s ease-in-out;
}
.testimonial-wrapper-2 .array-button .array-next:hover {
    background-color: var(--theme);
    border: 1px solid transparent;
}
.testimonial-wrapper-2 .array-button .array-next:hover i {
    color: var(--white);
}

.testimonial-section-5 {
    position: relative;
}
.testimonial-section-5::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg2);
    left: 45%;
}
@media (max-width: 991px) {
    .testimonial-section-5::before {
        display: none;
    }
}
.testimonial-section-5 .frame-shape {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.brand-wrapper .brand-image {
    text-align: center;
}
.brand-wrapper.style-2 {
    border-bottom: 1px solid var(--text);
}

.pricing-box-items {
    margin-top: 30px;
}
.pricing-box-items .pricing-image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.pricing-box-items .pricing-content {
    padding: 20px;
    margin: 0 20px;
    margin-top: -30px;
    position: relative;
    z-index: 9;
    z-index: 9;
}
.pricing-box-items .pricing-content::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--white);
    box-shadow: var(---box-shadow);
    z-index: -1;
    height: 83%;
    border-radius: 5px;
}
.pricing-box-items .pricing-content h3 {
    margin-bottom: 5px;
}
.pricing-box-items .pricing-content h3 a:hover {
    color: var(--theme);
}
.pricing-box-items .pricing-content h4 {
    background-color: var(--theme);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 25px;
    margin-bottom: -25px;
}

.pricing-card-items {
    border: 1px solid var(--border);
    padding: 40px;
    position: relative;
    border-radius: 5px;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
    .pricing-card-items {
        padding: 30px 30px;
    }
}
@media (max-width: 575px) {
    .pricing-card-items {
        padding: 30px 20px;
    }
}
.pricing-card-items .icon {
    position: absolute;
    right: 40px;
    top: 40px;
    font-size: 70px;
    color: var(--theme);
}
@media (max-width: 767px) {
    .pricing-card-items .icon {
        top: 30px;
        right: 30px;
    }
}
@media (max-width: 575px) {
    .pricing-card-items .icon {
        top: 20px;
        right: 20px;
    }
}
.pricing-card-items .pricing-header {
    position: relative;
}
.pricing-card-items .pricing-header h2 {
    font-size: 42px;
    color: var(--header);
}
.pricing-card-items .pricing-header h2 span {
    font-size: 16px;
    color: var(--text);
    margin-left: -5px;
    font-weight: 400;
}
.pricing-card-items .pricing-header h3 {
    font-size: 22px;
    color: var(--header);
    margin-bottom: 10px;
    font-weight: 700;
}
@media (max-width: 767px) {
    .pricing-card-items .pricing-header h3 {
        font-size: 20px;
    }
}
@media (max-width: 575px) {
    .pricing-card-items .pricing-header h3 {
        font-size: 18px;
    }
}
.pricing-card-items .pricing-header p {
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px;
}
@media (max-width: 575px) {
    .pricing-card-items .pricing-header p {
        padding-bottom: 20px;
    }
}
.pricing-card-items ul {
    margin-top: 30px;
}
@media (max-width: 575px) {
    .pricing-card-items ul {
        margin-top: 20px;
    }
}
.pricing-card-items ul li:not(:last-child) {
    margin-bottom: 12px;
}
.pricing-card-items ul li i {
    margin-right: 10px;
    color: var(--theme);
}
.pricing-card-items .pricing-button {
    margin-top: 40px;
}
.pricing-card-items .pricing-button .theme-btn {
    background-color: var(--bg);
    width: 100%;
    text-align: center;
    color: var(--header);
}
.pricing-card-items .pricing-button .theme-btn::before,
.pricing-card-items .pricing-button .theme-btn::after {
    background-color: var(--theme);
}
.pricing-card-items .pricing-button .theme-btn:hover {
    color: var(--white);
}
.pricing-card-items:hover {
    border: 1px solid var(--theme);
    transform: translateY(-10px);
}

.news-card-items {
    margin-top: 30px;
}
.news-card-items .news-image {
    max-width: 370px;
    height: 340px;
}
@media (max-width: 1399px) {
    .news-card-items .news-image {
        max-width: 550px;
    }
}
.news-card-items .news-content {
    position: relative;
    z-index: 9;
    padding: 30px;
    background-color: var(--bg);
    margin-left: 40px;
    border-radius: 5px;
    margin-top: -50px;
    border-bottom: 3px solid transparent;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
    .news-card-items .news-content {
        margin: 0;
    }
}
.news-card-items .news-content ul {
    display: flex;
    align-items: center;
    gap: 15px;
}
.news-card-items .news-content ul li {
    font-size: 14px;
}
.news-card-items .news-content ul li i {
    margin-right: 7px;
}
.news-card-items .news-content h3 {
    margin-top: 15px;
    margin-bottom: 20px;
}
.news-card-items .news-content h3 a:hover {
    color: var(--theme);
}
.news-card-items .news-content .link-btn {
    font-weight: 700;
}
.news-card-items:hover .news-content {
    border-bottom: 3px solid var(--theme);
}
.news-card-items.style-2 .news-image {
    height: 301px;
    max-width: 410px;
}
@media (max-width: 1199px) {
    .news-card-items.style-2 .news-image {
        max-width: 500px;
    }
}
@media (max-width: 767px) {
    .news-card-items.style-2 .news-image {
        max-width: 650px;
        height: 450px;
    }
}
@media (max-width: 575px) {
    .news-card-items.style-2 .news-image {
        max-width: 550px;
        height: 350px;
    }
}
.news-card-items.style-2 .news-content {
    padding: 20px 0 0px;
    margin: 0;
    border-radius: 0;
    background-color: transparent;
    border-bottom: none;
}
.news-card-items.style-2 .news-content ul li {
    color: var(--black);
    letter-spacing: 2.4px;
    font-weight: 600;
}
.news-card-items.style-2 .news-content ul li i {
    color: var(--theme);
}
@media (max-width: 575px) {
    .news-card-items.style-2 .news-content h3 {
        margin-bottom: 10px;
    }
}
.news-card-items.style-2 .news-content p {
    margin-bottom: 20px;
}
@media (max-width: 575px) {
    .news-card-items.style-2 .news-content p {
        margin-bottom: 15px;
    }
}
.news-card-items.style-3 .news-image {
    height: 340px;
    max-width: 410px;
    border-radius: 5px;
}
@media (max-width: 767px) {
    .news-card-items.style-3 .news-image {
        max-width: 650px;
    }
}
.news-card-items.style-3 .news-content {
    margin-left: 15px;
    margin-right: 20px;
    border-radius: 0;
    border: none;
    margin-top: -60px;
}
.news-card-items.style-3 .news-content ul {
    flex-wrap: wrap;
    gap: 15px;
}
.news-card-items.style-3 .news-content ul li i {
    color: var(--theme);
}
.news-card-items.style-3 .news-content .link-btn i {
    color: var(--theme);
}

.section-title-area .array-prev {
    background-color: transparent;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    border: 1px solid var(--border);
    color: var(--header);
    font-weight: bold;
}
.section-title-area .array-prev:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid transparent;
}
.section-title-area .array-next {
    background-color: transparent;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    border: 1px solid var(--theme);
    color: var(--theme);
    font-weight: bold;
}
.section-title-area .array-next:hover {
    background-color: var(--theme);
    color: var(--white);
}

.news-slider-items {
    margin-top: 30px;
    display: flex;
    align-items: center;
}
@media (max-width: 1399px) {
    .news-slider-items {
        margin: 30px auto;
        max-width: 650px;
    }
}
@media (max-width: 767px) {
    .news-slider-items {
        flex-wrap: wrap;
    }
}
.news-slider-items .news-content {
    padding: 30px;
    border: 1px solid var(--text);
    border-radius: 5px;
    margin-right: -2px;
}
@media (max-width: 767px) {
    .news-slider-items .news-content {
        flex-basis: 100%;
    }
}
.news-slider-items .news-content ul {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
@media (max-width: 575px) {
    .news-slider-items .news-content ul {
        margin-bottom: 15px;
    }
}
.news-slider-items .news-content ul li {
    font-size: 14px;
    color: var(--white);
}
.news-slider-items .news-content ul li i {
    margin-right: 7px;
    color: var(--theme);
}
.news-slider-items .news-content h3 {
    margin-bottom: 20px;
    font-size: 22px;
}
@media (max-width: 575px) {
    .news-slider-items .news-content h3 {
        margin-bottom: 15px;
        font-size: 20px;
    }
}
.news-slider-items .news-content h3 a {
    color: var(--white);
}
.news-slider-items .news-content h3 a:hover {
    color: var(--theme);
}
.news-slider-items .news-content p {
    margin-bottom: 20px;
    color: var(--white);
}
@media (max-width: 575px) {
    .news-slider-items .news-content p {
        margin-bottom: 15px;
    }
}
.news-slider-items .news-image {
    max-width: 264px;
    height: 361px;
    border-radius: 5px;
    flex-basis: 50%;
}
@media (max-width: 767px) {
    .news-slider-items .news-image {
        flex-basis: 100%;
        max-width: 550px;
    }
}

@media (max-width: 767px) {
    .news-section .section-title-area {
        text-align: center;
        justify-content: center;
    }
}

.news-box-items {
    margin-top: 30px;
}
.news-box-items .news-image {
    height: 228px;
    border-radius: 5px;
}
.news-box-items .news-content {
    margin-top: 20px;
}
.news-box-items .news-content ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}
.news-box-items .news-content ul li {
    color: var(--white);
}
.news-box-items .news-content ul li i {
    margin-right: 5px;
}
.news-box-items .news-content h3 {
    margin-bottom: 20px;
}
.news-box-items .news-content h3 a {
    color: var(--white);
}
.news-box-items .news-content h3 a:hover {
    color: var(--theme);
}

.blog-wrapper h1,
.blog-wrapper h2,
.blog-wrapper h3,
.blog-wrapper h4,
.blog-wrapper h5,
.blog-wrapper h6 {
    font-weight: 600;
}
.blog-wrapper .single-blog-post {
    margin-bottom: 40px;
    position: relative;
}
.blog-wrapper .single-blog-post .video__button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.blog-wrapper .single-blog-post .video__button .video__btn__wrp {
    margin-bottom: 0;
}
.blog-wrapper .single-blog-post.post-details.format-quote .post-content {
    position: relative;
    background: transparent;
    border: none;
}
.blog-wrapper .single-blog-post.post-details .post-content {
    border: none;
}
.blog-wrapper .single-blog-post.post-details .post-content img {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.blog-wrapper .single-blog-post.post-details .post-content .single-post-image {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.blog-wrapper .single-blog-post.post-details .post-content h1 {
    font-size: 36px;
    line-height: 1.4;
}
.blog-wrapper .single-blog-post.post-details .post-content h1,
.blog-wrapper .single-blog-post.post-details .post-content h2,
.blog-wrapper .single-blog-post.post-details .post-content h3,
.blog-wrapper .single-blog-post.post-details .post-content h4,
.blog-wrapper .single-blog-post.post-details .post-content h5,
.blog-wrapper .single-blog-post.post-details .post-content h6 {
    margin-top: 10px;
}
.blog-wrapper .single-blog-post.post-details .post-content table {
    margin-top: 20px;
}
@media (max-width: 767px) {
    .blog-wrapper .single-blog-post.post-details .post-content h1 {
        font-size: 28px;
    }
    .blog-wrapper .single-blog-post.post-details .post-content h3 {
        font-size: 20px;
    }
}
.blog-wrapper .single-blog-post.post-details blockquote,
.blog-wrapper .single-blog-post.post-details .wp-block-quote {
    background-color: var(--theme);
    color: var(--white);
    font-size: 26px;
    line-height: 1.4;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    padding: 60px;
    text-align: center;
    margin: 40px 0px;
    position: relative;
    z-index: 1;
}
.blog-wrapper .single-blog-post.post-details blockquote a,
.blog-wrapper .single-blog-post.post-details .wp-block-quote a {
    color: var(--white);
}
.blog-wrapper .single-blog-post.post-details blockquote a:hover,
.blog-wrapper .single-blog-post.post-details .wp-block-quote a:hover {
    color: var(--text);
}
@media (max-width: 767px) {
    .blog-wrapper .single-blog-post.post-details blockquote,
    .blog-wrapper .single-blog-post.post-details .wp-block-quote {
        padding: 30px 15px;
        font-size: 18px;
        line-height: 1.5;
    }
}
.blog-wrapper .single-blog-post.post-details blockquote::before,
.blog-wrapper .single-blog-post.post-details .wp-block-quote::before {
    right: 30px;
    font-size: 110px;
    line-height: 1;
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    content: "\f10d";
    bottom: -20px;
    color: var(--white);
    z-index: -1;
    opacity: 0.1;
    font-weight: 900;
}
.blog-wrapper .single-blog-post.format-video .post-featured-thumb,
.blog-wrapper .single-blog-post.category-video-post .post-featured-thumb {
    z-index: 1;
    position: relative;
}
.blog-wrapper .single-blog-post.format-video .post-featured-thumb::before,
.blog-wrapper .single-blog-post.category-video-post .post-featured-thumb::before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    content: "";
    background-color: #282835;
    opacity: 0.3;
    z-index: -1;
}
.blog-wrapper .single-blog-post.quote-post .post-content,
.blog-wrapper .single-blog-post.format-quote .post-content {
    position: relative;
    background-color: var(--theme);
    border: none;
}
.blog-wrapper .single-blog-post.quote-post .post-content::before,
.blog-wrapper .single-blog-post.format-quote .post-content::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(../img/quotepost.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.blog-wrapper .single-blog-post.quote-post .quote-content,
.blog-wrapper .single-blog-post.format-quote .quote-content {
    overflow: hidden;
    padding: 50px;
}
@media (max-width: 585px) {
    .blog-wrapper .single-blog-post.quote-post .quote-content,
    .blog-wrapper .single-blog-post.format-quote .quote-content {
        text-align: center;
        font-size: 24px;
        padding: 30px;
    }
}
.blog-wrapper .single-blog-post.quote-post .quote-content .icon,
.blog-wrapper .single-blog-post.format-quote .quote-content .icon {
    font-size: 70px;
    line-height: 80px;
    float: left;
    overflow: hidden;
    margin-right: 30px;
}
@media (max-width: 585px) {
    .blog-wrapper .single-blog-post.quote-post .quote-content .icon,
    .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
        float: none;
        margin-bottom: 10px;
        margin-right: 0;
        font-size: 50px;
        line-height: 60px;
    }
}
.blog-wrapper .single-blog-post.quote-post .quote-content .quote-text,
.blog-wrapper .single-blog-post.format-quote .quote-content .quote-text {
    overflow: hidden;
}
.blog-wrapper .single-blog-post.quote-post .quote-content h2,
.blog-wrapper .single-blog-post.format-quote .quote-content h2 {
    margin-top: -2px;
    font-size: 30px;
    color: var(--white);
}
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta {
    margin-top: 10px;
}
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta span,
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta i,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta span,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta i {
    color: var(--white);
}
.blog-wrapper .single-blog-post:last-child {
    margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-featured-thumb {
    height: 350px;
    width: 100%;
    position: relative;
    margin-bottom: -2px;
    border-radius: 5px;
}
.blog-wrapper .single-blog-post .post-featured-thumb .post-date {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 15px 30px;
    background-color: var(--theme);
    text-align: center;
    border-radius: 5px;
}
.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 {
    color: var(--white);
}
.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 span {
    color: var(--white);
    text-transform: uppercase;
    font-size: 15px;
}
@media (max-width: 991px) {
    .blog-wrapper .single-blog-post .post-featured-thumb {
        height: 280px;
    }
}
@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-featured-thumb {
        height: 230px;
    }
}
.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .play-video {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
}
.blog-wrapper .single-blog-post .post-content {
    padding-top: 30px;
    overflow: hidden;
    box-sizing: border-box;
}
@media (max-width: 575px) {
    .blog-wrapper .single-blog-post .post-content {
        padding-top: 20px;
    }
}
.blog-wrapper .single-blog-post .post-content h2 {
    line-height: 1.4;
    font-size: 48px;
    font-weight: 700;
}
@media (max-width: 575px) {
    .blog-wrapper .single-blog-post .post-content h2 {
        font-size: 28px;
    }
}
.blog-wrapper .single-blog-post .post-content h2 a:hover {
    color: var(--theme);
}
.blog-wrapper .single-blog-post .post-content p {
    font-size: 16px;
}
@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content {
        padding: 30px 10px;
    }
}
@media (max-width: 414px) {
    .blog-wrapper .single-blog-post .post-content h2 {
        font-size: 22px;
    }
}
.blog-wrapper .single-blog-post .post-content .post-cat a {
    color: var(--white);
    display: inline-block;
    background-color: var(--theme);
    padding: 14px 18px 12px;
    line-height: 1;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .post-cat a {
        font-size: 12px;
    }
}
.blog-wrapper .single-blog-post .post-content .post-cat a:hover {
    background-color: var(--header);
}
.blog-wrapper .single-blog-post .post-content ul {
    margin-bottom: 0;
    list-style-type: disc;
    margin-top: 30px;
}
.blog-wrapper .single-blog-post .post-content ul ol {
    margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ul ul {
    margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ul li {
    line-height: 1.5;
    margin-top: 10px;
    list-style-type: disc;
    color: var(--text);
    position: relative;
    font-size: 18px;
    padding-left: 30px;
}
.blog-wrapper .single-blog-post .post-content ul li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Font Awesome 5 Pro";
    content: "\f00c";
    color: var(--theme);
}
.blog-wrapper .single-blog-post .post-content ol {
    margin-bottom: 0;
    list-style-type: decimal;
}
.blog-wrapper .single-blog-post .post-content ol ul {
    margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ol ol {
    margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ol li {
    line-height: 1.5;
    margin-top: 10px;
    list-style-type: decimal;
}
.blog-wrapper .single-blog-post .post-content p {
    margin-top: 15px;
}
.blog-wrapper .single-blog-post .post-content .post-meta {
    margin-bottom: 10px;
}
.blog-wrapper .single-blog-post .post-content .post-meta span {
    color: var(--text);
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    display: inline-block;
    margin-right: 25px;
}
@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .post-meta span {
        font-size: 15px;
    }
}
.blog-wrapper .single-blog-post .post-content .post-meta span i {
    margin-right: 5px;
    color: var(--theme);
    font-weight: 700;
}
.blog-wrapper .single-blog-post .post-content .author-info {
    overflow: hidden;
}
.blog-wrapper .single-blog-post .post-content .author-info .author-img {
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #f2f2f2;
    margin-right: 15px;
    float: left;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}
@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .author-info .author-img {
        margin-right: 5px;
    }
}
.blog-wrapper .single-blog-post .post-content .author-info h5 {
    display: inline-block;
    line-height: 1;
    font-size: 16px;
    margin-top: 9px;
}
.blog-wrapper .single-blog-post .post-content .author-info h5 a:hover {
    color: var(--theme);
}
@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .author-info h5 {
        font-size: 14px;
    }
}
.blog-wrapper .single-blog-post .post-content .post-link a {
    font-weight: 700;
}
.blog-wrapper .single-blog-post .post-content .post-link a:hover {
    color: var(--theme);
}
@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .post-link a {
        font-size: 14px;
    }
}
.blog-wrapper .single-blog-post .post-content .post-link a i {
    margin-right: 5px;
}
@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .post-link a i {
        margin-right: 3px;
    }
}

@media (min-width: 991px) {
    .news-area .main-sidebar {
        margin-left: 20px;
    }
}
@media (max-width: 991px) {
    .news-area .main-sidebar {
        margin-top: 40px;
    }
}
.news-area .main-sidebar .single-sidebar-widget {
    border: 2px solid #ededed;
    box-sizing: border-box;
    padding: 30px;
    margin-bottom: 40px;
}
.news-area .main-sidebar .single-sidebar-widget ul {
    padding-left: 0;
}
.news-area .main-sidebar .single-sidebar-widget ul > li {
    margin-bottom: 10px;
}
.news-area .main-sidebar .single-sidebar-widget ul > li a {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}
.news-area .main-sidebar .single-sidebar-widget ul > li a:hover {
    color: var(--theme);
}
.news-area .main-sidebar .single-sidebar-widget ul ul {
    padding-left: 20px;
}
.news-area .main-sidebar .single-sidebar-widget ul ul li {
    margin-top: 5px;
}
.news-area .main-sidebar .single-sidebar-widget:last-child {
    margin-bottom: 0;
}
.news-area .main-sidebar .single-sidebar-widget .wid-title {
    margin-bottom: 25px;
    padding-left: 45px;
    position: relative;
}
.news-area .main-sidebar .single-sidebar-widget .wid-title::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    height: 4px;
    width: 18px;
    border-radius: 5px;
    position: absolute;
    background-color: var(--theme);
}
.news-area .main-sidebar .single-sidebar-widget .wid-title::after {
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    height: 4px;
    width: 4px;
    border-radius: 50%;
    position: absolute;
    background-color: var(--theme);
}
.news-area .main-sidebar .single-sidebar-widget .wid-title h4 {
    font-size: 24px;
    font-weight: 600;
}
.news-area .main-sidebar .single-sidebar-widget .social-link a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--bg);
    font-size: 14px;
    margin-right: 5px;
    margin-bottom: 5px;
}
.news-area .main-sidebar .single-sidebar-widget .social-link a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.search_widget form {
    width: 100%;
    position: relative;
}
.search_widget form input {
    background-color: var(--bg);
    font-size: 15px;
    padding: 20px;
    width: 100%;
    border: none;
    text-transform: capitalize;
    color: var(--header);
}
.search_widget form button {
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    font-size: 18px;
    height: 100%;
    background-color: var(--theme);
    color: var(--white);
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.search_widget form button:hover {
    background-color: var(--header);
}

.popular-posts .single-post-item,
.popular_posts .single-post-item {
    overflow: hidden;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
}
.popular-posts .single-post-item:last-child,
.popular_posts .single-post-item:last-child {
    margin-bottom: 0;
    border: none;
    padding-bottom: 0;
}
.popular-posts .single-post-item .thumb,
.popular_posts .single-post-item .thumb {
    height: 95px;
    width: 95px;
    background-color: #f2f2f2;
    float: left;
    overflow: hidden;
    margin-right: 20px;
}
.popular-posts .single-post-item .post-content,
.popular_posts .single-post-item .post-content {
    overflow: hidden;
}
.popular-posts .single-post-item .post-content h5,
.popular_posts .single-post-item .post-content h5 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: capitalize;
}
.popular-posts .single-post-item .post-content h5 a:hover,
.popular_posts .single-post-item .post-content h5 a:hover {
    color: var(--theme);
}
.popular-posts .single-post-item .post-content .post-date,
.popular_posts .single-post-item .post-content .post-date {
    margin-top: 10px;
    color: var(--theme);
    font-weight: 600;
    font-size: 15px;
    text-transform: capitalize;
}
.popular-posts .single-post-item .post-content .post-date i,
.popular_posts .single-post-item .post-content .post-date i {
    margin-right: 7px;
}

.widget_categories ul li {
    display: block;
}
.widget_categories ul li:last-child a {
    margin-bottom: 0;
}
.widget_categories ul li a {
    position: relative;
    background: var(--bg);
    padding: 17px 20px;
    line-height: 1;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    transition: all 0.4s ease-in-out;
}
.widget_categories ul li a:hover {
    color: var(--theme);
}
.widget_categories ul li a i {
    margin-right: 10px;
}
.widget_categories ul li a span {
    position: absolute;
    width: 60px;
    line-height: 55px;
    height: 100%;
    content: "";
    background-color: var(--theme);
    right: 0;
    top: 0;
    text-align: center;
    color: var(--white);
}

.tagcloud a {
    display: inline-block;
    padding: 11px 26px;
    line-height: 1;
    font-size: 15px;
    font-weight: 600;
    background: var(--bg);
    margin-right: 10px;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.tagcloud a:last-child {
    margin-right: 0;
}
.tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.widget_categories ul li {
    display: block;
    margin-bottom: 10px;
}

p.sticky-label {
    position: absolute;
    right: 0;
    background: var(--theme);
    color: var(--white);
    padding: 10px 40px;
    z-index: -1;
    top: 0;
    font-weight: 700;
}

.page-nav-wrap ul li {
    display: inline-block;
}
.page-nav-wrap ul li .page-numbers {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: #f6f6f6;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    margin: 0 2px;
}
.page-nav-wrap ul li .page-numbers.current {
    background-color: var(--theme);
    color: var(--white);
}
@media (max-width: 767px) {
    .page-nav-wrap ul li .page-numbers {
        margin-top: 10px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 14px;
    }
}
.page-nav-wrap ul li .page-numbers i {
    margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers:hover {
    background-color: var(--theme);
    color: var(--white);
}

.social-share a {
    margin-left: 10px;
    transition: all 0.4s ease-in-out;
}
.social-share a:hover {
    color: var(--theme);
}

.tag-share-wrap {
    padding-bottom: 50px;
}
.tag-share-wrap h4 {
    margin-bottom: 25px;
}
@media (max-width: 767px) {
    .tag-share-wrap h4 {
        margin-bottom: 10px;
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .tag-share-wrap .tagcloud {
        margin-bottom: 20px;
    }
}

.comments-section-wrap {
    overflow: hidden;
}

.comments-heading h3,
.related-post-wrap h3,
.comment-form-wrap h3 {
    font-size: 26px;
}
@media (max-width: 767px) {
    .comments-heading h3,
    .related-post-wrap h3,
    .comment-form-wrap h3 {
        font-size: 20px;
    }
}

.comments-item-list .single-comment-item {
    margin-top: 30px;
}
.comments-item-list .single-comment-item ul {
    margin-bottom: 15px;
}
.comments-item-list .single-comment-item p,
.comments-item-list .single-comment-item span {
    font-size: 16px;
}
.comments-item-list .single-comment-item .author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    float: left;
    overflow: hidden;
    margin-right: 30px;
}
@media (max-width: 991px) {
    .comments-item-list .single-comment-item .author-img {
        width: 80px;
        height: 80px;
        margin-right: 20px;
    }
}
@media (max-width: 767px) {
    .comments-item-list .single-comment-item .author-img {
        width: 70px;
        height: 70px;
        margin-right: 15px;
    }
}
@media (max-width: 585px) {
    .comments-item-list .single-comment-item .author-img {
        float: none;
        margin-bottom: 20px;
    }
}
.comments-item-list .single-comment-item .author-info-comment {
    overflow: auto;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e2e2;
}
.comments-item-list .single-comment-item .author-info-comment .info {
    position: relative;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
    padding: 12px 18px;
    font-size: 14px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: #727475;
    border: 1px solid #ebebeb;
    background: transparent;
    border-radius: 0;
    transition: all 0.4s ease-in-out;
    box-shadow: inherit;
}
@media (max-width: 767px) {
    .comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
        font-size: 12px;
    }
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn i {
    margin-right: 10px;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::before,
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::after {
    background-color: initial;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover {
    background-color: var(--theme);
    color: var(--white);
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover a {
    color: var(--white) !important;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover i {
    transform: translate(0);
}
.comments-item-list .single-comment-item .author-info-comment .info h5 {
    margin-bottom: 5px;
}
@media (max-width: 767px) {
    .comments-item-list .single-comment-item .author-info-comment .info h5 {
        font-size: 16px;
    }
}
.comments-item-list .single-comment-item .author-info-comment span {
    color: var(--theme);
    font-weight: 500;
}
.comments-item-list .single-comment-item .author-info-comment .theme-btn {
    padding: 7px 18px;
    font-size: 14px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
@media (max-width: 767px) {
    .comments-item-list .single-comment-item .author-info-comment .theme-btn {
        font-size: 12px;
    }
}
.comments-item-list .single-comment-item .author-info-comment .theme-btn i {
    margin-right: 5px;
}
.comments-item-list .single-comment-item .author-info-comment .theme-btn:hover a {
    color: var(--white);
}
.comments-item-list .single-comment-item .author-info-comment .comment-text {
    margin-top: 15px;
}

.comment-form {
    background-color: var(--white);
    width: 100%;
    margin-top: 30px;
}
@media (max-width: 767px) {
    .comment-form {
        padding: 30px;
    }
}
@media (max-width: 585px) {
    .comment-form {
        padding: 30px 15px;
    }
}
.comment-form label {
    margin-bottom: 4px;
}
.comment-form input,
.comment-form textarea {
    margin-bottom: 20px;
    outline: none;
    padding: 20px 30px;
    line-height: 1;
    font-size: 16px;
    width: 100%;
    border: none;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--header);
    background-color: var(--bg);
}
@media (max-width: 585px) {
    .comment-form input,
    .comment-form textarea {
        padding: 15px;
    }
}
.comment-form textarea {
    height: 200px;
    line-height: 1.3;
    border: none;
}
@media (max-width: 767px) {
    .comment-form textarea {
        height: 120px;
    }
}
.comment-form .theme-btn {
    display: inline-block;
    line-height: 1.2;
    padding: 24px 60px;
    transition: all 0.3s ease-in-out;
    margin-bottom: 0;
    margin-top: 20px;
}
@media (max-width: 767px) {
    .comment-form .theme-btn {
        padding: 20px 40px;
    }
}
@media (max-width: 585px) {
    .comment-form .theme-btn {
        padding: 15px 40px;
        font-size: 14px;
    }
}
.comment-form .theme-btn i {
    margin-right: 10px;
}
.comment-form .theme-btn:hover i {
    transform: translate(0);
}

.comment ul {
    list-style-type: disc;
}
.comment ul ol {
    margin-bottom: 0;
}
.comment ul li {
    line-height: 1.5;
    margin-top: 10px;
    list-style-type: disc;
}
.comment ol ul {
    margin-bottom: 0;
}
.comment ol ol {
    margin-bottom: 0;
}
.comment ol li {
    line-height: 1.5;
    margin-top: 10px;
}

.site_info_widget .single-contact-info {
    overflow: auto;
    margin-bottom: 20px;
}
.site_info_widget .single-contact-info span {
    display: block;
    color: var(--theme);
}
.site_info_widget .single-contact-info .icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: var(--white);
    background-color: var(--theme);
    float: left;
    text-align: center;
    overflow: hidden;
    font-size: 16px;
    margin-right: 20px;
}
.site_info_widget .single-contact-info:nth-child(2n) .icon {
    background-color: var(--theme);
}
.site_info_widget .single-contact-info:nth-child(3n) .icon {
    background-color: var(--theme);
}
.site_info_widget .social-link {
    margin-top: 35px;
}
.site_info_widget .social-link a {
    margin-right: 8px !important;
}

.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.portfolio-wrapper {
    margin-right: -35%;
}
@media (max-width: 1199px) {
    .portfolio-wrapper {
        margin-right: 0;
    }
}
.portfolio-wrapper.style-2 {
    margin-right: 0;
    padding: 0 95px;
}
@media (max-width: 1399px) {
    .portfolio-wrapper.style-2 {
        padding: 0;
    }
}
.portfolio-wrapper.style-2 .portfolio-items {
    margin-top: 0;
}
@media (max-width: 767px) {
    .portfolio-wrapper.style-2 .portfolio-items .portfolio-image {
        max-width: 700px;
    }
}

.portfolio-items {
    margin-top: 30px;
    position: relative;
}
.portfolio-items::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--black);
    z-index: 1;
    top: 20px;
    width: 90%;
    height: 93%;
    left: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
    .portfolio-items::before {
        top: 0;
        width: 100%;
        height: 100%;
        left: 0;
    }
}
.portfolio-items .portfolio-image {
    max-width: 100%;
    height: 534px;
    border-radius: 5px;
    position: relative;
}
@media (max-width: 1399px) {
    .portfolio-items .portfolio-image {
        max-width: 550px;
    }
}
@media (max-width: 1199px) {
    .portfolio-items .portfolio-image {
        margin-right: 0;
    }
}
@media (max-width: 767px) {
    .portfolio-items .portfolio-image {
        height: 500px;
    }
}
@media (max-width: 575px) {
    .portfolio-items .portfolio-image {
        max-width: 550px;
    }
}
.portfolio-items .portfolio-image .portfolio-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) {
    .portfolio-items .portfolio-image .portfolio-content br {
        display: block;
    }
}
.portfolio-items .portfolio-image .portfolio-content .icon {
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    display: inline-block;
    transition: all 0.4s ease-in-out;
    margin-bottom: 30px;
}
.portfolio-items .portfolio-image .portfolio-content .icon:hover {
    background-color: var(--white);
    color: var(--theme);
}
.portfolio-items .portfolio-image .portfolio-content h3 {
    margin-bottom: 10px;
}
.portfolio-items .portfolio-image .portfolio-content h3 a {
    color: var(--white);
}
.portfolio-items .portfolio-image .portfolio-content h3 a:hover {
    color: var(--theme);
}
.portfolio-items .portfolio-image .portfolio-content p {
    color: var(--white);
}
.portfolio-items:hover::before {
    opacity: 0.8;
    visibility: visible;
}
.portfolio-items:hover .portfolio-image .portfolio-content {
    opacity: 1;
    visibility: visible;
}

.portfolio-wrapper-2 {
    margin-bottom: 30px;
}
.portfolio-wrapper-2 .portfolio-content {
    display: flex;
    align-items: center;
    gap: 110px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 0;
}
@media (max-width: 767px) {
    .portfolio-wrapper-2 .portfolio-content {
        gap: 90px;
        padding: 30px 0;
    }
}
@media (max-width: 575px) {
    .portfolio-wrapper-2 .portfolio-content {
        gap: 70px;
        padding: 25px 0;
    }
}
.portfolio-wrapper-2 .portfolio-content:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.portfolio-wrapper-2 .portfolio-content .content {
    position: relative;
    overflow: hidden;
}
.portfolio-wrapper-2 .portfolio-content .content::before {
    position: absolute;
    top: 6px;
    left: 0px;
    content: "";
    width: 90px;
    height: 16px;
    background-size: cover;
    background-image: url(../img/arrow.svg);
    left: -100px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.portfolio-wrapper-2 .portfolio-content .content p {
    color: var(--theme);
    transition: all 0.4s ease-in-out;
}
.portfolio-wrapper-2 .portfolio-content h3 a {
    color: var(--white);
}
.portfolio-wrapper-2 .portfolio-content h3 a:hover {
    color: var(--theme);
}
.portfolio-wrapper-2 .portfolio-content:hover .content::before {
    opacity: 1;
    visibility: visible;
    left: 0;
}
.portfolio-wrapper-2 .portfolio-content:hover .content p {
    padding-left: 110px;
}
.portfolio-wrapper-2 .portfolio-image {
    margin-left: 100px;
    position: relative;
    z-index: 9;
}
@media (max-width: 1399px) {
    .portfolio-wrapper-2 .portfolio-image {
        margin-left: 50px;
    }
}
@media (max-width: 1199px) {
    .portfolio-wrapper-2 .portfolio-image {
        margin-left: 0;
    }
}
.portfolio-wrapper-2 .portfolio-image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.portfolio-wrapper-2 .portfolio-image::before {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    width: 535px;
    height: 410px;
    border-radius: 5px;
    background-color: var(--theme);
    transform: rotate(-15deg);
    z-index: -1;
    opacity: 0.5;
}
@media (max-width: 1399px) {
    .portfolio-wrapper-2 .portfolio-image::before {
        width: 495px;
    }
}
@media (max-width: 1199px) {
    .portfolio-wrapper-2 .portfolio-image::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .portfolio-wrapper-3 {
        margin-top: -20px;
    }
}
.portfolio-wrapper-3 .portfolio-content {
    margin-left: 33px;
}
@media (max-width: 1199px) {
    .portfolio-wrapper-3 .portfolio-content {
        margin-left: 0;
    }
    .portfolio-wrapper-3 .portfolio-content br {
        display: block;
    }
}
@media (max-width: 575px) {
    .portfolio-wrapper-3 .portfolio-content {
        text-align: center;
    }
}
.portfolio-wrapper-3 .portfolio-content h6 {
    font-size: 18px;
    font-weight: 600;
    color: var(--theme);
    display: inline-block;
    margin-bottom: 10px;
    line-height: 1;
}
.portfolio-wrapper-3 .portfolio-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}
@media (max-width: 991px) {
    .portfolio-wrapper-3 .portfolio-content h3 {
        font-size: 26px;
    }
}
@media (max-width: 767px) {
    .portfolio-wrapper-3 .portfolio-content h3 {
        font-size: 24px;
    }
}
@media (max-width: 575px) {
    .portfolio-wrapper-3 .portfolio-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
}
.portfolio-wrapper-3 .portfolio-content h3 a:hover {
    color: var(--theme);
}
.portfolio-wrapper-3 .portfolio-content p {
    margin-bottom: 35px;
}
@media (max-width: 767px) {
    .portfolio-wrapper-3 .portfolio-content p {
        margin-bottom: 25px;
    }
}
.portfolio-wrapper-3 .portfolio-content ul {
    margin-bottom: 35px;
    margin-top: -10px;
}
.portfolio-wrapper-3 .portfolio-content ul li i {
    color: var(--theme);
    margin-right: 5px;
}
.portfolio-wrapper-3 .portfolio-content ul li:not(:last-child) {
    margin-bottom: 15px;
}
.portfolio-wrapper-3 .portfolio-content .counter-item {
    display: inline-flex;
    gap: 20px;
    padding: 20px;
    background-color: #c1995b;
}
.portfolio-wrapper-3 .portfolio-content .counter-item h2 {
    font-size: 48px;
}
.portfolio-wrapper-3 .portfolio-content .counter-item h2 span {
    font-size: 48px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0;
}
.portfolio-wrapper-3 .portfolio-content .counter-item p {
    margin-bottom: 0;
}
.portfolio-wrapper-3 .project-image {
    margin-left: 33px;
}
@media (max-width: 1199px) {
    .portfolio-wrapper-3 .project-image {
        margin-left: 0;
    }
}
.portfolio-wrapper-3 .project-image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.portfolio-section-2 .swiper-slide.swiper-slide-active .portfolio-single-items .portfolio-image .portfolio-content {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}

.portfolio-single-items {
    margin-top: 30px;
    overflow: hidden;
}
.portfolio-single-items .portfolio-image {
    height: 402px;
    transition: all 0.4s ease-in-out;
    position: relative;
}
.portfolio-single-items .portfolio-image .portfolio-content {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    padding: 30px;
    background-color: var(--black);
    bottom: -150px;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}
.portfolio-single-items .portfolio-image .portfolio-content h3 {
    margin-bottom: 10px;
}
.portfolio-single-items .portfolio-image .portfolio-content h3 a {
    color: var(--white);
}
.portfolio-single-items .portfolio-image .portfolio-content h3 a:hover {
    color: var(--theme);
}
.portfolio-single-items .portfolio-image .portfolio-content p {
    color: var(--white);
}
.portfolio-single-items:hover .portfolio-image .portfolio-content {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}

.contact-wrapper .contact-left {
    padding: 60px;
    background-color: var(--bg2);
}
@media (max-width: 767px) {
    .contact-wrapper .contact-left {
        padding: 50px 40px;
    }
}
@media (max-width: 575px) {
    .contact-wrapper .contact-left {
        padding: 40px 30px;
    }
}
.contact-wrapper .contact-form-items .form-clt input,
.contact-wrapper .contact-form-items .form-clt textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 5px;
}
@media (max-width: 767px) {
    .contact-wrapper .contact-form-items .form-clt input,
    .contact-wrapper .contact-form-items .form-clt textarea {
        padding: 14px 20px;
    }
}
@media (max-width: 575px) {
    .contact-wrapper .contact-form-items .form-clt input,
    .contact-wrapper .contact-form-items .form-clt textarea {
        padding: 12px 18px;
    }
}
.contact-wrapper .contact-form-items .form-clt input::placeholder,
.contact-wrapper .contact-form-items .form-clt textarea::placeholder {
    color: rgba(255, 255, 255, 0.7019607843);
}
.contact-wrapper .contact-form-items .form-clt textarea {
    padding-bottom: 75px;
}
.contact-wrapper .contact-image {
    width: 980px;
    height: 811px;
    border-radius: 5px;
}
@media (max-width: 1199px) {
    .contact-wrapper .contact-image {
        width: inherit;
        max-width: 900px;
        height: 650px;
    }
}
@media (max-width: 991px) {
    .contact-wrapper .contact-image {
        height: 600px;
    }
}
@media (max-width: 767px) {
    .contact-wrapper .contact-image {
        height: 500px;
    }
}
@media (max-width: 575px) {
    .contact-wrapper .contact-image {
        height: 430px;
    }
}

.contact-wrapper-2 .section-title {
    margin-top: -12px;
}
.contact-wrapper-2 .contact-form-items .form-clt {
    position: relative;
}
.contact-wrapper-2 .contact-form-items .form-clt input,
.contact-wrapper-2 .contact-form-items .form-clt textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: var(--white);
    border: none;
    color: var(--text);
    padding: 16px 30px;
    border-radius: 5px;
    font-weight: 500;
}
@media (max-width: 767px) {
    .contact-wrapper-2 .contact-form-items .form-clt input,
    .contact-wrapper-2 .contact-form-items .form-clt textarea {
        padding: 14px 20px;
    }
}
@media (max-width: 575px) {
    .contact-wrapper-2 .contact-form-items .form-clt input,
    .contact-wrapper-2 .contact-form-items .form-clt textarea {
        padding: 12px 18px;
    }
}
.contact-wrapper-2 .contact-form-items .form-clt input::placeholder,
.contact-wrapper-2 .contact-form-items .form-clt textarea::placeholder {
    color: var(--text);
}
.contact-wrapper-2 .contact-form-items .form-clt textarea {
    padding-bottom: 175px;
}
.contact-wrapper-2 .contact-form-items .form-clt .icon {
    position: absolute;
    top: 16px;
    right: 30px;
    color: var(--black);
}
.contact-wrapper-2 .contact-form-items .form-clt .nice-select {
    background-color: var(--white);
    font-weight: 500;
    border: none;
    padding: 16px 30px;
}
@media (max-width: 767px) {
    .contact-wrapper-2 .contact-form-items .form-clt .nice-select {
        padding: 14px 20px;
    }
}
@media (max-width: 575px) {
    .contact-wrapper-2 .contact-form-items .form-clt .nice-select {
        padding: 12px 18px;
    }
}
.contact-wrapper-2 .contact-form-items .form-clt .nice-select span {
    color: var(--text);
}
.contact-wrapper-2 .contact-form-items .form-clt .nice-select::after {
    border-bottom: 1px solid var(--black);
    border-right: 1px solid var(--black);
    right: 30px;
}
.contact-wrapper-2 .contact-form-items .form-clt .nice-select .option.selected.focus {
    background: transparent;
    color: var(--white);
}
.contact-wrapper-2 .contact-form-items .form-clt .nice-select .list {
    background-color: var(--theme);
    color: var(--white);
}

.contact-info-wrapper {
    background-color: var(--bg);
}
.contact-info-wrapper .google-map {
    margin-bottom: -9px;
}
.contact-info-wrapper .google-map iframe {
    width: 100%;
    height: 560px;
}
.contact-info-wrapper .contact-info-content {
    padding: 40px;
}
.contact-info-wrapper .contact-info-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}
.contact-info-wrapper .contact-info-content .contact-info-area {
    margin-top: 40px;
}
.contact-info-wrapper .contact-info-content .contact-info-area .contact-info-items .icon {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    background-color: rgba(166, 161, 130, 0.1);
    color: var(--theme);
    text-align: center;
}
.contact-info-wrapper .contact-info-content .contact-info-area .contact-info-items .content {
    margin-top: 20px;
}
.contact-info-wrapper .contact-info-content .contact-info-area .contact-info-items .content h3 {
    font-weight: 600;
}
.contact-info-wrapper .contact-info-content .contact-info-area .contact-info-items .content h6 {
    font-weight: 400;
    color: var(--text);
}
.contact-info-wrapper .contact-info-content .contact-info-area .contact-info-items .content h6 a {
    color: var(--text);
}

@media (max-width: 1399px) {
    .contact-section-4 {
        padding-top: 40px;
    }
}
@media (max-width: 1199px) {
    .contact-section-4 {
        padding-top: 20px;
    }
}
@media (max-width: 991px) {
    .contact-section-4 {
        margin-top: -40px;
    }
}

.contact-wrapper-3 {
    background-image: url(../img/contact.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 0 80px 0;
    border-radius: 5px;
}
.contact-wrapper-3 .contact-content {
    background-color: var(--white);
    border-radius: 0 0 5px 0;
    padding: 40px;
    padding-left: 0;
}
.contact-wrapper-3 .contact-content .contact-form-items .form-clt {
    position: relative;
}
.contact-wrapper-3 .contact-content .contact-form-items .form-clt input,
.contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea {
    width: 100%;
    outline: none;
    border: 1px solid var(--border);
    background-color: transparent;
    color: var(--text);
    padding: 16px 20px;
    border-radius: 5px;
    font-weight: 500;
}
@media (max-width: 767px) {
    .contact-wrapper-3 .contact-content .contact-form-items .form-clt input,
    .contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea {
        padding: 14px 20px;
    }
}
@media (max-width: 575px) {
    .contact-wrapper-3 .contact-content .contact-form-items .form-clt input,
    .contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea {
        padding: 12px 18px;
    }
}
.contact-wrapper-3 .contact-content .contact-form-items .form-clt input::placeholder,
.contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea::placeholder {
    color: var(--text);
}
.contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea {
    padding-bottom: 115px;
}

.footer-widgets-wrapper {
    padding: 90px 0 120px;
    position: relative;
    z-index: 9;
}
@media (max-width: 1199px) {
    .footer-widgets-wrapper {
        padding: 70px 0 100px;
    }
}
@media (max-width: 991px) {
    .footer-widgets-wrapper {
        padding: 50px 0 80px;
    }
}
.footer-widgets-wrapper .single-footer-widget {
    margin-top: 30px;
}
.footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 30px;
}
.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
    font-weight: 600;
    color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content p {
    color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
    position: relative;
    margin-top: 40px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    outline: none;
    padding: 18px 20px;
    width: 100%;
    border-radius: 5px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::placeholder {
    color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 64px;
    line-height: 60px;
    border-radius: 5px;
    text-align: center;
    background-color: #fff;
    color: #1b1e63;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input.style-two {
    position: relative;
    margin-top: 40px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input.style-two input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7019607843);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input.style-two input::placeholder {
    color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input.style-two .newsletter-btn {
    border-radius: 0 5px 5px 0;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input.style-three input {
    background-color: var(--black);
    border-radius: 0;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input.style-three .newsletter-btn {
    border-radius: 0;
    color: var(--black);
    font-size: 18px;
    top: 5px;
    right: 5px;
    height: 54px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
    gap: 10px;
    margin-top: 40px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 5px;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.4s ease-in-out;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
    background-color: #fff;
    color: #1b1e63;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items {
    display: flex;
    gap: 20px;
    align-items: center;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items:not(:last-child) {
    margin-bottom: 20px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items .icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #fff;
    color: rgba(255, 255, 255, 0.7019607843);
    border-radius: 50%;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items .content {
    flex-basis: 79%;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items .content h4 {
    color: var(--white);
    font-weight: 400;
    margin-top: 5px;
    font-size: 16px;
    line-height: 25px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items .content h4 a {
    color: var(--white);
    text-transform: lowercase;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area-2 .contact-items {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area-2 .contact-items:not(:last-child) {
    margin-bottom: 20px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area-2 .contact-items .icon {
    font-size: 20px;
    color: var(--theme);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area-2 .contact-items .content p {
    color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area-2 .contact-items .content h6 {
    font-size: 16px;
    font-weight: 400;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area-2 .contact-items .content h6 a {
    color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .list-items li {
    text-transform: capitalize;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:not(:last-child) {
    margin-bottom: 15px;
}
.footer-widgets-wrapper .single-footer-widget .list-items li a {
    font-size: 15px;
    color: var(--white);
    position: relative;
}
.footer-widgets-wrapper .single-footer-widget .list-items li a:hover {
    padding-left: 20px;
    color: #fff;
}
.footer-widgets-wrapper .single-footer-widget .list-items li a:hover::before {
    opacity: 1;
    visibility: visible;
}
.footer-widgets-wrapper.style-2 .single-footer-widget {
    margin-top: 30px;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .social-icon a {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .list-items li i {
    margin-right: 10px;
    color: var(--theme);
}

.footer-bottom {
    padding: 15px 0;
    position: relative;
    z-index: 9;
    background-color: rgba(255, 255, 255, 0.0509803922);
}
@media (max-width: 575px) {
    .footer-bottom {
        padding: 20px 0;
        text-align: center;
    }
}
@media (max-width: 991px) {
    .footer-bottom .footer-wrapper {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center !important;
        margin-top: 30px;
    }
}
.footer-bottom .footer-wrapper p {
    color: rgba(255, 255, 255, 0.7019607843);
    font-size: 14px;
}
.footer-bottom .footer-wrapper p a {
    color: rgba(255, 255, 255, 0.7019607843);
}
.footer-bottom .footer-wrapper .footer-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 575px) {
    .footer-bottom .footer-wrapper .footer-menu {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
}
.footer-bottom .footer-wrapper .footer-menu li a {
    color: rgba(255, 255, 255, 0.7019607843);
    background-image: linear-gradient(var(--theme), var(--theme));
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}
.footer-bottom .footer-wrapper .footer-menu li a:hover {
    background-size: 100% 1px;
}
.footer-bottom .footer-wrapper.border-style {
    border-top: 1px solid var(--text) !important;
}
.footer-bottom.style-2 {
    background-color: transparent;
    padding: 0;
    position: relative;
    z-index: 9;
    margin-top: -5px;
}
@media (max-width: 991px) {
    .footer-bottom.style-2 {
        margin-top: -35px;
    }
}
.footer-bottom.style-2 .footer-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 0;
}

.home .footer-section {
    position: relative;
    overflow: hidden;
    min-height: 745px;
}
.footer-section .shape-img {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.2;
}
.footer-section .shape-img-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.1;
}
.footer-section .footer-shape-3 {
    position: absolute;
    bottom: 0;
    right: 0;
}
.footer-section .bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}
.footer-section .bg-shape img {
    width: 100%;
    height: 100%;
}
/*Logo*/
.logo img {
    width: 80px;
}
img.copy-right-image {
    width: 30px;
}
.copy-right {
    text-align: end;
}
.footer-widgets-wrapper .single-footer-widget .list-items li a i {
    margin-right: 10px;
    font-weight: 100;
}
.offcanvas__logo img {
    width: 100px;
}
.widget-head.footer-logo img {
    width: 130px;
    border-radius: 0;
}
.contact-info-area h3 {
    color: #fff;
    padding-bottom: 30px;
    font-size: 15px;
}

@media screen and (min-width: 320px) and (max-width: 767px) {
    .hero-image-2 {
        display: none;
    }
    .logo img {
        width: 40px;
    }
}
.counter-item-img img {
    width: 200px;
    height: 200px;
}
.service-left h2 {
    width: 83%;
}
.contact-info-area .contact-items {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-info-content .contact-items .content h4 {
    font-size: 15px;
    font-weight: 400;
    padding: 10px 0;
    line-height: 24px;
}

.contact-info-area h2:after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 70px;
    height: 3px;
    background: #ed1b24;
}

.contact-info-area h2 {
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 20px;
    color: #1b1e63;
    position: relative;
}

.has-dropdown {
    position: relative;
}
.has-dropdown:after {
    content: "\f107";
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    right: -15px;
}

.sticky .logo img {
    width: 50px;
}
.icon img {
    width: 25px;
}
.d-list {
    column-count: 2;
}
.service-details-items .details-content p {
    padding-top: 20px;
}
/* Gallery */

.main .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
}
.main .card {
    color: #252a32;
    border-radius: 2px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}
.main .card-image {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 70%;
    background: #ffffff;
}
.main .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 600px) {
    .main .gallery {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }
}

/* Gallery */
.main .gallerys {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 600px) {
    .main .gallerys {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }
}

.service-listing li {
    position: relative;
}
.service-listing .icon {
    position: absolute;
    left: -40px;
}

.page-template-gallery .main {
    padding: 100px 0;
}

.form-control {
    padding: 16px 20px;
}
.quote {
    padding: 100px 0;
}
.quote h2 {
    padding-bottom: 50px;
}
.contact-info-content .contact-items .content h4 a {
    text-transform: lowercase;
}
.product-thumb img {
    width: 100%;
    height: auto;
}

/* Project Detail page */

/* Main Image Container */
.main-image-container {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
    overflow: hidden; /* Ensure smooth sliding stays within bounds */
}

.main-image {
    width: 100%;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out; /* Smooth transition for sliding */
    position: relative;
}

/* Arrows for Main Image */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 15px;
    cursor: pointer;
    z-index: 1;
    user-select: none;
    border-radius: 50%;
}

.left-arrow {
    left: 5%;
}

.right-arrow {
    right: 5%;
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Thumbnail Styles */
.slider {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.thumbnails {
    display: flex;
    justify-content: center;
}

.thumbnail {
    width: 100px;
    height: 100px;
    margin: 5px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s;
}

.thumbnail.active {
    border: 2px solid #1b1e63;
    padding: 2px;
}

.project-detail-page {
    padding: 100px 0;
}

.main-image-container img {
    min-height: 500px;
    max-height: 500px;
    object-fit: cover;
}

.project-detail-page h2 {
    padding-bottom: 25px;
    font-size: 25px;
    font-weight: 500;
    color: #1b1e63;
}

/* Isotope Filter */

.filters {
    text-align: center;
    margin-bottom: 20px;
}
.filters .btn.active {
    background: #fff;
    color: #000;
    border: 2px solid #1b1e63;
}

.filters .btn {
    border: 2px solid #1b1e63;
    display: inline-block;
    margin: 5px;
    padding: 8px 16px;
    background: #1b1e63;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.cards {
    width: calc(25% - 15px);
    padding: 7.5px;
}
.cards img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.social-icon a svg {
    fill: #fff;
    width: 20px;
}
.social-icon a:hover svg {
    fill: #1b1e63;
}
.brand-image img {
    width: 100%;
}
.projects-entry .projects-content {
    transition: 0.5s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.projects-entry:hover .projects-content {
    transition: 0.5s;
}

.projects-entry .projects-content a {
    color: #fff;
    font-size: 20px;
}

.projects-content .product-title {
    line-height: 30px;
}

.product-thumb img {
    min-height: 330px;
    max-height: 330px;
    object-fit: cover;
}
/* Style for thumbnail slider */
.slider {
    position: relative;
    overflow: hidden;
}

.thumbnails-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.thumbnails {
    display: flex;
    gap: 10px;
    padding-bottom: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.thumbnail.active {
    border: 2px solid #007bff; /* Active thumbnail border */
}

.thumbnail-slider-arrows {
    position: absolute;
    width: 100%;
}

.thumbnail-slider-arrows .prev {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translate(-50%, 50%);
}

.thumbnail-slider-arrows .next {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translate(-50%, 50%);
}

.thumbnail-slider-arrows button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
}

.thumbnail-slider-arrows button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.testimonial-items img {
    width: 100%;
}
.offcanvas__contact-text a .mailto {
    text-transform: lowercase;
}

.projects-entry.clearfix.product-wapper .projects-thumb img {
    transition: 0.5s;
}
.projects-entry.clearfix.product-wapper .projects-thumb {
    overflow: hidden;
    transition: 0.5s;
}

.projects-entry.clearfix.product-wapper:hover .projects-thumb img {
    transform: scale(1.1);
    transition: 0.5s;
    filter: blur(4px);
}
.projects-entry.clearfix.product-wapper {
    margin-bottom: 30px;
    position: relative;
}
.whatsapp-fixed {
    position: fixed;
    right: 30px;
    bottom: 120px;
    z-index: 999;
}
.whatsapp-fixed ul li:last-child {
    padding-bottom: 0;
}

.whatsapp-fixed ul li {
    padding-bottom: 15px;
}
.telephone-image {
    width: 40px;
    height: 40px;
}
.d-list.service-listing {
    padding-left: 40px;
}

/**/
.project-names {
    text-align: center;
    margin: 15px 0;
    width: 100%;
}
.project-names h3 {
    background: #1b1e63;
    padding: 10px;
    width: fit-content;
    font-size: 17px;
    margin: 0;
    line-height: 25px;
    color: #fff;
}
.dubai-image img {
    width: 100%;
    min-height: 860px;
    max-height: 860px;
    object-fit: cover;
}
.single-page {
    padding: 100px;
}
.dubai-image {
    width: 70%;
    margin: 0 auto;
}
.image-dubai {
    width: 60%;
    margin: 0 auto;
}
.image-dubai img {
    width: 100%;
}
.nav-link.active {
    color: #1b1e63;
    border-radius: 0;
    background: #1b1e63 !important;
}
.nav-link:hover {
    color: #1b1e63 !important;
}
.nav-link {
    border: 1px solid #1b1e63;
    border-radius: 0px !important;
    margin: 0 10px 10px;
    color: #1b1e63;
    font-size: 14px;
}
.nav-link.active:hover {
    color: #fff !important;
}

.product-thumb {
    position: relative;
}

.product-thumb:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
}

.projects-content .product-title {
    font-size: 30px;
}

.projectc-details__pagination-box {
    position: relative;
    display: block;
    text-align: center;
    border-top: 1px solid #e9e9ee;
    border-bottom: 1px solid #e9e9ee;
    padding: 35px 0;
    margin-top: 50px;
}

.projectc-details__pagination {
    position: relative;
    display: block;
}

.projectc-details__pagination li.next {
    float: left;
    position: relative;
}

.projectc-details__pagination li a {
    font-size: 14px;
    color: #000;
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 600;
}

.projectc-details__pagination li a:hover {
    color: #6653e8;
}

.projectc-details__pagination li p a {
    color: #fff;
    font-weight: 700;
    line-height: 18px;
}

.projectc-details__pagination li span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    color: #fff;
}
.projectc-details__pagination li.next i {
    position: relative;
    height: 40px;
    width: 40px;
    background-color: #e9e9ee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    color: #6653e8;
    font-size: 12px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-right: 20px;
    z-index: 1;
}

.projectc-details__pagination li.previous {
    position: relative;
    float: right;
}

.projectc-details__pagination li.previous i {
    position: relative;
    height: 40px;
    width: 40px;
    background-color: #e9e9ee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    color: #6653e8;
    font-size: 12px;
    margin-left: 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.projectc-details__pagination li a:hover i {
    color: #fff;
    background-color: #6653e8;
}

.previous .icon a img {
    margin-right: 0;
}
.next .icon a img,
.previous .icon a img {
    min-width: 200px;
    max-width: 200px;
    min-height: 200px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 5px;
    position: relative;
}
.projectc-details__pagination-box .icon {
    position: relative;
}
.projectc-details__pagination-box .icon:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    opacity: 0.3;
    z-index: 9;
}

li.next,
li.previous {
    position: relative;
}
li.next .content,
li.previous .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
}

span.project-heading {
    font-weight: 600;
}
.projet-details h2 {
    font-size: 30px;
    font-weight: 600;
}
.project-list li {
    line-height: 40px;
}

.wpcf7-form-control.wpcf7-file {
    border: 1px solid #dee2e6;
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
}

.thumbnail-slider .swiper-slide {
    opacity: 0.5;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.thumbnail-slider .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #000; /* Highlight active thumbnail */
}
.thumbImg {
    margin-right: 10px;
}

.thumbImg img {
    min-height: 100px;
    object-fit: cover;
}
.pagination {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Align vertically */
    gap: 10px; /* Space between items */
    margin-top: 20px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    line-height: 22px;
}

.pagination a:hover {
    background-color: #1b1e63;
    color: #fff;
    border-color: #1b1e63;
}

.pagination .current {
    background-color: #191c5d;
    color: white;
    border-color: #1a1c5e;
    width: 40px;
    height: 40px;
    line-height: 22px;
}

.pagination .next,
.pagination .prev {
    font-weight: 500;
    width: auto;
    line-height: 20px;
}

.feature-icon {
    font-size: 32px;
    color: #1b1e63;
    margin-bottom: 15px;
}
.feature-card {
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
}
.feature-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}
.nature {
    padding: 100px 0;
}

.resort-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.resort-card:hover {
    transform: translateY(-5px);
}
.resort-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}
.star {
    color: #ffc107;
}
.resort-body {
    padding: 15px;
}
.swiper {
    border-radius: 15px;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
    max-height: 500px;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    background: #1b1e63;
    color: #fff;
    width: 100%;
    padding: 15px;
    font-size: 20px;
    font-weight: 600; 
    text-align: center;
}

.section-parallex {
    background-image: url('https://archmatrix.org/wp-content/uploads/2025/05/parallax-section-image-scaled.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.section-parallex::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Optional overlay for contrast */
    z-index: -1;
}
.section-parallex h4 {
    font-size: 35px;
    font-weight: 700;
    padding-bottom: 30px;
    color: #fff;
}
.adventure-images.set-1 {
    padding-top: 100px;
}
.adventure-images img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 30px;
    border-radius: 10px;
}
.adventure-images img:last-child {
    margin-bottom: 0;
}
.adventure-activities {
    padding: 100px 0;
}
.adventure-activities .list-unstyled li {
    padding-bottom: 15px;
}
.adventure-activities h2 {
    padding-bottom: 30px;
}
.food-dinning .food-image img {
    width: 100%;
    min-height: 330px;
    object-fit: cover;
    margin-bottom: 30px;
    border-radius: 10px;
}
.food-dinning h2 {
    padding-bottom: 20px;
}
.food-dinning {
    padding: 100px 0;
}
.holiday-homes-section {
  background: linear-gradient(135deg, #f7f9fc, #e0f7fa);
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  color: #1e3c72;
  margin-bottom: 40px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.location-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.location-card:hover {
  transform: translateY(-8px);
}

.location-card h4 {
  font-size: 1.3rem;
  color: #0d47a1;
  margin-bottom: 10px;
}

.location-card p {
  color: #555;
  font-size: 0.95rem;
}

.cta-box {
  background: #1b1e63;
  color: white;
  text-align: center;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-box h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.cta-box .tagline {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #f1f1f1;
}

.contact-info p {
  margin: 5px 0;
  font-size: 1rem;
}

.contact-info a {
  color: #ffffff;
  text-decoration: underline;
}
.cta-box h3 {
    color: #fff;
}
.cta-box {
    background-image: linear-gradient(to right, rgb(0 0 0), rgba(0, 0, 0, 0)), url('https://archmatrix.org/wp-content/uploads/2025/05/footer-bg-img-scaled.jpg');
    color: white;
    background-position: center;
    text-align: left;
    padding: 70px 70px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background-size: cover;
}