@charset "UTF-8";

/*---Google Fonts---*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Questrial&family=Rubik:ital,wght@0,300..900;1,300..900&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

:root {
    --thm-font: 'Sansation', sans-serif;
    /* Headings */
    --thm-b-font:  'Sansation', sans-serif;
    /* Body font */
    --thm-icon-font: "FontAwesome";
    /* --thm-icon-font: "Font Awesome 5 Pro"; */
    /*Icon Font*/
    --thm-color-one: #0C80B0;
    --thm-color-two: #044560;
    --thm-color-three: #fff;
    --thm-color-four: #000000;
    /*Light Color*/
    --thm-color-light: #f7f7f7;
    /*RGB Colors*/
    --thm-color-one-rgb: 14, 223, 126;
    --thm-color-two-rgb: 0, 0, 0;
    --thm-color-three-rgb: 237, 241, 245;
    --thm-color-four-rgb: 0, 0, 0;
    /*Light Color*/
    --thm-color-light-rgb: 247, 247, 247;
    /*Theme Colors*/
    --thm-body-color: #2C2C2C;
    /*Body Colors*/
    --thm-white: #ffffff;
    /*White Color*/
    --thm-border: #d1d1d1;
    --thm-text: #050556;
    /*Border Color*/
}

/*Animations*/

@keyframes fadeHeaderInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/*General*/
::selection {
    background: var(--thm-color-one);
    color: var(--thm-white);
}

i[class^="flaticon-"],
i[class*=" flaticon-"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--thm-body-color);
    font-size: 16px;
    line-height: 1.8;
    background-color: #fff;
    font-weight: 400;
    overflow-x: hidden;
    counter-reset: sectionCounter;
}

.relative {
    position: relative;
}

.thm-font {
    font-family: var(--thm-font);
}


.section-padding {
    position: relative;
    padding: 80px 0;
}

.section-padding.section {
    padding-bottom: 50px;
}

.image-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-fit-contain {
    width: 70%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.transform-center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0%, -50%);
    z-index: 1;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before {
    font-size: inherit;
    margin: 0;
}

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

ul li {
    margin-bottom: 0;
    position: relative;
}
li a {
    text-decoration: none;
}

button:focus,
*:focus {
    outline: none;
}

button {
    background: transparent;
    border: none;
    padding: 0;
}

label {
    margin-bottom: 10px;
    font-weight: 500;
    line-height: normal;
    color: #000;
}

label>a {
    font-size: 14px;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
    transition: 0.5s;
}

select {
    appearance: auto;
    border: none;
    color: #b7b7b7;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.container-wide .row {
    flex-wrap: unset;
}

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

.z-2 {
    position: relative;
    z-index: 2;
}
.section-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

.section-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

/*section-title*/

/*
.header.can-sticky {
    border-bottom: 2px solid #2656DB;
}*/
.section-header {
    max-width: 550px;
    padding-bottom: 30px;
    margin: 0 auto 0 0;
    text-align: left;
    position: relative;
}

.section-header .section_count {
    margin-bottom: 0;
    font-size: 50px;
    font-weight: 600;
    color: var(--thm-color-one);
    line-height: 1.5;
}

.section-header .section_count:before {
    counter-increment: sectionCounter;
    content: "0"counter(sectionCounter);
}

.section-header .title {
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    font-size: 36px;
    margin-bottom: 0px;
}

.section-header .text {
    margin-bottom: 0;
}

.section-header.text-center {
    margin: 0 auto;
}

.section-header.text-center .title {
    justify-content: center;
}

.lh-normal {
    line-height: normal;
}

hr {
    margin: 30px 0;
    border-color: var(--thm-border);
}

blockquote {
    background-color: #fff;
    position: relative;
    padding: 30px;
    padding-top: 0;
    border-left: 4px solid var(--thm-color-one);
    border-radius: 10px;
    border-bottom: 2px solid #e2dcdc;
}

blockquote .quote_icon {
    width: 50px;
    height: 50px;
    background: var(--thm-color-one);
    color: var(--thm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    font-size: 16px;
    margin-right: 0;
    position: absolute;
    left: 0;
    top: 0;
}

blockquote .quote_title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--thm-color-two);
    font-style: italic;
}

blockquote .quote_author {
    font-size: 18px;
    color: var(--thm-color-one);
    display: flex;
    align-items: center;
}

blockquote .quote_author:before {
    content: '';
    width: 40px;
    height: 3px;
    background-color: var(--thm-color-two);
    margin-right: 20px;
    display: inline-flex;
}

/*Slick Arrows*/

.slick-arrow:hover {
    color: var(--thm-white) !important;
    background-color: var(--thm-color-one);
    border-color: inherit !important;
}

.slick-arrow:before {
    content: "\f053";
    font-family: var(--thm-icon-font);
    font-weight: 500;
    font-size: 16px;
}

.slick-arrow.slick-next:before {
    content: "\f054";
}
.slick-arrow.slick-prev:before {
    content: "\f053";
}
.slick-arrow {
    background: var(--thm-color-one);
    position: absolute;
    top: 48%;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 35px;
    height: 35px;
    color: #fff;
    border-radius: 5px;
    font-size: 0;
    transition: 0.5s all;
    border: 2px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slick-prev.slick-arrow {
    left: -35px;
}
.slick-next.slick-arrow {
    right: -35px;
/*    left: 0;*/
}



.slick-arrow.slick-prev:hover {
    border: 2px solid var(--thm-color-one);
    background-color:transparent;
    color: var(--thm-color-one) !important;
}
.slick-arrow.slick-prev:hover:before {
    color: var(--thm-color-one);
}
.slick-arrow.slick-prev:focus {
    border: 2px solid var(--thm-color-one);
    background-color: #fff;
    color: var(--thm-color-one);
}
.slick-arrow.slick-prev:focus:before {
    color: var(--thm-color-one);
}

.slick-arrow.slick-next:hover {
    border: 2px solid var(--thm-color-one);
    background-color: transparent;
    color: var(--thm-color-one) !important;
}
.slick-arrow.slick-next:hover:before {
    color: var(--thm-color-one);
}
.slick-arrow.slick-next:focus {
    border: 2px solid var(--thm-color-one);
    background-color: #fff;
    color: var(--thm-color-one);
}
.slick-arrow.slick-next:focus:before {
    color: var(--thm-color-one);
}

/*Slick Dots*/

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.slick-dots li {
    padding: 0;
    line-height: 0;
}

.slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #C7C7C7;
    margin: 0 3px;
    transition: 0.6s all;
    border: 0px solid #C7C7C7;
}

.slick-dots li.slick-active button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--thm-color-one);
    border: 0px solid var(--thm-color-one);
    position: relative;
}

.slick-dots li.slick-active button:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--thm-color-one);
    position: absolute;
    top: -5px;
    left: -5px;
    opacity: 0;
}

