/*
Theme Name: Star Warehouse.
Theme URI: Your Theme's URI
Description: A brief description.
Version: 1.0
Author: You
Author URI: starwarehouse.com.
*/

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
:root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme: #001C34;
    --section: #fff;
    --theme2: ##5557a8;
    --header: #001C34;
    --text: #fff;
    --border: #E6E6E6;
    --border-2: #D4DCED;
    --bg: #FFFBF9;
    --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
    --default-border:5px;
}

.btn-read {
    background-color: var(--theme);
    color: var(--white);
    padding: 20px 30px;
    display: inline-block;
    position: relative;
    font-size: 16px;
    z-index: 2;
    font-weight: 700;
    transition: all 0.5s ease-in-out;
    text-transform: capitalize;
}
@media (max-width: 1399px) {
    .btn-read {
        padding: 20px 23px;
    }
}
.btn-read i {
    margin-left: 10px;
}
.btn-read:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    content: "";
    background-color: var(--theme2);
    transition: all 0.5s ease-in-out;
    z-index: -1;
}
.btn-read:hover {
    color: var(--white);
}
.btn-read:hover:after {
    left: 0%;
    right: auto;
    width: 100%;
}

.btn-read-white {
    background-color: var(--theme);
    color: var(--white);
    padding: 14px 30px;
    display: inline-block;
    position: relative;
    font-size: 16px;
    z-index: 2;
    font-weight: 700;
    transition: all 0.5s ease-in-out;
    text-transform: capitalize;
}
.btn-read-white i {
    margin-left: 10px;
}
.btn-read-white:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    content: "";
    background-color: var(--white);
    transition: all 0.5s ease-in-out;
    z-index: -1;
}
.btn-read-white:hover {
    color: var(--theme);
}
.btn-read-white:hover:after {
    left: 0%;
    right: auto;
    width: 100%;
}

.btn-nblue {
    background-color: var(--theme2);
    color: var(--white);
    padding: 20px 30px;
    display: inline-block;
    position: relative;
    font-size: 16px;
    z-index: 2;
    font-weight: 700;
    transition: all 0.5s ease-in-out;
    text-transform: capitalize;
}
.btn-nblue i {
    margin-left: 10px;
}
.btn-nblue:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    content: "";
    background-color: var(--theme);
    transition: all 0.5s ease-in-out;
    z-index: -1;
}
.btn-nblue:hover {
    color: var(--white);
}
.btn-nblue:hover:after {
    left: 0%;
    right: auto;
    width: 100%;
}

.btn-nblue-3 {
    background-color: var(--theme2);
    color: var(--white);
    padding: 20px 30px;
    display: inline-block;
    position: relative;
    font-size: 16px;
    z-index: 2;
    font-weight: 700;
    transition: all 0.5s ease-in-out;
    text-transform: capitalize;
}
.btn-nblue-3 i {
    margin-left: 10px;
}
.btn-nblue-3:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    content: "";
    background-color: var(--white);
    transition: all 0.5s ease-in-out;
    z-index: -1;
}

.btn-nblue-3:hover {
    color: var(--header);
}
.btn-nblue-3:hover:after {
    left: 0%;
    right: auto;
    width: 100%;
}

.btn-nblue-2 {
    background-color: var(--theme2);
    color: var(--white);
    padding: 20px 30px;
    display: inline-block;
    position: relative;
    font-size: 16px;
    z-index: 2;
    font-weight: 700;
    transition: all 0.5s ease-in-out;
    text-transform: capitalize;
}
.btn-nblue-2 i {
    margin-left: 10px;
}
.btn-nblue-2:hover {
    color: var(--theme);
}

.btn-transparent {
    background-color: transparent;
    color: var(--white);
    padding: 20px 30px;
    display: inline-block;
    position: relative;
    font-size: 16px;
    z-index: 2;
    font-weight: 700;
    transition: all 0.5s ease-in-out;
    border: 1px solid var(--white);
    text-transform: capitalize;
}
.btn-transparent i {
    margin-left: 10px;
}
.btn-transparent:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    content: "";
    background-color: var(--theme);
    transition: all 0.5s ease-in-out;
    z-index: -1;
}
.btn-transparent:hover {
    color: var(--white);
    border: 1px solid var(--theme);
}
.btn-transparent:hover:after {
    left: 0%;
    right: auto;
    width: 100%;
}

.btn-white {
    background-color:#e52f41;
    color: white;
    padding: 20px 30px;
    display: inline-block;
    position: relative;
    font-size: 16px;
    z-index: 2;
    font-weight: 700;
    transition: all 0.5s ease-in-out;
    text-transform: capitalize;
}
.btn-white i {
    margin-left: 10px;
}
.btn-white:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    content: "";
    background-color: var(--theme);
    transition: all 0.5s ease-in-out;
    z-index: -1;
}
.btn-white:hover {
    color: var(--white);
}
.btn-white:hover:after {
    left: 0%;
    right: auto;
    width: 100%;
}

.btn-white-2 {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 20px 30px;
    display: inline-block;
    position: relative;
    font-size: 16px;
    z-index: 2;
    font-weight: 700;
    transition: all 0.5s ease-in-out;
    text-transform: capitalize;
}
.btn-white-2 i {
    margin-left: 10px;
}
.btn-white-2:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    content: "";
    background-color: var(--theme);
    transition: all 0.5s ease-in-out;
    z-index: -1;
}
.btn-white-2:hover {
    color: var(--white);
}
.btn-white-2:hover:after {
    left: 0%;
    right: auto;
    width: 100%;
}

.play-btn {
    display: inline-block;
    position: relative;
    z-index: 1;
}
.play-btn:before, .play-btn:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    border: 30px solid rgba(255, 255, 255, 0.2);
    z-index: -1;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-name: ripple;
}

.play-btn > i {
    display: inline-block;
    width: 86px;
    height: 86px;
    line-height: 86px;
    text-align: center;
    background-color: var(--white);
    color: var(--theme);
    font-size: 20px;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
    .play-btn > i {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }

}


.main-header .header-area .header-logo {
    padding-top: 19px;
    padding-left: 13px;
}

.play-btn > i:hover {
    background-color: var(--theme);
    color: var(--white);
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: scale(2.1);
        opacity: 0;
    }
}
@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: scale(2.1);
        opacity: 0;
    }
}
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 28px;
    color: #868686;
    background: rgb(255,255,255);
    background: linear-gradient(87deg, rgb(2 14 40) 0%, rgb(2 14 40) 100%);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

.bg-1 {
    background-color: var(--section);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Outfit", sans-serif;
    margin: 0px;
    padding: 0;
    color: var(--header);
    transition: all 0.4s ease-in-out;
}

h1 {
    font-size: 66px;
    font-weight: 700;
    line-height: 123%;
}
@media (max-width: 1600px) {
    h1 {
        font-size: 60px;
    }
}
@media (max-width: 1199px) {
    h1 {
        font-size: 50px;
    }
}
@media (max-width: 575px) {
    h1 {
        font-size: 35px;
        margin-bottom: 15px;
    }
}

h2 {
    font-size: 45px;
    line-height: 125%;
    font-weight: 700;
}
@media (max-width: 1399px) {
    h2 {
        font-size: 38px;
    }
}
@media (max-width: 767px) {
    h2 {
        font-size: 36px;
    }
}
@media (max-width: 575px) {
    h2 {
        font-size: 28px;
    }
}

h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
}
@media (max-width: 575px) {
    h3 {
        font-size: 20px;
    }
}

h4 {
    /* font-size: 20px; */
    font-weight: 700;
    line-height: 130%;
}

h5 {
    font-size: 18px;
    font-weight: 700;
}

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;
    line-height: 28px;
}

span {
    margin: 0px;
    text-align: justify;
    transition: all 0.4s ease-in-out;
    font-family: "Outfit", sans-serif;
}

a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
    transition: all 0.3s ease-in-out;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

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

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

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: 0;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
    outline: none;
    background-color: #EFEFEF;
    height: 56px;
    width: 100%;
    line-height: 56px;
    font-size: 16px;
    border: 0;
    font-weight: 400;
    color: "Outfit", sans-serif;
    padding: 0 24px;
    border-radius: 0 !important;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=url]:focus,
textarea:focus {
    border-color: "Outfit", sans-serif;
}
input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=number]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=url]:focus::placeholder,
textarea:focus::placeholder {
    outline: none;
    color: #868686;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

textarea {
    line-height: 1.4;
    padding-top: 17px;
    padding-bottom: 17px;
    height: auto;
}

.nice-select {
    background-color: #FFF;
    border: 0;
    cursor: pointer;
    display: block;
    font-size: 16px;
    padding: 0 24px;
    position: relative;
    text-align: left !important;
    height: 56px;
    width: 100%;
    line-height: 56px;
    border-radius: 0;
}
@media (max-width: 575px) {
    .nice-select {
        margin-bottom: 30px;
    }
}
.nice-select:after {
    content: "";
    position: absolute;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 8px 6px 0 6px;
    border-color: #FF4532 transparent transparent transparent;
}
.nice-select .open:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
    width: 100%;
}

.Rangemiles {
    margin-top: 8px;
}
.Rangemiles .Rangemiles__details {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}
.Rangemiles .Rangemiles__details span {
    color: #020E28;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}
.Rangemiles .slider-product-sorting {
    height: 12px;
    width: 490px;
    border-radius: 0;
    background: #EFEFEF;
    border: 0 !important;
    margin-bottom: 10px;
}
@media (max-width: 575px) {
    .Rangemiles .slider-product-sorting {
        max-width: 100%;
    }
}
.Rangemiles .slider-product-sorting .ui-slider-range {
    background-color: #EC7216;
    height: 12px;
    border-radius: 0;
}
.Rangemiles .slider-product-sorting .ui-slider-handle {
    height: 21px;
    width: 7px;
    background-color: #EC7216;
    border: 0 !important;
    top: -5px;
    cursor: pointer;
    transition: none;
    border-radius: 0;
    outline: none;
    margin-left: -4px;
}
.Rangemiles input {
    color: #020E28;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    background: none;
    text-align: end;
}
.Rangemiles input:focus {
    border: 0;
}
.Rangemiles button:focus {
    outline: 0;
}

.style-1 {
    border: 1px solid rgba(2, 14, 40, 0.2);
    margin-bottom: 120px;
    position: relative;
}
@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .main-menu ul li {
        margin-inline-end: 20px;
    }
}
@media (max-width: 1600px) {
    .main-menu ul li {
        margin-inline-end: 20px;
    }
}
@media (max-width: 1600px) {
    .style-1 {
        padding-bottom: 0;
    }
}
@media (max-width: 1399px) {
    .style-1 {
        border: 0;
    }
}
@media (max-width: 1199px) {
    .style-1 {
        margin-bottom: 100px;
    }
}
@media (max-width: 991px) {
    .style-1 {
        margin-bottom: 80px;
    }
}
.style-1:before {
    position: absolute;
    content: "";
    background-color: rgba(2, 14, 40, 0.2);
    height: 1px;
    top: 42%;
    right: 0;
    width: 962px;
}
@media (max-width: 1899px) {
    .style-1:before {
        display: none;
    }
}
.style-1 .image-1 {
    position: absolute;
    bottom: 40px;
    right: 14px;
}
@media (max-width: 1600px) {
    .style-1 .image-1 {
        bottom: 12px;
    }
}
@media (max-width: 1600px) {
    .style-1 .image-1 img {
        width: 70%;
    }
}
@media (max-width: 575px) {
    .style-1 .image-1 img {
        display: none;
    }
}
.style-1 .about-image-items {
    margin-left: -65%;
    padding-top: 25px;
    padding-bottom: 25px;
    border-right: 1px solid rgba(2, 14, 40, 0.2);
    padding-right: 25px;
}
@media (max-width: 1399px) {
    .style-1 .about-image-items {
        margin-left: -101px;
        border: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
}
@media (max-width: 1199px) {
    .style-1 .about-image-items {
        margin-left: -101px;
        margin-left: -145px;
    }
}
@media (max-width: 991px) {
    .style-1 .about-image-items {
        margin-left: 0;
    }
}
@media (max-width: 575px) {
    .style-1 .about-image-items {
        margin-left: 0;
        padding-right: 0;
    }
}
.style-1 .about-image-items .about-image {
    max-width: 526px;
    height: 575px;
}
.style-1 .about-image-items .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.style-1 .about-right-wrap {
    margin-left: -4px;
}
@media (max-width: 1199px) {
    .style-1 .about-right-wrap {
        margin-left: -20px;
    }
}
@media (max-width: 991px) {
    .style-1 .about-right-wrap {
        margin-left: 0;
    }
}
@media (max-width: 575px) {
    .style-1 .about-right-wrap {
        margin-left: 0;
    }
}
.style-1 .about-right-wrap .about-content {
    margin-top: 25px;
}
.style-1 .about-right-wrap .about-content p {
    margin-top: 60px;
}
@media (max-width: 1399px) {
    .style-1 .about-right-wrap .about-content p {
        margin-top: 10px;
    }
}
.style-1 .about-right-wrap .about-content .title-sm {
    margin-bottom: 10px;
}
.style-1 .about-right-wrap .about-info {
    margin-top: 39px;
}
@media (max-width: 1399px) {
    .style-1 .about-right-wrap .about-info {
        margin-top: 20px;
    }
}
.style-1 .about-right-wrap .about-info .icon {
    margin-right: 20px;
}
.style-1 .about-right-wrap .about-btn {
    margin-top: 50px;
}
@media (max-width: 575px) {
    .style-1 .about-right-wrap .about-btn {
        margin-top: 30px;
    }
}
.style-1 .about-right-wrap .about-btn .btn-read {
    padding: 14px 31px;
}

.about-style-2 {
    position: relative;
    padding-bottom: 170px;
}
@media (max-width: 1199px) {
    .about-style-2 {
        padding-bottom: 80px;
    }
}
@media (max-width: 991px) {
    .about-style-2 {
        padding-bottom: 80px;
    }
}
.about-style-2 .shape-1 {
    bottom: 95px;
    left: 115px;
    animation: cir36 10s linear infinite;
}
@media (max-width: 1600px) {
    .about-style-2 .shape-1 {
        bottom: 40px;
        left: 30px;
    }
}
@media (max-width: 1399px) {
    .about-style-2 .shape-1 {
        display: none;
    }
}
.about-style-2 .shape-2 {
    top:  20px;
    left: 0;
}
.about-style-2 .shape-3 {
    bottom: 161px;
    right: 0;
}
@media (max-width: 1899px) {
    .about-style-2 .shape-3 {
        bottom: 0;
        right: 0;
        width: 14%;
    }
}
@media (max-width: 767px) {
    .about-style-2 .shape-3 {
        display: none;
    }
}
.about-style-2 .brand-slider {
    margin-bottom: 120px;
}
.about-style-2 .about-left-thumb {
    position: relative;
    margin-left: 126px;
    max-width: 800px;
}
@media (max-width: 1199px) {
    .about-style-2 .about-left-thumb {
        margin-left: 0;
    }
}
@media (max-width: 1199px) {
    .about-style-2 .about-left-thumb .thumb-img {
        width: 100%;
        height: 100%;
    }
}
.about-style-2 .about-left-thumb .img {
    width: 400px;
}
.about-style-2 .about-left-thumb .img-1 {
    left: -118px;
    bottom: -42px;
}
@media (max-width: 991px) {
    .about-style-2 .about-left-thumb .img-1 {
        left: 0;
        bottom: 0;
    }
}
@media (max-width: 1199px) {
    .about-style-2 .about-left-thumb .img-1 {
        left: 0;
        bottom: 0;
        width: 42%;
    }
}
.about-style-2 .about-left-thumb .img-2 {
    right: 7%;
    bottom: -49px;
}
@media (max-width: 991px) {
    .about-style-2 .about-left-thumb .img-2 {
        right: 0;
        top: 0;
        bottom: initial;
    }
}
@media (max-width: 1199px) {
    .about-style-2 .about-left-thumb .img-2 {
        right: 0;
        bottom: 0;
        width: 40%;
    }
}
.about-style-2 .about-left-thumb .img-3 {
    left: -64px;
    top: 56px;
}
@media (max-width: 1199px) {
    .about-style-2 .about-left-thumb .img-3 {
        display: none;
    }
}
@media (max-width: 767px) {
    .about-style-2 .about-right-content {
        margin-top: 30px;
    }
}
.about-style-2 .about-right-content .fst {
    margin-top: 20px;
    margin-bottom: 15px;
    color: white;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    /* padding-left: 10px; */
}
.about-style-2 .about-right-content .fst:before {
    /* position: absolute; */
    content: "";
    width: 3px;
    height: 67px;
    background-color: var(--theme);
    left: 0;
    bottom: 7px;
}
@media (max-width: 575px) {
    .about-style-2 .about-right-content .fst:before {
        bottom: 23px;
    }
}
.about-style-2 .about-right-content a {
    color: var(--header);
    font-size: 16px;
    font-weight: 400;
    display: block;
    transition: all 0.4s ease-in-out;
}
.about-style-2 .about-right-content a:hover {
    color: var(--theme);
}
.about-style-2 .about-right-content a i {
    color: var(--theme);
    margin-right: 15px;
    font-size: 14px;
}
.about-style-2 .about-right-content .last {
    color: white;
    text-align: justify;
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
    padding-top: 20px;
    margin-bottom: 30px;
    border-top: 1px solid #E6E6E6;
}
.about-style-2 .about-right-content .author {
    display: flex;
    justify-content: space-between;

    align-items: center;
}
@media (max-width: 991px) {
    .about-style-2 .about-right-content .author {
        justify-content: start;
        gap: 20px;
    }
}
.about-style-2 .about-right-content .author .text {
    margin-left: -60px;
}
@media (max-width: 1199px) {
    .about-style-2 .about-right-content .author .text {
        margin-left: 0;
    }
}
@media (max-width: 575px) {
    .about-style-2 .about-right-content .author .text {
        margin-left: 10px;
    }
}
.about-style-2 .about-right-content .author .text span {
    display: block;
}
.about-style-2 .about-right-content .author .text span:first-child {
    color: #1E2023;
    font-size: 16px;
    font-weight: 400;
}
.about-style-2 .about-right-content .author .text span:last-child {
    color: #121315;
    font-size: 20px;
    font-weight: 700;
}
@media (max-width: 1199px) {
    .about-style-2 .about-right-content .author .text span:last-child {
        font-size: 16px;
    }
}
@media (max-width: 470px) {
    .about-style-2 .about-right-content .author img {

    }
}

.about-style-3 {
    position: relative;
    margin-top: -11%;
    padding-bottom: 120px;
    padding-top: 324px;
    background-repeat: no-repeat;
    background-size: cover;
}
@media (max-width: 1600px) {
    .about-style-3 {
        padding-top: 222px;
        padding-bottom: 80px;
    }
}
@media (max-width: 1399px) {
    .about-style-3 {
        padding-top: 205px;
        padding-bottom: 80px;
    }
}
@media (max-width: 1199px) {
    .about-style-3 {
        padding-top: 175px;
        padding-bottom: 50px;
        margin-top: -13%;
    }
}
@media (max-width: 991px) {
    .about-style-3 {
        background-size: cover;
        padding-left: 40px;
    }
}
@media (max-width: 767px) {
    .about-style-3 {
        padding-top: 120px;
        padding-left: 0;
    }
    .sticky.main-header:before {

        background-color: var(--white);

    }
}
@media (max-width: 575px) {
    .about-style-3 {
        padding-top: 60px;
    }
    .main-header .header-area:after {
        background-color: #fff!important;
    }
    .main-header .header-bottom-area .header-menu-icon .header-icon button {
        color: #0a5097!important;
    }
    .sticky.main-header:before {

        background-color: var(--white)!important;

    }
}
.about-style-3 .about-thumb {
    position: relative;
}
.about-style-3 .about-thumb img {
    max-width: 100%;
}
.about-style-3 .about-thumb .shape-image {
    position: absolute;
    right: 47px;
    bottom: 60px;
}
@media (max-width: 991px) {
    .about-style-3 .about-thumb .shape-image {
        left: 0;
        bottom: 0;
    }
}
@media (max-width: 767px) {
    .about-style-3 .about-thumb .shape-image {
        display: none;
    }
}
.about-style-3 .about-thumb .info {
    background-color: var(--theme);
    width: 246px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    position: absolute;
    top: 90px;
    left: -50px;
    z-index: 11;
}
@media (max-width: 767px) {
    .about-style-3 .about-thumb .info {
        top: 0;
        left: 0;
    }
}
.about-style-3 .about-thumb .info span {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
}
.about-style-3 .about-thumb .info img {
    position: absolute;
    left: 1px;
    border-radius: 0;
}
@media (max-width: 767px) {
    .about-style-3 .about-thumb .info img {
        display: none;
    }
}
.about-style-3 .content {
    margin-left: -30px;
}
@media (max-width: 991px) {
    .about-style-3 .content {
        margin-left: 0;
        margin-top: 30px;
    }
}
.about-style-3 .content p {
    padding: 30px 0;
}
.about-style-3 .content .subtitle span {
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
    display: block;
}
.about-style-3 .content .subtitle span i {
    font-size: 10px;
    color: var(--theme);
    display: inline-block;
    padding: 4px;
    border: 1px solid #EC7216;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 10px;
    opacity: 0.964;
    margin-bottom: 30px;
}
.about-style-3 .content .title {
    color: var(--header);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 40px;
}
.about-style-3 .content .title span {
    color: #EC7216;
    font-size: 22px;
    font-weight: 600;
}
.about-style-3 .content .info-box .btn-read {
    padding: 14px 30px;
}
@media (max-width: 575px) {
    .about-style-3 .content .info-box .btn-read {
        padding: 14px 14px;
    }
}
.about-style-3 .content .info-box .degination {
    margin-left: 70px;
}
@media (max-width: 575px) {
    .about-style-3 .content .info-box .degination {
        margin-left: 30px;
    }
}
.about-style-3 .content .info-box .degination img {
    max-width: 100%;
}

@-webkit-keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(221, 210, 209, 0.253);
        box-shadow: 0 0 0 40px rgba(221, 210, 209, 0.253);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(221, 210, 209, 0.253);
        box-shadow: 0 0 0 0 rgba(221, 210, 209, 0.253);
    }
}
@keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(221, 210, 209, 0.253);
        box-shadow: 0 0 0 40px rgba(221, 210, 209, 0.253);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(221, 210, 209, 0.253);
        box-shadow: 0 0 0 0 rgba(221, 210, 209, 0.253);
    }
}
@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rounded {
    50% {
        transform: rotate(15deg);
    }
}
@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}
@-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);
    }
}
@keyframes rounded {
    50% {
        transform: rotate(20deg);
    }
}
@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}
.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);
    }
}
.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 6s;
    animation-duration: 12s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(30px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}
@keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}
@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.bounce-x {
    -webkit-animation: bounce-x 7s infinite linear;
    animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }
    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}
@keyframes criss-cross-right {
    0% {
        right: -20px;
    }
    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}