/*pagination*/
.pagination {
    justify-content: center;
    margin-top: 20px;
    /* margin-bottom: 15px; */
    border-radius: 0;
    flex-wrap: wrap;
}

.pagination .page-item {
    margin: 0px 7px 15px;
}

.post_details .post_navigation .nav_item, .pagination .page-item .page-link {
    border: 2px solid ;
    color: #000;
    border-radius: 5px;
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
}

.post_details .post_navigation .nav_item:hover,
.pagination .page-item .page-link.active,
.pagination .page-item.active .page-link,
.pagination .page-item:focus .page-link,
.pagination .page-item:hover .page-link {
    background-color: var(--thm-color-one);
    border: 1px solid var(--thm-color-one);
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--thm-font);
    color: var(--thm-color-four);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--thm-color-two);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 25px;
    font-weight: 600;
}
h1 {
    font-size: 40px;
}
h2 {
    font-size: 32px;
}
h3 {
    font-size: 28px;
    line-height: 1.2;
}
h4 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
}
h5 {
    font-size: 20px;
    line-height: 1.3;
}
h6 {
    font-size: 16px;
    line-height: 1.7;
}
p {
    margin-bottom: 25px;
    color: #323232;
    font-size: 14px;
    line-height: 1.3;
}
a {
    color: var(--thm-body-color);
    transition: .3s all;
    display: inline-block;
    text-decoration: none;
}

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

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
a:hover,
a:focus {
    color: var(--thm-color-one);
    text-decoration: none;
}

/*Tables*/
table {
    margin-bottom: 30px;
}

table th,
table td {
    padding: 15px 40px;
    vertical-align: middle;
    background-color: var(--thm-white);
}

table th {
    font-weight: 500;
    color: var(--thm-color-two);
    font-size: 16px;
    border: 1px solid var(--thm-border);
}

table {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

table td {
    border: 1px solid var(--thm-border);
}

table img {
    width: 40px;
    border-radius: 0;
}

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

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

.mb-xl-60 {
    margin-bottom: 60px;
}
.whislist-table {
    overflow: auto;
}
.order-title {
    color: #000;
}

/*Forms*/
.form-control:focus {
    box-shadow: none;
}

.form_style label {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--thm-white);
}

.form_style .form-control {
    background-color: transparent;
    border: none;
    padding: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--thm-color-one);
    border-radius: 0;
}

.form_style .form-control:focus {
    box-shadow: none;
    border: none;
    border-bottom: 2px solid var(--thm-color-one);
}

.form_style .form-control,
.form_style .form-control::placeholder {
    color: var(--thm-white);
    text-transform: uppercase;
    font-size: 22px;
    line-height: 1;
    height: auto;
    font-weight: 500;
}

.form_style.style_two .form-control,
.form_style.style_two .form-control::placeholder {
    color: var(--thm-body-color);
    text-transform: none;
    font-size: 16px;
    font-weight: 500;
}
.text-custom-black {
    color: #000;
}
/*Buttons*/
.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: transparent;
    border:  transparent;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn:focus {
    background: transparent;
    border: none;
    box-shadow: none;
    color: var(--thm-body-color);
}
.btn:hover {
    background-color: transparent;
}
.thm-btn:hover i, .thm-btn:focus i {
    color: var(--thm-color-one);
    font-size: 26px;
}
.thm-btn:hover, .thm-btn:focus {
    color: #fff;
    background-color: #000 !important;
    justify-content: center;
}
.thm-btn {
    color: #fff;
    background-color: var(--thm-color-two);
    border: 1px solid  var(--thm-color-two);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    padding: 6px 15px;
    transition: 0.5s all;
    font-weight: 400;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
    gap: 7px;
    overflow: hidden;
}
.thm-btn .button_title {
    display: inline-block;
    overflow: hidden;
}
.thm-btn.light-btn {
background-color: var(--thm-color-one);
    border: 1px solid  var(--thm-color-one);
}
.thm-btn .btn_letters {
    display: inline-block;
    line-height: 1em;
}

.thm-btn.btn-border {
    background-color: var(--thm-white);
}
.thm-btn i {
    font-size: 19px;
    line-height: normal;
    color: #050556;
}

.thm-btn.btn-rounded {
    border-radius: 50px;
}

.thm-btn.btn-rectangle {
    border-radius: 8px;
}

.thm-btn.btn-small {
    padding: 4px 15px;
}
.thm-btn-two {
    background: #FFE0D0;
    padding: 2px 15px;
    border-radius: 6px;
    color: #FF7A33;
    border: 1px solid;
    font-size: 14px;
    font-weight: 600;
    transition: 0.5s all;
}
.thm-btn-two:hover  {
    background-color: #000;
    color: #fff;
}

/*Colors*/
.thm-color-one {
    color: var(--thm-color-one);
}

.thm-color-two {
    background: var(--thm-color-two);
}

.thm-color-three {
    color: var(--thm-color-three);
}

.thm-color-four {
    color: var(--thm-color-four);
}

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

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

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

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

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

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/*Preloader*/
.preloader {
    background-color: var(--thm-color-one);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-wrap h1 {
    letter-spacing: 15px;
    font-size: 65px;
    font-weight: 600;
    color: #fff;
}

/*---------------------------------------*/
/*------header start------*/
/* .menu-item a:hover {
    transform: translateX(5px);
} */
.active {
    color: var(--thm-color-one) !important;
}
.header-logo {
    padding: 10px 0;
}

.menu-top-bar {
    display: flex;
    align-items: center;
    justify-content: end;
}
.menu-icon {
    display: flex;
    justify-content: end;
    align-items: center;
}
.btn.btn-primary {
    width: 50px;
    height: 35px;
    /* margin-right: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all;
}

.btn.btn-primary i {
    transition: 0.5s all;
}

.btn.btn-primary i:hover {
    color: var(--thm-color-one);
}

/*------header end------*/

.main-menu {
    display: flex;
    justify-content: center;
    /* width: 100%; */
}
.menu-item a {
    color: #fff;
    padding: 18px 10px;
    font-size: 14px;
    font-weight: 400;
    /* padding-bottom: 0; */
    /* padding-top: 0; */
}
nav.navigation {
    width: 100%;
    text-align: center;
    justify-content: end;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    gap: 80px;
    /* padding-top: 46px; */
    /* background: #006038; */
    border-radius: 30px;
    padding: 0 16px;
    margin: 17px 0;
}
.header.sticky {
    animation-name: fadeHeaderInDown;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0;
    z-index: 22 !important;
    background: #fff;
    animation-duration: 1s;
    box-shadow: 0 0 8px rgb(0 0 0 / 10%);
    animation-fill-mode: both;
}
.navigaation-warpper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.header .menu-item a:hover {
    color: var(--thm-color-one) !important;
}
/*-----navigation start-----*/
.header .navigation .menu-item-has-children {
    position: relative;
}
.header .navigation .menu-item-has-children>a:after {
    content: "\f078";
    font-family: var(--thm-icon-font);
    margin-left: 10px;
}
.header .navigation .menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transition: 0.5s all;
    width: 215px;
    visibility: hidden;
    opacity: 0;
    background-color: var(--thm-color-one);
    padding: 2px;
}
.header .navigation .menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    z-index: 11;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item a {
    padding: 0;
    width: 100%;
    padding: 10px 10px;
    border-bottom: 1px solid;
    transition: 0.5s all;
    background-color: var(--thm-color-one);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item:hover a {
    background-color: #fff;
    color: #000 !important;
}
.header .navigation .menu-item-has-children .sub-menu.menu-item:hover a {
    
}
.header .navigation .menu-item-has-children .sub-menu .menu-item>a {
    color: var(--thm-white);
    display: flex;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item:hover {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>a:after {
    position: absolute;
    right: 15px;
    transform: rotate(-90deg);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: 100%;
    top: 0;
}
.header .header_action {
    margin-left: 15px;
}
.header.sticky .navigation .menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: 100%;
    top: 0;
}
/*-----hamburger start------*/
.hamburger {
  display: none;
}
.hamburger-btn span{
    background: #fff;
    margin-bottom: 5px;
    display: flex;
    position: relative;
    width: 25px;
    height: 2px;
    transition: 0.5s all;
}
.hamburger-btn span:last-child {
    margin-bottom: 0;
}
.hamburger-btn.active span:first-child {
    transform: rotate(45deg);
    top: 4px;
}
.hamburger-btn.active span:nth-child(2) {
    display: none;
}
.hamburger-btn.active span:last-child {
    transform: rotate(-45deg);
    top: -3px;
}
/*-----hamburger end------*/
.header-search {
    position: relative;
    width: 85%;
}
.header-search i {
    position: absolute;
    left: 14px;
    top: 29%;
}
.header-search input {
    padding: 10px 10px;
    padding-left: 40px;
    border-radius: 30px;
    border-color: #8E8E93;
}
.header {
    background: transparent;
    position: fixed;
    z-index: 99;
    /* border-bottom: 1px solid #A3131366; */
    width: 100%;
    top: 0;
}
.logo img {
    width: 205px;
}
.stat-select {
    color: #4C8EFF;
    font-size: 14px;
    margin-bottom: 15px;
}
.header-profile .profile-icon {
    background: var(--thm-color-one) !important;
    color: #fff;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s all;
}
.header-profile .profile-icon:hover {
    background-color: #000 !important;
}
.advanced-card img {
    width: 270px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}
.header-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}
a.profile-icon {
    color: #fff;
}
.profile-main {
    position: relative;
    padding: 16px 0;
    transition: 0.5s all;
}
.profile-main:hover .profile-dropdown {
    display: block;
    width: 200px;
    transition: 0.5s all;
    display: block;
}
.header-right .thm-btn {
    background: var(--thm-color-two);
    border-color: transparent;
    color: #fff;
}
.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0%;
    background: #fff;
    border-radius: 0;
    width: 0px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: none;
    transition: 0.5s all;
}
ul.user-list-header {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
ul.user-list-header li a {
    color: #696B67;
    display: flex;
    align-items: center;
    gap: 11px;
    transition: 0.5s all;
}
ul.user-list-header li a i {
    color: #F1624B;
}
.user-list-header li a:hover {
    color: var(--thm-color-one);
}
.user-name {
    display: flex;
    align-items: center;
    padding: 15px 14px;
    background: var(--thm-color-one);
    color: #fff;
    gap: 15px;
    border-radius: 15px 15px 0 0;
}
.user-full-name {
    color: #fff;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75%;
}
.user-sort-name {
    background: #fff;
    color: var(--thm-color-one);
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-right {
    /* padding-top: 25px; */
    display: flex;
    align-items: center;
    gap: 15px;
}




/*--------banner start------*/
.banner-bg {
    height: 850px;
    width: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    z-index: 0;
    /* border-radius: 20px; */
    display: flex !important;
    align-items: center;
}
.thm-btn.thm-one-btn {
    background: var(--thm-color-one);
    border-color: var(--thm-color-one);
}
.banner-title {
    font-size: 60px;
    color: #fff;
    padding-top: 20px;
}
.overlay:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.5;
    z-index: -1;
}
.banner-text p {
    color: #fff;
    font-size: 23px;
}
.banner-sm {
    background-color: #fff !important;
}
.banner-sm:before {
    background-color: var(--thm-color-one) !important; 
    outline: 4px solid #f7efca !important;
}
.heading-top-sm {
    background: #FEF3D7;
    color: #1E1600;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    font-family: Lora;
    position: relative;
    padding-left: 40px;

}
.heading-top-sm:before {
    position: absolute;
    content: '';
    top: 39%;
    background-color: var(--thm-color-two);
    left: 17px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    outline: 4px solid #cacbf7;
}
.banner-btn {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.thm-text {
    color: var(--thm-text);
}
.banner-text p:first-child {
    font-size: 16px;
    text-decoration: underline;
}
.header-banner {
    background: #0C80B0;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.header-banner i {
    color: #fff;
    font-size: 36px;
}
.header-banner p {
    color: #fff;
    font-size: 24px;
    margin-bottom: 0;
}
.banner-form-body {
    background: #fff;
    padding: 30px;
    margin: 15px;
    margin-top: 0;
    border-radius: 0 0 10px 10px;
}
.banner-form-body .form-control {
    background: #565656;
    color: #fff;
}
.banner-form-body .form-control::placeholder {
    color: #fff;
}

.banner-text.slick-slide.slick-current.slick-active h2 {
    display: block;
}
@keyframes marquee {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }

.animate-marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 16px 0;
    border-top: 1px solid #fff;
    background: #FFF9EB;
    margin-top: 90px;
}
.marquee-text {
    color: #B58203;
    font-size: 18px;
    font-weight: 500;
    margin: 0 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 28px;
}
.banner-title h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 500;
}

.banner-slider .slick-dots {
    position: absolute;
    right: 50%;
    bottom: 0;
}
.banner-slider .slick-dots li button {
    background-color: transparent;
    width: 10px;
    height: 10px;
    border: 1px solid  var(--thm-color-two);
}
.banner-slider .slick-dots li.slick-active button {
    background-color: var(--thm-color-two);
    border: 1px solid  var(--thm-color-two);
}
.banner-slider .slick-dots li.slick-active button:before {
    width: 25px;
    height: 25px;
    opacity: 0;
}
.btn-sm {
    padding: 4px 16px;
    font-size: 14px;
}
/*--------banner end------*/

/*--------footer start-----*/
.footer {
    background: #181818;
    padding-bottom: 0px;
    /* border-top: 1px solid #34495E66; */
    margin-top: 100px;
}
.ft-logo img {
    width: 160px;
    margin-bottom: 20px;
}
.ft-left p {
    color: #323232;
}
.follow-icon i {
    color: #fff;
    transition: 0.5s all;
    cursor: pointer;
    z-index: 1;
    font-size: 16px;
}
.follow-icon i:hover {
    color: var(--thm-color-one);
}
.ft-left p {
    font-size: 14px;
}
.ft-list li {
    line-height: 1.3;
    padding-bottom: 15px;
    font-size: 14px;
}
.ft-title p {
    color: #000;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 400;
    /* border-bottom: 1px solid; */
    display: inline-block;
    /* font-family: 'Poppins'; */
}
.ft-item li:hover {
    color: var(--thm-color-one);
}
.ft-item li {
    transition: 0.5s all;
    cursor: pointer;
    font-weight: 500;
    color: #b7b7b7;
}
.custom-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.ft-title {
    margin-bottom: 20px;
    font-size: 22px;
    color: #fff;
}
.copyright p {
    margin-bottom: 0;
    text-align: center;
    color: #141310;
    font-size: 15px;
    font-weight: 500;
}
.copyright p a {
    color: #141310;
}
.copyright {
    padding: 20px 0;
    border-top: 1px solid #A4A4A4;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #FEE7AF; */
    color: #fff;
    font-size: 14px;
    margin-top: 55px;
}
.ft-list li a {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 300;
}
.ft-list li a:hover {
    color: var(--thm-color-one);
}
.ft-mail-box {
    border: 1px solid #8E8E93;
    border-radius: 30px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 3px;
    width: 75%;
}
.ft-mail-box input {
    border: 0;
    width: 100%;
    padding-left: 15px;
    border-radius: 30px;
}

.ft-social-icon li a {
    transition: 0.5s all;
}
.ft-left {
    background-color: #fff;
    padding: 20px;
    border-radius: 0 0 10px 10px;
}
.ft-social-icon {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    background: var(--thm-color-one);
    padding: 10px;
    border-radius: 10px 10px 0 0;
}
.ft-social-icon li i {
    color: #fff;
    width: 33px;
    height: 33px;
    background: var(--thm-color-one);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.5s all;
}
.ft-social-icon li:hover i {
    color: #fff;
    background: var(--thm-color-two);
}
.ft-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.ft-payment-image {
    width: 58%;
}
.ft-payment-image ul {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}
.ft-bottom-list {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 15px 25px;
    border-radius: 20px 20px 0 0;
    margin-top: 20px;
    background: var(--thm-color-one);
    flex-wrap: wrap;
}
ul.ft-bottom-list li a {
    color: #fff;
    transition: 0.5s all;
    font-size: 15px;
}
ul.ft-bottom-list li:hover a {
    color: #000;
}


/*--------footer end-----*/

/*back to top*/
#back-top {
    text-align: center;
    display: none;
}
#back-top a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    text-align: center;
    line-height: 40px;
    border: var(--thm-color-one) solid 1px;
    color: #ffffff;
     background: var(--thm-color-one);
    transition-duration: 0.3s;
    font-size: 22px;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0 10px;
    position: fixed;
    z-index: 100;
    bottom: 20px;
    right: 20px;
    transition: 0.5s all;
}