@keyframes rotated2 {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(-360deg);
    }
}
@keyframes wave {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(-50%);
    }
}
/*img-animation**********************/
.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-left {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}
.img-custom-anim-right {
    animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-right {
    0% {
        transform: translateX(5%);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}
.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-left {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}
.img-custom-anim-top {
    animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

@keyframes img-anim-top {
    0% {
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}
.img-custom-anim-bottom {
    animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

@keyframes moving {
    0% {
        transform: translatey(0px);
    }
    20% {
        transform: translateX(-50px);
    }
    50% {
        transform: translatey(-40px);
    }
    100% {
        transform: translatey(0px);
    }
}
@keyframes translateX2 {
    0% {
        -webkit-transform: translateX(-30px);
        -moz-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        -o-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    100% {
        -webkit-transform: translatXY(20px);
        -moz-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
        transform: translateX(20px);
    }
}
@keyframes translateY2 {
    0% {
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -o-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px);
    }
}
.progressInLeft-86 {
    opacity: 0; /* Start invisible */
    animation: progressInLeft-86 2s ease-out forwards; /* 2 seconds duration, ease-out effect */
}

@keyframes progressInLeft-86 {
    0% {
        opacity: 0;
        width: 0; /* Start slightly to the left */
    }
    100% {
        opacity: 1;
        width: 86%; /* End at original position */
    }
}
.progressInLeft-80 {
    opacity: 0; /* Start invisible */
    animation: progressInLeft-80 2s ease-out forwards; /* 2 seconds duration, ease-out effect */
}

@keyframes progressInLeft-80 {
    0% {
        opacity: 0;
        width: 0; /* Start slightly to the left */
    }
    100% {
        opacity: 1;
        width: 80%; /* End at original position */
    }
}
@keyframes swing {
    0% {
        -webkit-transform: rotate(25deg);
        -ms-transform: rotate(25deg);
        transform: rotate(25deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
@keyframes icon-bounce {
    0%, 100%, 20%, 50%, 80% {
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    60% {
        -moz-transform: translateY(-5px);
        -o-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}
.brand-slider {
    padding: 114px 293px;
}
@media (max-width: 1600px) {
    .brand-slider {
        padding: 80px 111px;
    }
}
@media (max-width: 1399px) {
    .brand-slider {
        padding: 60px 20px;
    }
}
@media (max-width: 991px) {
    .brand-slider {
        padding: 80px 0;
    }
}
@media (max-width: 575px) {
    .brand-slider .swiper-slide {
        margin-left: 0;
        margin-right: 113px;
    }
}

.brand-2 {
    padding-right: 290px;
    padding-left: 290px;
}
@media (max-width: 1600px) {
    .brand-2 {
        padding-left: 200px;
        padding-right: 200px;
    }
}
@media (max-width: 1399px) {
    .brand-2 {
        padding-left: 100px;
        padding-right: 100px;
        padding-top: 40px;
    }
}
@media (max-width: 1199px) {
    .brand-2 {
        padding-top: 50px;
    }
}
@media (max-width: 767px) {
    .brand-2 {
        padding-top: 0;
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media (max-width: 575px) {
    .brand-2 {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
}

.tracking-percel-wrapper {
    max-width: 1410px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 0 auto;
    width: 100%;
}
.tracking-percel-wrapper .tracking-info {
    padding: 60px;
    border: 1px solid #E5E5E5;
    background: rgba(255, 255, 255, 0.7);
}
@media (max-width: 575px) {
    .tracking-percel-wrapper .tracking-info {
        padding: 15px;
    }
}
.tracking-percel-wrapper .tracking-info .title {
    color: var(--header);
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}
@media (max-width: 575px) {
    .tracking-percel-wrapper .tracking-info .title {
        font-size: 25px;
    }
}
.tracking-percel-wrapper .tracking-info form .input-box label {
    color: var(--header);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.contact-wrapper .contact-info-left .single-itme {
    gap: 30px;
    background-color: #EFEFEF;
    padding: 39px 52px 39px 30px;
    margin-bottom: 20px;
}
@media (max-width: 1199px) {
    .contact-wrapper .contact-info-left .single-itme {
        flex-wrap: wrap;
    }
}
.contact-wrapper .contact-info-left .single-itme .icon {
    position: relative;
    background-color: var(--white);
    width: 64px;
    height: 64px;
    border-radius: 100%;
    text-align: center;
    line-height: 64px;
    transition: all 0.4s ease-in-out;
}
.contact-wrapper .contact-info-left .single-itme .icon .circle {
    position: absolute;
    left: -10px;
    bottom: -10px;
}
.contact-wrapper .contact-info-left .single-itme .content .title {
    color: var(--header);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}
.contact-wrapper .contact-info-left .single-itme .content p {
    color: #726B7D;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}
.contact-wrapper .contact-info-left .single-itme:hover .icon .anim {
    animation: icon-bounce 0.8s 1;
}
.contact-wrapper .contact-info-right {
    padding: 30px;
}
.contact-wrapper .contact-info-right .contact-thumb img {
    max-width: 100%;
}
@media (max-width: 1199px) {
    .contact-wrapper .contact-info-right .contact-form {
        margin-top: 30px;
    }
}
.contact-wrapper .contact-info-right .contact-form input {
    background-color: var(--white);
    color: #726B7D;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    border: none;
}

.contact-wrapper .contact-info-right .contact-form .input-box-date{
    background-color: var(--white);
    color: #726B7D;
    font-size: 16px;
    font-style: normal;
    padding-top: 12px;
    font-weight: 400;
    text-transform: capitalize;
    border: none;

}
.contact-wrapper .contact-info-right .contact-form textarea {
    background-color: var(--white);
    color: #726B7D;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}
.contact-wrapper .contact-info-right .contact-form .btn-read {
    padding: 11px 33px;
    margin-top: 20px;
}

.google-map .map {
    max-width: 100%;
}
iframe {
    width: 100%;
    margin-bottom: -8px;
}

.faq-style-1 .faqcontent {
    padding-left: 25px;
}
@media (max-width: 1199px) {
    .faq-style-1 .faqcontent {
        padding-right: 21%;
        padding-left: 0;
    }
}
@media (max-width: 767px) {
    .faq-style-1 .faqcontent {
        padding-right: 0;
        padding-left: 0;
    }
}
.faq-style-1 .faqcontent .faqcontent__title p {
    margin-top: 20px;
}
.faq-style-1 .faq-thumb {
    margin-left: -70px;
}
.faq-style-1 .faq-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    max-width: 570px;
}
.faq-style-1 .faq-thumb .video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-style-1 .faq-thumb .video::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    width: 114px;
    height: 114px;
    line-height: 114px;
    border-radius: 100px;
    border: 1px solid var(--white);
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
}
@media (max-width: 1199px) {
    .faq-style-1 .faq-thumb {
        margin-left: 0;
    }
}
.faq-style-1 .tp-accordion .tp-accordion-item {
    position: relative;
    padding: 7px 0;
}
.faq-style-1 .tp-accordion .tp-accordion-item:before {
    position: absolute;
    content: "";
    bottom: 0;
    width: 100%;
    height: 1px;
    opacity: 0.2;
    background: #020E28;
}
.faq-style-1 .tp-accordion .tp-accordion-item .tp-accordion-button {
    width: 100%;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
}
@media (max-width: 575px) {
    .faq-style-1 .tp-accordion .tp-accordion-item .tp-accordion-button {
        padding-left: 0;
    }
}
.faq-style-1 .tp-accordion .tp-accordion-item .tp-accordion-button span {
    color: var(--theme);
    font-weight: 500;
    font-size: 16px;
}
.faq-style-1 .tp-accordion .tp-accordion-item .tp-accordion-button a {
    color: var(--theme);
    font-weight: 500;
    margin-left: -7px;
}
.faq-style-1 .tp-accordion .tp-accordion-item .tp-accordion-button.collapsed .icon {
    color: var(--header);
    transform: rotate(-90deg);
}
.faq-style-1 .tp-accordion .tp-accordion-item .tp-accordion-button.collapsed span {
    color: var(--header);
}

.faq-style-2 {
    background-color: var(--theme2);
    position: relative;
    height: 698px;
    padding-top: 120px;
}
@media (max-width: 991px) {
    .faq-style-2 {
        height: auto;
    }
}
.faq-style-2 .shape-1 {
    bottom: -77px;
    left: 0;
    z-index: 2;
}
@media (max-width: 1899px) {
    .faq-style-2 .shape-1 {
        width: 10%;
    }
}
@media (max-width: 1600px) {
    .faq-style-2 .shape-1 {
        display: none;
    }
}
.faq-style-2 .shape-2 {
    bottom: 0;
    right: 0;
}
@media (max-width: 1199px) {
    .faq-style-2 .shape-2 {
        display: none;
    }
}
.faq-style-2 .shape-3 {
    bottom: 220px;
    left: 27px;
    z-index: 1;
}
@media (max-width: 1899px) {
    .faq-style-2 .shape-3 {
        bottom: 53px;
        left: 0;
        z-index: 1;
        width: 10%;
    }
}
@media (max-width: 1600px) {
    .faq-style-2 .shape-3 {
        display: none;
    }
}
.faq-style-2 .faq-content .section__title__48-white {
    font-weight: 700;
    margin-bottom: 20px;
}
.faq-style-2 .faq-contact-box {
    padding: 60px;
    background-color: var(--theme);
    margin-right: 27px;
    position: relative;
}
@media (max-width: 1600px) {
    .faq-style-2 .faq-contact-box {
        margin-left: 40px;
    }
}
@media (max-width: 1199px) {
    .faq-style-2 .faq-contact-box {
        margin-left: 0;
        padding: 45px;
    }
}
@media (max-width: 575px) {
    .faq-style-2 .faq-contact-box {
        margin-right: 0;
        padding: 20px;
    }
}
.faq-style-2 .faq-contact-box:before {
    position: absolute;
    content: "";
    width: 78px;
    height: 89px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 78px 0 0 78px;
    border-color: transparent transparent transparent #020e28;
    transform: rotate(0deg);
    bottom: 0;
    left: 0;
}
@media (max-width: 1199px) {
    .faq-style-2 .faq-contact-box:before {
        display: none;
    }
}
.faq-style-2 .faq-contact-box:after {
    position: absolute;
    content: "";
    width: 78px;
    height: 89px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 78px 78px 0;
    border-color: transparent #020e28 var(--theme) transparent;
    transform: rotate(0deg);
    top: 0;
    right: 0;
}
@media (max-width: 575px) {
    .faq-style-2 .faq-contact-box:after {
        display: none;
    }
}
.faq-style-2 .faq-contact-box form .title {
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}
@media (max-width: 575px) {
    .faq-style-2 .faq-contact-box form .title {
        font-size: 30px;
    }
}
.faq-style-2 .faq-contact-box form input {
    border: 1px solid rgba(255, 255, 255, 0.6);
    background-color: transparent;
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 28px;
}
.faq-style-2 .faq-contact-box form textarea {
    border: 1px solid rgba(255, 255, 255, 0.6);
    background-color: transparent;
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
}
.faq-style-2 .faq-contact-box form .nice-select {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: block;
    font-size: 16px;
    padding: 0 24px;
    position: relative;
    text-align: left !important;
    height: 56px;
    width: 100%;
    line-height: 56px;
    border-radius: 0;
    margin-bottom: 28px;
}
.faq-style-2 .faq-contact-box form .nice-select span {
    color: var(--white);
}
.faq-style-2 .faq-contact-box form .nice-select:after {
    content: "";
    position: absolute;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 8px 6px 0 6px;
    border-color: var(--white) transparent transparent transparent;
}
.faq-style-2 .faq-contact-box form .open:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.faq-style-2 .faq-contact-box form ::placeholder {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    opacity: 1;
}
.faq-style-2 .faq-contact-box form .btn-white {
    padding: 14px 33px;
    margin-top: 34px;
}
.faq-style-2 .faq-contact-box form .btn-white:after {
    background-color: var(--theme2);
}
.faq-style-2 .faq-contact-box form .btn-white:hover {
    color: var(--white);
}
.faq-style-2 .faq-contact-box form .btn-white:hover:after {
    left: 0%;
    right: auto;
    width: 100%;
}
.faq-style-2 .faq-content {
    margin-left: 10px;
}
@media (max-width: 1199px) {
    .faq-style-2 .faq-content {
        margin-left: -12px;
    }
}
@media (max-width: 991px) {
    .faq-style-2 .faq-content {
        margin-top: 60px;
    }
}
@media (max-width: 575px) {
    .faq-style-2 .faq-content {
        margin-left: 0;
    }
}
.faq-style-2 .faq-content .faq-accordion-wrap .tp-accordion .tp-accordion-item {
    position: relative;
    padding: 7px 0;
}
.faq-style-2 .faq-content .faq-accordion-wrap .tp-accordion .tp-accordion-item:before {
    position: absolute;
    content: "";
    bottom: 0;
    width: 100%;
    height: 1px;
    opacity: 0.2;
}
.faq-style-2 .faq-content .faq-accordion-wrap .tp-accordion .tp-accordion-item .tp-accordion-button {
    width: 100%;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}
.faq-style-2 .faq-content .faq-accordion-wrap .tp-accordion .tp-accordion-item .tp-accordion-button .icon {
    color: var(--white);
    font-weight: 500;
    font-size: 12px;
}
.faq-style-2 .faq-content .faq-accordion-wrap .tp-accordion .tp-accordion-item .tp-accordion-button .text {
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
    margin-left: -7px;
}
@media (max-width: 450px) {
    .faq-style-2 .faq-content .faq-accordion-wrap .tp-accordion .tp-accordion-item .tp-accordion-button .text {
        font-size: 16px;
    }
}
.faq-style-2 .faq-content .faq-accordion-wrap .tp-accordion .tp-accordion-item .tp-accordion-button.collapsed .icon {
    color: var(--white);
    transform: rotate(-90deg);
    padding: 2px;
    margin-top: -19px;
    margin-left: 10px;
}
.faq-style-2 .faq-content .faq-accordion-wrap .tp-accordion .tp-accordion-item .tp-accordion-button.collapsed .text {
    color: var(--white);
}
.faq-style-2 .faq-content .faq-accordion-wrap .tp-accordion .tp-accordion-item .tp-accordion-body p {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    opacity: 0.7;
}
@media (max-width: 450px) {
    .faq-style-2 .faq-content .faq-accordion-wrap .tp-accordion .tp-accordion-item .tp-accordion-body p {
        font-size: 14px;
    }
}

.faq-style-3 {
    border-radius: 0px 0px 50px 50px;
    position: relative;
    margin-top: -25%;
}
@media (max-width: 1199px) {
    .faq-style-3 {
        margin-top: -33%;
    }
}
.faq-style-3 .bg-shape {
    position: absolute;
    top: 30%;
    left: 0;
    border-radius: 15px;
    height: 460px;
    width: 100%;
    z-index: -1;
    background-size: cover;
    margin: 0 auto;
}
@media (max-width: 1600px) {
    .faq-style-3 .bg-shape {
        display: none;
    }
}
.faq-style-3 .title {
    margin-bottom: 25px;
}
@media (max-width: 1199px) {
    .faq-style-3 .faq-thumb {
        text-align: center;
    }
}
.faq-style-3 .faq-thumb img {
    width: initial;
    max-width: 100%;
}
.faq-style-3 .faq-form-box {
    background: var(--white);
    padding: 40px;
    margin-bottom: 78px;
    margin-top: 50px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media (max-width: 1199px) {
    .faq-style-3 .faq-form-box {
        margin-bottom: 100px;
        padding: 30px;
    }
}
@media (max-width: 991px) {
    .faq-style-3 .faq-form-box {
        margin-bottom: 80px;
    }
}
.faq-style-3 .faq-form-box form {
    padding-left: 30px;
}
@media (max-width: 1199px) {
    .faq-style-3 .faq-form-box form {
        padding-left: 0;
        margin-top: 30px;
    }
}
.faq-style-3 .faq-form-box form .form-top {
    margin-bottom: 30px;
}
@media (max-width: 575px) {
    .faq-style-3 .faq-form-box form .form-top {
        margin-bottom: 0;
    }
}
.faq-style-3 .faq-form-box form .input-box {
    position: relative;
}
@media (max-width: 767px) {
    .faq-style-3 .faq-form-box form .input-box {
        margin-bottom: 30px;
    }
}
.faq-style-3 .faq-form-box form .input-box img {
    position: absolute;
    top: 20px;
    left: 16px;
}
.faq-style-3 .faq-form-box form .input-box input {
    background: transparent;
    border-radius: 5px;
    padding-left: 42px;
    border: 1px solid #E6E6E6;
}
.faq-style-3 .faq-form-box form .input-box input::-webkit-input-placeholder {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
}
.faq-style-3 .faq-form-box form .input-box input:-moz-placeholder {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
}
.faq-style-3 .faq-form-box form .input-box input::-moz-placeholder {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
}
.faq-style-3 .faq-form-box form .input-box input:-ms-input-placeholder {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
}
.faq-style-3 .faq-form-box .form-bottom {
    border-top: 1px solid #E6E6E6;
    padding-top: 30px;
}
.faq-style-3 .faq-form-box .form-bottom .title {
    color: #000;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 23px;
}
.faq-style-3 .faq-form-box .form-bottom .input-box {
    margin-bottom: 30px;
}
.faq-style-3 .faq-form-box .form-bottom .input-box input {
    padding-left: 16px;
    padding-right: 5px;
}
.faq-style-3 .faq-form-box .form-bottom .selec-box {
    position: relative;
}
.faq-style-3 .faq-form-box .form-bottom .selec-box img {
    position: absolute;
    left: 13px;
    top: 23px;
    width: 24px;
}
.faq-style-3 .faq-form-box .form-bottom .selec-box .nice-select {
    border-radius: 5px;
    padding-left: 16px;
    background-color: transparent;
    border: 1px solid #E6E6E6;
    position: relative;
    margin-bottom: 30px;
}
.faq-style-3 .faq-form-box .form-bottom .selec-box .nice-select:after {
    display: none;
}
.faq-style-3 .faq-form-box .form-bottom .selec-box .nice-select.open:before {
    transform: rotate(-180deg);
}
.faq-style-3 .faq-form-box .form-bottom .selec-box .nice-select:before {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: 14px;
    transition: all 0.2s ease-in-out;
    color: #868686;
    font-size: 16px;
}
.faq-style-3 .faq-form-box .form-bottom .btn-box {
    border-top: 1px solid #E6E6E6;
    padding-top: 51px;
}
@media (max-width: 575px) {
    .faq-style-3 .faq-form-box .form-bottom .btn-box {
        padding: 30px 0;
        text-align: center;
    }
}
.faq-style-3 .faq-form-box .form-bottom .btn-box .btn-read {
    padding: 14px 51px;
}

@media only screen and (min-width: 2000px) {
    .faq-style-3 {
        margin-top: -18%;
    }
}
.faq-style-4 {
    border-radius: 0px 0px 50px 50px;
    position: relative;
}
.faq-style-4 .bg-shape {
    position: absolute;
    top: 42%;
    left: 0;
    border-radius: 15px;
    height: 460px;
    width: 100%;
    z-index: -1;
}
.faq-style-4 .title {
    margin-bottom: 30px;
    color: #000;
    font-size: 24px;
    font-weight: 500;
}
.faq-style-4 .faq-thumb img {
    width: initial;
    max-width: 100%;
}
.faq-style-4 .faq-form-box {
    background: var(--white);
    padding: 40px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media (max-width: 575px) {
    .faq-style-4 .faq-form-box {
        margin-bottom: 30px;
        padding: 10px;
    }
}
.faq-style-4 .faq-form-box form {
    padding-left: 30px;
}
@media (max-width: 1199px) {
    .faq-style-4 .faq-form-box form {
        padding-left: 0;
        margin-top: 30px;
    }
}
.faq-style-4 .faq-form-box form .form-top {
    margin-bottom: 30px;
}
.faq-style-4 .faq-form-box form .input-box {
    position: relative;
}
@media (max-width: 767px) {
    .faq-style-4 .faq-form-box form .input-box {
        margin-bottom: 30px;
    }
}
.faq-style-4 .faq-form-box form .input-box img {
    position: absolute;
    top: 20px;
    left: 16px;
}
.faq-style-4 .faq-form-box form .input-box input {
    background: transparent;
    border-radius: 5px;
    padding-left: 42px;
    border: 1px solid #E6E6E6;
}
.faq-style-4 .faq-form-box form .input-box input::-webkit-input-placeholder {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
}
.faq-style-4 .faq-form-box form .input-box input:-moz-placeholder {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
}
.faq-style-4 .faq-form-box form .input-box input::-moz-placeholder {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
}
.faq-style-4 .faq-form-box form .input-box input:-ms-input-placeholder {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
}
@media (max-width: 767px) {
    .faq-style-4 .faq-form-box form .gt-space {
        margin-bottom: 0;
    }
}
.faq-style-4 .faq-form-box .form-bottom {
    border-top: 1px solid #E6E6E6;
    padding-top: 30px;
}
.faq-style-4 .faq-form-box .form-bottom .title {
    color: #000;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 23px;
}
.faq-style-4 .faq-form-box .form-bottom .input-box {
    margin-bottom: 30px;
}
.faq-style-4 .faq-form-box .form-bottom .input-box input {
    padding-left: 16px;
    padding-right: 5px;
}
.faq-style-4 .faq-form-box .form-bottom .selec-box {
    position: relative;
}
.faq-style-4 .faq-form-box .form-bottom .selec-box img {
    position: absolute;
    left: 13px;
    top: 23px;
    width: 24px;
}
.faq-style-4 .faq-form-box .form-bottom .selec-box .nice-select {
    border-radius: 5px;
    padding-left: 16px;
    background-color: transparent;
    border: 1px solid #E6E6E6;
    position: relative;
    margin-bottom: 30px;
}
.faq-style-4 .faq-form-box .form-bottom .selec-box .nice-select:after {
    display: none;
}
.faq-style-4 .faq-form-box .form-bottom .selec-box .nice-select.open:before {
    transform: rotate(-180deg);
}
.faq-style-4 .faq-form-box .form-bottom .selec-box .nice-select:before {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: 14px;
    transition: all 0.2s ease-in-out;
    color: #868686;
    font-size: 16px;
}
.faq-style-4 .faq-form-box .form-bottom .btn-box {
    border-top: 1px solid #E6E6E6;
    padding-top: 51px;
}
.faq-style-4 .faq-form-box .form-bottom .btn-box .btn-read {
    padding: 14px 51px;
}
.faq-style-4 .faq-poster-left {
    margin-left: -120px;
    background-repeat: no-repeat;
    background-size: cover;
}
.faq-style-4 .faq-poster-left .poster-content {
    padding: 50px 0 50px 40px;
}
.faq-style-4 .faq-poster-left .poster-content .title {
    color: var(--white);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    width: 370px;
}
.faq-style-4 .faq-poster-left .poster-content span {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
}
.faq-style-4 .faq-poster-left .poster-content .btn-nblue-3 {
    margin-top: 20px;
    padding: 14px 31px;
}
.faq-style-4 .faq-poster-left .faq-thumb {
    margin-left: -371px;
}
.faq-style-4 .faq-poster-right {
    margin-right: -120px;
}
.faq-style-4 .faq-poster-right .poster-content {
    padding: 50px 0 50px 40px;
}
.faq-style-4 .faq-poster-right .poster-content .title {
    color: var(--header);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    width: 370px;
}
.faq-style-4 .faq-poster-right .poster-content span {
    color: var(--theme);
    font-size: 18px;
    font-weight: 500;
}
.faq-style-4 .faq-poster-right .poster-content .btn-read {
    margin-top: 20px;
    padding: 14px 31px;
}
.faq-style-4 .faq-poster-right .faq-thumb {
    margin-right: 24px;
    position: relative;
}
.faq-style-4 .faq-poster-right .faq-thumb .shape {
    position: absolute;
    bottom: 1px;
    right: 198px;
    width: 85px;
}

.banner-wrapper .faq-poster-left {
    margin-left: -120px;
    background-repeat: no-repeat;
    background-size: cover;
}
@media (max-width: 1199px) {
    .banner-wrapper .faq-poster-left {
        margin-bottom: 30px;
        margin-left: 0;
    }
}
.banner-wrapper .faq-poster-left .poster-content {
    padding: 50px 0 50px 40px;
}
@media (max-width: 575px) {
    .banner-wrapper .faq-poster-left .poster-content {
        padding: 30px;
    }
}
.banner-wrapper .faq-poster-left .poster-content .title {
    color: var(--white);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    width: 370px;
}
@media (max-width: 575px) {
    .banner-wrapper .faq-poster-left .poster-content .title {
        font-size: 25px;
    }
}
.banner-wrapper .faq-poster-left .poster-content span {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
}
.banner-wrapper .faq-poster-left .poster-content .btn-nblue-3 {
    margin-top: 20px;
    padding: 14px 31px;
}
.banner-wrapper .faq-poster-left .faq-thumb {
    margin-left: -371px;
}
@media (max-width: 767px) {
    .banner-wrapper .faq-poster-left .faq-thumb {
        display: none;
    }
}
.banner-wrapper .faq-poster-right {
    margin-right: -120px;
}
@media (max-width: 1199px) {
    .banner-wrapper .faq-poster-right {
        margin-right: 0;
    }
}
.banner-wrapper .faq-poster-right .poster-content {
    padding: 50px 0 50px 40px;
}
@media (max-width: 575px) {
    .banner-wrapper .faq-poster-right .poster-content {
        padding: 30px;
    }
}
.banner-wrapper .faq-poster-right .poster-content .title {
    color: var(--header);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    width: 370px;
}
@media (max-width: 575px) {
    .banner-wrapper .faq-poster-right .poster-content .title {
        font-size: 25px;
    }
}
.banner-wrapper .faq-poster-right .poster-content span {
    color: var(--theme);
    font-size: 18px;
    font-weight: 500;
}
.banner-wrapper .faq-poster-right .poster-content .btn-read {
    margin-top: 20px;
    padding: 14px 31px;
}
.banner-wrapper .faq-poster-right .faq-thumb {
    margin-right: 24px;
    position: relative;
}
@media (max-width: 767px) {
    .banner-wrapper .faq-poster-right .faq-thumb {
        display: none;
    }
}
.banner-wrapper .faq-poster-right .faq-thumb .shape {
    position: absolute;
    bottom: 43px;
    right: 249px;
    width: 85px;
    animation: tpswing 1s ease-in-out 1s forwards infinite alternate;
    transform-origin: bottom left;
}

.gt-space-bottom {
    margin-bottom: 120px;
}
@media (max-width: 1199px) {
    .gt-space-bottom {
        margin-bottom: 100px;
    }
}
@media (max-width: 991px) {
    .gt-space-bottom {
        margin-bottom: 80px;
    }
}

.quote-widget {
    padding-top: 180px;
}
@media (max-width: 1199px) {
    .quote-widget {
        padding-top: 160px;
    }
}
@media (max-width: 991px) {
    .quote-widget {
        padding-top: 140px;
    }
}
.quote-widget .quote-wrapper {
    padding: 0 160px;
}
@media (max-width: 1199px) {
    .quote-widget .quote-wrapper {
        padding: 0 0;
    }
}
.quote-widget .quote-item {
    width: 270px;
    height: 122px;
    background-color: var(--white);
    border-top: 4px solid #020E28;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) {
    .quote-widget .quote-item {
        margin-bottom: 90px;
    }
}
.quote-widget .quote-item .icon {
    position: absolute;
    width: 90px;
    height: 103px;
    background-color: var(--theme2);
    left: 85px;
    top: -64px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}
.quote-widget .quote-item .icon:before {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 13px 10.5px 0 10.5px;
    border-color: #020E28 transparent transparent transparent;
    transform: rotate(0deg);
    bottom: -13px;
    left: 40%;
    transition: all 0.4s ease-in-out;
}
.quote-widget .quote-item .icon svg path {
    transition: all 0.4s ease-in-out;
}
.quote-widget .quote-item .content {
    position: absolute;
    bottom: 21px;
    left: 13%;
}
.quote-widget .quote-item .content span {
    color: var(--header);
    font-size: 22px;
    font-weight: 700;
}
.quote-widget .quote-item:hover {
    border-color: var(--theme);
}
.quote-widget .quote-item:hover .icon {
    background-color: var(--theme);
}
.quote-widget .quote-item:hover .icon svg {
    animation: icon-bounce 0.8s 1;
}
.quote-widget .quote-item:hover .icon svg path {
    fill: var(--white);
}
.quote-widget .quote-item:hover .icon:before {
    border-color: var(--theme) transparent transparent transparent;
}
@media (max-width: 991px) {
    .quote-widget .gt-mb {
        margin-bottom: 0;
    }
}
.quote-widget .active {
    border-color: var(--theme);
}
.quote-widget .active .icon {
    background-color: var(--theme);
}
.quote-widget .active .icon svg path {
    fill: var(--white);
}
.quote-widget .active .icon:before {
    border-color: var(--theme) transparent transparent transparent;
}

.footer-style-1 {
    padding: 0px 225px 50px 225px;
}
.footer-area {
    margin-top:350px;
}
@media (max-width: 1600px) {
    .footer-style-1 {
        padding: 120px 30px;
    }
}
@media (max-width: 1199px) {
    .footer-area {
    margin-top:270px;
}
    .footer-style-1 {
        padding: 100px 30px;
    }
}
@media (max-width: 991px) {
    .footer-area {
    margin-top:200px;
}
    .footer-style-1 {
        padding: 80px 30px;
    }
}
@media (max-width: 575px) {
    .footer-area {
    margin-top:180px;
}
    .footer-style-1 {
        padding: 80px 0;
    }
}
.footer-style-1 .shape-1 {
    top: 23%;
    left: 0;
}
@media (max-width: 1600px) {
    .footer-style-1 .shape-1 {
        display: none;
    }
}
.footer-style-1 .shape-2 {
    right: 0;
    top: 10;
}
@media (max-width: 991px) {
    .footer-style-1 .shape-2 {
        display: none;
    }
}
.footer-style-1 .footer-content {
    position: relative;
    z-index: 11;
}
.footer-style-1 .footer-content p {
    padding: 20px 74px 25px 0;
}
.footer-style-1 .footer-content .footer-social {
    position: relative;
    z-index: 11;
}
@media (max-width: 991px) {
    .footer-style-1 .footer-content .footer-social {
        margin-top: 20px;
    }
}
@media (max-width: 991px) and (min-width: 575px) {
    .tab-mb {
        margin-bottom: 60px;
    }
}
.footer-style-1 .footer-content .footer-social a {
    display: inline-block;
    width: 36PX;
    height: 36PX;
    color: var(--white);
    text-align: center;
    line-height: 36px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease-in-out;
    margin-right: 5px;
}
.footer-style-1 .footer-content .footer-social a:hover {
    background-color: var(--theme);
}
.footer-style-1 .footer-content .footer-social .active {
    background-color: var(--theme);
    color: var(--white);
}
.footer-style-1 .quiklinks {
    position: relative;
}
.footer-style-1 .quiklinks .section-24 {
    margin-bottom: 40px;
}
.footer-style-1 .quiklinks a {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
    transition: all 0.4s ease-in-out;
    margin-bottom: 16px;
    display: inline-block;
}
.footer-style-1 .quiklinks a i {
    margin-right: 10px;
    font-size: 14px;
}
.footer-style-1 .quiklinks a:hover {
    color: var(--white);
    transform: translateX(5px);
}
.footer-style-1 .quiklinks:before {
    position: absolute;
    content: "";
    width: 18px;
    height: 2px;
    background-color: var(--white);
    top: 50px;
}
.footer-style-1 .quiklinks:after {
    position: absolute;
    content: "";
    width: 83px;
    height: 2px;
    background-color: var(--theme);
    top: 50px;
    left: 31px;
}
.footer-style-1 .quiklinks .input-box {
    width: 270px;
    margin-top: 10px;
    position: relative;
}
.footer-style-1 .quiklinks .input-box input {
    border-radius: 8px;
}
.footer-style-1 .quiklinks .input-box input ::placeholder {
    color: #445375;
    font-size: 14px;
    font-weight: 400;
}
.footer-style-1 .quiklinks .input-box .submit-btn {
    position: absolute;
    display: inline-block;
    width: 46px;
    height: 46px;
    background-color: var(--theme);
    text-align: center;
    line-height: 46px;
    color: var(--white);
    right: 7px;
    bottom: 5px;
}
.footer-style-1 .quiklinks .check-box {
    width: 270px;
    margin-top: 18px;
}
.footer-style-1 .quiklinks .check-box p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    margin-left: 10px;
}
.footer-style-1 .quiklinks .check-box p label {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.6;
    margin-right: 12px;
}
.footer-style-1 .quiklinks .clr-white {
    color: var(--white);
    opacity: 1;
}
.footer-style-1 .quiklinks-1 {
    margin-left: 97px;
}
@media (max-width: 1600px) {
    .footer-style-1 .quiklinks-1 {
        margin-left: 0;
    }
}
@media (max-width: 575px) {
    .footer-style-1 .quiklinks-1 {
        margin-top: 30px;
    }
}
.footer-style-1 .quiklinks-2 {
    margin-left: 15px;
}
@media (max-width: 1600px) {
    .footer-style-1 .quiklinks-2 {
        margin-left: 0;
    }
}
@media (max-width: 1199px) {
    .footer-style-1 .quiklinks-2 {
        margin-left: -70px;
    }
}
@media (max-width: 991px) {
    .footer-style-1 .quiklinks-2 {
        margin-left: 0;
        margin-top: -30px;
    }
}
@media (max-width: 575px) {
    .footer-style-1 .quiklinks-2 {
        margin-top: 30px;
    }
}
.footer-style-1 .quiklinks-3 {
    margin-left: 5px;
}
@media (max-width: 1600px) {
    .footer-style-1 .quiklinks-3 {
        margin-left: 0;
    }
}
@media (max-width: 1199px) {
    .footer-style-1 .quiklinks-3 {
        margin-left: -70px;
    }
}
@media (max-width: 991px) {
    .footer-style-1 .quiklinks-3 {
        margin-left: 0;
    }
}
@media (max-width: 575px) {
    .footer-style-1 .quiklinks-3 {
        margin-top: 30px;
    }
}

.footer-end {
    padding: 22px 225px;
    background-color: var(--theme);
    position: relative;
}
@media (max-width: 1399px) {
    .footer-end {
        padding: 22px 80px;
    }
}
@media (max-width: 575px) {
    .footer-end {
        padding: 22px 0;
    }
}
.footer-end .footer-bottom .footer-copyright {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    opacity: 0.8;
}
@media (max-width: 767px) {
    .footer-end .footer-bottom .footer-copyright {
        text-align: center;
    }
}

.main-menu ul {
    margin-bottom: 0;
}
.main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-inline-end: 47px;
}
@media (max-width: 1600px) {
    .main-menu ul li {
        margin-inline-end: 22px;
    }
}
@media (max-width: 1399px) {
    .main-menu ul li {
        margin-inline-end: 25px;
    }
}
@media (max-width: 1499px) {
    .main-menu ul li {
        margin-inline-end: 12px;
    }
}
.main-menu ul li:last-child {
    margin-inline-end: 0;
}
.main-menu ul li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--header);
    padding: 30px 0;
    text-align: left;
    position: relative;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}
.main-menu ul li a i {
    margin-left: 4px;
    font-size: 14px;
}
.main-menu ul li a:hover {
    color: var(--theme2);
}
.main-menu ul li .submenu {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    min-width: 240px;
    background: var(--white);
    padding: 20px 0;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    color: var(--header);
    transform: translateY(-10px);
    transition: all 0.4s ease-in-out;
    border-top: 4px solid var(--theme);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.main-menu ul li .submenu li {
    display: block;
    width: 100%;
    margin: 0;
}
.main-menu ul li .submenu li a {
    position: relative;
    z-index: 11;
    font-size: 16px;
    font-weight: 600;
    color: var(--header);
    line-height: 38px;
    padding: 0px 0px 0px 32px;
    width: 100%;
}
.main-menu ul li .submenu li a::before {
    content: "";
    position: absolute;
    width: 0px;
    height: 2px;
    background: var(--theme);
    left: 14px;
    bottom: 18px;
    transition: all 0.4s ease-in-out;
}
.main-menu ul li .submenu li a:hover {
    color: var(--theme) !important;
}
.main-menu ul li .submenu li:last-child a {
    border: none;
}
.main-menu ul li .submenu li .submenu {
    inset-inline-start: 100%;
    top: 0;
    visibility: hidden;
    opacity: 0;
}
.main-menu ul li .submenu li:hover > a {
    color: var(--theme) !important;
    margin-left: 10px;
}
.main-menu ul li .submenu li:hover > a::before {
    width: 10px;
}
.main-menu ul li .submenu li:hover > a::after {
    color: var(--theme);
}
.main-menu ul li .submenu li:hover > .submenu {
    -webkit-transform: translateY(1);
    -moz-transform: translateY(1);
    -ms-transform: translateY(1);
    -o-transform: translateY(1);
    transform: translateY(1);
    visibility: visible;
    opacity: 1;
}
.main-menu ul li .submenu 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);
}
.main-menu ul li .has-homemenu {
    width: 800px;
    padding: 30px 30px 10px 30px;
    opacity: 0;
    left: -250px;
    visibility: hidden;
    padding: 30px 30px 10px 30px;
}
.main-menu ul li .has-homemenu .homemenu-items {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}
@media (max-width: 991px) {
    .main-menu ul li .has-homemenu .homemenu-items {
        flex-wrap: wrap;
    }
}
.main-menu ul li .has-homemenu .homemenu-items .homemenu {
    position: relative;
}
.main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
    position: relative;
}
.main-menu ul li .has-homemenu .homemenu-items .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;
}
.main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 14px 20px;
    color: var(--white) !important;
    width: initial;
    font-size: 16px;
    text-align: center;
    border-radius: 0px !important;
    background-color: var(--theme);
    line-height: initial;
}
.main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    background-color: var(--header);
}
.main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 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: "";
}
.main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}
.main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}
.main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}
.main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
    width: 100%;
}
.main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
}
.main-menu ul li:hover > a {
    color: var(--theme2);
}
.main-menu ul li:hover > a::after {
    color: var(--theme);
}
.main-menu ul li:hover > .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
}
.main-header .header-area {
    width: 100%;
    position: relative;
}
.main-header .header-area:before {
    position: absolute;
    content: "";
    width: 250px;
    height: 110px;
    background-color: var(--white);
    z-index:1;
    left: 0;
    top: 0;
}
@media (max-width: 1399px) {
    .main-header .header-area:before {
        width: 257px;
        height: 135px;
    }
}
@media (max-width: 1199px) {
    .main-header .header-area:before {
        display: none;
    }
}
.main-header .header-area:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 56px;
    background-color: var(--theme);
    z-index: -1;
    left: 0;
    top: 0;
}
@media (max-width: 1199px) {
    .main-header .header-area:after {
        height: 85px;
    }
}
.main-header .header-area .container-fluid {
    padding-right: 137px;
    padding-left: 275px;
}
@media (max-width: 1600px) {
    .main-header .header-area .container-fluid {
        padding-right: 90px;
    }
}
@media (max-width: 1399px) {
    .main-header .header-area .container-fluid {
        padding-left: 278px;
        padding-right: 18px;
    }
}
.main-header .header-area .header-logo {
    position: absolute;
    /* left: 80px;
  top: 32px; */
    z-index: 2;
}
@media (max-width: 575px) {
    .main-header .header-area .header-logo {
        left: 20px;
        top: 26px;
    }
}
@media (max-width: 575px) {
    .main-header .header-area .header-logo img {
        width: 126px;
    }
}
@media (max-width: 1399px) {
    .main-header .header-area .header-logo {
        /* left: 45px;
    top: 45px; */
        left: 7px;
        top: 12px;
    }
}
@media (max-width: 1199px) {
    .main-header .header-area .header-logo {
        left: 40px;
        /* top: 22px; */
        top: -14px;
    }
}
.main-header .header-top-area {
    padding: 14px 0;
    position: relative;
}
@media (max-width: 1199px) {
    .main-header .header-top-area {
        padding: 29px 0;
    }
}
/* .main-header .header-top-area:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  background-color: var(--white);
  top: 0;
  left: -49px;
} */
@media (max-width: 1399px) {
    .main-header .header-top-area:before {
        display: none;
    }
}
.main-header .header-top-area .header-top-left {
    gap: 30px;
}
.main-header .header-top-area .header-top-left .info {
    gap: 12px;
}
.main-header .header-top-area .header-top-left .info p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    position: relative;
    z-index: 11;
}
@media (max-width: 767px) {
    .main-header .header-top-area .header-top-left .info p {
        display: none;
    }
}
.main-header .header-top-area .header-top-right .social-info a {
    color: var(--white);
    transition: all 0.4s ease-in-out;
    display: inline-block;
    margin-right: 24px;
}
.main-header .header-top-area .header-top-right .social-info a:last-child {
    margin-right: 0;
}
.main-header .header-top-area .header-top-right .social-info a:hover {
    color: var(--theme2);
}
.main-header .header-bottom-area .main-menu ul li a {
    color: var(--white);
}
.main-header .header-bottom-area .main-menu ul li a:hover {
    color: var(--theme) !important;
}
.main-header .header-bottom-area .main-menu ul li:hover > a {
    color: white!important;
}
.main-header .header-bottom-area .main-menu ul li:hover > a::after {
    color: var(--theme);
}
.main-header .header-bottom-area .main-menu ul li .submenu a {
    color: var(--header);
}
@media (max-width: 1600px) {
    .main-header .header-bottom-area .header-menu-icon {
        margin-left: -98px;
    }
}
@media (max-width: 1199px) {
    .main-header .header-bottom-area .header-menu-icon {
        margin-left: 92px;
        margin-top: -42px;
    }
}
@media (max-width: 767px) {
    .main-header .header-bottom-area .header-menu-icon {
        margin-left: 28px;
        margin-top: -44px;
    }
}
.main-header .header-bottom-area .header-menu-icon .header-icon {
    gap: 15px;
}
@media (max-width: 575px) {
    .main-header .header-bottom-area .header-menu-icon .header-icon {
        gap: 0;
    }
}
.main-header .header-bottom-area .header-menu-icon .header-icon button {
    display: inline-block;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    background-color: rgba(247, 247, 247, 0.1);
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    line-height: 56px;
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 11;
}
@media (max-width: 1199px) {
    .main-header .header-bottom-area .header-menu-icon .header-icon button {
        background-color: transparent;
    }
}
.main-header .header-bottom-area .header-menu-icon .header-icon button:hover {
    background-color: var(--theme);
}
.main-header .header-bottom-area .header-menu-icon .btn-box {
    padding-left: 20px;
}
@media (max-width: 1199px) {
    .main-header .header-bottom-area .header-menu-icon .btn-box {
        display: none;
    }
}
.main-header .header-bottom-area .header-menu-icon .btn-box .btn-read-2 {
    display: inline-block;
    background-color: #e52f41;
    color: var(--white);
    padding: 14px 20px;
}
.main-header .header-bottom-area .header-menu-icon .btn-box .btn-read-2 i {
    margin-left: 10px;
}