#back-top a:hover {
    background: #fff;
    color: var(--thm-color-one);
    /* transform: rotate(360deg); */
}

/*----subheader star----*/
.subheader {
    position: relative;
    background-image: url(../images/subheader.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 0;
}
.subheader:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    opacity: 0.5;
}
.subheader-title {
    text-align: center;
    display: inline;
    background: #fff;
    padding: 10px 26px;
    border-radius: 10px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    color: var(--thm-color-two);
}
.subheader-title h1 {
    color: #fff;
    margin-bottom: 5px;
}
.breadcrumb {
    display: flex;
    list-style: none;
    justify-content: left;
}

.form-group .form-control {
    width: 100%;
    padding: 10px 10px;
    margin-bottom: 0px;
    border: 1px solid #0C80B00D;
    border-radius: 5px;
    font-family: sans-serif;
    font-size: 14px;
    background: #0C80B00D;
}
 input:focus {
    border-color: var(--thm-color-one);
}
.form-control:focus {
    border-color: var(--thm-color-one);
}

 textarea:focus {
    border-color: var(--thm-color-one);
}

/*----------cart start----------*/
tbody tr td:hover {
    background-color: #f7f7f7;
}
tbody tr td {
    border: 0;
    transition: 0.5s all;
    padding: 35px 15px;
}
tbody tr {
    border: 2px solid #e7e7e7;
    margin-bottom: 20px;
}
thead th {
    border: 0;
}

thead tr {
    border: 2px solid #dedada;
}
/* Scrolling animation */
@keyframes scroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}
.section-heading {
    text-align: center;
    display: flex;
    align-items: end;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}
.seeall-btn {
    position: absolute;
    right: 0;
    bottom: 0;
}
.section-heading a:hover {
    color: #000;
}
.section-heading h2 {
    color: #000;
    margin-bottom: 7px;
    font-size: 36px;
    font-weight: 600;
    text-align: left;
}

.color-one {
    color: var(--thm-color-two);
}
.color-two {
    color: #F1624B !important; 
}
.breadcrumb li {
    margin: 0 5px;
    color: #fff;
}

.breadcrumb li a {
    text-decoration: none;
    color: #fff;
}

.breadcrumb li a:hover {
    text-decoration: underline;
    color: var(--thm-color-one);
}

.breadcrumb li::after {
    content: "/";
    margin-left: 5px;
    color: #fff;
}

.breadcrumb li:last-child::after {
    content: "";
}

.breadcrumb li:last-child a {
    color: #fff;
    pointer-events: none;
    cursor: default;
}

/* --------------inner page css------------------------------- */
.section-hedding h2 {
    color: var(--thm-color-one);
    font-weight: 500;
    font-style: italic;
}
/* ------------------css inner page------------------------------------ */

/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00603866;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Popup Box */
.popup-content {
    background: #fff;
    padding: 4px;
    width: 900px;
    height: 580px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}
.bg-popup {
    height: 100%;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    width: 100%;
}
.back-image {
    height: 100%;
    width: 100%;
    background-image: url(../images/bg.jpg);
    background-repeat: no-repeat;
    z-index: 0;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0 0 10px;
}
.login-box {
    padding: 45px;
}
.skip-text {
    position: absolute;
    top: 8%;
    right: 30px;
    color: #F1624B;
    border-bottom: 1px solid;
}
/* Close Button */
.close-btn {
    position: absolute;
    top: 4px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 99;
}
/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.login-title {
    position: relative;
    text-align: center;
    padding-bottom: 10px;
    font-size: 25px;
    color: #000;
    display: inline-block;
    border-bottom: 2px solid #696B6766;
}

.login-box .form-group label {
    text-align: left;
    display: block;
}
.otp-inputs {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    margin: auto;
    justify-content: center;
    margin-bottom: 30px;
}

.otp-box {
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 24px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
}

.otp-box:focus {
  border-color: var(--thm-color-one);
  box-shadow: 0 0 5px rgba(246, 194, 96, 0.5);
}
.gender-selector {
    display: flex;
    gap: 20px;
    justify-content: left;
    margin-top: 20px;
    margin-bottom: 30px;
}

.gender-option {
    width: 80px;
    height: 80px;
    background-color: #e0e0e0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gender-option i {
    font-size: 20px;
    margin-bottom: 5px;
}

.gender-option.active {
    background-color: black;
    color: white !important;
}

.gender-option span {
    font-size: 14px;
}
#onboarding .popup-content {
    padding: 20px;
}
.thm-btn.bg-light {
    color: var(--thm-color-one);
    background: #fff;
    border: 1px solid ;
}
.details-add-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.main-image {
    width: 100%;
    border-radius: 10px;
    height: 490px;
    object-fit: cover;
}
.product-info h3 {
    margin-bottom: 0;
}
.product-info p {
    margin-bottom: 0;
}
.product-info {
  text-align: center;
  margin-top: 10px;
  background: #ffe4d1;
  padding: 15px;
  border-radius: 10px;
}
.thumb-slider {
    width: 100%;
    margin-top: 20px;
}
.thumb-slider .swiper-slide {
    width: 123px !important;
    height: 123px;
    margin-right: 0 !important;
    cursor: pointer;
}
.thumb-slider .thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #E7E7E7;
    transition: border 0.3s;
}
.product-details-image {
    position: relative;
    border: 2px solid #EFEFEF;
    border-radius: 20px;
}
.thumb-slider .swiper-slide-thumb-active .thumb {
  border-color: var(--thm-color-one);
}

.product-slider-wrapper {
    /* display: flex; */
    flex-direction: row-reverse;
    gap: 20px;
}
.thumb-slider .swiper-wrapper {
    flex-direction: row;
    /* width: 147px; */
    gap: 10px;
}

.product-details {
  /* max-width: 600px; */
  margin: auto;
}

.category {
  font-size: 14px;
  margin-bottom: 5px;
}

.title {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}

.brand {
    font-size: 14px;
    margin-bottom: 5px;
}
.brand-name {
  font-weight: bold;
}
.rating i {
color: var(--thm-color-one);
}
.share-btn i {
    background: #FFE4D6;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    flex-wrap: wrap;
}
.share-btn {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
}