.header-2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    padding-right: 60px;
    padding-left: 50px;
}
@media (max-width: 1600px) {
    .header-2 {
        padding-right: 20px;
        padding-left: 20px;
    }
}
@media (max-width: 1399px) {
    .header-2 {
        padding-right: 0px;
        padding-left: 10px;
    }
}
@media (max-width: 575px) {
    .header-2 {
        padding-right: 0;
        padding-left: 0;
    }
}
@media (max-width: 1199px) {
    .header-2 .logo {
        margin-top: 30px;
    }
}
@media (max-width: 450px) {
    .header-2 .logo img {
        max-width: 35%;
    }
}
.header-2 .logo .header-logo-2 {
    display: none;
}
.header-2 .main-menu ul li a {
    padding: 30px 0;
}
.header-2 .main-menu ul li:hover > a {
    color: var(--theme);
}
@media (max-width: 1199px) {
    .header-2 .header-right {
        margin-left: -70px;
        margin-top: 30px;
    }
}
@media (max-width: 991px) {
    .header-2 .header-right {
        margin-top: -56px;
    }
}
@media (max-width: 575px) {
    .header-2 .header-right {
        margin-top: -40px;
    }
}
.header-2 .header-right .header-icon {
    margin-right: 50px;
}
@media (max-width: 1600px) {
    .header-2 .header-right .header-icon {
        margin-right: 38px;
    }
}
@media (max-width: 575px) {
    .header-2 .header-right .header-icon {
        margin-right: 0;
    }
}
.header-2 .header-right .header-icon .offcanvas-bar {
    margin-left: 30px;
}
@media (max-width: 1199px) {
    .header-2 .header-right .btn-box {
        display: none;
    }
}
.header-2 .header-right .btn-box .btn-read {
    padding: 14px 20px;
}

.header-3 .main-menu ul li a {
    padding: 30px 0;
    color: var(--white);
}
@media (max-width: 1399px) {
    .header-3 .logo .header-logo {
        display: none;
    }
}
@media (max-width: 1399px) {
    .header-3 .logo .header-logo-2 {
        display: block;
    }
}
@media (max-width: 1399px) {
    .header-3 .header-right {
        margin-left: -20px;
    }
}
@media (max-width: 575px) {
    .header-3 .header-right {
        margin-top: -56px;
    }
}
.header-3 .header-right .header-icon {
    gap: 0;
    margin-right: 30px;
    margin-left: 20px;
}
@media (max-width: 575px) {
    .header-3 .header-right .header-icon {
        margin-right: 0;
        gap: 0;
    }
}
.header-3 .header-right .header-icon button {
    display: inline-block;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    background-color: rgba(247, 247, 247, 0.1);
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    line-height: 56px;
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 11;
}
@media (max-width: 1199px) {
    .header-3 .header-right .header-icon button {
        background-color: transparent;
    }
}
.header-3 .header-right .header-icon button:hover {
    background-color: var(--theme);
}
@media (max-width: 991px) {
    .header-3 .header-right .header-icon .offcanvas-bar {
        margin-left: 0;
    }
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 10000;
    transition: all 0.9s;
    background-color: var(--white);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.sticky.main-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
}
.sticky.main-header:before {
    position: absolute;
    content: "";
    width: 250px;
    height: 109px;
    background-color: var(--theme);
    z-index: -1;
    left: 0;
    top: 0;
}
@media (max-width: 1182px) {
    .sticky.main-header:before {
        width: 300px;
        height: 109px;
    }
}
@media (max-width: 1026px) {
    .sticky.main-header:before {
        width: 250px;
        height: 109px;
    }
}
@media (max-width: 767px) {
    .sticky.main-header:before {
        width: 222px;
        height: 93px;
    }
}
@media (max-width: 575px) {
    .sticky.main-header:before {
        width: 168px;
        height: 85px;
    }
}
.sticky.main-header .header-area {
    width: 100%;
    position: relative;
    height: 85px;
}
.sticky.main-header .header-area:before {
    position: absolute;
    content: "";
    width: 250px;
    /* height: 126px; */
    background-color: var(--white);
    z-index: -1;
    left: 0;
    top: 0;
}
/* @media (max-width: 1282px) {
  .sticky.main-header .header-area:before {
    width: 270px;
  }
} */
.sticky.main-header .header-area:after {
    display: none;
}
.sticky.main-header .header-area .container-fluid {
    padding-right: 160px;
    padding-left: 260px;
}
@media (max-width: 1600px) {
    .sticky.main-header .header-area .container-fluid {
        padding-left: 300px;
        padding-right: 10px;
    }
}
@media (max-width: 1399px) {
    .sticky.main-header .header-area .container-fluid {
        padding-left: 299px;
    }
}
@media (max-width: 1199px) {
    .sticky.main-header .header-area .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (max-width: 991px) {
    .main-header .header-area .header-logo{
        left: 10px;
        top: -16px;
    }
}

@media (max-width: 991px) {
    .sticky .main-header .header-area .header-logo{
        left: 10px;
        top: -4px;
    }
}
.sticky.main-header .header-area .header-logo {
    /* left: 61px;
  top: 14px; */
    width: 100px;
}
@media (max-width: 1399px) {

}
.sticky.main-header .header-top-area {
    display: none;
}
.sticky.main-header .header-top-area .header-top-left {
    gap: 30px;
}
.sticky.main-header .header-top-area .header-top-left .info {
    gap: 12px;
}
.sticky.main-header .header-top-area .header-top-left .info a {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    position: relative;
    z-index: 11;
}
.img{

}
.sticky.main-header .header-top-area .header-top-right .social-info a {
    color: var(--white);
    transition: all 0.4s ease-in-out;
    display: inline-block;
    margin-right: 24px;
}
.sticky.main-header .header-top-area .header-top-right .social-info a:last-child {
    margin-right: 0;
}
.sticky.main-header .header-top-area .header-top-right .social-info a:hover {
    color: var(--theme2);
}
.sticky.main-header .header-bottom-area .main-menu ul li a {
    color: var(--header);
}
.sticky.main-header .header-bottom-area .main-menu ul li a:hover {
    color: var(--theme) !important;
}
.sticky.main-header .header-bottom-area .main-menu ul li:hover > a {
    color: var(--theme);
}
.sticky.main-header .header-bottom-area .main-menu ul li:hover > a::after {
    color: var(--theme);
}
.sticky.main-header .header-bottom-area .main-menu ul li .submenu a {
    color: var(--header);
}
@media (max-width: 1600px) {
    .sticky.main-header .header-bottom-area .header-menu-icon {
        margin-left: -98px;
    }
}
@media (max-width: 1199px) {
    .sticky.main-header .header-bottom-area .header-menu-icon {
        padding-right: 29px;
        margin-top: 15px;
    }
}
@media (max-width: 767px) {
    .sticky.main-header .header-bottom-area .header-menu-icon {
        padding-right: 27px;
        margin-top: 15px;
    }
}
@media (max-width: 575px) {
    .sticky.main-header .header-bottom-area .header-menu-icon {
        padding-right: 10px;
    }
}
.sticky.main-header .header-bottom-area .header-menu-icon .header-icon {
    gap: 15px;
}
@media (max-width: 575px) {
    .sticky.main-header .header-bottom-area .header-menu-icon .header-icon {
        gap: 0;
    }
}
.sticky.main-header .header-bottom-area .header-menu-icon .header-icon button {
    display: inline-block;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    background-color: rgba(247, 247, 247, 0.897);
    color: var(--header);
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    line-height: 56px;
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 11;
}
@media (max-width: 1199px) {
    .sticky.main-header .header-bottom-area .header-menu-icon .header-icon button {
        background-color: transparent;
    }
}
.sticky.main-header .header-bottom-area .header-menu-icon .header-icon button:hover {
    background-color: var(--theme);
    color: var(--white);
}
.sticky.main-header .header-bottom-area .header-menu-icon .btn-box {
    padding-left: 20px;
}
@media (max-width: 1199px) {
    .sticky.main-header .header-bottom-area .header-menu-icon .btn-box {
        display: none;
    }
}
.sticky.main-header .header-bottom-area .header-menu-icon .btn-box .btn-read-2 {
    display: inline-block;
    background-color: #e52f41;
    color: var(--white);
    padding: 14px 20px;
}
.sticky.main-header .header-bottom-area .header-menu-icon .btn-box .btn-read-2 i {
    margin-left: 10px;
}
.sticky.header-2 {
    position: relative;
}
@media (max-width: 1199px) {
    .sticky.header-2 {
        height: 85px;
    }
}
.sticky.header-2:before {
    position: absolute;
    content: "";
    width: 273px;
    height: 109px;
    background-color: var(--theme);
    z-index: -1;
    left: 0;
    top: 0;
}
@media (max-width: 767px) {
    .sticky.header-2:before {
        width: 222px;
        height: 93px;
    }
}
@media (max-width: 575px) {
    .sticky.header-2:before {
        width: 168px;
        height: 93px;
    }
}
.sticky.header-2 .logo .header-logo {
    display: none;
}
.sticky.header-2 .logo .header-logo-2 {
    display: block;
    position: absolute;
    left: 52px;
    top: 30px;
}
@media (max-width: 1399px) {
    .sticky.header-2 .logo .header-logo-2 {
        left: 45px;
        top: 26px;
    }
}
@media (max-width: 767px) {
    .sticky.header-2 .logo .header-logo-2 {
        left: 25px;
    }
}
@media (max-width: 575px) {
    .sticky.header-2 .logo .header-logo-2 {
        left: 22px;
        top: 29px;
    }
}
@media (max-width: 767px) {
    .sticky.header-2 .logo img {
        max-width: 80%;
    }
}
@media (max-width: 1600px) {
    .sticky.header-2 .mean__menu-wrapper {
        margin-left: 30px;
    }
}
@media (max-width: 1399px) {
    .sticky.header-2 .mean__menu-wrapper {
        margin-left: 45px;
    }
}
@media (max-width: 1199px) {
    .sticky.header-2 .header-right {
        margin-top: 15px;
    }
}
@media (max-width: 991px) {
    .sticky.header-2 .header-right {
        margin-top: -15px;
    }
}
.sticky.header-3 .main-menu ul li a {
    color: var(--header);
}
.sticky.header-3 .main-menu ul li a:hover {
    color: var(--theme) !important;
}
.sticky.header-3 .main-menu ul li:hover > a {
    color: var(--theme);
}
.sticky.header-3 .main-menu ul li:hover > a::after {
    color: var(--theme);
}
.sticky.header-3 .main-menu ul li .submenu a {
    color: var(--header);
}
@media (max-width: 575px) {
    .sticky.header-3 .header-right .header-icon {
        margin-right: 0;
    }
}
.sticky.header-3 .header-right .header-icon button {
    color: var(--header);
}
.sticky.header-3 .header-right .header-icon button:hover {
    background-color: transparent;
    color: var(--theme);
}
@media (max-width: 991px) {
    .sticky.header-3 .header-right .header-icon .offcanvas-bar {
        margin-left: 0;
    }
}

.error-wrapper .errore-img img {
    max-width: 100%;
}
.error-wrapper .section-content {
    margin-top: 30px;
}
.error-wrapper .section-content .title {
    color: var(--white);
    font-size: 60px;
    font-weight: 500;
}
@media (max-width: 575px) {
    .error-wrapper .section-content .title {
        font-size: 40px;
    }
}
.error-wrapper .section-content .title span {
    color: var(--white);
    font-size: 60px;
    font-weight: 400;
}
@media (max-width: 575px) {
    .error-wrapper .section-content .title span {
        font-size: 40px;
    }
}
.error-wrapper .section-content p {
    color: #6C6E76;
    font-size: 18px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 25px;
}
.error-wrapper .section-content .btn-box .btn-read {
    padding: 14px 34px;
}

.imgw {
    max-width: 100%;
}

.w-100 {
    width: 100%;
}

.f-w {
    font-weight: 700;
}
.f-w-600 {
    font-weight: 600;
}
.f-w-500 {
    font-weight: 500;
}
.f-w-400 {
    font-weight: 400;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.fix {
    overflow: hidden;
}

.ds-inline {
    display: inline-block;
}

.nblue-bg {
    background-color: var(--theme2);
}

.cream-bg {
    background-color: var(--bg);
}

.white-bg {
    background-color: var(--white);
}

.bor-bottom {
    border-bottom: 1px solid #fff;
}

body {
    scrollbar-width: 1px;
}

.clr-white {
    color: var(--white);
    opacity: 0.7;
}

.clr-white-2 {
    color: var(--white);
    opacity: 0.8;
}

.clr-white-3 {
    color: var(--white);
}

.style-2 {
    background-color: #15232E !important;
}

.padding-bottom {
    padding-bottom: 120px;
}
@media (max-width: 1199px) {
    .padding-bottom {
        padding-bottom: 100px;
    }
}
@media (max-width: 991px) {
    .padding-bottom {
        padding-bottom: 80px;
    }
}

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

.mt-30 {
    margin-top: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

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

.mb-120 {
    margin-bottom: 120px;
}
@media (max-width: 1199px) {
    .mb-120 {
        margin-bottom: 100px;
    }
}
@media (max-width: 991px) {
    .mb-120 {
        margin-bottom: 80px;
    }
}

.mt-10 {
    margin-top: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.pb-0 {
    padding-bottom: 0;
}

.hero-1 {
    padding-bottom: 100px;
}
@media (max-width: 575px) {
    .hero-1 {
        padding-bottom: 30px;
    }
}
.hero-1 .hreo-image {
    top: 0;
    right: 272px;
    position: absolute;
}
@media (max-width: 1600px) {
    .hero-1 .hreo-image {
        top: 0px;
        right: -33px;
    }
}
@media (max-width: 1399px) {
    .hero-1 .hreo-image {
        display: none;
    }
}
@media (max-width: 1600px) {
    .hero-1 .hreo-image img {
        width: 60%;
        right: 0;
    }
}
@media (max-width: 1199px) {
    .hero-1 .hreo-image img {
        width: 50%;
        display: none;
    }
}
.hero-1 .videowrap {
    bottom: 96px;
    left: 35%;
}
@media (max-width: 1199px) {
    .hero-1 .videowrap {
        bottom: 100px;
        left: 44%;
    }
}
@media (max-width: 991px) {
    .hero-1 .videowrap {
        bottom: 8%;
        left: 67%;
    }
}
@media (max-width: 767px) {
    .hero-1 .videowrap {
        left: 56%;
    }
}
@media (max-width: 575px) {
    .hero-1 .videowrap {
        display: none;
    }
}
.hero-1 .videowrap .videowrap__bg .video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 55;
}
.hero-1 .videowrap .videowrap__bg .video::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    width: 114px;
    height: 114px;
    line-height: 114px;
    border-radius: 100px;
    border: 1px solid var(--white);
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
}
.hero-1 .videowrap .videowrap__bg .vimg-1 {
    position: relative;
}
.hero-1 .videowrap .videowrap__bg .vimg-1:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(2, 14, 40, 0.6);
    z-index: 1;
    border-radius: 50%;
}
.hero-1 .videowrap .videowrap__bg .icon-2 {
    top: 34%;
    left: 32%;
    color: var(--theme);
    font-size: 20px;
    z-index: 2;
    background-color: var(--white);
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.hero-1 .container-fluid {
    padding: 0 160px;
}
@media (max-width: 1600px) {
    .hero-1 .container-fluid {
        padding: 0 40px;
    }
}
@media (max-width: 1199px) {
    .hero-1 .container-fluid {
        padding: 0 30px;
    }
}
@media (max-width: 991px) {
    .hero-1 .container-fluid {
        padding: 0 40px;
    }
}
@media (max-width: 470px) {
    .hero-1 .container-fluid {
        padding: 0 20px;
    }
}
.hero-1 .heroleft__content {
    max-width: 702px;
    margin-top: 305px;
}
@media (max-width: 1199px) {
    .hero-1 .heroleft__content {
        margin-top: 182px;
    }
}
@media (max-width: 575px) {
    .hero-1 .heroleft__content {
        margin-top: 124px;
    }
}
.hero-1 .heroleft__content .sub-title {
    color: var(--theme);
    border-radius: 50px;
    border: 1px solid rgba(2, 14, 40, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 12px;
    display: inline-block;
}
.hero-1 .heroleft__content h1 {
    margin-bottom: 30px;
}
@media (max-width: 991px) {
    .hero-1 .heroleft__content {
        margin-bottom: 10px;
    }
}
.hero-1 .heroleft__content .btn-read {
    padding: 14px 35px;
    margin-top: 40px;
}
@media (max-width: 575px) {
    .hero-1 .heroleft__content .btn-read {
        margin-top: 30px;
    }
}
.hero-1 .heroleft__content .hero-clients {
    display: flex;
    align-items: center;
    margin-top: 120px;
}
@media (max-width: 1199px) {
    .hero-1 .heroleft__content .hero-clients {
        margin-top: 44px;
    }
}
@media (max-width: 991px) {
    .hero-1 .heroleft__content .hero-clients {
        margin-top: 38px;
    }
}
.hero-1 .heroleft__content .hero-clients img {
    margin-right: -34px;
}
.hero-1 .heroleft__content .hero-clients .span-1 {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--theme);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    line-height: 59px;
}
.hero-1 .heroleft__content .hero-clients .span-2 {
    color: var(--theme2);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    margin-left: 15px;
}
.hero-1 .heroright {
    margin-top: 213px;
}
@media (max-width: 1600px) {
    .hero-1 .heroright {
        padding-right: 0;
    }
}
@media (max-width: 1199px) {
    .hero-1 .heroright {
        margin-top: 122px;
    }
}
@media (max-width: 991px) {
    .hero-1 .heroright {
        margin-top: 0;
    }
}
@media (max-width: 1600px) {
    .hero-1 .heroright .heroright__thumb img {
        width: 80%;
    }
}
@media (max-width: 1199px) {
    .hero-1 .heroright .heroright__thumb img {
        display: none;
    }
}

.hero-2 {
    padding-top: 117px;
    position: relative;
    background-color: var(--theme2);
}
@media (max-width: 1399px) {
    .hero-2 {
        padding: 130px 0;
    }
}
@media (max-width: 1199px) {
    .hero-2 {
        padding: 100px 0;
    }
}
@media (max-width: 991px) {
    .hero-2 {
        padding-bottom: 50px;
    }
}
@media (max-width: 575px) {
    .hero-2 {
        padding-bottom: 0px;
    }
}
.hero-2 .shapes {
    position: absolute;
    left: 0;
    top: 0;
}
@media (max-width: 1199px) {
    .hero-2 .shapes {
        display: none;
    }
}
.hero-2 .container-fluid {
    padding: 0 160px;
}
@media (max-width: 1199px) {
    .hero-2 .container-fluid {
        padding-right: 0;
    }
}
@media (max-width: 991px) {
    .hero-2 .container-fluid {
        padding: 40px;
    }
}
@media (max-width: 575px) {
    .hero-2 .container-fluid {
        padding: 0 20px;
    }
}
.hero-2 .wrapper {
    width: 1098px;
    margin-left: 85px;
    margin-top: 51px;
    position: relative;
}
@media (max-width: 1399px) {
    .hero-2 .wrapper {
        margin-left: 0;
        margin-top: 0;
    }
}
@media (max-width: 1199px) {
    .hero-2 .wrapper {
        width: initial;
        margin-left: 0;
    }
}
@media (max-width: 575px) {
    .hero-2 .wrapper {
        padding-bottom: 70px;
    }
    .hero-2 .wrapper .swiper-slide {
        height: 765px!important;
    }
}
@media (max-width: 1199px) {
    .hero-2 .wrapper .hero-icon {
        display: none !important;
    }
}
.hero-2 .wrapper .hero-icon .icon-1 {
    position: absolute;
    bottom: 154px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--theme);
    z-index: 3;
    text-align: center;
    line-height: 100px;
    left: -51px;
    outline: 8px solid rgba(255, 255, 255, 0.25);
}
.hero-2 .wrapper .hero-icon .icon-2 {
    position: absolute;
    z-index: 111;
    bottom: 120px;
    max-width: 100%;
    left: -86px;
}
.hero-2 .wrapper .hero-icon .icon-2 img {
    width: 100%;
}
.hero-2 .wrapper .swiper-slide {
    overflow: hidden;
    transition: all 200ms linear;
    transform: scale(0.9);
    width: 640px;
    height: 785px;
}
@media (max-width: 1399px) {
    .hero-2 .wrapper .swiper-slide {
        width: initial;
        height: initial;
        margin-top: 50px;
    }
}
@media (max-width: 991px) {
    .hero-2 .wrapper .swiper-slide {
        height: 600px;
    }
}
@media (max-width: 767px) {
    .hero-2 .wrapper .swiper-slide {
        height: 500px;
    }
}
@media (max-width: 575px) {
    .hero-2 .wrapper .swiper-slide {
        height: 450px;
    }
}
.hero-2 .wrapper .swiper-slide .slider-image {
    height: 796px;
}
.hero-2 .wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-2 .wrapper .swiper-slide.swiper-slide-active {
    transform: scale(1);
}
.hero-2 .wrapper .swiper-slide.swiper-slide-active img {
    transform: scale(1.1) !important;
    transition: all 11s ease-in-out;
}
.hero-2 .wrapper .hero-slider-btn {
    position: absolute;
    top: 42%;
    left: 36%;
}
@media (max-width: 1199px) {
    .hero-2 .wrapper .hero-slider-btn {
        display: none;
    }
}
.hero-2 .wrapper .hero-slider-btn .hero-button-prev {
    right: 364px;
    display: none;
}
.hero-2 .wrapper .hero-slider-btn .hero-button-next {
    margin-left: 123px;
}
.hero-2 .wrapper .hero-slider-btn .slider-btn {
    position: absolute;
    z-index: 444;
    background-color: rgba(255, 255, 255, 0.507);
    color: var(--white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-align: center;
    line-height: 56px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.4s ease-in-out;
}
.hero-2 .wrapper .hero-slider-btn .slider-btn:hover {
    background-color: var(--theme);
}
.hero-2 .heroleft__content {
    max-width: 702px;
    margin-top: 234px;
    position: relative;
    margin-left: 79px;
}
@media (max-width: 1899px) {
    .hero-2 .heroleft__content {
        margin-left: 0;
    }
}
@media (max-width: 1600px) {
    .hero-2 .heroleft__content {
        margin-left: -63px;
        margin-top: 227px;
    }
}
@media (max-width: 1399px) {
    .hero-2 .heroleft__content {
        margin-left: -90px;
    }
}
@media (max-width: 991px) {
    .hero-2 .heroleft__content {
        margin-left: 0;
        margin-bottom: 30px;
        margin-top: 30px;
    }
}
@media (max-width: 575px) {
    .hero-2 .heroleft__content {
        margin-top: 80px;
        margin-bottom: 0;
    }
}
.hero-2 .heroleft__content img {
    position: absolute;
    left: -80px;
    top: -80px;
}
@media (max-width: 1600px) {
    .hero-2 .heroleft__content img {
        display: none;
    }
}
.hero-2 .heroleft__content .sub-title {
    border-radius: 50px;
    border: 1px solid var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 10px;
    display: inline-block;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 5;
    text-transform: lowercase;
}
.hero-2 .heroleft__content h1 {
    margin-bottom: 18px;
    color: var(--white);
    line-height: 1.2;
    position: relative;
    z-index: 5;
    font-size: 74px;
}
@media (max-width: 1899px) {
    .hero-2 .heroleft__content h1 {
        font-size: 68px;
    }
}
@media (max-width: 1600px) {
    .hero-2 .heroleft__content h1 {
        font-size: 64px;
    }
}
@media (max-width: 1399px) {
    .hero-2 .heroleft__content h1 {
        font-size: 55px;
    }
}
@media (max-width: 1199px) {
    .hero-2 .heroleft__content h1 {
        font-size: 55px;
        margin-top: 20px;
    }
}
@media (max-width: 767px) {
    .hero-2 .heroleft__content h1 {
        font-size: 48px;
    }
}
@media (max-width: 575px) {
    .hero-2 .heroleft__content h1 {
        font-size: 35px;
    }
}
.hero-2 .heroleft__content p {
    color: var(--white);
    margin-bottom: 35px;
    position: relative;
    z-index: 5;
    padding-right: 100px;
}
@media (max-width: 1199px) {
    .hero-2 .heroleft__content p {
        margin-top: 30px;
    }
}
@media (max-width: 575px) {
    .hero-2 .heroleft__content p {
        padding-right: 0px;
    }
}
.hero-2 .heroleft__content .btn-white {
    padding: 14px 35px;
}
.hero-2 .heroleft__content .swiper-slide-count {
    position: absolute;
    left: -21%;
    top: 37%;
    z-index: 22;
    text-align: center;
}
@media (max-width: 1899px) {
    .hero-2 .heroleft__content .swiper-slide-count {
        left: -18%;
    }
}
@media (max-width: 1600px) {
    .hero-2 .heroleft__content .swiper-slide-count {
        left: -10%;
    }
}
@media (max-width: 991px) {
    .hero-2 .heroleft__content .swiper-slide-count {
        display: none;
    }
}
.hero-2 .heroleft__content .swiper-slide-count .hero-pagination {
    color: var(--white);
}
.hero-2 .heroleft__content .swiper-slide-count span {
    background-color: hsla(0, 4%, 23%, 0.938);
    width: 15px;
    height: 3px;
    transform: rotate(90deg);
    display: inline-block;
}

.hero-3 {
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 11;
    padding-top: 341px;
    padding-bottom: 261px;
    max-width: 100%;
}
@media (max-width: 1600px) {
    .hero-3 {
        padding-top: 342px;
    }
}
@media (max-width: 1399px) {
    .hero-3 {
        padding-bottom: 100px;
        padding-top: 200px;
    }
}
@media (max-width: 991px) {
    .hero-3 {
        padding-top: 158px;
        padding-bottom: 120px;
    }
}
@media (max-width: 575px) {
    .hero-3 {
        padding-bottom: 100px;
        padding-top: 30px;
    }
}
.hero-3 .heroleft__content {
    position: relative;
    z-index: 5;
}
@media (max-width: 991px) {
    .hero-3 .heroleft__content {
        margin-top: 90px;
    }
}
@media (max-width: 575px) {
    .hero-3 .heroleft__content {
        margin-top: 140px;
    }
}
.hero-3 .heroleft__content .sub-title {
    border-radius: 50px;
    border: 1px solid var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 10px;
    display: inline-block;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}
.hero-3 .heroleft__content h1 {
    margin-bottom: 18px;
    color: var(--white);
    line-height: 1.2;
    font-size: 74px;
}
@media (max-width: 1399px) {
    .hero-3 .heroleft__content h1 {
        font-size: 60px;
    }
}
@media (max-width: 575px) {
    .hero-3 .heroleft__content h1 {
        font-size: 38px;
    }
}
.hero-3 .heroleft__content p {
    color: var(--white);
    margin-bottom: 35px;
}
.hero-3 .heroleft__content .btn-read-white {
    padding: 14px 31px;
}
.hero-3 .hero-thumb {
    margin-top: 93%;
    margin-left: -122px;
    position: relative;
    z-index: 11;
}
@media (max-width: 1399px) {
    .hero-3 .hero-thumb img {
        width: 130%;
    }
}
@media (max-width: 991px) {
    .hero-3 .hero-thumb img {
        display: none;
    }
}
@media (max-width: 1399px) {
    .hero-3 .hero-thumb {
        top: 50%;
        left: -53px;
        margin-top: 0;
        margin-left: 0;
    }
}
@media (max-width: 1199px) {
    .hero-3 .hero-thumb {
        left: -28px;
        top: 46%;
    }
}

.hero-widget-area {
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 372px;
    padding-bottom: 75px;
    margin-top: -13%;
    position: relative;
    background-size: cover;
}
@media (max-width: 1600px) {
    .hero-widget-area {
        padding-top: 270px;
    }
}
@media (max-width: 991px) {
    .hero-widget-area {
        padding-top: 205px;
        margin-top: -17%;
        background-size: cover;
    }
}
@media (max-width: 575px) {
    .hero-widget-area {
        padding-top: 135px;
        padding-bottom: 80px;
    }
}
.hero-widget-area .shape-1 {
    position: absolute;
    bottom: 23px;
    left: 53px;
}
@media (max-width: 1399px) {
    .hero-widget-area .shape-1 {
        bottom: 24px;
        left: 0;
    }
}
@media (max-width: 991px) {
    .hero-widget-area .shape-1 {
        display: none;
    }
}
.hero-widget-area .info {
    color: var(--header);
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    z-index: 12;
    right: 13%;
    top: 29%;
}
@media (max-width: 1600px) {
    .hero-widget-area .info {
        right: 7%;
        top: 20%;
    }
}
@media (max-width: 1399px) {
    .hero-widget-area .info {
        top: 50%;
    }
}
@media (max-width: 1199px) {
    .hero-widget-area .info {
        display: none;
    }
}
.hero-widget-area .info i {
    width: 20px;
    height: 20px;
    background-color: var(--header);
    border-radius: 100%;
    line-height: 20px;
    text-align: center;
    color: var(--white);
    font-size: 10px;
    margin-left: 16px;
    display: inline-block;
}
@media (max-width: 575px) {
    .hero-widget-area .info i {
        margin-left: 5px;
    }
}
@media (max-width: 991px) {
    .hero-widget-area .content-left h2 {
        text-align: center;
        margin-bottom: 20px;
        display: inline-block;
    }
}
.hero-widget-area .content-right p {
    margin-bottom: 20px;
}
@media (max-width: 991px) {
    .hero-widget-area .content-right .hero-btn {
        margin-top: 40px;
    }
}
@media (max-width: 575px) {
    .hero-widget-area .content-right .hero-btn {
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 30px;
    }
}
.hero-widget-area .content-right .hero-btn .btn-read {
    padding: 14px 32px;
}
@media (max-width: 575px) {
    .hero-widget-area .content-right .hero-btn .btn-read {
        padding: 14px 56px;
    }
}
.hero-widget-area .content-right .hero-btn .btn-nblue {
    margin-left: 35px;
    padding: 14px 30px;
}
@media (max-width: 575px) {
    .hero-widget-area .content-right .hero-btn .btn-nblue {
        margin-left: 0;
    }
}

.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-items {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}
@media (max-width: 1199px) {
    .mean-container .mean-nav > ul .homemenu-items {
        flex-wrap: wrap;
    }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu {
    position: relative;
}
@media (max-width: 1199px) {
    .mean-container .mean-nav > ul .homemenu-items .homemenu {
        max-width: 300px;
        text-align: center;
        margin: 0 auto;
        border: 1px solid var(--border);
        padding: 10px;
    }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb {
    position: relative;
}
.mean-container .mean-nav > ul .homemenu-items .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;
    margin-top: 20px;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 12px 20px;
    color: var(--white) !important;
    width: initial;
    font-size: 16px;
    text-align: center;
    border-radius: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    color: var(--white) !important;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 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-items .homemenu .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb img {
    width: 100%;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    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;
    text-transform: capitalize;
    border-bottom: 1px solid #e3e3e3 !important;
    border: none;
}
.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(--theme2);
}

.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;
    font-size: 18px;
}

.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(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    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;
}

.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;
    text-align: center;
}
.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 .animation-preloader .txt-loading {
    font: bold 5em "Outfit", sans-serif, "Outfit", sans-serif;
    text-align: center;
    user-select: none;
}
@media (max-width: 767px) {
    .preloader .animation-preloader .txt-loading {
        font-size: 2.5em;
    }
}
.preloader .animation-preloader .txt-loading .letters-loading {
    color: var(--theme);
    position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
    animation: letters-loading 4s infinite;
    color: var(--header);
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    font-family: "Outfit", sans-serif;
    position: absolute;
    top: -3px;
    transform: rotateY(-90deg);
}
.preloader p {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--theme);
}
.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: var(--bg);
    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(--theme);
    border-bottom: 2px solid var(--theme);
    text-align: center;
    letter-spacing: 2px;
    outline: none;
}