.price-box {
  margin-top: 10px;
  font-size: 18px;
}
.current-price {
    color: #000;
}
.old-price {
    text-decoration: line-through;
    margin: 0 8px;
    color: #888;
    font-size: 14px;
}
.discount {
    font-size: 14px;
    margin: 0 10px;
    color: #F1624B;
}
.tax-info {
  font-size: 14px;
}
.offers h6 {
    margin-bottom: 10px;
}
.offers p {
    margin-bottom: 8px;
    background: #fff;
    padding: 6px 15px;
    border-radius: 10px;
}
.offers {
  background: #f4f4f4;
  padding: 10px;
  border-radius: 6px;
  margin: 15px 0;
  font-size: 14px;
}
.qty-cart {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.box-list {
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.quantity {
    display: flex;
    align-items: center;
    border: 1px solid #B0B0B0;
    border-radius: 10px;
    width: fit-content;
}
.qty-btn {
    background: #eee;
    border: none;
    color: #696B67;
    padding: 5px 13px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 10px 0 0 10px;
}
.quantity input {
    width: 46px;
    text-align: center;
    border: 0px solid #ccc;
    margin: 0 5px;
    color: var(--thm-color-one);
    font-size: 16px;
}
.qty-btn.border-raduis {
    border-radius: 0 10px 10px 0;
}
.add-to-cart, .buy-now {
    padding: 8px 50px;
    border: none;
    cursor: pointer;
}

.buy-now {
  background: var(--thm-color-one);
  color: #fff;
}
.details-add-btn .thm-btn {
    font-weight: 400;
}
.weight-flower {
  margin: 20px 0;
}
.weight-flower .label {
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}
.options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
 .option {
    padding: 6px 12px;
    border: 1px solid #ccc;
    /* background: #f2f2f2; */
    border-radius: 10px;
    cursor: pointer;
    color: #B0B0B0;
}
 .option.active {
  background: #ffeadf;
  color: #F1624B !important;
  border-color: #F1624B;
}
.delivery-box {
    /* background: #f4f4f4;
    padding: 15px;
    border-radius: 10px; */
    margin-bottom: 25px;
}
.delivery-type {
    padding: 0;
    background: #fff;
    border-radius: 10px;
    /* border: 1px solid #A31313; */
    display: flex;
    margin-bottom: 25px;
}
.delivery-type input {
    width: 90%;
    border: 0px solid #ccc;
    border-radius: 20px;
}
.check-btn {
    padding: 6px 30px;
    margin-left: 0;
    border: none;
    /* background: #A31313; */
    color: #F1624B;
    cursor: pointer;
    border-radius: 0 7px 7px 0;
}
.delivery-service-list {
    list-style: disc !important;
    margin: 15px 0 0;
    font-size: 14px;
    color: #000;
    padding-left: 30px;
}
.delivery-service-list li {
    padding-bottom: 8px;
    color: #696B67;
}
.dashboard {
  display: flex;
}
.tab-left-side.edit-form-open {
    width: 300px;
}
.sidebar {
    width: 300px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    background: #C9FFE9;
    height: fit-content;
    border: 2px solid #E7E7E7;
}
.tab-btn {
    padding: 8px 12px;
    text-align: left;
    color: #696B67;
    border: none;
    background: #fff;
    border-left: 3px solid transparent;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
}
.tab-btn.active {
    color: var(--thm-color-one) !important;
    background: #C9FFE9;
    /* border-left: 3px solid var(--thm-color-two); */
}

.tab-btn.logout {
  color: #F1624B;
}
.tab-content {
    margin-left: 20px;
    flex: 1;
    border: 1px solid #E7E7E7;
    border-radius: 20px;
}
.tab-content-body {
    padding: 20px;
}
.tab-title {
    border-bottom: 1px solid #E7E7E7;
    padding: 20px;
    font-size: 20px;
    margin-bottom: 0;
}
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.profile-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.profile-box .info {
    color: #696B67;
}
.cart-items p {
    display: flex;
    align-items: center;
    gap: 5px;
}
.profile-box .avatar {
    width: 50px;
    height: 50px;
    background: #fff;
    color: #ff6f00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    border: 1px solid;
}
.editBtn {
   transition: 0.5s all;
}
.editBtn:hover {
    color: #000;
}
.edit-link {
  margin-left: auto;
  color: var(--thm-color-one);
  font-size: 14px;
  text-decoration: none;
}
.edit-form-box {
  display: none;
  margin-top: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 5px #ccc;
}
.form-group label {
  margin-bottom: 5px;
}
.order-card {
    background: #fff;
    border-radius: 15px;
    /* box-shadow: 0 0 4px #ddd; */
    display: flex;
    padding: 15px;
    margin-bottom: 15px;
    gap: 15px;
    border: 1px solid #DBDCDB;
}
.edit-form-box .form-group {
    margin-bottom: 0;
}
.edit-form-box .form-group label {
    font-weight: 400;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.order-details {
  flex: 1;
}
.user-sort {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: var(--thm-color-two);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.product-title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 6px;
    color: #222222;
    line-height: 1.3;
}
.price {
    font-size: 16px;
    margin-bottom: 8px;
    color: #000;
}
.product-top {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: space-between;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.qty-control button {
  padding: 4px 10px;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}

.qty-control input {
  width: 30px;
  text-align: center;
  padding: 4px;
}

.order-actions {
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-size: 13px;
  margin-bottom: 8px;
}
.track {
    color: #006038;
    text-decoration: none;
    white-space: nowrap;
}
.reorder {
    color: #F1624B;
    text-decoration: none;
    /* display: flex; */
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.product-img {
    width: 20%;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 7px; */
}

.delivered {
  color: #00BF5B;
  /* font-weight: bold; */
  font-size: 16px;
}

.cancelled {
    color: #D8000C;
    /* font-weight: bold; */
    font-size: 16px;
}

.delivery-status {
  font-size: 13px;
  color: var(--thm-color-one);
}
.address-header-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    border-bottom: 1px solid #E7E7E7;
    padding: 15px;
}

.add-address {
    color: #F1624B;
    padding: 0 15px;
}

.address-list {
    /* display: flex; */
    gap: 20px;
    flex-wrap: wrap;
    padding: 15px;
}
.saved-addresses {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
}
.address-card p {
    margin-bottom: 10px;
    font-size: 14px;
}
.address-card {
    background: #fff;
    border: 1px solid #E7E7E7;
    border-radius: 8px;
    padding: 15px;
    /* width: calc(50% - 10px); */
    /* box-shadow: 0 0 5px rgba(0,0,0,0.05); */
    position: relative;
    margin-bottom: 20px;
}

.address-card.selected {
  border: 2px solid var(--thm-color-one);
}
.edit-form-box .form-group label {
    color: #696B67;
}
.color-red {
    color: red;
}
.address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rating span {
    font-size: 16px;
    color: #696B67;
}
.select-btn {
  margin-top: 10px;
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  background: #B0B0B0;
  color: #fff;
  cursor: pointer;
}

.selected-btn {
  background: var(--thm-color-one);
  color: #fff;
}
.rating i {
    color: #F1624B;
}

/* ------------cart css------------------ */

.address-card.checkout-address.selected {
    background: #FFF4EE;
    border-color: #FF7A33;
}
.select-add.selected-check {
    color: #FF7A33;
}
 .offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transform: translateX(100%); /* start off-screen */
    transition: transform 0.4s ease;
    z-index: 999;
    padding: 20px;
}

.offcanvas.show {
    transform: translateX(0); /* slide in */
}

.backdrop {
    position: fixed;
    inset: 0;
    background-color: #918c8c5c;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 998;
}

.backdrop.show {
    opacity: 1;
    visibility: visible;
}
.coupon-modal {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #918c8c5c;
  justify-content: center;
  align-items: center;
}
.coupon-modal-content {
    background: white;
    padding: 20px 30px;
    width: 450px;
    border-radius: 15px;
    text-align: center;
    font-size: 18px;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}
.text-left {
    text-align: left;
}
/* -------loader------------------------ */
.loader-wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: var(--thm-color-one);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}.pl {
	display: block;
	width: 6.25em;
	height: 6.25em;
}
.pl__ring, .pl__ball {
	animation: ring 2s ease-out infinite;
}
.pl__ball {
	animation-name: ball;
}

/* Animation */
@keyframes ring {
	from {
		stroke-dasharray: 0 257 0 0 1 0 0 258;
	}
	25% {
		stroke-dasharray: 0 0 0 0 257 0 258 0;
	}
	50%, to {
		stroke-dasharray: 0 0 0 0 0 515 0 0;
	}
}
@keyframes ball {
	from, 50% {
		animation-timing-function: ease-in;
		stroke-dashoffset: 1;
	}
	64% {
		animation-timing-function: ease-in;
		stroke-dashoffset: -109;
	}
	78% {
		animation-timing-function: ease-in;
		stroke-dashoffset: -145;
	}
	92% {
		animation-timing-function: ease-in;
		stroke-dashoffset: -157;
	}
	57%, 71%, 85%, 99%, to {
		animation-timing-function: ease-out;
		stroke-dashoffset: -163;
	}
}
.custom-accordion .accordion-button {
  background: #fff;
  color: #000;
  font-weight: 600;
  box-shadow: none;
  border: none;
  padding: 12px 0;
}

.custom-accordion .accordion-button::after {
  display: none;
}

.custom-accordion .icon {
  transition: transform 0.3s;
}
.accordion-item {
    border: 0;
    border-top: 1px solid #EFEFEF !important;
    border-radius: 0 !important;
    padding-top: 8px;
}
.accordion-collapse.collapse.show {
    background: #EFEFEF;
}
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.25);
    justify-content: center;
    align-items: center;
  }
  
  /* Modal Content */
  .modal-content {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    width: 400px;
    max-width: 95vw;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    position: relative;
    animation: fadeIn 0.2s;
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  
.close-btn {
    position: absolute;
    top: 0;
    right: 18px;
    background: none;
    border: none;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}
  
  .modal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    justify-content: left;
}
  
.modal-label {
    font-weight: 400;
    font-size: 17px;
    margin-right: 0;
    margin-bottom: 0;
}
  
  .stars {
    display: flex;
    gap: 2px;
    font-size: 16px;
    color: #F1624B;
    cursor: pointer;
  }
  .stars i {
    color: #F1624B;
    transition: color 0.2s;
  }
  .stars i.inactive {
    color: #ccc;
  }
  
.testi-content {
    width: 100%;
}
.testimonial-card p {
    color: #000;
    font-size: 14px;
    margin-bottom: 0;
}
.testimonial-card.slick-slide.slick-current.slick-active {
    transform: scale(1.2);
}
.about-image img {
    border-radius: 10px;
    box-shadow: 0px 0px 7px 0px #00000040;
}
.about-image {
    position: relative;
}
.about-sm-image {
    position: absolute;
    top: 70px;
    right: 0px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    justify-content: center;
}
.about-perra p {
    font-size: 15px;
    color: #323232;
}
l.about-highlights {
    color: #323232;
    font-size: 15px;
}
.about-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
}
.about-highlights li i {
    background: var(--thm-color-two);
    color: #fff;
    font-size: 12px;
    border-radius: 5px;
    padding: 5px;
}
.stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 60px 20px;
}

.stat-box {
    position: relative;
    text-align: center;
    padding: 40px;
    color: var(--thm-color-two);
    margin: 30px;
}

.stat-box h2 {
  font-size: 36px;
  font-weight: bold;
  margin: 0 0 10px;
  color: var(--thm-color-two);
}

.stat-box p {
  margin: 0;
  font-size: 14px;
  color: var(--thm-color-two);
}

.corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--thm-color-two);
  border-style: solid;
}

.corner.top-left {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

.corner.bottom-right {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
}
.offer-image img {
    border-radius: 10px;
    /*background: #00000066;*/
    width: 100%;
    height: 220px;
}
.offer-card {
    position: relative;
    margin-bottom: 20px;
}
.offer-text p {
    font-size: 14px;
}
.offer-perra {
    /* background: var(--thm-color-one); */
    padding: 20px;
    background: #fff;
    margin: 0 15px;
    text-align: center;
    border-radius: 0 0 10px 10px;
    margin-top: -40px;
    z-index: 1;
    position: relative;
    box-shadow: 0px 2px 4px 0px #00000040;
    transition: 0.5s all;
}
.offer-icon img {
    width: 30px;
    height: 35px;
    border-radius: 0;
    object-fit: cover;
}
.offer-icon {
    position: absolute;
    right: 15px;
    /*border-radius: 10px;*/
    bottom: 40px;
    background: var(--thm-color-one);
    width: 60px;
    height: 60px;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s all;
    color: #fff;
}
.offer-card:hover .offer-perra {
     background: var(--thm-color-one);
}
.offer-card:hover .offer-perra h5 {
    color: #fff;
}
.offer-card:hover .offer-perra p {
    color: #fff;
}
.offer-perra h5 {
    margin-bottom: 10px;
    /* color: #fff; */
    font-family: 'Inter', sans-serif;
}
.offer-perra p {
    margin-bottom: 0;
    /* color: #fff; */
    font-size: 14px;
     display: -webkit-box;
    width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.offer-image {
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.offer-image:before  {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000066;
    border-radius: 10px;
}
.choose-left img {
    border-radius: 10px;
    box-shadow: 0px 0px 7px 0px #00000040;
}
.feature-box {
    background: #0C80B00D;
    border-radius: 10px;
    align-items: center;
}
.feature-box .icon {
    background: #0445601A;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--thm-color-two);
    font-weight: 700;
}
.feature-box-item p {
    font-size: 14px;
}
.choose-left img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.client-main {
    box-shadow: 0px 0px 10px 0px #00000033;
    padding: 26px;
    margin: 0 20px;
    border-radius: 15px;
    background: #fff;
    text-align: center;
    z-index: 0;
    padding-top: 60px;
    width: 800px;
    margin: auto;
    margin-top: 60px;
    margin-bottom: 20px;
    margin-left: 34px;
    margin-right: 63px;
}
.client-image img {
    text-align: center;
    margin: auto;
    margin-top: 0;
    z-index: 1;
    position: absolute;
    top: 10px;
    left: 40%;
}
.client-card p {
    margin-bottom: 0;
    color: #323232;
    font-size: 14px;
}
.client-box {
    background-image: url(../images/client/bg1.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 573px;
    z-index: 0;
    position: relative;
    /* display: flex; */
    align-items: center;
    justify-content: center;
}
.client-slider {
    background-image: url(../images/client/bg2.png);
    background-repeat: no-repeat;
    background-size: auto;
    height: 448px;
    z-index: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
}


.testimonial-section {
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.testimonial-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.testimonial-slider {
    position: relative;
    /* max-width: 461px; */
    /* margin: 0 auto; */
    background-image: url(../images/client/bg2.png);
    background-repeat: no-repeat;
    background-size: auto;
    /* height: 448px; */
    z-index: 0;
    position: relative;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    background-position: center;
}
.testimonial-wrapper {
    position: relative;
    height: 440px;
    background-image: url(../images/client/vector.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right 30% top 0;
}
.testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 20px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    position: absolute;
    width: 100%;
    top: 0;
    left: 20%;
    transform-origin: center;
    transition: all 0.5s ease;
    opacity: 0;
    transform: scale(0.8) translateX(50px);
    text-align: center;
    z-index: 0;
    padding-top: 60px;
    width: 600px;
    margin: auto;
    margin-top: 73px;
    margin-bottom: 20px;
}
.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin-top: -60px;
    object-fit: cover;
    text-align: center;
    margin: auto;
    margin-top: 0;
    z-index: 1;
    position: absolute;
    top: -40px;
    left: 44%;
}

.testimonial-card h3 {
  margin: 10px 0;
  font-size: 18px;
}

.testimonial-card p {
  font-size: 14px;
  color: #333;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(0.8) translateX(0);
    z-index: 5;
    /* padding: 35px; */
}

.testimonial-card.prev {
    opacity: 1;
    transform: scale(1.0) translateX(0);
    z-index: 2;
    padding: 23px 20px;
    margin-top: 130px;
}
.testimonial-card.next {
    opacity: 1;
    transform: scale(0.9) translateX(0);
    z-index: 3;
    padding: 30px;
    margin-top: 110px;
}
/* .testimonial-card img {
    top: -49px  !important;
} */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.slider-btn.prev {
  left: 0px;
}

.slider-btn.next {
  right: 0px;
}

@media(max-width: 768px) {
  .slider-btn.prev {
    left: 10px;
  }
  .slider-btn.next {
    right: 10px;
}
}
.partner-card img {
    width: 100%;
    height: 42px;
    object-fit: cover;
}
.customer-section {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    z-index: 0;
}
.customer-box.costomer-slider {
    background: #fff;
    padding: 10px;
    border-radius: 14px;
    margin-top: 45px;
}
.costomer-slider ul.slick-dots {
    position: absolute;
    bottom: -58px;
    left: 45%;
}
.ft-top-box {
    margin-top: -102px;
    margin-right: 40px;
}
ul.ft-address-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.ft-address-list li a i {
    color: var(--thm-color-one);
}
ul.ft-address-list li {
    padding-bottom: 7px;
}
.ft-list p {
    color: #fff;
}
.about-vission-box {
    background: var(--thm-color-one);
    height: 48%;
    display: flex;
    align-items: end;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.about-vission-box.bg-two-color {
 background: var(--thm-color-two);
}
.vision-list {
    list-style: disc;
    padding-left: 30px;
    font-size: 14px;
}
.about-section-bg-image {
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}
.about-section-bg-image:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #04456099;
    z-index: -1;
}
.about-bg-content  {
   text-align: center;
}
.about-bg-content h2 {
    color: #fff;
}
.about-bg-content p {
    color: #fff;
    font-size: 20px;
}
.gallery-card  {
    position: relative;
    z-index: 0;
}
.gallery-card img {
    border-radius: 10px;
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.gallery-content {
    position: absolute;
    top: 20px;
    left: 20px;
}
.gallery-content p {
    color: #fff;
    margin-bottom: 0;
    cursor: pointer;
    transition: 0.5s all;
}
.gallery-content:hover p {
    color: var(--thm-color-one);
}
.gallery-card:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: #0000004D;
    z-index: 0;
}
/* MODAL STYLES */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}
.modal-content {
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 80%;
}
.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}
.close {
    position: absolute;
    top: 20px;
    right: 50px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}
.slider button {
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#prev { left: 10px; }
#next { right: 10px; }
#modal-title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
}
.contact-image img {
    border-radius: 10px;
}
.contact-form .form-group {
    display: flex;
    gap: 10px;
}
.contact-form .form-group .form-control {
    background: #0C80B00D;
}
.contact-card {
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0px 0px 6px 0px #00000026;
    border-radius: 10px;
    min-height: 185px;
    margin-top: 75px;
}
.address-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--thm-color-one);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 35px;
    margin: auto;
    margin-top: -62px;
    margin-bottom: 25px;
}
.contact-card h2 {
    font-weight: 500;
    font-size: 25px;
    margin-bottom: 15px;
}
.contact-wrapper {
    border: 2px solid #0C80B01A;
    border-radius: 10px;
}
.contact-wrapper .contact-image {
    height: 100%;
}
.contact-wrapper .contact-image img {
    border-radius: 0 10px 10px 0;
    height: 100%;
}
.login-sec {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-box{
    background: #fff;
    border-radius: 10px;
    padding: 25px 35px;
}
.login-box label {
    color: #323232;
}
.login-box h3 {
    font-weight: 500;
}
/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000B2;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.header.sticky .menu-item a {
    color: #000;
}
.header.sticky {
    background: #fff;
}
.header.sticky .logo {
    display: none;
}
.header.sticky .logo.scroll {
    display: block;
}
.logo.scroll {
    display: none;
}
.banner-form-body .form-control {
    background: #565656;
}
/* Popup Box */
.popup-content {
    background: #fff;
    padding: 0;
    width: 900px;
    height: 580px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease;
    overflow: auto;
}
.bg-popup {
    height: 100%;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    width: 100%;
}
.popup-header {
    background: var(--thm-color-one);
    padding: 20px;
    border-radius: 5px 5px 0 0;
}
.popup-header h5 {
    color: #fff;
    margin-bottom: 0;
}
.modal-partner {
    padding: 20px;
}
.customer-image img {
    padding: 0 40px;
    width: 100%;
    height: auto;
    /* object-fit: cover; */
    border-radius: 10px;
}
div#galleryModal .close-btn {
    color: #000;
}
.popup-content.gallery-popup-content {
    height: 450px;
    width: 700px;
    overflow-x: hidden;
}
.popup-content.gallery-popup-content .bg-popup {
    padding: 10px 67px !important;
}
.gallery-image img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}