@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(--theme);
}

input.main-search-input::placeholder {
    color: var(--theme);
    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;
}

.back-to-top {
    border-radius: 50%;
    background-color: var(--theme);
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--white);
    font-size: 18px;
    position: fixed;
    display: inline-block;
    z-index: 999;
    right: 30px;
    bottom: 30px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.back-to-top:hover {
    background-color: var(--header);
    color: var(--white);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
}

/* .mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

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

.pricing-style-1 .pricing-box {
    border: 2px solid var(--header);
    background-color: var(--theme2);
    margin-top: 73px;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
    .pricing-style-1 .pricing-box {
        margin-top: 30px;
    }
    .mouse-cursor{
        display: none;
    }

}
.pricing-style-1 .pricing-box:hover {
    transform: translateY(-10px);
}
.pricing-style-1 .pricing-box .pricing-header {
    padding-left: 27px;
    padding-top: 60px;
    padding-bottom: 51px;
    position: relative;
}
.pricing-style-1 .pricing-box .pricing-header .shape-1 {
    position: absolute;
    bottom: -1px;
    left: 0;
    display: none;
}
.pricing-style-1 .pricing-box .pricing-header .plan {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
}
.pricing-style-1 .pricing-box .pricing-header .title {
    color: var(--white);
    font-size: 74px;
    font-weight: 700;
    margin-right: 15px;
}
.pricing-style-1 .pricing-box .pricing-header .offer-info span {
    display: block;
}
.pricing-style-1 .pricing-box .pricing-header .offer-info .red {
    color: var(--theme);
    font-size: 18px;
    font-weight: 600;
}
.pricing-style-1 .pricing-box .pricing-header .offer-info .white {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
}
.pricing-style-1 .pricing-box .pricing-header .offer-info .white i {
    margin-right: 5px;
    font-weight: 900;
    font-size: 17px;
    display: inline-block;
}
.pricing-style-1 .pricing-box .pricing-header .poular-tag {
    width: 116px;
    height: 33px;
    position: absolute;
    background-color: var(--theme2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -17px;
    right: 23px;
}
@media (max-width: 991px) {
    .pricing-style-1 .pricing-box .pricing-header .poular-tag {
        top: -2px;
        right: 21px;
    }
}

@media (min-width:540px) and (max-width:1100px){
    .header-logo img {
        width: 195px;
        left: 0px;
        top: 10px;
    }
}

.pricing-style-1 .pricing-box .pricing-header .poular-tag .tag {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
}
.pricing-style-1 .pricing-box .pricing-body {
    padding: 35px 32px 32px 27px;
    background-color: var(--white);
}
.pricing-style-1 .pricing-box .pricing-body .title {
    color: #161616;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 14px;
}
.pricing-style-1 .pricing-box .pricing-body ul li a {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease-in-out;
}
.pricing-style-1 .pricing-box .pricing-body ul li a:hover {
    color: var(--theme);
}
.pricing-style-1 .pricing-box .pricing-body ul li a img {
    margin-right: 8px;
}
.pricing-style-1 .pricing-box .pricing-body .btn-nblue {
    width: 100%;
    margin-top: 25px;
    padding: 14px 0;
    text-align: center;
}
.pricing-style-1 .pricing-box .pricing-body .btn-nblue:after {
    border-radius: 5px;
}
.pricing-style-1 .pricing-box .pricing-body .btn-nblue {
    width: 100%;
    margin-top: 25px;
    padding: 14px 0;
    text-align: center;
}
.pricing-style-1 .pricing-box .pricing-body .btn-nblue:after {
    border-radius: 5px;
}
.pricing-style-1 .pricing-box .pricing-body .btn-read {
    width: 100%;
    margin-top: 65px;
    padding: 14px 0;
    text-align: center;
}
.pricing-style-1 .pricing-box .pricing-body .btn-read:after {
    border-radius: 5px;
}
.pricing-style-1 .pricing-box-2 {
    border: 2px solid var(--theme);
    background-color: var(--theme);
}
.pricing-style-1 .pricing-box-2 .offer-info span {
    display: block;
}
.pricing-style-1 .pricing-box-2 .offer-info #EC7216 {
    color: var(--white) !important;
    font-size: 18px;
    font-weight: 600;
}
.pricing-style-1 .pricing-box-2 .offer-info .white {
    color: var(--white) !important;
    font-size: 16px;
    font-weight: 400;
}
.pricing-style-1 .pricing-box-3 {
    border: 2px solid rgba(100, 114, 143, 0.08);
    background: #EFEFEF;
}
.pricing-style-1 .pricing-box-3 .pricing-header .plan {
    color: var(--theme2);
}
.pricing-style-1 .pricing-box-3 .pricing-header .title {
    color: var(--theme2);
}
.pricing-style-1 .pricing-box-3 .pricing-header .offer-info span {
    display: block;
}
.pricing-style-1 .pricing-box-3 .pricing-header .offer-info .white {
    color: rgba(2, 14, 40, 0.7);
    font-size: 16px;
    font-weight: 400;
}

.section__title {
    color: var(--header);
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
}
@media (max-width: 1399px) {
    .section__title {
        font-size: 40px;
    }
}
@media (max-width: 1199px) {
    .section__title {
        font-size: 38px;
    }
}
@media (max-width: 575px) {
    .section__title {
        font-size: 25px;
    }
}
.section__title__65 {
    color: var(--header);
    font-size: 65px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize;
}
.section__title__48 {
    color: var(--header);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize;
}
@media (max-width: 1199px) {
    .section__title__48 {
        font-size: 40px;
    }
}
@media (max-width: 991px) {
    .section__title__48 {
        font-size: 35px;
    }
}
@media (max-width: 767px) {
    .section__title__48 {
        font-size: 30px;
    }
}
@media (max-width: 575px) {
    .section__title__48 {
        font-size: 25px;
    }
}
.section__title__48-white {
    color: var(--white);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
}
@media (max-width: 1199px) {
    .section__title__48-white {
        font-size: 40px;
    }
}
@media (max-width: 575px) {
    .section__title__48-white {
        font-size: 28px;
    }
}
@media (max-width: 450px) {
    .section__title__48-white {
        font-size: 25px;
    }
}
@media (min-width:540px) and (max-width:1100px) {

    .cursor-outer {
        display: none!important;
    }
    .about-style-2 .shape-2 {
        width: 100%;
    }
}
.section__title__22 {
    color: var(--header);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin: 10px;
}
.section__title__18 {
    color: var(--header);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize;
}
.section__title__18-white {
    color: var(--white);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
}

.section__white {
    color: var(--white);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize;
}
@media (max-width: 991px) {
    .section__white {
        font-size: 34px;
    }
}
@media (max-width: 575px) {
    .section__white {
        font-size: 26px;
    }
}

.section-24 {
    color: var(--white);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize;
}
@media (max-width: 575px) {
    .section-24 {
        font-size: 20px;
    }
}

.section-24-black {
    color: var(--header);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
    text-transform: capitalize;
}
@media (max-width: 1199px) {
    .section-24-black {
        font-size: 20px;
    }
}

.title-sm {
    color: var(--theme);
    font-size: 22px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    margin-top: 10px;
    text-transform: capitalize;
}
.title-sm img {
    margin-right: 10px;
}
.title-sm-white {
    color: var(--white);
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}
@media (max-width: 575px) {
    .title-sm-white {
        font-size: 14px;
    }
}
.title-sm-white img {
    margin-right: 10px;
}

.section-22-white a {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.product-title-b {
    color: #020E28;
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.p-title {
    color: var(--header);
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.card-title {
    color: var(--header);
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 12px 0;
}

.product-title {
    color: var(--header);
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 12px 0;
}

.section-padding {
    padding: 120px 0;
}
@media (max-width: 1199px) {
    .section-padding {
        padding: 100px 0;
    }
}
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
}

.pl-290 {
    padding-left: 290px;
}

.pr-290 {
    padding-right: 290px;
}

.service-style-1 .service__content-2 {
    padding: 50px 0;
    position: relative;
}
.service-style-1 .service__content-2.service__content-2:last-child {
    padding-bottom: 0;
}
.service-style-1 .service__content-2:hover .service-icon a {
    background-color: var(--white);
    color: var(--theme);
}
.service-style-1 .service__content-2:hover .service-hover {
    opacity: 1;
    visibility: visible;
}
.service-style-1 .service__content-2 .service-icon a {
    background-color: rgba(255, 255, 255, 0.1);
    height: 52px;
    width: 52px;
    display: inline-block;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}
.service-style-1 .service__content-2 p {
    color: var(--white);
    margin-top: 15px;
}
.service-style-1 .service__content-2 .service-hover {
    width: 286px;
    height: 334px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(10deg);
    inset-inline-start: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 75%;
    opacity: 0;
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    margin: -200px 0 0 -50px;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
    visibility: hidden;
}
@media (max-width: 991px) {
    .service-style-1 .service__content-2 .service-hover {
        width: 200px;
        height: 250px;
    }
}
.service-style-1 .service__content-1 {
    padding-bottom: 50px;
}
@media (max-width: 575px) {
    .service-style-1 .service__content-1 .service__content-heading {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.service-style-1 .service__content-1 .btn-transparent {
    padding: 13px 40px;
}

.service-style-2 .shape-1 {
    right: 0;
    z-index: 1;
    top: 0;
}
@media (max-width: 1600px) {
    .service-style-2 .shape-1 {
        right: -96px;
    }
}
@media (max-width: 1199px) {
    .service-style-2 .shape-1 {
        display: none;
    }
}
.service-style-2 .shape-2 {
    top: 50px;
    left: 0;
}
@media (max-width: 1600px) {
    .service-style-2 .shape-2 {
        width: 5%;
    }
}
@media (max-width: 1199px) {
    .service-style-2 .shape-2 {
        display: none;
    }
}
.service-style-2 .shape-3 {
    bottom: 0;
    left: 0;
}
@media (max-width: 1600px) {
    .service-style-2 .shape-3 {
        left: -70px;
        width: 20%;
    }
}
.service-style-2 .servic-title .section__title__48-white {
    margin-bottom: 20px;
}
.service-style-2 .servic-title .clr-white {
    margin-bottom: 34px;
}
@media (max-width: 1199px) {
    .service-style-2 .servic-title .clr-white {
        margin-bottom: -10px;
        padding-right: 317px;
    }
}
@media (max-width: 767px) {
    .service-style-2 .servic-title .clr-white {
        padding-right: 0;
    }
}
.service-style-2 .serviccontent .serviccontent-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 44px 0;
}
@media (max-width: 1199px) {
    .service-style-2 .serviccontent .serviccontent-box {
        border: none;
    }
}
@media (max-width: 575px) {
    .service-style-2 .serviccontent .serviccontent-box {
        margin-top: 36px;
        padding: 0 0;
    }
}
.service-style-2 .serviccontent .serviccontent-box .img-1 {
    position: relative;
    top: 18px;
    left: 23px;
}
.service-style-2 .serviccontent .serviccontent-box .img-1:hover:after {
    background-color: var(--theme2);
}
.service-style-2 .serviccontent .serviccontent-box .img-1 img {
    position: relative;
    z-index: 11;
}
.service-style-2 .serviccontent .serviccontent-box .img-1:before {
    position: absolute;
    content: "";
    background-color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    z-index: 2;
    left: -22px;
    top: -18px;
}
.service-style-2 .serviccontent .serviccontent-box .img-1:after {
    position: absolute;
    content: "";
    background-color: var(--theme);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    z-index: 1;
    left: -22px;
    top: -25px;
    transition: all 0.3s ease-in-out;
}
.service-style-2 .serviccontent .serviccontent-box .img-2 {
    position: relative;
    top: 18px;
    left: 23px;
}
.service-style-2 .serviccontent .serviccontent-box .img-2:hover:after {
    background-color: var(--theme2);
}
.service-style-2 .serviccontent .serviccontent-box .img-2 img {
    position: relative;
    z-index: 11;
}
.service-style-2 .serviccontent .serviccontent-box .img-2:before {
    position: absolute;
    content: "";
    background-color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    z-index: 2;
    left: -22px;
    top: -18px;
}
.service-style-2 .serviccontent .serviccontent-box .img-2:after {
    position: absolute;
    content: "";
    background-color: var(--theme);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    z-index: 1;
    left: -21px;
    top: -11px;
    transition: all 0.3s ease-in-out;
}
.service-style-2 .serviccontent .serviccontent-box .serviccontent__info {
    margin-left: 76px;
}
.service-style-2 .serviccontent .serviccontent-box:last-child {
    border-bottom: none;
}
.service-style-2 .servic-form {
    padding: 60px 40px;
    position: relative;
    z-index: 5;
    width: 570px;
}
@media (max-width: 1199px) {
    .service-style-2 .servic-form {
        margin-top: 40px;
    }
}
@media (max-width: 575px) {
    .service-style-2 .servic-form {
        max-width: 100%;
    }
}
.service-style-2 .servic-form .servic-form-title {
    margin-bottom: 35px;
}
.service-style-2 .servic-form:before {
    position: absolute;
    content: "";
    background-color: var(--theme);
    height: 100%;
    width: 4px;
    left: 0;
    top: 0;
}
.service-style-2 .servic-form .form input {
    margin-bottom: 30px;
}
.service-style-2 .servic-form .form textarea {
    margin-top: 25px;
}
.service-style-2 .servic-form .form .service-form-btn {
    margin-top: 25px;
}
.service-style-2 .servic-form .form .service-form-btn button {
    width: 100%;
    background-color: var(--theme);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.64px;
    text-transform: capitalize;
    padding: 14px 0;
    transition: all 0.4s ease-in-out;
}
.service-style-2 .servic-form .form .service-form-btn button:hover {
    background-color: var(--theme2);
}

.service-style-3 {
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 120px;
    padding-bottom: 90px;
}
@media (max-width: 1199px) {
    .service-style-3 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
@media (max-width: 991px) {
    .service-style-3 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
.service-style-3 .shape-1 {
    position: absolute;
    bottom: 0;
    right: 0;
}
@media (max-width: 1199px) {
    .service-style-3 .shape-1 {
        width: 50%;
        height: 100%;
    }
}
@media (max-width: 767px) {
    .service-style-3 .shape-1 {
        display: none;
    }
}
.service-style-3 .shape-2 {
    position: absolute;
    top: 0;
    right: 0;
}
@media (max-width: 1199px) {
    .service-style-3 .shape-2 {
        width: 13%;
    }
}
@media (max-width: 767px) {
    .service-style-3 .shape-2 {
        display: none;
    }
}
.service-style-3 .shape-3 {
    position: absolute;
    bottom: 0;
    right: 0;
}
@media (max-width: 1199px) {
    .service-style-3 .shape-3 {
        width: 26%;
    }
}
@media (max-width: 767px) {
    .service-style-3 .shape-3 {
        display: none;
    }
}
.service-style-3 .title {
    margin-bottom: 50px;
}
.service-style-3 .service-initial {
    height: 434px;
}
.service-style-3 .single-slider {
    cursor: pointer;
    position: relative;
}
.service-style-3 .single-slider:hover .content {
    height: 200px;
}
.service-style-3 .single-slider:hover .content .text {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.service-style-3 .single-slider:hover .site-link {
    right: -97px;
    z-index: 6;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
    .service-style-3 .single-slider:hover .site-link {
        right: -18px;
    }
}
.service-style-3 .single-slider .thumb {
    position: relative;
    z-index: 2;
}
.service-style-3 .single-slider .content {
    background: var(--white);
    margin-left: 24px;
    padding: 0 24px;
    padding-bottom: 24px;
    transition: all 0.4s ease-in-out;
    height: 99px;
    transform: translateY(-50%);
    position: absolute;
    z-index: 4;
    border-left: 1px solid #001c34;
    border-bottom: 1px solid #001c34;
    border-right: 1px solid #001c34;
}
@media (max-width: 991px) {
    .mb-none {
        display: none;
    }
}


@media (max-width: 1199px) {
    .service-style-3 .single-slider .content {
        margin-left: 0;
        width: 374px;
    }
}
@media (max-width: 991px) {
    .service-style-3 .single-slider .content {
        margin-left: 0;
        width: 330px;
    }
}
@media (max-width: 767px) {
    .service-style-3 .single-slider .content {
        width: 374px;
    }
}
@media (max-width: 470px) {
    .service-style-3 .single-slider .content {
        width: 330px;
    }
}
.service-style-3 .single-slider .content .icon {
    margin-top: -30px;
}
.service-style-3 .single-slider .content .section-24-black {
    font-weight: 600;
    margin-top: 1px;
    margin-bottom: 5px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.service-style-3 .single-slider .content .section-24-black:hover {
    color: var(--theme);
}
.service-style-3 .single-slider .content .section-24-black i {
    color: var(--theme);
    font-size: 18px;
    margin-left: 127px;
}
.service-style-3 .single-slider .content .text {
    transform: translateY(-41px);
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    color: #1a1a37;
}
.service-style-3 .single-slider .site-link {
    position: absolute;
    top: 98px;
    right: -128px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
    .service-style-3 .single-slider .site-link {
        right: 0;
    }
}
@media (max-width: 991px) {
    .service-style-3 .single-slider .site-link {
        display: none;
    }
}
.service-style-3 .single-slider .site-link:hover a {
    color: var(--theme);
}
.service-style-3 .single-slider .site-link a {
    color: #020E28;
    background-color: #B1B5BC;
    width: 235px;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    top: -208%;
    transform: rotate(90deg);
    right: -97px;
}
.service-style-3 .single-slider .site-link a i {
    font-size: 20px;
    margin-left: 10px;
}
.service-style-3 .service-slider-btn {
    margin-right: 41px;
}
@media (max-width: 767px) {
    .service-style-3 .service-slider-btn {
        margin-right: 0;
    }
}
@media (max-width: 470px) {
    .service-style-3 .service-slider-btn {
        display: flex;
        gap: 5px;
    }
}
.service-style-3 .service-slider-btn .long-arow {
    width: 80px;
    height: 56px;
    background-color: var(--white);
    display: inline-block;
    text-align: center;
    line-height: 56px;
    color: var(--theme);
    font-size: 25px;
    font-weight: bold;
    margin-top: 52px;
    position: relative;
    z-index: 11;
    transition: all 0.4s ease-in-out;
}
.service-style-3 .service-slider-btn .long-arow:hover {
    background-color: var(--theme);
    color: var(--white);
}

.service-style-4 {
    background-color: #EFEFEF;
    position: relative;
}
.service-style-4 .shape-1 {
    bottom: 0;
    left: 0;
}
@media (max-width: 1199px) {
    .service-style-4 .shape-1 {
        width: 30%;
    }
}
@media (max-width: 991px) {
    .service-style-4 .shape-1 {
        display: none;
    }
}
.service-style-4 .shape-2 {
    bottom: 0;
    right: 0;
}
@media (max-width: 1199px) {
    .service-style-4 .shape-2 {
        width: 12%;
    }
}
@media (max-width: 991px) {
    .service-style-4 .shape-2 {
        display: none;
    }
}
.service-style-4 .details-wrapper {
    position: relative;
}
.service-style-4 .details-wrapper .service-details-box {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    margin-top: 23px;
    width: 286px;
}
@media (max-width: 1199px) {
    .service-style-4 .details-wrapper .service-details-box {
        margin-left: 20px;
    }
}
.service-style-4 .details-wrapper .service-details-box .icon {
    position: relative;
    margin-right: 48px;
}
.service-style-4 .details-wrapper .service-details-box .icon:before {
    width: 72px;
    height: 72px;
    background-color: var(--white);
    border-radius: 100%;
    position: absolute;
    content: "";
    left: -21px;
    bottom: -22px;
    z-index: 2;
}
.service-style-4 .details-wrapper .service-details-box .icon:after {
    width: 72px;
    height: 72px;
    background-color: var(--theme);
    border-radius: 100%;
    position: absolute;
    content: "";
    left: -21px;
    bottom: -27px;
}
.service-style-4 .details-wrapper .service-details-box .icon img {
    max-width: 100%;
    position: relative;
    z-index: 3;
}
.service-style-4 .details-wrapper .service-details-box .icon-2:after {
    width: 72px;
    height: 72px;
    background-color: var(--theme);
    border-radius: 100%;
    position: absolute;
    content: "";
    left: -21px;
    bottom: -17px;
}
.service-style-4 .details-wrapper .service-details-box .content .title {
    color: #000;
    font-size: 18px;
    font-weight: 600;
}
.service-style-4 .details-wrapper .service-details-box .content p {
    color: #1f1e1e;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    opacity: 0.7;
}
.service-style-4 .details-wrapper .space-1 {
    margin-left: 18px;
}
@media (max-width: 1199px) {
    .service-style-4 .details-wrapper .space-1 {
        margin-left: 20px;
    }
}
.service-style-4 .details-wrapper .space-2 {
    margin-left: 33px;
}
@media (max-width: 1199px) {
    .service-style-4 .details-wrapper .space-2 {
        margin-left: 20px;
    }
}
.service-style-4 .details-wrapper .space-3 {
    position: absolute;
    bottom: 0;
}
@media (max-width: 1199px) {
    .service-style-4 .details-wrapper .space-3 {
        right: 0;
    }
}
@media (max-width: 575px) {
    .service-style-4 .details-wrapper .space-3 {
        display: none;
    }
}
.service-style-4 .details-wrapper .space-3 img {
    margin-left: 49px;
}
.service-style-4 .thumb-image {
    margin-top: 43px;
}
.service-style-4 .thumb-image img {
    width: 100%;
}
.service-style-4 .thumb-image .videowrap {
    top: 50%;
    left: 50%;
    transform: translate(-75%, -50%);
}
@media (max-width: 575px) {
    .service-style-4 .thumb-image .videowrap {
        left: 56%;
    }
}
.service-style-4 .service-info-box {
    padding: 60px;
    height: 300px;
    background-color: var(--theme);
    margin-right: -35px;
    margin-top: 43px;
}
@media (max-width: 1199px) {
    .service-style-4 .service-info-box {
        margin-right: -35px;
        margin-top: 48px;
        padding: 15px;
    }
}
@media (max-width: 991px) {
    .service-style-4 .service-info-box {
        padding: 30px;
    }
}
@media (max-width: 575px) {
    .service-style-4 .service-info-box {
        margin-right: 0;
    }
}
.service-style-4 .service-info-box .title {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--white);
    font-size: 72px;
    font-weight: 700;
}
@media (max-width: 575px) {
    .service-style-4 .service-info-box .title {
        font-size: 50px;
    }
}
.service-style-4 .service-info-box p {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
}

.service-details-wrapper .service-details-widget .image-1 {
    margin-bottom: 30px;
}
.service-details-wrapper .service-details-widget .image-1 img {
    max-width: 100%;
}
.service-details-wrapper .service-details-widget .widget-title {
    color: var(--header);
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.service-details-wrapper .service-details-widget p {
    color: black;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}
.service-details-wrapper .service-details-widget span {
    margin-bottom: 45px;
    display: inline-block;
}
.service-details-wrapper .service-details-widget .mt-30 {
    margin-top: 30px;
}
.service-details-wrapper .service-details-widget .thumbnail {
    margin-top: 20px;
    margin-bottom: 20px;
}
.service-details-wrapper .service-details-widget .thumbnail img {
    max-width: 100%;
}
.service-details-wrapper .service-details-widget .widget-link {
    margin-top: 25px;
    margin-bottom: 35px;
}
@media (max-width: 575px) {
    .service-details-wrapper .service-details-widget .widget-link {
        margin-top: 0;
        margin-bottom: 6px;
    }
}
@media (max-width: 575px) {
    .img-mb-height {
        height: 23vh;
    }
}
.service-details-wrapper .service-details-widget .widget-link a {
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
    display: block;
    line-height: 36px;
}
.service-details-wrapper .service-details-widget .widget-link a i {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--theme);
    color: var(--white);
    border-radius: 100%;
    text-align: center;
    line-height: 20px;
    font-size: 10px;
    margin-right: 10px;
}
.service-details-wrapper .service-details-widget .widget-thumb-imag {
    margin-bottom: 20px;
    position: relative;
}
.service-details-wrapper .service-details-widget .widget-thumb-imag img {
    max-width: 100%;
}
.service-details-wrapper .service-details-widget .widget-thumb-imag .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.service-details-wrapper .service-details-right .widget-title {
    color: var(--header);
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    position: relative;
}
.service-details-wrapper .service-details-right .widget-title:before {
    position: absolute;
    content: "";
    height: 1px;
    width: 56px;
    background-color: var(--theme);
    bottom: -8px;
}
.service-details-wrapper .service-details-right .widget-title:after {
    position: absolute;
    content: "";
    height: 1px;
    width: 15px;
    background-color: var(--header);
    bottom: -8px;
    left: 66px;
}
.service-details-wrapper .service-details-right ul {
    margin-top: 40px;
}
.service-details-wrapper .service-details-right ul li a {
    padding: 14px 24px;
    background: #EFEFEF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--header);
    margin-bottom: 12px;
    transition: all 0.4s ease-in-out;
}
.service-details-wrapper .service-details-right ul li a:hover {
    background-color: var(--theme);
    color: var(--white);
}
.service-details-wrapper .service-details-right-2 {
    margin-top: 50px;
}
.service-details-wrapper .service-details-right-2 .widget-title {
    color: var(--header);
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    position: relative;
}
.service-details-wrapper .service-details-right-2 .widget-title:before {
    position: absolute;
    content: "";
    height: 1px;
    width: 56px;
    background-color: var(--theme);
    bottom: -8px;
}
.service-details-wrapper .service-details-right-2 .widget-title:after {
    position: absolute;
    content: "";
    height: 1px;
    width: 15px;
    background-color: var(--header);
    bottom: -8px;
    left: 66px;
}
.service-details-wrapper .service-details-right-2 ul {
    margin-top: 40px;
}
.service-details-wrapper .service-details-right-2 ul li p {
    padding: 14px 24px;
    background: #EFEFEF;
    display: flex;
    align-items: center;
    color: var(--header);
    margin-bottom: 12px;
    transition: all 0.4s ease-in-out;
}
/* .service-details-wrapper .service-details-right-2 ul li a:hover {
  background-color: var(--theme);
  color: var(--white);
} */
/* .service-details-wrapper .service-details-right-2 ul li a:hover i {
  color: var(--white);
}
.service-details-wrapper .service-details-right-2 ul li a i {
  margin-right: 16px;
  color: var(--theme);
  transition: all 0.4s ease-in-out;
} */
.service-details-wrapper .service-details-right-2 .btn-read {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
}
.service-details-wrapper .service-details-right-2 .thumb-details {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}
.service-details-wrapper .service-details-right-2 .thumb-details img {
    transition: all 0.4s ease-in-out;
    max-width: 100%;
}
.service-details-wrapper .service-details-right-2 .thumb-details .content {
    position: absolute;
    z-index: 11;
    text-align: center;
    bottom: 80px;
    left: 82px;
}
@media (max-width: 1600px) {
    .service-details-wrapper .service-details-right-2 .thumb-details .content {
        left: 85px;
    }
}
@media (max-width: 1199px) {
    .service-details-wrapper .service-details-right-2 .thumb-details .content {
        left: 50px;
    }
}
@media (max-width: 991px) {
    .service-details-wrapper .service-details-right-2 .thumb-details .content {
        left: 88px;
    }
}
@media (max-width: 767px) {
    .service-details-wrapper .service-details-right-2 .thumb-details .content {
        left: 72px;
    }
}
.service-details-wrapper .service-details-right-2 .thumb-details .content .img {
    height: 60px;
    width: 60px;
    background-color: var(--white);
    border-radius: 100%;
    text-align: center;
    line-height: 60px;
    display: inline-block;
}
.service-details-wrapper .service-details-right-2 .thumb-details .content .img img {
    width: 30px;
}
.service-details-wrapper .service-details-right-2 .thumb-details .content .text {
    margin-top: 30px;
    margin-bottom: 20px;
    display: inline-block;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.64px;
    text-transform: capitalize;
}
.service-details-wrapper .service-details-right-2 .thumb-details .content .cta {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
}
.service-details-wrapper .service-details-right-2 .thumb-details .content .cta:hover {
    color: var(--theme);
}
.service-details-wrapper .service-details-right-2 .thumb-details:hover img {
    transform: scale(1.1);
}