.header-banner:before {
    position: absolute;
    content: '';
    bottom: -30px;
    left: 0;
    border: 15px solid transparent;
    border-right: 15px solid #4FB8E4;
    border-top: 15px solid #4FB8E4;
    z-index: -1;
}
.header-banner:after {
    position: absolute;
    content: '';
    bottom: -30px;
    right: 0;
    border: 15px solid transparent;
    border-left: 15px solid #4FB8E4;
    border-top: 15px solid #4FB8E4;
    z-index: -1;
}
.service-image img {
    border-radius: 10px;
    height: 403px;
    object-fit: cover;
}
.about-sm-image img {
    width: 360px !important;
    height: 253px !important;
    object-fit: cover;
}
.about-image img {
    width: 700px;
    height: 742px;
}
.service-image {
   margin-bottom: 20px;
}
.advanced-card {
    margin-bottom: 20px;
    border-radius: 10px;
    background: var(--thm-color-one);
    text-align: center;
    /* display: flex; */
    flex-direction: column;
    padding: 20px;
}

.services-slider .offer-card {
    margin: 12px;
}

.services-slider .slick-arrow {
    top: -50px;
}
.services-slider .slick-prev.slick-arrow {
    left: auto;
    right: 6%;
}
.services-slider .slick-next.slick-arrow {
    right: 2%;
}
.partner-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}
.partner-card {
    border: 1px solid #0C80B033;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.customer-image {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100%;
    height: 140px; 
    padding: 15px;
}
.offer-text h2 {
    font-size: 34px;
}
.offer-perra h4 {
    margin-bottom: 10px;
    transition: 0.5s all;
}
.offer-card:hover .offer-perra h4 {
   color: #fff;
}
table.dataTable {
    width: 100% !important;
    margin: 0 auto;
    border-spacing: 0;
}
.who-we-item li {
    padding-bottom: 0;
}
.p-50 {
    padding-left: 100px;
}



.work-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 25px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.work-card:hover {
    transform: translateY(-10px);
    border-color: #0c80b0;
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.25);
}

.work-card .icon-wrap {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: #f5f8ff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/*.work-card:hover .icon-wrap {*/
/*    background: #0c80b0;*/
/*}*/

.work-card img {
    width: 50px;
    height: 50px;
}

.work-card h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}
.work-card p {
    font-size: 15px;
    color: #585858;
    line-height: 1.5;
    margin-bottom: 0;
}
.work-description {
    margin-top: 20px;
    padding: 10px 20px;
}

.work-description .main-text {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
}

.work-description .sub-text {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: auto;
    line-height: 1.7;
    font-weight: 500;
}

/* Optional fade animation */
.work-description p {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}
.who-section {
  padding: 100px 0;
}

.who-img-box {
  position: relative;
}

.who-overlay-card {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: #005f89;
  color: #fff;
  padding: 18px 25px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.who-info-box {
    background: #f7f9fb;
    padding: 25px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.who-title {
    font-size: 30px;
    font-weight: 800;
    color: #005f89;
    margin-bottom: 10px;
    line-height: 1.1;
}

/* Steps List */
.who-steps {
  list-style: none;
  padding-left: 20px;
  margin: 0 0 25px 0;
  position: relative;
}
.who-steps li {
    /* background: #fff; */
    /* border: 1px solid #e2e2e2; */
    padding: 0;
    border-radius: 12px;
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.05); */
    transition: all .3s ease;
    list-style: disc;
    
}

.who-steps li:hover {
  transform: translateY(-5px);
}

.who-steps li {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    
}

.who-steps li span {
  position: absolute;
  left: -12px;
  top: 0;
  width: 35px;
  height: 35px;
  background: #fff;
  border: 3px solid #005f89;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #005f89;
}

.who-steps li:last-child {
  margin-bottom: 0;
}

.who-description {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 0;
}
.who-overlay-card h4 {
    color: #fff;
}