.team-style-1 {
    padding: 110px 160px;
}
@media (max-width: 1199px) {
    .team-style-1 {
        padding: 100px 30px;
    }
}
@media (max-width: 991px) {
    .team-style-1 {
        padding: 80px 30px;
    }
}
.team-style-1 .team-title {
    margin-bottom: 50px;
}
@media (max-width: 575px) {
    .team-style-1 .team-title {
        margin-bottom: 30px;
    }
}
@media (max-width: 991px) {
    .team-style-1 .teambox {
        margin-bottom: 30px;
    }
}
@media (max-width: 575px) {
    .team-style-1 .teambox:last-child {
        margin-bottom: 0;
    }
}
.team-style-1 .teambox:hover .teambox-thumb .img img {
    transform: scale(1.1);
}
.team-style-1 .teambox:hover .teambox-thumb:after {
    opacity: 1;
    visibility: visible;
    transform: scale(1, 1);
}
.team-style-1 .teambox .teambox-thumb .img {
    overflow: hidden;
}
.team-style-1 .teambox .teambox-thumb .img img {
    width: 100%;
    transition: 0.6s ease-in-out;
}
.team-style-1 .teambox .teambox-thumb:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(22, 23, 26, 0.302);
    transform: scale(0, 0);
    opacity: 0;
    visibility: hidden;
    transition: all 500ms ease;
    z-index: 8;
}
.team-style-1 .teambox .teambox-thumb .socila:hover .socila-box {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}
.team-style-1 .teambox .teambox-thumb .socila span {
    font-size: 18px;
    height: 40px;
    width: 40px;
    line-height: 43px;
    text-align: center;
    color: var(--white);
    display: inline-block;
    background-color: var(--theme);
    cursor: pointer;
    position: absolute;
    right: 20px;
    bottom: -20px;
    z-index: 11;
    overflow: visible;
}
.team-style-1 .teambox .teambox-thumb .socila .socila-box {
    position: absolute;
    right: 20px;
    bottom: 50px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 11;
}
.team-style-1 .teambox .teambox-thumb .socila .socila-box a {
    font-size: 16px;
    background: var(--theme2);
    display: block;
    color: var(--white);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 10px 0;
    transition: all 0.4s ease-in-out;
}
.team-style-1 .teambox .teambox-thumb .socila .socila-box a:hover {
    background-color: var(--white);
    color: var(--theme);
}
@media (max-width: 575px) {
    .team-style-1 .teambox .teambox-content {
        margin-bottom: 15px;
    }
}
.team-style-1 .teambox .teambox-content .section__title__22 {
    margin-top: 25px;
    margin-bottom: 10px;
}
.team-style-1 .teambox .teambox-content .section__title__22 a {
    transition: all 0.4s ease-in-out;
}
.team-style-1 .teambox .teambox-content .section__title__22 a:hover {
    color: var(--theme);
}

.team-style-2 {
    padding-left: 175px;
    padding-right: 175px;
    padding-bottom: 150px;
}
@media (max-width: 1899px) {
    .team-style-2 {
        padding-left: 70px;
        padding-right: 70px;
    }
}
@media (max-width: 1600px) {
    .team-style-2 {
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (max-width: 1399px) {
    .team-style-2 {
        padding-right: 50px;
        padding-left: 50px;
    }
}
@media (max-width: 1199px) {
    .team-style-2 {
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 100px;
    }
}
@media (max-width: 991px) {
    .team-style-2 {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (max-width: 575px) {
    .team-style-2 {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 80px;
    }
}
.team-style-2 .team-item-wrap {
    margin-top: 60px;
}
@media (max-width: 1199px) {
    .team-style-2 .team-item-wrap {
        margin-top: 40px;
    }
}
.team-style-2 .team-item-wrap .team-box {
    position: relative;
    z-index: 9;
}
.team-style-2 .team-item-wrap .team-box .thumb {
    position: relative;
    z-index: -1;
}
.team-style-2 .team-item-wrap .team-box .thumb img {
    width: 100%;
    position: relative;
    z-index: -1;
}
.team-style-2 .team-item-wrap .team-box .thumb .content-box {
    position: absolute;
    bottom: -70px;
    left: 0;
    width: 100%;
    height: 130px;
}


/* Custom CSS to control card size */
.team-box {

    margin: 0 auto;
}
.team-box .thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 1399px) {
    .team-style-2 .team-item-wrap .team-box .thumb .content-box {
        bottom: -78px;
    }
}
@media (max-width: 1199px) {
    .team-style-2 .team-item-wrap .team-box .thumb .content-box {
        bottom: -63px;
    }
}
@media (max-width: 991px) {
    .team-style-2 .team-item-wrap .team-box .thumb .content-box {
        bottom: -74px;
    }
}
.team-style-2 .team-item-wrap .team-box .thumb .content-box .content {
    background: #020E28;
    position: relative;
    text-align: center;
    clip-path: polygon(50% 5%, 100% 50%, 100% 100%, 0 100%, 0% 50%);
    padding-top: 50px;
    width: 100%;
    height: 130px;
    z-index: 1;
}
@media (max-width: 1600px) {
    .team-style-2 .team-item-wrap .team-box .thumb .content-box .content {
        clip-path: polygon(50% 13%, 100% 50%, 100% 100%, 0 100%, 0% 50%);
    }
}
@media (max-width: 1399px) {
    .team-style-2 .team-item-wrap .team-box .thumb .content-box .content {
        clip-path: polygon(50% 13%, 100% 45%, 100% 100%, 0 100%, 0% 44%);
    }
}
@media (max-width: 1199px) {
    .team-style-2 .team-item-wrap .team-box .thumb .content-box .content {
        padding-top: 48px;
        clip-path: polygon(50% 0%, 100% 55%, 100% 100%, 0 100%, 0% 55%);
    }
}
@media (max-width: 991px) {
    .team-style-2 .team-item-wrap .team-box .thumb .content-box .content {
        clip-path: polygon(50% 0%, 100% 48%, 100% 100%, 0 100%, 0% 48%);
    }
}
.team-style-2 .team-item-wrap .team-box .thumb .content-box .content .team-title {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
}
.team-style-2 .team-item-wrap .team-box .thumb .content-box .content span {
    color: var(--Whith_Color, #FFF);
    font-size: 16px;
    font-weight: 400;
}
.team-style-2 .team-item-wrap .team-box .thumb .content-box .content:before {
    clip-path: polygon(50% 5%, 100% 50%, 100% 100%, 0 100%, 0% 50%);
    width: 100%;
    height: 0;
    content: "";
    background-color: var(--theme);
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
@media (min-width: 1921px) {
    .team-style-2 .team-item-wrap .team-box .thumb .content-box .content {
        clip-path: polygon(50% 0%, 100% 68%, 100% 100%, 0 100%, 0% 68%);
    }
}
@media (min-width: 1921px) {
    .team-style-2 .team-item-wrap .team-box .thumb .content-box {
        bottom: -50px;
        clip-path: polygon(50% 0%, 100% 68%, 100% 100%, 0 100%, 0% 68%);
    }
}
.team-style-2 .team-item-wrap .team-box .icon {
    position: relative;
    top: -72px;
    left: 44%;
    z-index: 5;
    right: 0;
    text-align: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
}
@media (max-width: 1600px) {
    .team-style-2 .team-item-wrap .team-box .icon {
        top: -60px;
    }
}
@media (max-width: 1199px) {
    .team-style-2 .team-item-wrap .team-box .icon {
        top: -77px;
    }
}
.team-style-2 .team-item-wrap .team-box .icon .share {
    font-size: 20px;
    background-color: var(--theme);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    color: var(--white);
    position: relative;
    z-index: 11;
}
.team-style-2 .team-item-wrap .team-box .icon:hover .share {
    background-color: #020E28;
    color: white;
}
.team-style-2 .team-item-wrap .team-box .icon:hover .hover-icon-1 {
    transform: translateX(-45px);
    opacity: 1;
    visibility: visible;
}
.team-style-2 .team-item-wrap .team-box .icon:hover .hover-icon-2 {
    transform: translateX(5px);
    opacity: 1;
    visibility: visible;
}
.team-style-2 .team-item-wrap .team-box .icon a {
    font-size: 20px;
    background-color: var(--white);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    color: var(--theme2);
    box-shadow: 0px 4px 25px rgba(19, 76, 179, 0.15);
}
.team-style-2 .team-item-wrap .team-box .icon .hover-icon-1 {
    transform: translateX(43px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    position: absolute;
    z-index: 11;
}
.team-style-2 .team-item-wrap .team-box .icon .hover-icon-1:hover {
    color: var(--theme);
}
.team-style-2 .team-item-wrap .team-box .icon .hover-icon-2 {
    transform: translateX(-43px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    position: absolute;
    z-index: 11;
}
.team-style-2 .team-item-wrap .team-box .icon .hover-icon-2:hover {
    color: var(--theme);
}
@media (min-width: 1921px) {
    .team-style-2 .team-item-wrap .team-box .icon {
        top: -100px;
        left: 46%;
    }
}
.team-style-2 .team-item-wrap .team-box:hover .content-box .content:before {
    opacity: 1;
    visibility: visible;
    z-index: -1;
    height: 130px;
}
@media (max-width: 1600px) {
    .team-style-2 .team-item-wrap .team-box:hover .content-box .content:before {
        clip-path: polygon(50% 13%, 100% 50%, 100% 100%, 0 100%, 0% 50%);
    }
}
@media (max-width: 1399px) {
    .team-style-2 .team-item-wrap .team-box:hover .content-box .content:before {
        clip-path: polygon(50% 13%, 100% 45%, 100% 100%, 0 100%, 0% 44%);
    }
}
@media (max-width: 1199px) {
    .team-style-2 .team-item-wrap .team-box:hover .content-box .content:before {
        clip-path: polygon(50% 0%, 100% 55%, 100% 100%, 0 100%, 0% 55%);
    }
}
@media (max-width: 991px) {
    .team-style-2 .team-item-wrap .team-box:hover .content-box .content:before {
        clip-path: polygon(50% 0%, 100% 48%, 100% 100%, 0 100%, 0% 48%);
    }
}
@media (min-width: 1921px) {
    .team-style-2 .team-item-wrap .team-box:hover .content-box .content:before {
        clip-path: polygon(50% 0%, 100% 68%, 100% 100%, 0 100%, 0% 68%);
    }
}
@media (max-width: 575px) {
    .team-style-2 .team-item-wrap .gt-team-space {
        margin-bottom: 30px;
    }
}

.team-details-wrapper {
    padding-top: 120px;
    padding-bottom: 120px;
}
@media (max-width: 1199px) {
    .team-details-wrapper {
        padding: 100px 0;
    }
}
@media (max-width: 991px) {
    .team-details-wrapper {
        padding: 80px 0;
    }
}
.team-details-wrapper .team-disciption {
    border: 1px solid #E5E5E5;
    padding: 30px;
}
@media (max-width: 575px) {
    .team-details-wrapper .team-disciption {
        padding: 10px;
    }
}
.team-details-wrapper .team-disciption .thumb img {
    max-width: 100%;
}
.team-details-wrapper .team-disciption .team-content {
    margin-left: -45px;
}
@media (max-width: 1199px) {
    .team-details-wrapper .team-disciption .team-content {
        margin-top: 30px;
        margin-left: 0;
    }
}
.team-details-wrapper .team-disciption .team-content .title {
    color: var(--header);
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
}
.team-details-wrapper .team-disciption .team-content span {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    display: inline-block;
}
.team-details-wrapper .team-disciption .team-content p {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}
.team-details-wrapper .team-disciption .team-content .table-content {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.team-details-wrapper .team-disciption .team-content .table-content table tbody tr .th {
    color: var(--header);
    font-size: 18px;
    font-weight: 600;
}
.team-details-wrapper .team-disciption .team-content .table-content table tbody tr td {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 15px;
}
.team-details-wrapper .team-disciption .team-content .table-content .social-icons {
    margin-top: 20px;
}
.team-details-wrapper .team-disciption .team-content .table-content .social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 100%;
    background-color: #FFDCDD;
    text-align: center;
    line-height: 36px;
    color: var(--theme);
    display: inline-block;
    font-size: 14px;
    margin-right: 7px;
    transition: all 0.4s ease-in-out;
}
.team-details-wrapper .team-disciption .team-content .table-content .social-icons a:hover {
    background-color: var(--theme);
    color: var(--white);
}
.team-details-wrapper .team-disciption .team-content .table-content .social-icons .active {
    background-color: var(--theme);
    color: var(--white);
}
.team-details-wrapper .team-widget {
    background-color: #EFEFEF;
    padding-top: 55px;
    margin-top: 60px;
}
.team-details-wrapper .team-widget .team-widget-content .title {
    color: var(--header);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.48px;
    text-transform: capitalize;
}
.team-details-wrapper .team-widget .team-widget-content p {
    color: #868686;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.32px;
    margin-top: 10px;
}

.personal-info {
    padding: 120px 0;
    background-color: #EFEFEF;
}
@media (max-width: 1199px) {
    .personal-info {
        padding: 100px 0;
    }
}
@media (max-width: 991px) {
    .personal-info {
        padding: 80px 0;
    }
}
.personal-info .title {
    color: var(--header);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.4px;
    text-transform: capitalize;
    padding-bottom: 10px;
}
.personal-info p {
    color: #868686;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.32px;
}
.personal-info .skils-details {
    background-color: var(--white);
    padding: 0 40px;
    padding-bottom: 70px;
    padding-top: 28px;
    margin-top: 60px;
}
@media (max-width: 1199px) {
    .personal-info .skils-details {
        padding-bottom: 30px;
        margin-top: 30px;
    }
}
.personal-info .skils-details .skil-title {
    color: var(--header);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -0.4px;
    text-transform: capitalize;
}
.personal-info .skils-details p {
    padding-top: 40px;
}
.personal-info .skils-details .progress-wrap .progress-content {
    margin-top: 30px;
}
@media (max-width: 1199px) {
    .personal-info .skils-details .progress-wrap .progress-content {
        margin-top: 15px;
    }
}
.personal-info .skils-details .progress-wrap .shipping {
    color: var(--header);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.personal-info .skils-details .progress-wrap span {
    color: var(--theme);
    font-size: 16px;
    font-weight: 600;
}
.personal-info .skils-details .progress-wrap .progress {
    height: 10px;
    position: relative;
    overflow: visible;
    border-radius: 0;
    background-color: #EFEFEF;
}
.personal-info .skils-details .progress-wrap .progress .progress-bar {
    background-color: var(--theme);
    position: absolute;
    width: 100%;
    height: 100%;
}

.team-box-items-1 .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.testimonial-style-1 {
    position: relative;
}
.testimonial-style-1 .shape-1 {
    left: 0;
    top: 0;
    position: absolute;
}
@media (max-width: 575px) {
    .testimonial-style-1 .shape-1 {
        display: none;
    }
}
.testimonial-style-1 .slider-container {
    width: 1288px;
    box-shadow: 0px 14.224px 44.86px 0px rgba(0, 0, 0, 0.07);
}
@media (max-width: 1600px) {
    .testimonial-style-1 .slider-container {
        max-width: 100%;
    }
}
.testimonial-style-1 .testimonial-title {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}
.testimonial-style-1 .slider-wrap {
    background: #FFF;
    box-shadow: 4px 16px 44.86px 8px rgba(0, 0, 0, 0.07);
    padding-top: 60px;
    padding-left: 70px;
    padding-right: 60px;
    position: relative;
    padding-bottom: 34px;
    z-index: 5;
}
@media (max-width: 1600px) {
    .testimonial-style-1 .slider-wrap {
        padding-left: 30px;
    }
}
@media (max-width: 1199px) {
    .testimonial-style-1 .slider-wrap {
        padding-right: 15px;
    }
}
@media (max-width: 575px) {
    .testimonial-style-1 .slider-wrap {
        padding-left: 15px;
    }
}
.testimonial-style-1 .slider-wrap .img-1 {
    position: absolute;
    right: 5px;
    top: 31px;
    z-index: 8;
}
.testimonial-style-1 .slider-wrap .img-2 {
    right: 0;
    top: 0;
    position: absolute;
}
.testimonial-style-1 .slider-wrap .author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.testimonial-style-1 .slider-wrap .author .image {
    position: relative;
}
.testimonial-style-1 .slider-wrap .author .image:before {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 19px 9.5px 0 9.5px;
    border-color: var(--theme) transparent transparent transparent;
    transform: rotate(0deg);
    bottom: -17px;
    left: 26px;
}
.testimonial-style-1 .slider-wrap .author .text {
    margin-left: -72px;
}
@media (max-width: 1199px) {
    .testimonial-style-1 .slider-wrap .author .text {
        margin-left: 0;
    }
}
@media (max-width: 575px) {
    .testimonial-style-1 .slider-wrap .author .text {
        margin-left: 12px;
    }
}
.testimonial-style-1 .slider-wrap .author .text span {
    color: var(--theme);
}
.testimonial-style-1 .slider-wrap .author .rating {
    display: flex;
    color: var(--theme);
}
@media (max-width: 575px) {
    .testimonial-style-1 .slider-wrap .author .rating {
        margin-top: 58px;
    }
}
.testimonial-style-1 .slider-wrap .author .rating i:last-child {
    color: #D7D5D3;
}
.testimonial-style-1 .slider-wrap .content p {
    margin-top: 25px;
    color: #3D3C3F;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    padding-right: 25px;
}
.testimonial-style-1 .testimonial-slider-btn {
    margin-top: 87px;
}
.testimonial-style-1 .testimonial-slider-btn .long-arow {
    display: inline-block;
    color: #020E28;
    font-size: 25px;
    height: 56px;
    width: 56px;
    border-radius: 50%;
    background-color: var(--white);
    text-align: center;
    line-height: 56px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease-in-out;
    margin-left: 20px;
}
@media (max-width: 575px) {
    .testimonial-style-1 .testimonial-slider-btn .long-arow {
        display: none;
    }
}
.testimonial-style-1 .testimonial-slider-btn .long-arow:hover {
    color: var(--white);
    background-color: var(--theme);
}
.testimonial-style-1 .testimonial-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 66px;
}
.testimonial-style-1 .testimonial-pagination .swiper-pagination-bullet {
    background-color: white;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--theme);
    display: inline-block;
    position: relative;
    opacity: 1;
}
.testimonial-style-1 .testimonial-pagination .swiper-pagination-bullet-active {
    position: relative;
}
.testimonial-style-1 .testimonial-pagination .swiper-pagination-bullet-active:after {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #EC7216;
    content: "";
    border-radius: 50%;
    top: -7px;
    left: -7px;
    border: 5px solid var(--white);
    outline: 2px solid var(--theme);
    z-index: 1;
}

.testimonial-style-2 {
    position: relative;
    background-color: #ffffff;
}
@media (max-width: 1199px) {
    .testimonial-style-2 {
        padding-bottom: 0;
        padding-top: 100px;
    }
}
@media (max-width: 991px) {
    .testimonial-style-2 {
        padding-top: 80px;
    }
}
@media (max-width: 575px) {
    .testimonial-style-2 {
        padding-bottom: 0;
    }
}
.testimonial-style-2 .shape {
    position: absolute;
    bottom: 0;
    left: 0;
}
@media (max-width: 1600px) {
    .testimonial-style-2 .shape {
        width: 11%;
    }
}
@media (max-width: 1199px) {
    .testimonial-style-2 .shape {
        display: none;
    }
}
@media (max-width: 575px) {
    .testimonial-style-2 .review .author {
        margin-bottom: 30px;
    }
}
.testimonial-style-2 .review .author .client-img {
    margin-top: 14px;
}
.testimonial-style-2 .review .author .client-img img {
    width: 40px;
    height: 40px;
    margin-right: -13px;
}
.testimonial-style-2 .review .author .author-review {
    margin-left: 25px;
}
.testimonial-style-2 .review .author .author-review span {
    color: #FBB03B;
    font-size: 10px;
    line-height: 1;
}
.testimonial-style-2 .review .author .author-review .text {
    color: #1E292E;
    font-size: 16px;
    font-weight: 400;
    display: block;
}
.testimonial-style-2 .review .testimonial-content {
    position: relative;
    z-index: 11;
}
.testimonial-style-2 .review .testimonial-content .title {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.testimonial-style-2 .review .testimonial-content .title .headeing {
    color: #1E292E;
    font-size: 20px;
    font-weight: 500;
}
.testimonial-style-2 .testimonial-slider-wrapp {
    height: 349px;
    margin-right: -290px;
}
@media (max-width: 1600px) {
    .testimonial-style-2 .testimonial-slider-wrapp {
        margin-right: -120px;
    }
}
@media (max-width: 1199px) {
    .testimonial-style-2 .testimonial-slider-wrapp {
        margin-right: 20px;
    }
}
@media (max-width: 575px) {
    .testimonial-style-2 .testimonial-slider-wrapp {
        margin-right: -120px;
    }
}
.testimonial-style-2 .testimonial-slider-wrapp .single-testimonial {
    padding: 43px 36px 51px 39px;
    background: #FFF;
    border: 1px solid rgba(0, 0, 0, 0.055);
    border-bottom: 4px solid var(--theme);
    position: relative;
    transition: 0.2s all ease-in-out;
}
@media (max-width: 1600px) {
    .testimonial-style-2 .testimonial-slider-wrapp .single-testimonial {
        padding: 22px;
    }
}
@media (max-width: 500px) {
    .testimonial-style-2 .testimonial-slider-wrapp .single-testimonial {
        padding: 11px;
        margin-right: 120px;
    }
}
.testimonial-style-2 .testimonial-slider-wrapp .single-testimonial:before {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 18px 31.5px 0 31.5px;
    border-color: var(--theme) transparent transparent transparent;
    transform: rotate(0deg);
    bottom: -20px;
    left: 40px;
}
.testimonial-style-2 .testimonial-slider-wrapp .single-testimonial .rating .star {
    color: #1b114f;
    font-size: 14px;
}
.testimonial-style-2 .testimonial-slider-wrapp .single-testimonial p {
    margin-top: 8px;
}
.testimonial-style-2 .testimonial-slider-wrapp .single-testimonial .author {
    position: absolute;
    bottom: -119px;
    left: 28px;
}
.testimonial-style-2 .testimonial-slider-wrapp .single-testimonial .author .content {
    margin-left: 20px;
}
.testimonial-style-2 .testimonial-slider-wrapp .single-testimonial .author .content .title {
    color: var(--theme);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.4px;
}
.testimonial-style-2 .testimonial-slider-wrapp .single-testimonial .author .content .designation {
    color: #868686;
    font-size: 16px;
    font-weight: 500;
}
.testimonial-style-2 .testimonial-slider-wrapp .swiper-slide {
    height: 350px;
}
.testimonial-style-2 .testimonial-slider-wrapp .swiper-slide-active .single-testimonial {
    background-color: #EFEFEF;
}
.testimonial-style-2 .testimonial-slider-btn {
    margin-top: 35px;
}
@media (max-width: 1199px) {
    .testimonial-style-2 .testimonial-slider-btn {
        margin-top: -30px;
        text-align: end;
        margin-bottom: 30px;
    }
}
@media (max-width: 575px) {
    .testimonial-style-2 .testimonial-slider-btn {
        display: none;
    }
}
.testimonial-style-2 .testimonial-slider-btn .long-arow {
    display: inline-block;
    color: #020E28;
    font-size: 25px;
    height: 56px;
    width: 56px;
    border-radius: 50%;
    background-color: var(--white);
    text-align: center;
    line-height: 56px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease-in-out;
    margin-right: 20px;
    position: relative;
    z-index: 11;
}
.testimonial-style-2 .testimonial-slider-btn .long-arow:hover {
    color: var(--white);
    background-color: var(--theme);
}

.testimonial-style-3 {
    padding-top: 198px;
    padding-bottom: 150px;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
}
@media (max-width: 1199px) {
    .testimonial-style-3 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
@media (max-width: 991px) {
    .testimonial-style-3 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
.testimonial-style-3 .thumbnail {
    position: relative;
}
.testimonial-style-3 .thumbnail .shape-1 {
    position: absolute;
    bottom: -53px;
    left: -80px;
}
@media (max-width: 1399px) {
    .testimonial-style-3 .thumbnail .shape-1 {
        left: -38px;
    }
}
@media (max-width: 991px) {
    .testimonial-style-3 .thumbnail .shape-1 {
        display: none;
    }
}
.testimonial-style-3 .thumbnail .shape-2 {
    position: absolute;
    top: -61px;
    left: -64px;
}
@media (max-width: 1199px) {
    .testimonial-style-3 .thumbnail .shape-2 {
        left: -46px;
    }
}
@media (max-width: 991px) {
    .testimonial-style-3 .thumbnail .shape-2 {
        display: none;
    }
}
.testimonial-style-3 .testimonial-slider-wrapper {
    position: relative;
}
@media (max-width: 575px) {
    .testimonial-style-3 .testimonial-slider-wrapper {
        margin-top: 30px;
    }
}
.testimonial-style-3 .testimonial-slider-wrapper .quote {
    position: absolute;
    right: 0;
    top: -78px;
}
@media (max-width: 575px) {
    .testimonial-style-3 .testimonial-slider-wrapper .quote {
        display: none;
    }
}
.testimonial-style-3 .testimonial-slider-wrapper .single-item .title {
    color: var(--header);
    font-size: 18px;
    font-weight: 600;
}
.testimonial-style-3 .testimonial-slider-wrapper .single-item p {
    color: #868686;
    font-size: 18px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 40px;
}
.testimonial-style-3 .testimonial-slider-wrapper .single-item .author img {
    margin-right: 22px;
}
.testimonial-style-3 .testimonial-slider-wrapper .single-item .author .name {
    display: block;
    color: var(--header);
}
.testimonial-style-3 .testimonial-slider-wrapper .single-item .author .text {
    display: block;
    color: var(--theme);
}
.testimonial-style-3 .testimonial-slider-wrapper .service-slider-btn {
    text-align: end;
}
@media (max-width: 575px) {
    .testimonial-style-3 .testimonial-slider-wrapper .service-slider-btn {
        text-align: start;
        margin-top: 40px;
    }
}
.testimonial-style-3 .testimonial-slider-wrapper .service-slider-btn .long-arow {
    width: 80px;
    height: 56px;
    background-color: var(--white);
    display: inline-block;
    text-align: center;
    line-height: 56px;
    color: var(--theme);
    font-size: 25px;
    font-weight: bold;
    transition: all 0.4s ease-in-out;
    margin-top: -16px;
    position: relative;
    z-index: 11;
    transition: all 0.4s ease-in-out;
    margin-right: -3px;
}
.testimonial-style-3 .testimonial-slider-wrapper .service-slider-btn .long-arow:hover {
    background-color: var(--theme);
    color: var(--white);
}
.testimonial-style-3 .testimonial-slider-wrapper .service-slider-btn .active {
    background-color: var(--theme);
    color: var(--white);
}
.testimonial-style-3 .author-review {
    position: relative;
    margin-top: 50px;
    padding-top: 50px;
}
@media (max-width: 575px) {
    .testimonial-style-3 .author-review {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.testimonial-style-3 .author-review:before {
    position: absolute;
    width: 100%;
    height: 1px;
    content: "";
    background-color: rgba(2, 14, 40, 0.25);
    top: 0;
    left: 0;
}
.testimonial-style-3 .author-review .read-more {
    color: #3F444B;
    font-size: 16px;
    font-weight: 400;
    margin-right: 64px;
    white-space: nowrap;
}
@media (max-width: 575px) {
    .testimonial-style-3 .author-review .read-more {
        display: none;
    }
}
.testimonial-style-3 .author-review .single-rating {
    margin-left: 93px;
}
@media (max-width: 1399px) {
    .testimonial-style-3 .author-review .single-rating {
        margin-left: 26px;
    }
}
@media (max-width: 575px) {
    .testimonial-style-3 .author-review .single-rating {
        margin-left: 0;
    }
}
.testimonial-style-3 .author-review .single-rating img {
    margin-bottom: 5px;
}
.testimonial-style-3 .author-review .single-rating i {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    width: 20px;
    height: 20px;
    background-color: #00B67A;
    font-size: 12px;
    margin-right: 2px;
}
.testimonial-style-3 .author-review .single-rating span {
    color: #3F444B;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    text-align: center;
    margin-left: 15px;
}
.testimonial-style-3 .author-review .single-rating-2 {
    margin-left: 46px;
}
@media (max-width: 575px) {
    .testimonial-style-3 .author-review .single-rating-2 {
        margin-left: 0;
    }
}
.testimonial-style-3 .author-review .single-rating-2 i {
    display: inline-block;
    color: #F8BF39;
    width: 20px;
    height: 20px;
    font-size: 12px;
}
.testimonial-style-3 .author-review .single-rating-2 span {
    color: #3F444B;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    text-align: center;
    margin-left: 6px;
}
.testimonial-style-3 .author-review .single-rating-2 .barnd {
    margin-top: -16px;
}
@media (max-width: 575px) {
    .testimonial-style-3 .author-review .img {
        display: none;
    }
}

.chose-1 {
    position: relative;
}
.chose-1 .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.chose-1 .shape-2 {
    position: absolute;
    bottom: 134px;
    left: 0;
}
@media (max-width: 1600px) {
    .chose-1 .shape-2 {
        display: none;
    }
}
.chose-1 .chose-left {
    margin-top: 110px;
}
@media (max-width: 1600px) {
    .chose-1 .chose-left {
        margin-top: 50px;
    }
}
.chose-1 .chose-left .chose-content-box {
    background-color: var(--theme);
    margin-top: 45px;
}
.chose-1 .chose-left .chose-content-box .single-box {
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-right: -1px;
    margin-bottom: -1px;
}
.chose-1 .chose-left .chose-content-box .single-box .icon img {
    transition: all 0.4s ease-in-out;
}
.chose-1 .chose-left .chose-content-box .single-box:hover .icon img {
    transform: rotateY(180deg);
}
.chose-1 .chose-left .chose-content-box .single-box .section-24 {
    margin: 20px 0;
}
@media (max-width: 575px) {
    .chose-1 .chose-left .chose-content-box .chose-content-bottom {
        flex-wrap: wrap;
        margin-left: 24px;
        gap: 16px;
        margin-top: 20px;
        padding-bottom: 20px;
    }
}
.chose-1 .chose-left .chose-content-box .chose-content-bottom .client-img {
    margin-left: 40px;
}
.chose-1 .chose-left .chose-content-box .chose-content-bottom .client-img img {
    margin-left: -23px;
    max-width: 100%;
}
.chose-1 .chose-left .chose-content-box .chose-content-bottom p {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
}
.chose-1 .chose-left .chose-content-box .chose-content-bottom span {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
}
.chose-1 .chose-left .chose-content-box .chose-content-bottom .btn-nblue-2 {
    padding: 26px 71px;
    margin-right: -46px;
}
@media (max-width: 1399px) {
    .chose-1 .chose-left .chose-content-box .chose-content-bottom .btn-nblue-2 {
        margin-right: -22px;
        margin-bottom: -21px;
    }
}
@media (max-width: 1199px) {
    .chose-1 .chose-left .chose-content-box .chose-content-bottom .btn-nblue-2 {
        margin-right: -45px;
        margin-bottom: 0;
    }
}
@media (max-width: 991px) {
    .chose-1 .chose-left .chose-content-box .chose-content-bottom .btn-nblue-2 {
        margin-right: -45px;
        margin-bottom: 0;
    }
}
@media (max-width: 575px) {
    .chose-1 .chose-left .chose-content-box .chose-content-bottom .btn-nblue-2 {
        margin-bottom: 0;
        margin-right: 0;
        padding: 14px 50px;
    }
}
.chose-1 .chose-right {
    position: relative;
}
@media (max-width: 1600px) {
    .chose-1 .chose-right {
        margin-bottom: -81px;
    }
}
@media (max-width: 1399px) {
    .chose-1 .chose-right {
        margin-bottom: -77px;
    }
}
@media (max-width: 1199px) {
    .chose-1 .chose-right {
        margin-top: 30px;
        margin-bottom: 0;
    }
}
@media (max-width: 1199px) {
    .chose-1 .chose-right img {
        width: 100%;
    }
}
.chose-1 .chose-right .video {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width: 1600px) {
    .chose-1 .chose-right .video {
        left: 75%;
        top: 43%;
    }
}
@media (max-width: 1399px) {
    .chose-1 .chose-right .video {
        left: 60%;
        top: 44%;
    }
}
@media (max-width: 1199px) {
    .chose-1 .chose-right .video {
        left: 50%;
        top: 50%;
    }
}

.chose-style-2 {
    background-color: var(--theme2);
    padding: 120px 0 580px 0;
    position: relative;
}
@media (max-width: 1600px) {
    .chose-style-2 {
        padding: 120px 0 424px 0;
    }
}
@media (max-width: 1199px) {
    .chose-style-2 {
        padding: 100px 0 327px 0;
    }
}
@media (max-width: 991px) {
    .chose-style-2 {
        padding: 80px 0 327px 0;
    }
}
@media (max-width: 575px) {
    .chose-style-2 {
        padding: 80px 0 180px 0;
    }
}
.chose-style-2 .shape-1 {
    position: absolute;
    bottom: 0;
    right: 0;
}
@media (max-width: 1199px) {
    .chose-style-2 .shape-1 {
        display: none;
    }
}
.chose-style-2 .content-box-wrap {
    margin-left: -10px;
}
@media (max-width: 575px) {
    .chose-style-2 .content-box-wrap {
        margin-left: 0;
    }
}
.chose-style-2 .content-box-wrap .chose-content p {
    opacity: 0.7;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    padding-top: 20px;
    padding-bottom: 30px;
}
.chose-style-2 .content-box-wrap .team-info {
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 17px 20px;
}
.chose-style-2 .content-box-wrap .team-info .img {
    padding: 12px;
    background-color: #FFF1F2;
    border-radius: 50%;
    margin-right: 16px;
}
.chose-style-2 .content-box-wrap .team-info .title {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}
.chose-style-2 .content-box-wrap .team-info p {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.7;
}
.chose-style-2 .right-thumbnail {
    position: relative;
    margin-top: -120px;
    margin-left: 34px;
}
@media (max-width: 1199px) {
    .chose-style-2 .right-thumbnail {
        margin-top: 58px;
        margin-left: 0;
    }
}
.chose-style-2 .right-thumbnail .videowrap {
    left: 49%;
    top: 250px;
    transform: translate(-50%, -50%);
    z-index: 11;
}
@media (max-width: 1199px) {
    .chose-style-2 .right-thumbnail .videowrap {
        left: 30%;
    }
}
@media (max-width: 991px) {
    .chose-style-2 .right-thumbnail .videowrap {
        left: 39%;
    }
}
@media (max-width: 991px) {
    .chose-style-2 .right-thumbnail .videowrap {
        left: 50%;
        top: 200px;
    }
}
.chose-style-2 .right-thumbnail .thumb-image {
    margin-bottom: 30px;
}
.chose-style-2 .right-thumbnail .thumb-image img {
    max-width: 100%;
}
.chose-style-2 .right-thumbnail .info {
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
    display: block;
}

.choose-us-wrapper .choose-us-content .choose-us-wrap {
    margin-top: 30px;
}
.choose-us-wrapper .choose-us-content .choose-us-wrap .choose-us-item {
    display: flex;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid rgba(75, 75, 75, 0.25);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
@media (max-width: 1199px) {
    .choose-us-wrapper .choose-us-content .choose-us-wrap .choose-us-item {
        flex-wrap: wrap;
    }
}
.choose-us-wrapper .choose-us-content .choose-us-wrap .choose-us-item.style-4 {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.choose-us-wrapper .choose-us-thumb {
    position: relative;
    max-width: 400px;
    margin-left: 60px;
}
@media (max-width: 1199px) {
    .choose-us-wrapper .choose-us-thumb {
        margin-left: 0;
    }
}
.choose-us-wrapper .choose-us-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
.choose-us-wrapper .choose-us-thumb .thumb-2 {
    position: absolute;
    bottom: 60px;
    left: -60px;
    max-width: 248px;
}
@media (max-width: 1199px) {
    .choose-us-wrapper .choose-us-thumb .thumb-2 {
        bottom: 0;
        left: 0;
    }
}
.choose-us-wrapper .choose-us-thumb .thumb-2 .video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.choose-us-wrapper .choose-us-thumb .thumb-2 .video::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    width: 114px;
    height: 114px;
    line-height: 114px;
    border-radius: 100px;
    border: 1px solid var(--white);
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
}
.choose-us-wrapper .choose-us-thumb .thumb-2 .video .play-btn > i {
    display: inline-block;
    width: 60px;
    display: inline-block;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--white);
    color: var(--theme);
    font-size: 20px;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
    .choose-us-wrapper .choose-us-thumb .thumb-2 .video .play-btn > i {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}
.choose-us-wrapper .choose-us-thumb .thumb-2 .video .play-btn > i:hover {
    background-color: var(--theme);
    color: var(--white);
}

.choose-us-section {
    position: relative;
}
.choose-us-section .left-shape {
    position: absolute;
    left: 0;
    bottom: 0;
}
@media (max-width: 1399px) {
    .choose-us-section .left-shape {
        display: none;
    }
}

.work-style-1 {
    position: relative;
    background-color: var(--theme2);
}
.work-style-1 .w-shape-1 {
    right: 0;
    top: 0;
}
@media (max-width: 1199px) {
    .work-style-1 .w-shape-1 {
        width: 20%;
    }
}
.work-style-1 .s-space {
    margin-top: 20px;
}
.work-style-1 .line-shape {
    position: absolute;
    left: 125px;
    bottom: 35%;
}
@media (max-width: 991px) {
    .work-style-1 .line-shape {
        display: none;
    }
}
.work-style-1 .title {
    margin-bottom: 50px;
}
@media (max-width: 575px) {
    .work-style-1 .title {
        margin-bottom: 30px;
    }
}
.work-style-1 .title .title-sm {
    margin-bottom: 18px;
}
.work-style-1 .item-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.work-style-1 .item-box .icon-box {
    width: 190px;
    height: 190px;
    background-color: var(--white);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.work-style-1 .item-box .icon-box .shape-1 {
    position: absolute;
    right: -19px;
    top: -22px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.work-style-1 .item-box .icon-box .shape-2 {
    position: absolute;
    bottom: -33px;
    right: 40px;
    transform: rotate(6deg);
    width: 129px;
}
.work-style-1 .item-box .icon-box span {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
    position: absolute;
    bottom: 18px;
    right: 43px;
    z-index: 112;
    transform: rotate(9deg);
}
.work-style-1 .item-box .icon-box .img {
    width: 75px;
    height: 75px;
    border-radius: 100%;
    border: 1px solid rgba(22, 36, 61, 0.08);
    text-align: center;
    line-height: 75px;
}
.work-style-1 .item-box .icon-box .img img {
    transition: all 0.4s ease-in-out;
}
.work-style-1 .item-box .icon-box:before {
    position: absolute;
    content: "";
    background-color: var(--theme);
    clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 43%, 59% 56%, 15% 70%, 0 0);
    z-index: 111;
    width: 158px;
    height: 79px;
    bottom: -23px;
    left: 11px;
    transform: rotate(15deg);
    transition: all 0.4s ease-in-out;
}
.work-style-1 .item-box .icon-box:after {
    position: absolute;
    content: "";
    background-color: var(--theme);
    clip-path: polygon(0 0, 38% 41%, 100% 1%);
    z-index: 111;
    width: 51px;
    height: 37px;
    transform: rotate(3deg);
    bottom: -33px;
    right: 22px;
    transition: all 0.4s ease-in-out;
}
.work-style-1 .item-box .content-box {
    margin-top: 40px;
    text-align: center;
}
@media (max-width: 991px) {
    .work-style-1 .item-box .content-box {
        margin: 40px 0;
        text-align: center;
        padding: 0 209px;
    }
}
@media (max-width: 767px) {
    .work-style-1 .item-box .content-box {
        padding: 0 3px;
    }
}
.work-style-1 .item-box .content-box .section-22-white {
    margin-bottom: 13px;
}
.work-style-1 .item-box .content-box h5 {
    color: var(--white);
}
.work-style-1 .item-box .content-box p {
    color: rgba(255, 255, 255, 0.7);
}
.work-style-1 .item-box:hover .shape-1 {
    opacity: 1;
    visibility: visible;
}
.work-style-1 .item-box:hover .icon-box .img img {
    transform: rotateY(360deg);
}
.work-style-1 .item-box:hover .icon-box:after {
    background-color: #373940;
}
@media (max-width: 575px) {
    .work-style-1 .item-box:last-child .content-box {
        margin-bottom: 10px;
    }
}
.work-style-1 .active .icon-box .shape-1 {
    opacity: 1;
    visibility: visible;
}
.work-style-1 .active .icon-box:after {
    background-color: #373940;
}

.work-style-2 {
    background-color:rgb(76 131 177 / 58%);
    position: relative;
}
@media (max-width: 1199px) {
    .work-style-2 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
@media (max-width: 991px) {
    .work-style-2 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
.work-style-2 .shape {
    position: absolute;
    right: 52px;
    bottom: 18px;
}
@media (max-width: 1600px) {
    .work-style-2 .shape {
        right: 30px;
        top: 59px;
        width: 3%;
    }
}
@media (max-width: 767px) {
    .work-style-2 .shape {
        display: none;
    }
}
.work-style-2 .work-content p {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    opacity: 0.7;
}
@media (max-width: 767px) {
    .work-style-2 .work-content p {
        margin-top: 20px;
    }
}
.work-style-2 .items {
    max-width: 100%;
    height: 210px;
    border: 1.092px solid rgba(255, 255, 255, 0.19);
    padding: 24px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    /* align-items: center; */
    transition: all 0.4s ease-in-out;
    position: relative;
    cursor: pointer;
}

@media (max-width: 1199px) {
    .work-style-2 .items  {
        height: 175px;
    }
}

@media (max-width: 537px) {
    .work-style-2 .items  {
        height: 190px;
    }
}

.work-style-2 .items .title {
    color: var(--white);
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    text-align: left;
}
.work-style-2 .items .title span {
    opacity: 0.5;
}
.work-style-2 .items .icon {
    position: relative;
    z-index: 2;
}
.work-style-2 .items .icon svg path {
    transition: all 0.4s ease-in-out;
    fill: var(--theme);
}
.work-style-2 .items:hover:before {
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
}
.work-style-2 .items:hover .icon svg path {
    fill: var(--white);
}
.work-style-2 .items:hover .title span {
    opacity: 1;
}
.work-style-2 .hover-color:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--theme);
    transition: all 0.4s ease-in-out;
    transform: scale(0, 0);
    opacity: 0;
    visibility: hidden;
    left: 0;
    top: 0;
    z-index: 1;
}
.work-style-2 .hover-color:before:hover:before {
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
}
.work-style-2 .last {
    background-color: var(--theme);
    position: relative;
}
.work-style-2 .last:hover:before {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}
.work-style-2 .last:hover:after {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}
.work-style-2 .last:before {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 0 35px 35px;
    border-color: transparent transparent rgba(255, 255, 255, 0.2) transparent;
    transform: rotate(0deg);
    bottom: 0;
    right: 0;
    transform: translate3d(7px, 7px, 7px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.work-style-2 .last:after {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 0 48px 48px;
    border-color: transparent transparent rgba(255, 255, 255, 0.25) transparent;
    transform: rotate(0deg);
    bottom: 0;
    right: 0;
    transform: translate3d(5px, 5px, 5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.work-style-2 .last a {
    width: 60px;
    height: 60px;
    border: 1.092px solid rgba(255, 255, 255, 0.25);
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    font-size: 15px;
    color: var(--white);
}
.work-style-2 .active {
    background-color: var(--theme);
}
.work-style-2 .active .icon svg path {
    fill: var(--white);
}

.work-style-3 {
    padding-left: 214px;
    padding-right: 340px;
    padding-top: 120px;
}
@media (max-width: 1600px) {
    .work-style-3 {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 80px;
    }
}
@media (max-width: 1399px) {
    .work-style-3 {
        padding-top: 50px;
    }
}
@media (max-width: 1199px) {
    .work-style-3 {
        padding-top: 100px;
        padding-bottom: 0;
    }
}
@media (max-width: 991px) {
    .work-style-3 {
        padding-top: 80px;
    }
}
.work-style-3 .work-content-wrapper {
    padding-top: 120px;
    padding-bottom: 150px;
    display: flex;
    align-items: center;
    max-width: 1370px;
    position: relative;
    z-index: 5;
    gap: 168px;
    margin: 0 auto;
}
@media (max-width: 1600px) {
    .work-style-3 .work-content-wrapper {
        flex-wrap: wrap;
        gap: 0;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media (max-width: 991px) {
    .work-style-3 .work-content-wrapper {
        gap: 30px;
    }
}
@media (max-width: 575px) {
    .work-style-3 .work-content-wrapper {
        padding-top: 30px;
        padding-bottom: 0;
    }
}
.work-style-3 .work-content-wrapper .shape {
    top: 45px;
    left: -75px;
}
@media (max-width: 1899px) {
    .work-style-3 .work-content-wrapper .shape {
        display: none;
    }
}
.work-style-3 .work-content-wrapper .single-box {
    width: 217px;
    height: 110px;
    background-color: #EFEFEF;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.work-style-3 .work-content-wrapper .single-box .title {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.work-style-3 .work-content-wrapper .single-box .title .heading {
    line-height: 28px;
    color: #020E28;
    font-size: 24px;
    font-weight: 600;
}
.work-style-3 .work-content-wrapper .single-box .side-content {
    position: absolute;
    top: 19px;
    right: -100px;
}
@media (max-width: 1899px) {
    .work-style-3 .work-content-wrapper .single-box .side-content {
        display: none;
    }
}
.work-style-3 .work-content-wrapper .single-box .side-content .read {
    color: var(--theme);
    font-size: 24px;
    font-weight: 600;
    display: block;
    text-align: center;
}
.work-style-3 .work-content-wrapper .single-box .side-content .black {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
    display: block;
}
.work-style-3 .work-content-wrapper .single-box:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background-color: var(--theme);
    transition: all 0.4s ease-in-out;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transform: scale(0, 0);
}
.work-style-3 .work-content-wrapper .single-box:hover .heading {
    color: var(--white);
}
.work-style-3 .work-content-wrapper .single-box:hover:before {
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
}
.work-style-3 .work-content-wrapper .active {
    background-color: var(--theme);
    transition: all 0.4s ease-in-out;
}
.work-style-3 .work-content-wrapper .active .title .heading {
    color: var(--white);
}

@media (max-width: 1199px) {
    .legacy-wrapper .legacy-wrap {
        flex-wrap: wrap;
        gap: 30px;
    }
}
.legacy-wrapper .legacy-wrap .legacy-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
.legacy-wrapper .legacy__right {
    padding-left: 56px;
}
@media (max-width: 1199px) {
    .legacy-wrapper .legacy__right {
        margin-top: 30px;
        padding-left: 0;
    }
}
.legacy-wrapper .legacy__right .legacy__right-title {
    margin-bottom: 23px;
}
.legacy-wrapper .legacy__right .legacy-right-text span {
    color: #4B4B4B;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    display: block;
    margin-bottom: 18px;
}
.legacy-wrapper .legacy__right .legacy-right-text span i {
    font-size: 10px;
    color: var(--theme);
    display: inline-block;
    padding: 4px;
    border: 1px solid #EC7216;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 10px;
    opacity: 0.964;
}
.legacy-wrapper .legacy__right .legacy-right-text .last {
    padding-bottom: 10px;
}
.legacy-wrapper .legacy__right .legacy-right-text .text-border {
    position: relative;
    padding-left: 26px;
    border-top: 1px solid rgba(134, 134, 134, 0.2);
    padding-top: 22px;
    color: #4B4B4B;
}
.legacy-wrapper .legacy__right .legacy-right-text .text-border:before {
    position: absolute;
    content: "";
    height: 61%;
    width: 5px;
    background-color: var(--theme);
    left: 0;
    bottom: 6px;
}
.legacy-wrapper .legacy__right .btn-read {
    padding: 14px 30px;
    margin-top: 31px;
}
@media (max-width: 1199px) {
    .legacy-wrapper .progress-wrap {
        padding-right: 280px;
    }
}
@media (max-width: 991px) {
    .legacy-wrapper .progress-wrap {
        padding-right: 0;
    }
}
.legacy-wrapper .progress-wrap .progress-content {
    margin-top: 30px;
}
.legacy-wrapper .progress-wrap .shipping {
    color: var(--header);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.legacy-wrapper .progress-wrap span {
    color: var(--theme);
    font-size: 16px;
    font-weight: 600;
}
.legacy-wrapper .progress-wrap .progress {
    height: 10px;
    position: relative;
    overflow: visible;
    border-radius: 0;
}
.legacy-wrapper .progress-wrap .progress .progress-bar {
    background-color: var(--theme);
    position: absolute;
    width: 100%;
    height: 100%;
}
.legacy-wrapper .progress-wrap .progress .progress-bar:after {
    position: absolute;
    content: "";
    background-color: var(--white);
    border-radius: 50%;
    font-size: 20px;
    position: absolute;
    height: 18px;
    width: 18px;
    right: -17px;
    border: 5px solid var(--theme);
}

.paralax-wrapper {
    padding: 217px 0;
    position: relative;
    z-index: 1;
}
@media (max-width: 575px) {
    .paralax-wrapper {
        padding: 70px 0;
    }
}
.paralax-wrapper:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: rgba(2, 14, 40, 0.6);
    top: 0;
    left: 0;
    z-index: 2;
}
.paralax-wrapper .paralax-title {
    position: relative;
    z-index: 555;
    margin-bottom: 30px;
}
.paralax-wrapper .btn-white-2 {
    padding: 14px 32px;
    position: relative;
    z-index: 444;
}

.blog-style-1 {
    padding: 120px 255px;
}
@media (max-width: 1600px) {
    .blog-style-1 {
        padding: 120px 70px;
    }
}
@media (max-width: 1199px) {
    .blog-style-1 {
        padding: 100px 30px;
    }
}
@media (max-width: 991px) {
    .blog-style-1 {
        padding: 80px 22px;
    }
}
.blog-style-1 .blog {
    background: #FFF;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
    margin-top: 50px;
}
@media (max-width: 1199px) {
    .blog-style-1 .blog {
        margin-top: 30px;
    }
}
.blog-style-1 .blog:hover .blog-thumb img {
    transform: scale(1.1);
}
.blog-style-1 .blog .blog-thumb {
    overflow: hidden;
}
.blog-style-1 .blog .blog-thumb img {
    transition: all 0.4s ease-in-out;
    width: 100%;
}
.blog-style-1 .blog .blog-thumb .blog-tag {
    top: 30px;
    right: 30px;
}

.blog-area{
    background-color: rgb(76 131 177 / 58%);
}
.blog-style-1 .blog .blog-thumb .blog-tag span {
    display: block;
    text-align: center;
}
.blog-style-1 .blog .blog-thumb .blog-tag .red {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    background: var(--theme);
    padding: 5px 19px;
}
.blog-style-1 .blog .blog-thumb .blog-tag .white {
    color: #868686;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--white);
}
.blog-style-1 .blog .blog-content {
    padding: 30px;
}
@media (max-width: 1199px) {
    .blog-style-1 .blog .blog-content {
        padding: 20px;
    }
}
.blog-style-1 .blog .blog-content > span {
    color: var(--theme);
    width: 103px;
    height: 36px;
    border: 1px solid #E5E7E8;
    display: inline-block;
    text-align: center;
    line-height: 35px;
    margin-bottom: 18px;
}
.blog-style-1 .blog .blog-content .section-24-black {
    border-bottom: 1px solid #E5E7E8;
    padding-bottom: 30px;
    transition: all 0.2s ease-in-out;
}
.blog-style-1 .blog .blog-content .section-24-black:hover {
    color: var(--theme);
}
.blog-style-1 .blog .blog-content .content-box {
    margin-top: 30px;
}
.blog-style-1 .blog .blog-content .content-box .text {
    margin-right: auto;
}
.blog-style-1 .blog .blog-content .content-box .text span {
    display: block;
    color: var(--header);
    font-size: 16px;
    font-weight: 700;
}
.blog-style-1 .blog .blog-content .content-box .text span:last-child {
    color: #868686;
    font-size: 14px;
    font-weight: 400;
}
.blog-style-1 .blog .blog-content .content-box .admin-img {
    margin-right: 15px;
}
.blog-style-1 .blog .blog-content .content-box .icon a {
    background: rgba(255, 67, 46, 0.1);
    font-size: 16px;
    color: var(--theme);
    font-weight: bold;
    padding: 8px 13px;
    transition: all 0.4s ease-in-out;
}
.blog-style-1 .blog .blog-content .content-box .icon a:hover {
    color: var(--white);
    background-color: var(--theme);
}
.blog-style-1 .blog .blog-content .content-box .icon .active {
    background-color: var(--theme);
    color: var(--white);
}
.blog-style-1 .pagination {
    display: flex;
    align-items: center;
}
@media (max-width: 575px) {
    .blog-style-1 .pagination {
        flex-wrap: wrap;
        gap: 15px;
        padding-left: 7px;
    }
}
.blog-style-1 .pagination .page-links-previous {
    padding: 5px 16px;
    color: var(--header);
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    border: 1px solid #E6E6E6;
    margin-right: 20px;
}
.blog-style-1 .pagination .page-links {
    padding: 5px 17px;
    color: var(--header);
    font-size: 14px;
    font-weight: 600;
    margin-right: 8px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}
.blog-style-1 .pagination .active {
    border: 1px solid var(--theme);
    background: #EFEFEF;
}
.blog-style-1 .pagination .page-links-next {
    background-color: var(--theme);
    display: inline-block;
    padding: 6px 13px;
    color: var(--white);
}

.blog-style-2 {
    padding: 120px 175px;
    margin-top: 150px;
}
@media (max-width: 1600px) {
    .blog-style-2 {
        padding: 100px 20px;
    }
}
@media (max-width: 1199px) {
    .blog-style-2 {
        padding: 100px 30px;
    }
}
@media (max-width: 991px) {
    .blog-style-2 {
        padding: 80px 0;
        margin-top: 0;
    }
}
.blog-style-2 .blog-title {
    margin-bottom: 50px;
}
.blog-style-2 .blog-title .title-sm img {
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 3px;
}
.blog-style-2 .blog-thumb {
    background-color: #FFF6F6;
    margin-bottom: 30px;
}
.blog-style-2 .blog-thumb .blog-image {
    overflow: hidden;
}
.blog-style-2 .blog-thumb .blog-image img {
    width: 100%;
    transition: all 0.4s ease-in-out;
}
.blog-style-2 .blog-thumb .blog-content {
    padding: 30px;
    padding-top: 8px;
}
.blog-style-2 .blog-thumb .blog-content span {
    color: #868686;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
}
.blog-style-2 .blog-thumb .blog-content span img {
    margin-right: 5px;
}
.blog-style-2 .blog-thumb .blog-content .calender-info {
    margin-right: 48px;
}
@media (max-width: 1600px) {
    .blog-style-2 .blog-thumb .blog-content .calender-info {
        margin-right: 0;
    }
}
@media (max-width: 450px) {
    .blog-style-2 .blog-thumb .blog-content .calender-info {
        margin-right: 0;
    }
}
.blog-style-2 .blog-thumb .blog-content .blog-heading {
    color: var(--header);
    font-size: 20px;
    font-weight: 700;
    line-height: 34px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 450px) {
    .blog-style-2 .blog-thumb .blog-content .blog-heading {
        font-size: 18px;
    }
}
.blog-style-2 .blog-thumb .blog-content .blog-heading:hover {
    color: var(--theme);
}
.blog-style-2 .blog-thumb .blog-content .info {
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.blog-style-2 .blog-thumb .blog-content .info a {
    color: #868686;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin-top: 22px;
}
.blog-style-2 .blog-thumb .blog-content .info a:hover {
    color: var(--theme);
}
.blog-style-2 .blog-thumb .blog-content .info i {
    margin-left: 5px;
}
.blog-style-2 .blog-thumb .blog-content .info img {
    margin-left: -15px;
}
.blog-style-2 .blog-thumb:hover .blog-image img {
    transform: scale(1.1);
}

.blog-style-3 {
    padding: 120px 175px;
}
@media (max-width: 1600px) {
    .blog-style-3 {
        padding: 120px 40px;
    }
}
@media (max-width: 1199px) {
    .blog-style-3 {
        padding: 100px 30px;
    }
}
@media (max-width: 991px) {
    .blog-style-3 {
        padding: 80px 30px;
    }
}
.blog-style-3 .blog-title {
    margin-bottom: 50px;
}
@media (max-width: 575px) {
    .blog-style-3 .blog-title {
        margin-bottom: 30px;
    }
}
.blog-style-3 .blog-title .title-sm img {
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 3px;
}
.blog-style-3 .blog-thumb {
    background-color: var(--white);
    border: 1px solid #E6E6E6;
    position: relative;
}
@media (max-width: 1199px) {
    .blog-style-3 .blog-thumb {
        margin-bottom: 30px;
    }
}
.blog-style-3 .blog-thumb .blog-image {
    margin: 10px;
    overflow: hidden;
}
.blog-style-3 .blog-thumb .blog-image img {
    width: 100%;
    transition: all 0.4s ease-in-out;
}
.blog-style-3 .blog-thumb .blog-icon {
    background-color: var(--theme2);
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    border-radius: 100%;
    position: absolute;
    right: 40px;
    top: 45%;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 1600px) {
    .blog-style-3 .blog-thumb .blog-icon {
        right: 22px;
        top: 28%;
    }
}
@media (max-width: 450px) {
    .blog-style-3 .blog-thumb .blog-icon {
        top: 27%;
    }
}
.blog-style-3 .blog-thumb .blog-icon .icon {
    transition: all 0.4s ease-in-out;
}
.blog-style-3 .blog-thumb .blog-content {
    padding: 30px;
    padding-top: 20px;
}
@media (max-width: 575px) {
    .blog-style-3 .blog-thumb .blog-content {
        padding: 20px;
    }
}
.blog-style-3 .blog-thumb .blog-content span {
    color: #868686;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
}
.blog-style-3 .blog-thumb .blog-content span img {
    margin-right: 5px;
}
.blog-style-3 .blog-thumb .blog-content .calender-info {
    margin-right: 48px;
}
.blog-style-3 .blog-thumb .blog-content .blog-heading {
    color: var(--header);
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}
.blog-style-3 .blog-thumb .blog-content .blog-heading:hover {
    color: var(--theme);
}
.blog-style-3 .blog-thumb .blog-content p {
    color: #747D82;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}
.blog-style-3 .blog-thumb .blog-content .info a {
    color: var(--header);
    font-size: 16px;
    font-weight: 600;
    margin-top: 22px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(116, 125, 130, 0.3);
}
.blog-style-3 .blog-thumb .blog-content .info a:hover {
    color: var(--theme);
}
.blog-style-3 .blog-thumb .blog-content .info a i {
    display: inline-block;
    color: var(--theme);
    transform: rotate(-45deg);
}
.blog-style-3 .blog-thumb:hover .blog-icon {
    background-color: var(--theme);
}
.blog-style-3 .blog-thumb:hover .blog-icon img {
    transform: rotateY(180deg);
}
.blog-style-3 .blog-thumb:hover .blog-image img {
    transform: scale(1.1);
}

.blog-style-4 {
    padding: 110px 284px;
}
@media (max-width: 1600px) {
    .blog-style-4 {
        padding: 80px 30px;
    }
}
@media (max-width: 1199px) {
    .blog-style-4 {
        padding: 40px 30px;
    }
}
@media (max-width: 991px) {
    .blog-style-4 {
        padding: 80px 0 45px;
    }
}
.blog-style-4 .blog-title {
    margin-bottom: 50px;
}
.blog-style-4 .blog-thumb {
    position: relative;
}
@media (max-width: 991px) {
    .blog-style-4 .blog-thumb {
        margin-bottom: 30px;
    }
}
.blog-style-4 .blog-thumb .tag {
    position: absolute;
    width: 95px;
    height: 33px;
    border-radius: 6px;
    background-color: var(--theme2);
    z-index: 11;
    text-align: center;
    line-height: 33px;
    right: 20px;
    top: 20px;
}
@media (max-width: 991px) {
    .blog-style-4 .blog-thumb .tag {
        left: 20px;
        top: 32px;
    }
}
.blog-style-4 .blog-thumb .tag span {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
}
.blog-style-4 .blog-thumb .blog-image {
    overflow: hidden;
    max-width: 100%;
}
.blog-style-4 .blog-thumb .blog-image img {
    width: 100%;
    transition: all 0.4s ease-in-out;
}
.blog-style-4 .blog-thumb .blog-content {
    padding-top: 20px;
}
.blog-style-4 .blog-thumb .blog-content span {
    color: #868686;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
}
.blog-style-4 .blog-thumb .blog-content span i {
    margin-right: 5px;
}
.blog-style-4 .blog-thumb .blog-content .calender-info {
    margin-left: 15px;
    display: flex;
    align-items: center;
}
.blog-style-4 .blog-thumb .blog-content .calender-info img {
    margin-right: 5px;
}
.blog-style-4 .blog-thumb .blog-content .blog-heading {
    color: var(--header);
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}
.blog-style-4 .blog-thumb .blog-content .blog-heading:hover {
    color: var(--theme);
}
.blog-style-4 .blog-thumb .blog-content .btn {
    display: flex;
    justify-content: space-between;
    align-items: end;
}
@media (max-width: 575px) {
    .blog-style-4 .blog-thumb .blog-content .btn {
        padding-left: 0;
    }
}
.blog-style-4 .blog-thumb .blog-content .btn a {
    color: var(--theme);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
}
.blog-style-4 .blog-thumb .blog-content .btn a i {
    margin-left: 15px;
    display: inline-block;
    width: 22px;
    height: 22px;
    background-color: var(--theme);
    border-radius: 50%;
    color: var(--white);
    font-size: 10px;
    line-height: 22px;
    text-align: center;
    transform: rotate(-45deg);
}
.blog-style-4 .blog-thumb .blog-content .btn a:before {
    position: absolute;
    content: "";
    width: 66%;
    height: 1px;
    background-color: var(--theme);
    bottom: 1px;
    left: 0;
}
.blog-style-4 .blog-thumb:hover .blog-image img {
    transform: scale(1.1);
}

.blog-standard-wrapper .single-blog-widget {
    border: 1px solid #E3E3E3;
    padding: 30px;
}
.blog-standard-wrapper .single-blog-widget .thumb {
    position: relative;
}
.blog-standard-wrapper .single-blog-widget .thumb .tag {
    position: absolute;
    background-color: #EC7216;
    padding: 6px 17px;
    color: var(--white);
    top: 20px;
    left: 20px;
}
.blog-standard-wrapper .single-blog-widget .thumb .tag span {
    display: block;
    color: var(--white);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
}
.blog-standard-wrapper .single-blog-widget .thumb .tag span:first-child {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    line-height: 22px;
}
.blog-standard-wrapper .single-blog-widget .thumb img {
    max-width: 100%;
}
.blog-standard-wrapper .single-blog-widget .comments {
    gap: 33px;
    margin-top: 50px;
    margin-bottom: 10px;
}
.blog-standard-wrapper .single-blog-widget .comments .admin {
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-standard-wrapper .single-blog-widget .comments .coments-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-standard-wrapper .single-blog-widget .blog-title {
    color: var(--header);
    font-size: 30px;
    font-weight: 600;
}
@media (max-width: 575px) {
    .blog-standard-wrapper .single-blog-widget .blog-title {
        font-size: 25px;
    }
}
.blog-standard-wrapper .single-blog-widget p {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 20px;
    padding-top: 14px;
}
.blog-standard-wrapper .single-blog-widget .btn-read {
    padding: 14px 35px;
}
.blog-standard-wrapper .pagination {
    display: flex;
    align-items: center;
}
@media (max-width: 991px) {
    .blog-standard-wrapper .pagination {
        margin: 15px 0;
    }
}
@media (max-width: 575px) {
    .blog-standard-wrapper .pagination {
        flex-wrap: wrap;
        gap: 15px;
    }
}
.blog-standard-wrapper .pagination .page-links-previous {
    padding: 5px 16px;
    color: var(--header);
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    border: 1px solid #E6E6E6;
    margin-right: 20px;
}
.blog-standard-wrapper .pagination .page-links {
    padding: 5px 17px;
    color: var(--header);
    font-size: 14px;
    font-weight: 600;
    margin-right: 8px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}
.blog-standard-wrapper .pagination .active {
    border: 1px solid var(--theme);
    background: #EFEFEF;
}
.blog-standard-wrapper .pagination .page-links-next {
    background-color: var(--theme);
    display: inline-block;
    padding: 6px 13px;
    color: var(--white);
}
.blog-standard-wrapper .side-bar .search-box {
    background-color: #EFEFEF;
    padding: 40px 30px;
}
@media (max-width: 1199px) {
    .blog-standard-wrapper .side-bar .search-box {
        margin-top: 30px;
    }
}
@media (max-width: 991px) {
    .blog-standard-wrapper .side-bar .search-box {
        margin-top: 0;
    }
}
.blog-standard-wrapper .side-bar .search-box .title-box {
    position: relative;
}
.blog-standard-wrapper .side-bar .search-box .title-box:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background-color: var(--header);
    bottom: -16px;
    left: 0;
}
.blog-standard-wrapper .side-bar .search-box .title-box:after {
    position: absolute;
    content: "";
    width: 63px;
    height: 2px;
    background-color: var(--theme);
    bottom: -16px;
    left: 30px;
}
.blog-standard-wrapper .side-bar .search-box .title-box .title {
    color: var(--header);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 40px;
}
.blog-standard-wrapper .side-bar .search-box form .search {
    position: relative;
    line-height: 58px;
    text-align: center;
}
.blog-standard-wrapper .side-bar .search-box form .search input {
    background-color: var(--white);
    border-radius: 5px;
}
.blog-standard-wrapper .side-bar .search-box form .search button {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    height: 56px;
    width: 58px;
    background-color: var(--theme);
    color: var(--white);
}
.blog-standard-wrapper .side-bar-2 {
    background-color: #EFEFEF;
    padding: 40px 30px;
}
.blog-standard-wrapper .side-bar-2 .title-box {
    position: relative;
}
.blog-standard-wrapper .side-bar-2 .title-box:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background-color: var(--header);
    bottom: -16px;
    left: 0;
}
.blog-standard-wrapper .side-bar-2 .title-box:after {
    position: absolute;
    content: "";
    width: 63px;
    height: 2px;
    background-color: var(--theme);
    bottom: -16px;
    left: 30px;
}
.blog-standard-wrapper .side-bar-2 .title-box .title {
    color: var(--header);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 40px;
}
.blog-standard-wrapper .side-bar-2 .category ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}
.blog-standard-wrapper .side-bar-2 .category ul li a {
    display: flex;
    justify-content: space-between;
    padding: 20px 24px;
    background-color: var(--white);
    color: var(--header);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.16px;
    width: 100%;
    transition: all 0.4s ease-in-out;
}
.blog-standard-wrapper .side-bar-2 .category ul li a:hover {
    background-color: var(--theme);
    color: var(--white);
}
.blog-standard-wrapper .side-bar-2 .category ul li a a:last-child {
    margin-bottom: 0;
}
.blog-standard-wrapper .side-bar-2 .category ul li:last-child {
    margin-bottom: 0;
}
.blog-standard-wrapper .side-bar-3 {
    background-color: #EFEFEF;
    padding: 40px 30px;
}
.blog-standard-wrapper .side-bar-3 .title-box {
    position: relative;
}
.blog-standard-wrapper .side-bar-3 .title-box:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background-color: var(--header);
    bottom: -16px;
    left: 0;
}
.blog-standard-wrapper .side-bar-3 .title-box:after {
    position: absolute;
    content: "";
    width: 63px;
    height: 2px;
    background-color: var(--theme);
    bottom: -16px;
    left: 30px;
}
.blog-standard-wrapper .side-bar-3 .title-box .title {
    color: var(--header);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}
.blog-standard-wrapper .side-bar-3 .single-post {
    display: flex;
    gap: 15px;
    align-items: end;
    padding: 20px 0;
    border-bottom: 1px solid rgba(134, 134, 134, 0.2);
}
.blog-standard-wrapper .side-bar-3 .single-post .content span {
    color: var(--theme);
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-standard-wrapper .side-bar-3 .single-post .content p {
    color: var(--header);
    font-size: 16px;
    font-weight: 700;
}
.blog-standard-wrapper .side-bar-3 .single-post:last-child {
    border-bottom: 0;
}
.blog-standard-wrapper .side-bar-4 {
    background-color: #EFEFEF;
    padding: 40px 30px;
}
.blog-standard-wrapper .side-bar-4 .title-box {
    position: relative;
}
.blog-standard-wrapper .side-bar-4 .title-box:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background-color: var(--header);
    bottom: -16px;
    left: 0;
}
.blog-standard-wrapper .side-bar-4 .title-box:after {
    position: absolute;
    content: "";
    width: 63px;
    height: 2px;
    background-color: var(--theme);
    bottom: -16px;
    left: 30px;
}
.blog-standard-wrapper .side-bar-4 .title-box .title {
    color: var(--header);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}
.blog-standard-wrapper .side-bar-4 .tagcloud a {
    padding: 10px;
    display: inline-block;
    background-color: var(--white);
    color: var(--header);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    margin-right: 8px;
    margin-top: 16px;
    transition: all 0.4s ease-in-out;
}
.blog-standard-wrapper .side-bar-4 .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.blog-details-wrapper .single-blog-widget .thumb {
    position: relative;
}
.blog-details-wrapper .single-blog-widget .thumb .tag {
    position: absolute;
    background-color: #EC7216;
    padding: 6px 17px;
    color: var(--white);
    top: 20px;
    left: 20px;
}
.blog-details-wrapper .single-blog-widget .thumb .tag span {
    display: block;
    color: var(--white);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
}
.blog-details-wrapper .single-blog-widget .thumb .tag span:first-child {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    line-height: 22px;
}
.blog-details-wrapper .single-blog-widget .thumb img {
    max-width: 100%;
}
.blog-details-wrapper .single-blog-widget .comments {
    gap: 33px;
    margin-top: 50px;
    margin-bottom: 10px;
}
@media (max-width: 991px) {
    .blog-details-wrapper .single-blog-widget .comments {
        margin-top: 30px;
    }
}
@media (max-width: 575px) {
    .blog-details-wrapper .single-blog-widget .comments {
        gap: 10px;
    }
}
.blog-details-wrapper .single-blog-widget .comments .admin {
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-details-wrapper .single-blog-widget .comments .coments-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-details-wrapper .single-blog-widget .blog-title {
    color: var(--header);
    font-size: 30px;
    font-weight: 600;
}
@media (max-width: 575px) {
    .blog-details-wrapper .single-blog-widget .blog-title {
        font-size: 25px;
    }
}
.blog-details-wrapper .single-blog-widget p {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 20px;
    padding-top: 14px;
}
@media (max-width: 991px) {
    .blog-details-wrapper .single-blog-widget p {
        padding-bottom: 0;
    }
}
.blog-details-wrapper .thumb {
    margin-bottom: 40px;
}
@media (max-width: 991px) {
    .blog-details-wrapper .thumb {
        margin-bottom: 0;
    }
}
.blog-details-wrapper .thumb .img-1 {
    max-width: 100%;
}
@media (max-width: 991px) {
    .blog-details-wrapper .thumb .img-1 {
        margin-bottom: 30px;
    }
}
.blog-details-wrapper .testimonila {
    border-left: 4px solid var(--theme);
    background: #EFEFEF;
    padding: 36px 70px 36px 40px;
    position: relative;
    margin: 40px 0;
}
@media (max-width: 991px) {
    .blog-details-wrapper .testimonila {
        margin: 30px 0;
    }
}
@media (max-width: 575px) {
    .blog-details-wrapper .testimonila {
        padding: 30px;
    }
}
.blog-details-wrapper .testimonila p {
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}
.blog-details-wrapper .testimonila img {
    position: absolute;
    bottom: 23px;
    right: 28px;
}
@media (max-width: 575px) {
    .blog-details-wrapper .testimonila img {
        bottom: 6px;
        right: 6px;
    }
}
.blog-details-wrapper .tags {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(134, 134, 134, 0.2);
    border-bottom: 1px solid rgba(134, 134, 134, 0.2);
}
@media (max-width: 991px) {
    .blog-details-wrapper .tags {
        margin-bottom: 15px;
    }
}
@media (max-width: 575px) {
    .blog-details-wrapper .tags {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }
}
.blog-details-wrapper .tags .left span {
    color: var(--header);
    font-size: 16px;
    font-weight: 600;
    margin-right: 20px;
}
.blog-details-wrapper .tags .left a {
    padding: 5px 10px;
    border: 1px solid #E6E6E6;
    margin-right: 10px;
    display: inline-block;
    color: var(--header);
    font-size: 14px;
    font-weight: 400;
    transition: all 0.4s ease-in-out;
}
.blog-details-wrapper .tags .left a:hover {
    background-color: var(--theme);
    color: var(--white);
}
.blog-details-wrapper .tags .left .active {
    background-color: var(--theme);
    color: var(--white);
}
.blog-details-wrapper .tags .right span {
    color: var(--header);
    font-size: 16px;
    font-weight: 600;
    margin-right: 20px;
}
.blog-details-wrapper .tags .right a {
    margin-right: 20px;
    color: var(--header);
    transition: all 0.4s ease-in-out;
}
.blog-details-wrapper .tags .right a:hover {
    color: var(--theme);
}
.blog-details-wrapper .comments-area .comments-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(134, 134, 134, 0.2);
}
@media (max-width: 991px) {
    .blog-details-wrapper .comments-area .comments-box {
        margin-top: 30px;
    }
}
.blog-details-wrapper .comments-area .comments-box .content a {
    color: var(--header);
    display: block;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}
.blog-details-wrapper .comments-area .comments-box .content span {
    color: #535353;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    display: block;
}
.blog-details-wrapper .comments-area .comments-box .content .badgee a {
    width: 79px;
    height: 30px;
    background-color: var(--theme);
    color: var(--white);
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 30px;
    margin-bottom: 12px;
}
.blog-details-wrapper .comments-area .comments-box .content .badgee .btn-sec {
    border: 1px solid #E6E6E6;
    background-color: var(--white);
    color: #535353;
    transition: all 0.4s ease-in-out;
}
.blog-details-wrapper .comments-area .comments-box .content .badgee .btn-sec:hover {
    background-color: var(--theme);
    color: var(--white);
}
.blog-details-wrapper .form-box {
    margin-top: 40px;
}
.blog-details-wrapper .form-box form .input-box {
    margin-top: 25px;
}
.blog-details-wrapper .form-box form .input-box input {
    border: 1px solid #E6E5E5;
    background-color: transparent;
}
.blog-details-wrapper .form-box form .input-box label {
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}
.blog-details-wrapper .form-box form .text-box {
    margin-top: 20px;
}
.blog-details-wrapper .form-box form .text-box textarea {
    background-color: transparent;
    border: 1px solid #E6E5E5;
}
.blog-details-wrapper .form-box form .text-box label {
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}
.blog-details-wrapper .form-box form .btn-read {
    padding: 14px 34px;
    margin-top: 30px;
}
.blog-details-wrapper .pagination {
    display: flex;
    align-items: center;
}
@media (max-width: 991px) {
    .blog-details-wrapper .pagination {
        margin: 15px 0;
    }
}
@media (max-width: 575px) {
    .blog-details-wrapper .pagination {
        flex-wrap: wrap;
        gap: 15px;
    }
}
.blog-details-wrapper .pagination .page-links-previous {
    padding: 5px 16px;
    color: var(--header);
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    border: 1px solid #E6E6E6;
    margin-right: 20px;
}
.blog-details-wrapper .pagination .page-links {
    padding: 5px 17px;
    color: var(--header);
    font-size: 14px;
    font-weight: 600;
    margin-right: 8px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}
.blog-details-wrapper .pagination .active {
    border: 1px solid var(--theme);
    background: #EFEFEF;
}
.blog-details-wrapper .pagination .page-links-next {
    background-color: var(--theme);
    display: inline-block;
    padding: 6px 13px;
    color: var(--white);
}
.blog-details-wrapper .side-bar .search-box {
    background-color: #EFEFEF;
    padding: 40px 30px;
}
.blog-details-wrapper .side-bar .search-box .title-box {
    position: relative;
}
.blog-details-wrapper .side-bar .search-box .title-box:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background-color: var(--header);
    bottom: -16px;
    left: 0;
}
.blog-details-wrapper .side-bar .search-box .title-box:after {
    position: absolute;
    content: "";
    width: 63px;
    height: 2px;
    background-color: var(--theme);
    bottom: -16px;
    left: 30px;
}
.blog-details-wrapper .side-bar .search-box .title-box .title {
    color: var(--header);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 40px;
}
.blog-details-wrapper .side-bar .search-box form .search {
    position: relative;
    line-height: 58px;
    text-align: center;
}
.blog-details-wrapper .side-bar .search-box form .search input {
    background-color: var(--white);
    border-radius: 5px;
}
.blog-details-wrapper .side-bar .search-box form .search button {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    height: 56px;
    width: 58px;
    background-color: var(--theme);
    color: var(--white);
}
.blog-details-wrapper .side-bar-2 {
    background-color: #EFEFEF;
    padding: 40px 30px;
}
.blog-details-wrapper .side-bar-2 .title-box {
    position: relative;
}
.blog-details-wrapper .side-bar-2 .title-box:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background-color: var(--header);
    bottom: -16px;
    left: 0;
}
.blog-details-wrapper .side-bar-2 .title-box:after {
    position: absolute;
    content: "";
    width: 63px;
    height: 2px;
    background-color: var(--theme);
    bottom: -16px;
    left: 30px;
}
.blog-details-wrapper .side-bar-2 .title-box .title {
    color: var(--header);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 40px;
}
.blog-details-wrapper .side-bar-2 .category ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}
.blog-details-wrapper .side-bar-2 .category ul li a {
    display: flex;
    justify-content: space-between;
    padding: 20px 24px;
    background-color: var(--white);
    color: var(--header);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.16px;
    width: 100%;
    transition: all 0.4s ease-in-out;
}
.blog-details-wrapper .side-bar-2 .category ul li a:hover {
    background-color: var(--theme);
    color: var(--white);
}
.blog-details-wrapper .side-bar-2 .category ul li a a:last-child {
    margin-bottom: 0;
}
.blog-details-wrapper .side-bar-2 .category ul li:last-child {
    margin-bottom: 0;
}
.blog-details-wrapper .side-bar-3 {
    background-color: #EFEFEF;
    padding: 40px 30px;
}
.blog-details-wrapper .side-bar-3 .title-box {
    position: relative;
}
.blog-details-wrapper .side-bar-3 .title-box:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background-color: var(--header);
    bottom: -16px;
    left: 0;
}
.blog-details-wrapper .side-bar-3 .title-box:after {
    position: absolute;
    content: "";
    width: 63px;
    height: 2px;
    background-color: var(--theme);
    bottom: -16px;
    left: 30px;
}
.blog-details-wrapper .side-bar-3 .title-box .title {
    color: var(--header);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}
.blog-details-wrapper .side-bar-3 .single-post {
    display: flex;
    gap: 15px;
    align-items: end;
    padding: 20px 0;
    border-bottom: 1px solid rgba(134, 134, 134, 0.2);
}
.blog-details-wrapper .side-bar-3 .single-post .content span {
    color: var(--theme);
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-details-wrapper .side-bar-3 .single-post .content p {
    color: var(--header);
    font-size: 16px;
    font-weight: 700;
}
.blog-details-wrapper .side-bar-3 .single-post:last-child {
    border-bottom: 0;
}
.blog-details-wrapper .side-bar-4 {
    background-color: #EFEFEF;
    padding: 40px 30px;
}
.blog-details-wrapper .side-bar-4 .title-box {
    position: relative;
}
.blog-details-wrapper .side-bar-4 .title-box:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background-color: var(--header);
    bottom: -16px;
    left: 0;
}
.blog-details-wrapper .side-bar-4 .title-box:after {
    position: absolute;
    content: "";
    width: 63px;
    height: 2px;
    background-color: var(--theme);
    bottom: -16px;
    left: 30px;
}
.blog-details-wrapper .side-bar-4 .title-box .title {
    color: var(--header);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}
.blog-details-wrapper .side-bar-4 .tagcloud a {
    padding: 12px;
    display: inline-block;
    background-color: var(--white);
    color: var(--header);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    margin-right: 8px;
    margin-top: 16px;
    transition: all 0.4s ease-in-out;
}
.blog-details-wrapper .side-bar-4 .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white);
}

/*----------------------------------------*/
/*  2.8 Search Bar
/*----------------------------------------*/
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in-up {
    animation: tpfadeInUp 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in-down {
    animation: fadeInDown 1s ease-out;
}

.tp-header-search-bar {
    height: 400px;
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    transition: all 0.4s ease-in-out;
    -webkit-animation: 0.6s ease-in-out 0s normal none 1 running tpfadeInUp;
    animation: 0.6s ease-in-out 0s normal none 1 running tpfadeInUp;
}
.tp-header-search-bar.tp-search-open {
    top: 0;
    transition: all 0.4s ease-in-out;
    -webkit-animation: 0.6s ease-in-out 0s normal none 1 running tpfadeInDown;
    animation: 0.6s ease-in-out 0s normal none 1 running tpfadeInDown;
}

.contact-search-form-box form {
    position: relative;
}
.contact-search-form-box form button {
    position: absolute;
    right: 18px;
    top: 13px;
    font-size: 17px;
}

.tp-search-close {
    position: absolute;
    right: 50px;
    top: 35px;
    font-size: 50px;
    color: #222;
    font-weight: 300;
    width: 45px;
    height: 45px;
}

.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);
}
@media (max-width: 575px) {
    .offcanvas__info.info-open {
        width: 84%;
    }
}

.offcanvas__logo a img {
    width: 150px;
}

.offcanvas__wrapper {
    position: relative;
    height: 100%;
    padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
    color: black;
    margin-bottom: 20px;
}
.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: 600;
    text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
    color: black;
}
.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 span {
    text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .btn-read {
    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(--theme);
    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;
    }
}
.project-style-1 {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}
@media (max-width: 1600px) {
    .project-style-1 {
        padding-top: 80px;
        padding-bottom: 120px;
    }
}
@media (max-width: 1199px) {
    .project-style-1 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
@media (max-width: 991px) {
    .project-style-1 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
.project-style-1 .shape-1 {
    position: absolute;
    top: 0;
    left: 68px;
}
@media (max-width: 1280px) and (min-width: 1025px) {
    .project-style-1 .shape-1 {
        left: 0;
        width: 15%;
    }
}
@media (max-width: 991px) {
    .project-style-1 .shape-1 {
        left: 0;
        width: 18%;
    }
}
@media (max-width: 767px) {
    .project-style-1 .shape-1 {
        left: 0;
        width: 45%;
    }
}
.project-style-1 .slider-box {
    position: relative;
    cursor: pointer;
    margin-top: 60px;
}
.project-style-1 .slider-box img {
    width: 100%;
}
.project-style-1 .slider-box:hover .content {
    opacity: 1;
    visibility: visible;
    transform: translateY(-100%);
}
.project-style-1 .slider-box .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    background-color: var(--white);
    width: 95%;
    z-index: 22;
    padding: 26px 32px;
    left: 3px;
    transform: translateY(-120%);
    transition: all 0.4s ease-in-out;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    left: 0;
    visibility: visible;
    opacity: 1;
}
@media (max-width: 767px) {
    .project-style-1 .slider-box .content {
        padding: 15px 10px;
    }
}
.project-style-1 .slider-box .content:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    left: 0;
    background-color: var(--theme);
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease-in-out;
}
.project-style-1 .slider-box .content:after {
    position: absolute;
    content: "";
    left: 0;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 7.5px 0 7.5px 15px;
    border-color: transparent transparent transparent var(--theme);
    transform: rotate(0deg);
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease-in-out;
}
.project-style-1 .slider-box .content .icon {
    height: 55px;
    width: 55px;
    border: 1px solid rgba(85, 74, 74, 0.27);
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.07);
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    transition: all 0.4s ease-in-out;
}
.project-style-1 .slider-box .content .icon:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 0;
}
/* .project-style-1 .slider-box .content:hover:before, .project-style-1 .slider-box .content:hover:after {

} */
.project-style-1 .slider-box-2 {
    margin-bottom: -30px !important;
}
.project-style-1 .container {
    margin-top: 167px;
}
@media (max-width: 1199px) {
    .project-style-1 .container {
        margin-top: 120px;
    }
}
@media (max-width: 767px) {
    .project-style-1 .container {
        margin-top: 100px;
    }
}
@media (max-width: 991px) {
    .project-style-1 .space {
        margin-bottom: 70px;
    }
}
.project-style-1 .project-count-wrap {
    background-color: var(--white);
    position: relative;
    width: 100%;
    height: 159px;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #020E28;
    height: 100%;
    padding-bottom: 31px;
    transition: all 0.4s ease-in-out;
}
.project-style-1 .project-count-wrap:hover {
    border-color: #e52f41;
}
.project-style-1 .project-count-wrap:hover .icon {
    background-color: var(--theme);
}
.project-style-1 .project-count-wrap:hover .icon:before {
    left: 50%;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 16px 10px 0 10px;
    border-color: var(--theme) transparent transparent transparent;
}
.project-style-1 .project-count-wrap:hover .icon img {
    transform: rotateY(180deg);
}
.project-style-1 .project-count-wrap .icon {
    position: relative;
    background-color: var(--header);
    text-align: center;
    line-height: 100px;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 103px;
    transition: all 0.4s ease-in-out;
}
.project-style-1 .project-count-wrap .icon:before {
    position: absolute;
    content: "";
    bottom: -15px;
    left: 50%;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 16px 10px 0 10px;
    border-color: var(--header) transparent transparent transparent;
    transform: rotate(0deg);
    transform: translateX(-50%);
    transition: all 0.4s ease-in-out;
}
.project-style-1 .project-count-wrap .icon img {
    transition: all 0.4s ease-in-out;
}
.project-style-1 .project-count-wrap .content {
    text-align: center;
    margin-top: -36px;
}
.project-style-1 .project-count-wrap .content .counter-title {
    color: var(--header);
    font-size: 36px;
    font-weight: 700;
}
.project-style-1 .project-count-wrap .content .text {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
}
.project-style-1 .active {
    border-color: #e52f41;
}
.project-style-1 .active .icon {
    background-color: var(--theme);
}
.project-style-1 .active .icon:before {
    left: 50%;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 16px 10px 0 10px;
    border-color: var(--theme) transparent transparent transparent;
}

.project-style-2 {
    position: relative;
}
.project-style-2 .shape {
    position: absolute;
    bottom: 0;
    left: 0;
}
@media (max-width: 1600px) {
    .project-style-2 .shape {
        width: 11%;
    }
}
@media (max-width: 1199px) {
    .project-style-2 .shape {
        right: 0;
        left: auto;
        width: 20%;
    }
}
@media (max-width: 991px) {
    .project-style-2 .shape {
        display: none;
    }
}
.project-style-2 .items-left {
    margin-left: -25px;
}
@media (max-width: 1399px) {
    .project-style-2 .items-left {
        margin-left: 0;
    }
}
.project-style-2 .items-left .content p {
    margin-top: 20px;
    margin-bottom: 15px;
}
.project-style-2 .items-left .info .icon p {
    margin-top: -20px;
    margin-bottom: 30px;
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
}
.project-style-2 .items-left .telephone-icon {
    width: 56px;
    height: 56px;
    border: 1px solid var(--theme);
    line-height: 56px;
    text-align: center;
    color: var(--theme);
    font-size: 24px;
}
@media (max-width: 767px) {
    .project-style-2 .items-left .telephone-icon {
        margin: 30px 0;
    }
}
.project-style-2 .items-left .contact span {
    color: var(--header);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}
.project-style-2 .items-left .contact a {
    color: var(--header);
    font-size: 18px;
    font-weight: 600;
}
.project-style-2 .right-thumb {
    position: relative;
    display: flex;
    gap: 30px;
    padding-left: 26px;
}
@media (max-width: 1199px) {
    .project-style-2 .right-thumb {
        padding-left: 0;
    }
}
@media (max-width: 575px) {
    .project-style-2 .right-thumb {
        flex-wrap: wrap;
    }
}
@media (max-width: 767px) {
    .project-style-2 .right-thumb .img-1 {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }
}
@media (max-width: 575px) {
    .project-style-2 .right-thumb .img-1 {
        margin-top: 30px;
    }
}
.project-style-2 .right-thumb .img-2 {
    height: 450px;
    margin-top: 75px;
}
@media (max-width: 767px) {
    .project-style-2 .right-thumb .img-2 {
        width: 100%;
        margin-top: 0;
        object-fit: cover;
    }
}
@media (max-width: 450px) {
    .project-style-2 .right-thumb .img-2 {
        display: none;
    }
}
.project-style-2 .right-thumb .review {
    position: absolute;
    width: 265px;
    height: 126px;
    background-color: var(--theme2);
    padding: 24px;
    bottom: 0;
    left: 50%;
}
@media (max-width: 767px) {
    .project-style-2 .right-thumb .review {
        left: 0;
    }
}
.project-style-2 .right-thumb .review .author .client-img {
    margin-top: 14px;
}
.project-style-2 .right-thumb .review .author .client-img img {
    width: 40px;
    height: 40px;
    margin-right: -13px;
}
.project-style-2 .right-thumb .review .author .author-review span {
    color: var(--theme);
    font-size: 10px;
    line-height: 4;
}
.project-style-2 .right-thumb .review .author .author-review .text {
    color: var(--white);
    font-size: 13px;
    font-weight: 400;
    display: block;
    line-height: 0;
}
.project-style-2 .right-thumb .review .title {
    display: flex;
    align-items: center;
}
.project-style-2 .right-thumb .review .title .headeing {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-left: 4px;
}

.gt-margine {
    margin-top: 120px;
}
@media (max-width: 1600px) {
    .gt-margine {
        margin-top: 100px;
    }
}
@media (max-width: 1399px) {
    .gt-margine {
        margin-top: 100px;
    }
}
@media (max-width: 575px) {
    .gt-margine {
        margin-top: 0;
    }
}

.project-style-3 {
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 170px;
    padding-bottom: 286px;
    position: relative;
    z-index: 1;
}
@media (max-width: 1600px) {
    .project-style-3 {
        padding-bottom: 232px;
        padding-bottom: 200px;
    }
}
@media (max-width: 1399px) {
    .project-style-3 {
        padding-bottom: 179px;
    }
}
@media (max-width: 1199px) {
    .project-style-3 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
@media (max-width: 991px) {
    .project-style-3 {
        padding-bottom: 153px;
        padding-top: 0;
    }
}
.project-style-3 .author {
    position: absolute;
    top: 0;
    right: 100px;
}
@media (max-width: 1600px) {
    .project-style-3 .author {
        top: 0;
        right: 15px;
    }
}
@media (max-width: 1399px) {
    .project-style-3 .author {
        top: 87px;
        right: 74px;
    }
}
@media (max-width: 1199px) {
    .project-style-3 .author {
        bottom: -28%;
        left: 5%;
    }
}
@media (max-width: 991px) {
    .project-style-3 .author {
        display: none;
    }
}
.project-style-3 .author .client-img img {
    width: 40px;
    height: 40px;
    margin-right: -13px;
}
.project-style-3 .author .customer-info {
    margin-left: 30px;
}
@media (max-width: 1600px) {
    .project-style-3 .author .customer-info {
        margin-left: 108px;
    }
}
@media (max-width: 1399px) {
    .project-style-3 .author .customer-info {
        margin-left: 30px;
    }
}
.project-style-3 .author .customer-info span {
    color: var(--header);
    font-size: 20px;
    font-weight: 500;
    display: block;
}
@media (max-width: 1399px) {
    .project-style-3 .author .customer-info span {
        color: var(--white);
    }
}
.project-style-3 .author .customer-info .text {
    color: var(--header);
    font-size: 24px;
    font-weight: 600;
}
@media (max-width: 1399px) {
    .project-style-3 .author .customer-info .text {
        color: var(--white);
    }
}
@media (max-width: 991px) {
    .project-style-3 .project-content {
        padding-top: 30px;
    }
}
.project-style-3 .project-content p {
    margin-top: 10px;
    margin-bottom: 40px;
    color: var(--white);
}
@media (max-width: 575px) {
    .project-style-3 .project-content p {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}
.project-style-3 .project-content .btn-white-2 {
    padding: 14px 32px;
}
.project-style-3 .shipmant-info {
    background-color: var(--white);
    padding: 40px 24px;
}
@media (max-width: 1199px) {
    .project-style-3 .shipmant-info {
        margin-left: -76px;
    }
}
@media (max-width: 991px) {
    .project-style-3 .shipmant-info {
        margin-left: 0;
        margin-top: 30px;
    }
}
@media (max-width: 575px) {
    .project-style-3 .shipmant-info {
        padding: 30px 20px;
    }
}
.project-style-3 .shipmant-info .title {
    color: #000;
    font-size: 24px;
    font-weight: 500;
}
.project-style-3 .shipmant-info .inputbox {
    position: relative;
    margin-bottom: 24px;
    margin-top: 30px;
}
.project-style-3 .shipmant-info .inputbox input {
    padding-left: 50px;
    border: 1px solid #E6E6E6;
    background-color: transparent;
}
.project-style-3 .shipmant-info .inputbox img {
    position: absolute;
    left: 13px;
    top: 14px;
    width: 24px;
}
.project-style-3 .shipmant-info .selec-box {
    position: relative;
}
.project-style-3 .shipmant-info .selec-box img {
    position: absolute;
    left: 13px;
    top: 23px;
    width: 24px;
}
.project-style-3 .shipmant-info .selec-box .nice-select {
    padding-left: 50px;
    background-color: transparent;
    border: 1px solid #E6E6E6;
    position: relative;
}
.project-style-3 .shipmant-info .selec-box .nice-select:after {
    display: none;
}
.project-style-3 .shipmant-info .selec-box .nice-select.open:before {
    transform: rotate(-180deg);
}
.project-style-3 .shipmant-info .selec-box .nice-select:before {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: 14px;
    transition: all 0.2s ease-in-out;
    color: #020E28;
    font-size: 16px;
}
.project-style-3 .shipmant-info .btn-read {
    margin-top: 30px;
    width: 100%;
    padding: 14px 0;
}
@media (max-width: 575px) {
    .project-style-3 .shipmant-info .btn-read {
        margin-top: 0;
    }
}

.project-space {
    margin-top: 270px;
    padding-top: 0;
}

.slider-style-1 {
    padding-bottom: 110px;
}
@media (max-width: 1199px) {
    .slider-style-1 {
        padding-bottom: 100px;
    }
}
@media (max-width: 991px) {
    .slider-style-1 {
        padding-bottom: 50px;
    }
}
@media (max-width: 575px) {
    .slider-style-1 {
        padding: 50px 0;
    }
}
.slider-style-1 .text-slider {
    height: 100px;
    margin-right: 4px;
    color: #465a5c;
    font-size: 74px;
    font-style: normal;
    font-weight: 700;
    line-height: 90px;
}
@media (max-width: 1199px) {
    .slider-style-1 .text-slider {
        font-size: 50px;
    }
}
@media (max-width: 470px) {
    .slider-style-1 .text-slider {
        font-size: 45px;
    }
}
.slider-style-1 .text-slider #EC7216-item {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--theme);
}

@media (max-width: 575px) {
    .pt-space {
        padding-top: 0;
    }
}

.marquee-wrapper {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    z-index: 9;
}
.marquee-wrapper .marquee-inner {
    position: absolute;
    display: inline-flex;
    width: 200%;
}
.marquee-wrapper .marquee-list {
    float: left;
    width: 50%;
}
.marquee-wrapper .marquee-item {
    float: left;
    transition: animation 0.2s ease-out;
}
.marquee-wrapper .marquee-inner.to-left {
    animation: marqueeLeft 25s linear infinite;
}
@keyframes marqueeLeft {
    0% {
        left: 0;
    }
    100% {
        left: -100%;
    }
}
.marquee-wrapper .marquee-inner.to-right {
    animation: marqueeRight 25s linear infinite;
}
@keyframes marqueeRight {
    0% {
        right: 0;
    }
    100% {
        right: -100%;
    }
}

.breadcrumb-style-1 {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 300px;
    padding-bottom: 150px;
    position: relative;
}
@media (max-width: 1199px) {
    .breadcrumb-style-1 {
        padding-bottom: 100px;
        padding-top: 160px;
    }
}
@media (max-width: 991px) {
    .breadcrumb-style-1 {
        padding-bottom: 80px;
        padding-top: 160px;
    }
}
.breadcrumb-style-1 .shape {
    position: absolute;
    left: 0;
    top: 0;
}
@media (max-width: 1600px) {
    .breadcrumb-style-1 .shape {
        display: none;
    }
}
@media (max-width: 1399px) {
    .breadcrumb-style-1 .shape {
        bottom: 0;
        width: 12%;
    }
}
.breadcrumb-style-1:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(2, 14, 40, 0.75);
    top: 0;
    left: 0;
}
.breadcrumb-style-1 .breadcrumb-title {
    color: var(--white);
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 1;
}
@media (max-width: 991px) {
    .breadcrumb-style-1 .breadcrumb-title {
        font-size: 50px;
    }
}
@media (max-width: 575px) {
    .breadcrumb-style-1 .breadcrumb-title {
        font-size: 45px;
    }
}
.breadcrumb-style-1 .breadcrumb-list {
    position: relative;
    z-index: 111;
    display: flex;
    justify-content: center;
    gap: 6px;
}
.breadcrumb-style-1 .breadcrumb-list a {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    transition: all 0.4s ease-in-out;
}
.breadcrumb-style-1 .breadcrumb-list a:hover {
    color: white;
}
.breadcrumb-style-1 .breadcrumb-list i {
    color: var(--white);
}

.padding-top-bottom {
    padding-top: 60px;
    padding-bottom: 120px;
}
@media (max-width: 1199px) {
    .padding-top-bottom {
        padding-top: 20px;
        padding-bottom: 100px;
    }
}
@media (max-width: 991px) {
    .padding-top-bottom {
        padding-top: 20px;
        padding-bottom: 80px;
    }
}
.padding-top-bottom .pagination {
    display: flex;
    align-items: center;
}
@media (max-width: 575px) {
    .padding-top-bottom .pagination {
        flex-wrap: wrap;
        gap: 15px;
        margin-left: 8px;
    }
}
.padding-top-bottom .pagination .page-links-previous {
    padding: 5px 16px;
    color: var(--header);
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    border: 1px solid #E6E6E6;
    margin-right: 20px;
}
.padding-top-bottom .pagination .page-links {
    padding: 5px 17px;
    color: var(--header);
    font-size: 14px;
    font-weight: 600;
    margin-right: 8px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}
.padding-top-bottom .pagination .active {
    border: 1px solid var(--theme);
    background: #EFEFEF;
}
.padding-top-bottom .pagination .page-links-next {
    background-color: var(--theme);
    display: inline-block;
    padding: 6px 13px;
    color: var(--white);
}

.portfolio-details-wrapper .portfolio-details-widget .image-1 {
    margin-bottom: 30px;
}
.portfolio-details-wrapper .portfolio-details-widget .widget-title {
    color: var(--header);
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.portfolio-details-wrapper .portfolio-details-widget p {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}
.portfolio-details-wrapper .portfolio-details-widget .widget-link {
    margin-top: 25px;
    margin-bottom: 35px;
}
@media (max-width: 767px) {
    .portfolio-details-wrapper .portfolio-details-widget .widget-link {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}
@media (max-width: 575px) {
    .portfolio-details-wrapper .portfolio-details-widget .widget-link {
        margin-top: 5px;
    }
}
.facility-list li{
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    line-height: 36px;
}
.facility-list li i {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    color: var(--theme);
    font-weight: 500;
    border-radius: 100%;
    text-align: center;
    line-height: 20px;
    font-size: 10px;
    margin-right: 10px;
}
.portfolio-details-wrapper .portfolio-details-widget .widget-thumb {
    margin-bottom: 26px;
}
.portfolio-details-wrapper .portfolio-details-widget .widget-thumb img {
    max-width: 100%;
}
.portfolio-details-wrapper .portfolio-details-info {
    background-color: #EFEFEF;
}
@media (max-width: 767px) {
    .portfolio-details-wrapper .portfolio-details-info {
        margin-top: 30px;
    }
}
.portfolio-details-wrapper .portfolio-details-info .info-title {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.48px;
    text-transform: capitalize;
    background-color: var(--theme);
    padding: 20px 0;
    text-align: center;
}
.portfolio-details-wrapper .portfolio-details-info .portfolio-table {
    padding: 0 38px 30px 30px;
}
.portfolio-details-wrapper .portfolio-details-info .portfolio-table table {
    width: 100%;
}
.portfolio-details-wrapper .portfolio-details-info .portfolio-table table tbody tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E6E6E6;
}
.portfolio-details-wrapper .portfolio-details-info .portfolio-table table tbody tr td {
    color: var(--header);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    padding: 22px 0;
}
.portfolio-details-wrapper .portfolio-details-info .portfolio-table .social-links {
    display: flex;
    gap: 28px;
    margin-top: 20px;
    justify-content: center;
}
.portfolio-details-wrapper .portfolio-details-info .portfolio-table .social-links span {
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.3px;
}
.portfolio-details-wrapper .portfolio-details-info .portfolio-table .social-links .icons {
    display: flex;
    gap: 16px;
}
.portfolio-details-wrapper .portfolio-details-info .portfolio-table .social-links .icons a {
    transition: all 0.4s ease-in-out;
}
.portfolio-details-wrapper .portfolio-details-info .portfolio-table .social-links .icons a:hover {
    color: var(--theme);
}
.portfolio-details-wrapper .portfolio-details-info .portfolio-table .social-links .icons .active {
    color: var(--theme);
}

.shop-style-1 .shop-box-left {
    background: #EFEFEF;
    padding: 30px;
    margin-bottom: 30px;
}
@media (max-width: 1199px) {
    .shop-style-1 .shop-box-left {
        padding: 15px;
    }
}
.shop-style-1 .shop-box-left .input-box {
    position: relative;
}
.shop-style-1 .shop-box-left .input-box input {
    background-color: var(--white);
    border: 1px solid #EFEFEF;
}
.shop-style-1 .shop-box-left .input-box input::-webkit-input-placeholder {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}
.shop-style-1 .shop-box-left .input-box input:-moz-placeholder {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}
.shop-style-1 .shop-box-left .input-box input::-moz-placeholder {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}
.shop-style-1 .shop-box-left .input-box input:-ms-input-placeholder {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}
.shop-style-1 .shop-box-left .input-box span {
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 15px;
    color: var(--theme);
    font-size: 20px;
}
.shop-style-1 .filter-range-slider .price-range .slider-product-sorting {
    border-radius: 0;
    background: var(--white);
    border: 1px solid #EC7216 !important;
    margin-bottom: 10px;
    height: 7px;
}
.shop-style-1 .filter-range-slider .price-range .slider-product-sorting .ui-slider-range {
    background-color: #EC7216;
    height: 7px;
    border-radius: 0;
}
.shop-style-1 .filter-range-slider .price-range .slider-product-sorting .ui-slider-handle {
    height: 15px;
    width: 15px;
    background-color: var(--theme2);
    border: 0 !important;
    top: -5px;
    cursor: pointer;
    transition: none;
    border-radius: 100%;
    outline: none;
    margin-left: -4px;
}
.shop-style-1 .filter-range-slider .price-range input {
    color: #020E28;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    background: var(--white);
}
.shop-style-1 .filter-range-slider .price-range input:focus {
    border: 0;
}
.shop-style-1 .filter-range-slider .price-range button:focus {
    outline: 0;
}
.shop-style-1 .categories ul li a {
    display: inline-block;
    color: #868686;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}
.shop-style-1 .categories ul li a i {
    margin-right: 10px;
}
.shop-style-1 .filter-color table {
    width: 100%;
}
.shop-style-1 .filter-color table tbody tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.shop-style-1 .filter-color table tbody tr td {
    display: flex;
    align-items: center;
    color: #868686;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}
.shop-style-1 .filter-color table tbody tr td i {
    width: 18px;
    height: 18px;
    border-radius: 100%;
    display: inline-block;
    margin-right: 6px;
}
.shop-style-1 .filter-color table tbody tr td .black {
    background-color: #000;
}
.shop-style-1 .filter-color table tbody tr td .green {
    background-color: #1DE925;
}
.shop-style-1 .filter-color table tbody tr td .blue {
    background-color: blue;
}
.shop-style-1 .filter-color table tbody tr td .read {
    background-color: #F10101;
}
.shop-style-1 .filter-color table tbody tr td .yellow {
    background-color: #F0A003;
}
.shop-style-1 .filter-color table tbody tr td .browwn {
    background-color: #A46810;
}
.shop-style-1 .filter-color table tbody tr td .white {
    background-color: #fff;
}
.shop-style-1 .product-status ul li a {
    display: inline-block;
    color: #868686;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}
.shop-style-1 .product-status ul li a i {
    margin-right: 10px;
}
.shop-style-1 .filter-size table {
    width: 100%;
}
.shop-style-1 .filter-size table tbody tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.shop-style-1 .filter-size table tbody tr td {
    display: flex;
    align-items: center;
    color: #868686;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}
.shop-style-1 .review {
    background: #EFEFEF;
    padding: 30px;
    padding-right: 53px;
}
.shop-style-1 .review table {
    width: 100%;
}
.shop-style-1 .review table tbody tr {
    display: flex;
    justify-content: space-between;
}
.shop-style-1 .review table tbody tr td input[type=checkbox] {
    accent-color: #EC7216;
}
.shop-style-1 .review table tbody tr td label i {
    color: #F26B01;
    margin-left: 2px;
}
.shop-style-1 .product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 575px) {
    .shop-style-1 .product-details {
        flex-wrap: wrap;
        gap: 15px;
    }
}
.shop-style-1 .product-details .selec-box {
    margin-bottom: 30px;
}
@media (max-width: 575px) {
    .shop-style-1 .product-details .selec-box {
        margin-bottom: 0;
    }
}
.shop-style-1 .product-details .selec-box .nice-select {
    background-color: #EFEFEF;
    padding-left: 15px;
    padding-right: 38px;
    position: relative;
}
.shop-style-1 .product-details .selec-box .nice-select .focus {
    background-color: #f6f6f6;
    color: #868686;
}
.shop-style-1 .product-details .selec-box .nice-select:after {
    display: none;
}
.shop-style-1 .product-details .selec-box .nice-select.open:before {
    transform: rotate(-180deg);
}
.shop-style-1 .product-details .selec-box .nice-select:before {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: 14px;
    transition: all 0.2s ease-in-out;
    color: #868686;
    font-size: 16px;
}
.shop-style-1 .product-details .selec-box .nice-select span {
    padding: 20px 15px;
}
.shop-style-1 .product-items .singele-card-item {
    border: 1px solid #E6E6E6;
    text-align: center;
    margin-bottom: 30px;
}
.shop-style-1 .product-items .singele-card-item .card-image img {
    transition: all 0.4s ease-in-out;
    max-width: 100%;
}
.shop-style-1 .product-items .singele-card-item .card-content {
    padding: 30px 40px;
}
@media (max-width: 1199px) {
    .shop-style-1 .product-items .singele-card-item .card-content {
        padding: 30px 15px;
    }
}
@media (max-width: 575px) {
    .shop-style-1 .product-items .singele-card-item .card-content {
        padding-top: 0;
    }
}
.shop-style-1 .product-items .singele-card-item .card-content .rating i {
    color: #F7921E;
    width: 11px;
    display: inline-block;
    margin-right: 6px;
}
.shop-style-1 .product-items .singele-card-item .card-content span {
    color: #868686;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    display: inline-block;
    margin-bottom: 12px;
}
.shop-style-1 .product-items .singele-card-item .card-content .btn-read {
    padding: 6px 26px;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.shop-style-1 .product-items .singele-card-item:hover .card-image img {
    animation: icon-bounce 0.8s 1;
}
.shop-style-1 .product-items .pagination {
    display: flex;
    align-items: center;
}
.shop-style-1 .product-items .pagination .page-links-previous {
    padding: 5px 16px;
    color: var(--header);
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    border: 1px solid #E6E6E6;
    margin-right: 20px;
}
.shop-style-1 .product-items .pagination .page-links {
    padding: 5px 17px;
    color: var(--header);
    font-size: 14px;
    font-weight: 600;
    margin-right: 8px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}
.shop-style-1 .product-items .pagination .active {
    border: 1px solid var(--theme);
    background: #EFEFEF;
}
.shop-style-1 .product-items .pagination .page-links-next {
    background-color: var(--theme);
    display: inline-block;
    padding: 6px 13px;
    color: var(--white);
}
.shop-style-1 .product-single-items {
    border: 1px solid #E6E6E6;
    margin-bottom: 30px;
}
@media (max-width: 1199px) {
    .shop-style-1 .product-single-items {
        padding-bottom: 30px;
    }
}
.shop-style-1 .product-single-items .product-thumb {
    overflow: hidden;
    background-color: #EFEFEF;
    margin: 12px;
}
.shop-style-1 .product-single-items .product-thumb img {
    max-width: 100%;
    transition: all 0.4s ease-in-out;
}
.shop-style-1 .product-single-items .product-content {
    padding-left: 25px;
}
.shop-style-1 .product-single-items .product-content .rating {
    font-size: 12px;
    color: #F7921E;
}
.shop-style-1 .product-single-items .product-content span {
    display: inline-block;
    margin: 15px 0;
}
.shop-style-1 .product-single-items .product-content .btn-read {
    padding: 6px 26px;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.shop-style-1 .product-single-items:hover .product-thumb img {
    transform: scale(1.1);
}
.shop-style-1 .pagination {
    display: flex;
    align-items: center;
}
@media (max-width: 575px) {
    .shop-style-1 .pagination {
        flex-wrap: wrap;
        gap: 15px;
        margin-left: 8px;
        margin-top: 0;
    }
}
.shop-style-1 .pagination .page-links-previous {
    padding: 5px 16px;
    color: var(--header);
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    border: 1px solid #E6E6E6;
    margin-right: 20px;
}
.shop-style-1 .pagination .page-links {
    padding: 5px 17px;
    color: var(--header);
    font-size: 14px;
    font-weight: 600;
    margin-right: 8px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}
.shop-style-1 .pagination .active {
    border: 1px solid var(--theme);
    background: #EFEFEF;
}
.shop-style-1 .pagination .page-links-next {
    background-color: var(--theme);
    display: inline-block;
    padding: 6px 13px;
    color: var(--white);
}

.shop-details-wrapper .product-thumb {
    padding: 36px 98px;
    background: #EFEFEF;
}
.shop-details-wrapper .product-thumb img {
    max-width: 100%;
}
.shop-details-wrapper .product-details .title .product-title {
    color: var(--header);
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.shop-details-wrapper .product-details .rating {
    display: flex;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid #E6E6E6;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.shop-details-wrapper .product-details .rating i {
    color: #F7921E;
    font-size: 15px;
}
.shop-details-wrapper .product-details .rating span {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}
.shop-details-wrapper .product-details p {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
.shop-details-wrapper .product-details .quantity-wrap {
    display: flex;
    gap: 23px;
    align-items: center;
    margin: 40px 0;
}
.shop-details-wrapper .product-details .quantity-wrap span {
    color: var(--header);
    font-size: 16px;
    font-weight: 400;
}
.shop-details-wrapper .product-details .quantity-wrap .quantity {
    position: relative;
    width: 98px;
    height: 53px;
    border: 1px solid #E6E6E6;
    background: var(--white);
}
.shop-details-wrapper .product-details .quantity-wrap .quantity .input-text {
    background-color: transparent;
    border-right: 1px solid #E6E6E6;
    width: 64%;
    height: 100%;
    padding: 0;
    text-align: center;
    color: #020E28;
    font-size: 16px;
    font-weight: 700;
}
.shop-details-wrapper .product-details .quantity-wrap .quantity .qty-button {
    position: absolute;
    color: #868686;
    font-size: 20px;
}
.shop-details-wrapper .product-details .quantity-wrap .quantity .inc {
    right: 0;
    top: 0;
    width: 34px;
    height: 26px;
    text-align: center;
    line-height: 26px;
}
.shop-details-wrapper .product-details .quantity-wrap .quantity .dec {
    right: 0;
    bottom: 0;
    width: 34px;
    height: 26px;
    text-align: center;
    line-height: 26px;
    border-top: 1px solid #E6E6E6;
}
.shop-details-wrapper .product-details .buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.shop-details-wrapper .product-details .buttons .btn-box .btn-read {
    padding: 14px 29px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
}
@media (max-width: 575px) {
    .shop-details-wrapper .product-details .buttons .btn-box .btn-read {
        padding: 14px 20px;
    }
}
.shop-details-wrapper .product-details .buttons .btn-box .btn-nblue {
    padding: 14px 27px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
}
.shop-details-wrapper .product-details .social-info {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    align-items: center;
}
.shop-details-wrapper .product-details .social-info .text span {
    display: inline-block;
    color: #868686;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}
.shop-details-wrapper .product-details .social-info .social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    color: #868686;
    border: 1px solid #E6E6E6;
    margin-right: 10px;
}
.shop-details-wrapper .product-details .social-info .social a:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 0;
}
.shop-details-wrapper .product-details .social-info .social .active {
    background-color: var(--theme);
    color: var(--white);
    border: 0;
}
.shop-details-wrapper .product-content .product-discription {
    padding-bottom: 50px;
    padding-top: 30px;
    border-bottom: 1px solid #E6E6E6;
    margin-bottom: 52px;
}
.shop-details-wrapper .product-content .product-discription .product-title-b {
    margin-bottom: 10px;
}
.shop-details-wrapper .product-content .product-discription p {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
.shop-details-wrapper .product-content .client-review .product-title-b {
    margin-bottom: 50px;
}
.shop-details-wrapper .product-content .client-review .client-coment-box {
    gap: 20px;
    border-bottom: 1px solid #E6E6E6;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
@media (max-width: 575px) {
    .shop-details-wrapper .product-content .client-review .client-coment-box {
        flex-wrap: wrap;
    }
}
.shop-details-wrapper .product-content .client-review .client-coment-box .comments .coment-rate {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}
.shop-details-wrapper .product-content .client-review .client-coment-box .comments .coment-rate span {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
}
.shop-details-wrapper .product-content .client-review .client-coment-box .comments .coment-rate i {
    font-size: 15px;
    color: #F7921E;
    margin-left: 9px;
}
.shop-details-wrapper .product-content .coment-box p {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
}
.shop-details-wrapper .product-content .coment-box .rate {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 12px;
}
.shop-details-wrapper .product-content .coment-box .rate span {
    color: var(--header);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}
.shop-details-wrapper .product-content .coment-box .rate i {
    color: var(--theme);
    font-size: 15px;
}
.shop-details-wrapper .product-content .coment-box form {
    margin-top: 12px;
}
.shop-details-wrapper .product-content .coment-box form .input-box input {
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    background-color: transparent;
    border-bottom: 1px solid #E6E6E6;
    padding-left: 0;
}
.shop-details-wrapper .product-content .coment-box form .input-box input::-webkit-input-placeholder {
    color: #868686;
    font-size: 14px;
}
.shop-details-wrapper .product-content .coment-box form .input-box input:-moz-placeholder {
    color: #868686;
    font-size: 14px;
}
.shop-details-wrapper .product-content .coment-box form .input-box input::-moz-placeholder {
    color: #868686;
    font-size: 14px;
}
.shop-details-wrapper .product-content .coment-box form .input-box input:-ms-input-placeholder {
    color: #868686;
    font-size: 14px;
}
.shop-details-wrapper .product-content .coment-box form textarea {
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    margin-top: 30px;
    background-color: #EFEFEF;
}
.shop-details-wrapper .product-content .coment-box form textarea::-webkit-input-placeholder {
    color: #868686;
    font-size: 14px;
}
.shop-details-wrapper .product-content .coment-box form textarea:-moz-placeholder {
    color: #868686;
    font-size: 14px;
}
.shop-details-wrapper .product-content .coment-box form textarea::-moz-placeholder {
    color: #868686;
    font-size: 14px;
}
.shop-details-wrapper .product-content .coment-box form textarea:-ms-input-placeholder {
    color: #868686;
    font-size: 14px;
}
.shop-details-wrapper .product-content .coment-box form .btn-box button {
    margin-top: 30px;
    padding: 14px 22px;
}

.chekout-wrapper .chekout-form .section-24-black {
    margin-bottom: 25px;
}
.chekout-wrapper .chekout-form .input-box {
    margin-bottom: 17px;
}
.chekout-wrapper .chekout-form .input-box label {
    margin-bottom: 10px;
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}
.chekout-wrapper .chekout-form .input-box input {
    padding: 18px 20px;
}
.chekout-wrapper .chekout-form .input-box input::-webkit-input-placeholder {
    color: #726B7D;
    font-size: 14px !important;
    font-weight: 400;
    text-transform: capitalize;
    padding-left: 20px;
    padding-right: 69px;
}
.chekout-wrapper .chekout-form .input-box input:-moz-placeholder {
    color: #726B7D;
    font-size: 14px !important;
    font-weight: 400;
    text-transform: capitalize;
    padding-left: 20px;
    padding-right: 69px;
}
.chekout-wrapper .chekout-form .input-box input::-moz-placeholder {
    color: #726B7D;
    font-size: 14px !important;
    font-weight: 400;
    text-transform: capitalize;
    padding-left: 20px;
    padding-right: 69px;
}
.chekout-wrapper .chekout-form .input-box input:-ms-input-placeholder {
    color: #726B7D;
    font-size: 14px !important;
    font-weight: 400;
    text-transform: capitalize;
    padding-left: 20px;
    padding-right: 69px;
}
.chekout-wrapper .chekout-form .selec-box span {
    margin-bottom: 10px;
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    display: inline-block;
}
.chekout-wrapper .chekout-form .selec-box .nice-select span {
    color: #726B7D;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}
.chekout-wrapper .chekout-form .selec-box .nice-select:after {
    display: none;
}
.chekout-wrapper .chekout-form .selec-box .nice-select:before {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: 14px;
    transition: all 0.2s ease-in-out;
    color: #020E28;
    font-size: 16px;
}
.chekout-wrapper .chekout-form .selec-box .nice-select.open:before {
    transform: rotate(-180deg);
}
.chekout-wrapper .order-summery .section-24-black {
    padding-bottom: 25px;
    margin-top: 35px;
}
.chekout-wrapper .order-summery table {
    width: 100%;
}
.chekout-wrapper .order-summery table thead tr {
    border-bottom: 1px solid #E5E5E5;
    border-top: 1px solid #E5E5E5;
}
.chekout-wrapper .order-summery table thead tr th {
    color: #020E28;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 25px 0;
}
.chekout-wrapper .order-summery table tbody tr td {
    padding-top: 20px;
}
.chekout-wrapper .order-summery table tbody tr .space {
    padding-bottom: 20px;
}
.chekout-wrapper .order-summery table tfoot tr td {
    color: var(--theme);
    font-size: 16px;
    font-weight: 700;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #E5E5E5;
}
.chekout-wrapper .checkout-address {
    margin-top: 49px;
}
.chekout-wrapper .checkout-address .section-24-black {
    margin-bottom: 14px;
}
.chekout-wrapper .checkout-address .add-line-1 {
    padding: 20px 56px 101px 20px;
    background-color: #EFEFEF;
    margin-bottom: 30px;
}
.chekout-wrapper .checkout-address .add-line-2 {
    padding: 30px 40px 30px 30px;
    background-color: #EFEFEF;
}
.chekout-wrapper .checkout-address .add-line-2 .title {
    color: var(--header);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    display: flex;
    align-items: center;
}
.chekout-wrapper .checkout-address .add-line-2 .title img {
    margin-right: 15px;
}
.chekout-wrapper .checkout-address .add-line-2 p {
    color: #726B7D;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 10px;
    margin-bottom: 30px;
    padding-left: 34px;
}
.chekout-wrapper .checkout-address .add-line-2 .btn-box .btn-read {
    margin-top: 79px;
    padding: 14px 39px;
}

.main-cart-wrapper {
    border-radius: 5px;
}
.main-cart-wrapper .btn-read {
    line-height: 1;
}
.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-info .shop-title {
    font-size: 20px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    color: var(--header);
}
.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-price-2 {
    color: var(--header);
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-price-2 .total-prices {
    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;
    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 .quantity-basket .qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    padding: 10px 20px;
    line-height: 1;
    justify-content: space-between;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .quantity-basket .qty button,
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .quantity-basket .qty input {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-weight: 400;
    font-size: 22px;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .quantity-basket .qty input {
    text-align: center;
    border-radius: 0;
    border: unset;
    outline: none;
}
.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;
    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 .btn-read {
    min-width: 160px;
    font-weight: 600;
}
.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;
}
.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;
    }
}/*# sourceMappingURL=main.css.map */



@media( min-width:991px ){
    .pos-card-date{
        background: rgb(50, 50, 50);
        width:200px;
        height: auto;
        padding: 20px;
        position: absolute;
        bottom: 5%;
        right: 12%;
        border-radius: 8px;
    }

    .d-head-none {
        display: grid;
        height: 200px;
    }
}

@media( max-width:991px ){
    .pos-card-date{
        background: rgb(50, 50, 50);
        margin-top: 30px;
        height: auto;
        padding: 20px;
        border-radius: 8px;
    }

    .d-head-none {
        display: none;
    }
}

.icon-card{
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin-right: 20px !important;
}

.service-wrapper>.shape-1{
    opacity: 0.2;
    z-index: 1;
}

.text-location{
    z-index: 100;
}

/* Default border radius */

.border-radius {
    border-radius: var(--default-border);
}

/* Default Bg */
.section-2-bg::after {
    background-image: url(assets/img/bg/section-infor.webp);
    background-size: cover;
    background-position: center center;
}


.section-3-bg  {

    background-image: url(assets/img/bg/avg.webp);
    background-size: cover;
    background-position: center center;
}

@media (max-width: 575px) {
    .main-header .header-area .header-logo img {
        position: absolute;
        top: 29px;
        left: 8px;
    }
}

/* location */

.point-ab {
    position: absolute;
    font-size: 16px;
    font-weight: 600;
}

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

/* Popup - modal  */

/* Overlay Background */
.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    padding: 20px;
}

.popup-overlay.show {
    visibility: visible;
    opacity: 1;
}

/* Popup Box */
.popup-box {
    position: relative;
    background: white;
    color: #000;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
    animation: slideIn 0.4s ease-out;
}

.popup-content{
    padding: 30px 40px;
}

@keyframes slideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.popup-box h2 {
    margin: 0 0 15px;
    font-size: 22px;
}

.popup-box p {
    font-size: 16px;
    margin-bottom: 25px;
}

.cta-button {
    background-color: var(--theme);
    color: white;
    padding: 12px 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    width: 100%;
}

/* Close Button inside popup-box */
.close-btn {
    position: absolute;
    top: -11px;
    right: -10px;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    background-color: #eee;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.2s;
}

.close-btn:hover {
    background-color: #ccc;
}

/* Responsive Tweaks */
@media (max-width: 575px) {
    .popup-content {
        padding: 25px 20px;
    }

    .popup-box h2 {
        font-size: 25px;
    }

    .popup-box p {
        font-size: 16px;
    }

    .cta-button {
        font-size: 16px;
        padding: 10px 15px;
    }

    .close-btn {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}
/* // Add some CSS for the notifications (add this to your stylesheet) */

.notification {
    position: fixed;
    bottom: 100px;
    right: 800px;
    padding: 15px 20px;
    border-radius: 5px;
    color: white;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.notification.success {
    background-color: #4CAF50;
}

.notification.error {
    background-color: #F44336;
}

.notification .icon {
    font-weight: bold;
    margin-right: 10px;
}

.notification .close-btn {
    margin-left: 15px;
    cursor: pointer;
    font-weight: bold;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
