/* FONT IMPORT */


/* Google Font */

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap");

/* Local Font */

:root {
    --white: #fff;
    --black: #000;
    --primary: #d7b588;
    --secondary: #333333;
    --sement-gray: #7E8274;
}

/* ::-webkit-scrollbar {
    width: 0;
} */

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

body {
    position: relative;
    background: var(--black);
    overflow-x: hidden;
    height: 100%;
    font-family: "Roboto", sans-serif;
}

section {
    position: relative;
}

h1,
h2,
h3 {
    font-family: "Lexend Deca", sans-serif;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}

/* LENIS */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* Cursor Start */

.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 {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -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: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* PRELOADER */
.preloader {
    position: fixed;
    width: 100vw;
    height: 100dvh;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: end;
}

.preloader figure {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.preloader figure img {
    width: 400px;
}

.preloader .bar {
    width: 20vw;
    height: 100dvh;
    background: #7E8274;
    background: var(--sement-gray);
}

.preloader .line {
    position: absolute;
    top: 78%;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--black);
    opacity: 0.75;
}

.preloader .counter {
    position: absolute;
    bottom: 0;
    right: 2rem;
    font-size: 10rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1;
}

.preloader .counter span:last-child {
    font-size: 6rem;
    margin-left: 1rem;
}


/* GLOBAL CSS */

.themeBtn {
    background: var(--white);
    font-size: 0.9375rem;
    font-weight: bold;
    color: #222222;
    display: inline-block;
    border-radius: 8px;
    padding: 0.875rem 1.25em;
    line-height: normal;
}

.themeBtn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

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


/* !GLOBAL CSS */


/* NAV HEADER CSS */

header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    padding: .5rem 0;
    transition: 0.3s ease-in-out;
    border-bottom: 1px solid rgb(234 234 234 / 15%);
}

.navbar-brand {
    padding: 0;
    margin: 0;
    width: 150px;
}

.navbar-brand>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-nav {
    align-items: center;
    gap: 0;
}

.navbar-nav .nav-item .nav-link {
    font-size: 0.8375rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: bold;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

.navbar-nav .nav-item .nav-link:before {
    content: "";
    position: absolute;
    background: rgb(255 255 255 / 20%);
    width: 100%;
    height: 100%;
    z-index: -1;
    inset: 0;
    border-top: 5px solid var(--primary);
    backdrop-filter: blur(5px);
    transform: translateY(7rem);
    transition: 0.5s ease;
}

.navbar-nav .nav-item .nav-link:hover:before,
.navbar-nav .nav-item .nav-link.active:before {
    transform: translateY(0);
}

.navbar-nav .nav-item .nav-link.active {
    color: var(--primary);
}

/* Dropdown */
.navbar .nav-item.drop-down {
    position: relative;
    z-index: 1;
}

.navbar .drop-down>a:after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    padding-left: 5px;
    color: var(--primary);
}

.navbar .drop-down ul {
    display: block;
    position: absolute;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
}

.navbar .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .drop-down li {
    min-width: max-content;
    position: relative;
}

.navbar .drop-down ul a {
    padding: 8px 18px;
    font-size: 1rem;
    font-weight: 500;
    color: #151515;
    display: block;
    text-transform: capitalize;
}

.navbar .drop-down ul a:hover {
    background: var(--primary);
    color: #fff;
}

.navbar-nav .nav-item:last-child .themeBtn {
    background: #B6201C;
    color: var(--white);
}

.form-inline {
    margin-left: 0.5rem;
    gap: 0.5rem;
}

header .form-inline .themeBtn {
    background: transparent;
    color: var(--white);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

header .form-inline .themeBtn::before {
    content: "";
    position: absolute;
    background: rgb(255 255 255 / 20%);
    width: 100%;
    height: 100%;
    z-index: -1;
    inset: 0;
    border-top: 5px solid var(--primary);
    backdrop-filter: blur(5px);
    transform: translateY(7rem);
    transition: 0.5s ease;
}

header .form-inline .themeBtn:hover::before {
    transform: translateY(0);
}

.form-inline ul {
    display: flex;
    gap: 1.25rem;
}

.form-inline ul li a {
    color: var(--white);
    font-size: 1.375rem;
    position: relative;
}

.form-inline ul li a span {
    font-size: 0.75rem;
    background: var(--primary);
    width: 19px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50px;
    position: absolute;
    top: -0.625rem;
    right: -0.625rem;
}


/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.mainbanner {
    height: 920px;
}

.mainbanner .swiper-pagination {
    bottom: 2rem;
    width: fit-content;
    left: 50%;
    transform: translateX(-50%);
}

.mainbanner .swiper-button-prev,
.mainbanner .swiper-button-next {
    color: #fff;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.mainbanner .swiper-button-next {
    right: 3rem;
}

.mainbanner .swiper-button-prev {
    left: 3rem;
}

.mainbanner .swiper-pagination-bullet,
.serviceSlider .swiper-pagination-bullet {
    height: 6px;
    width: 20px;
    display: inline-block;
    margin: 0 0.3rem !important;
    opacity: 1;
    background: var(--white);
    border-radius: 2px;
    transition: 0.5s ease;
}

.mainbanner .swiper-pagination-bullet-active,
.serviceSlider .swiper-pagination-bullet-active {
    width: 40px;
    background: var(--primary);
}

.mainbanner__wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mainbanner__wrap:before {
    content: "";
    position: absolute;
    background: linear-gradient(320deg, #00000000, #000000);
    width: 100%;
    height: 100%;
    z-index: 1;
    user-select: none;
    pointer-events: none;
}

.mainbanner__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    user-select: none;
    pointer-events: none;
}

.mainbanner .slideOne {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.mainbanner small {
    color: var(--white);
    font-size: 1.0625rem;
    font-weight: bold;
    background: var(--primary);
    padding: 0.6875rem 0.9em;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: inline-block;
}

.mainbanner h1 {
    color: var(--white);
    font-size: 4.6875rem;
    font-weight: 300;
    line-height: 1.13;
}

.mainbanner h1 span {
    font-weight: 600;
}

.mainbanner p {
    color: var(--white);
    font-size: 1.0625rem;
    font-weight: bold;
    line-height: 1.7;
    width: 89%;
    margin: 1.3rem 0 2rem 0;
}

.mainbanner .btn-group {
    gap: 1.875rem;
}

.themeBtn1 {
    padding: 1.4rem 3.8em;
}

.borderBtn {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 1.4rem 2.5em;
}

.bannerVideo {
    background: var(--white);
    width: 7.125rem;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 100%;
    font-size: 3rem;
    margin-left: auto;
    position: relative;
    z-index: 1;
    margin-top: 5rem;
}

.bannerVideo a {
    color: #222222;
}

.bannerVideo:before {
    content: "";
    position: absolute;
    background: var(--white);
    opacity: 10%;
    width: 15.625rem;
    height: auto;
    aspect-ratio: 1;
    border-radius: 100%;
    z-index: -1;
}


/* !MAIN HERO SLIDER CSS */


/* Service Sec Css Start */

.serviceSec {
    padding: 8.125rem 0;
}

.smallHeading {
    font-size: 1rem;
    color: var(--primary);
    font-weight: bold;
    display: block;
    margin-bottom: 0.75rem;
}

.secHeading {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.375;
}

.serviceWrap figure {
    position: relative;
}

.serviceWrap figure>img {
    border-radius: 0 0 0 2rem;
}

.serviceIcon {
    background: var(--primary);
    width: 94px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 2rem 0 0 0;
    position: absolute;
    bottom: 0;
    left: 2.5rem;
}

.serviceContent {
    background: var(--white);
    border-radius: 0 0 2rem 0;
    width: 90%;
    margin-left: auto;
    padding: 2.1875rem 2.1875rem 2.5rem 2.1875rem;
}

.serviceContent h3 {
    font-size: 1.4375rem;
    font-weight: 600;
    color: #222222;
}

.serviceContent p {
    color: #9B9B9B;
    line-height: 1.7;
    margin: 1rem 0 1.2rem 0;
}

.serviceContent a {
    font-size: 0.9375rem;
    font-weight: bold;
    color: #222222;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    border: 2px solid #D3D3D3;
    border-radius: 8px;
    padding: 1rem 1.8em;
}

.serviceContent a:hover {
    background: #D3D3D3;
}

.serviceContent a i {
    font-size: 1.5rem;
}

.serviceBottom {
    text-align: center;
}

.serviceBottom p {
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.serviceBottom .btn-group {
    gap: 2.5rem;
}

.serviceBottom .btn-group .themeBtn1 {
    background: var(--primary);
    color: var(--white);
    padding: 1.57rem 3em;
}

.serviceBottom .btn-group .themeBtn1:hover {
    background: var(--white);
    color: var(--black);
}

.callBtn {
    display: flex;
    align-items: center;
    gap: 1.875rem;
}

.callBtn div {
    background: #EAEAEA;
    width: 48px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--primary);
    font-size: 1.375rem;
    outline: 2px solid var(--primary);
    outline-offset: 8px;
    transition: 0.5s ease;
}

.callBtn:hover div {
    background: var(--primary);
    color: var(--white);
}

.callBtn span {
    color: var(--white);
    display: grid;
    font-size: 1.25rem;
    font-family: 'Lexend Deca';
}

.callBtn span small {
    font-family: 'Roboto';
    font-size: 0.9375rem;
}

.serviceSlider .swiper-pagination {
    display: flex;
    justify-content: end;
}

.serviceSlider {
    padding: 2.5rem 0;
}


/* Service Sec Css End */


/* Recovery Sec Css Start */

.recoverySec {
    padding-bottom: 5rem;
}

.recoveryWrap {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.recoveryContent {
    flex: 1;
}

.recoveryContent p {
    color: var(--white);
    font-size: 1.0625rem;
    line-height: 1.7;
    width: 84%;
    margin-bottom: 1.2rem;
}

.recoveryContent ul li a {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.recoveryContent ul li a span {
    font-size: 1rem;
    font-weight: bold;
    color: var(--white);
}

.recoveryContent ul li+li {
    border-top: 1px solid #EAEAEA;
    width: 85%;
    padding-top: 1.2rem;
    margin-top: 1.2rem;
}

.recoveryContent ul {
    margin: 1.75rem 0 2.5rem 0;
}

.recoveryContent .btn-group {
    gap: 1.875rem;
}

.recoveryContent .themeBtn1 {
    background: var(--primary);
    color: var(--white);
    padding: 1.45rem 2.8em;
}

.recoveryContent .themeBtn1:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.recoveryContent .borderBtn {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.recoveryImage {
    margin-left: 4.9rem;
    position: relative;
}

.recoveryBox {
    background: var(--primary);
    width: 220px;
    height: 295px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0 2rem 0 0;
    position: absolute;
    bottom: 6.875rem;
    left: -2.5rem;
}

.aboutVideo {
    width: 160%;
    height: 925px;
    object-fit: cover;
}

.recoveryBox h3 {
    color: var(--white);
    font-size: 2.8125rem;
    margin: 1rem 0 0.625rem 0;
}

.recoveryBox p {
    color: var(--white);
    font-family: 'Lexend Deca';
    font-size: 1.1875rem;
    margin: 0;
    line-height: 1.7;
}

.recoveryVideo {
    position: relative;
}

.recoveryVideo img {
    border-radius: 0 0 2rem 0;
}

.recoveryVideo a {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    margin: auto;
    background: var(--white);
    width: 88px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 100%;
    color: var(--black);
    outline: 2px solid var(--white);
    outline-offset: 1.2rem;
    display: none;
}

.emergencyContent {
    margin: 6.25rem 0 0 5rem;
}

.emergencyContent p {
    color: var(--white);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-right: -5rem;
}

.emergencyPara {
    margin: 2.5rem 0 3rem 0;
}

.emergencyContent #accordion {
    margin-right: -4rem;
}

.emergencyContent #accordion .card {
    border: none;
    border-bottom: 2px solid #EAEAEA;
    background: transparent;
    border-radius: unset;
    margin: 1rem 0;
    padding-bottom: 1rem;
}

.emergencyContent #accordion .card .btn-link {
    display: flex;
    align-items: center;
    color: var(--primary);
    padding: 0;
    border: 0;
    font-size: 1.1875rem;
    text-decoration: none;
    overflow: hidden;
    border-bottom-left-radius: 0;
    text-align: left;
    font-weight: bold;
}

.emergencyContent #accordion .card .btn-link i {
    padding-right: 1.2rem;
    font-size: 1.375rem;
    color: var(--primary);
}

.emergencyContent #accordion .card .btn-link i::before {
    content: "\f13a";
}

.emergencyContent #accordion .card .btn-link.collapsed i::before {
    content: "\f138";
}

.emergencyContent #accordion .card .btn-link.collapsed {
    color: var(--white);
}

.emergencyContent #accordion .card .btn-link.collapsed i {
    color: var(--white);
    font-size: 1.375rem;
}

.emergencyContent #accordion .card+.card {
    margin-top: 0;
}

.emergencyContent .card-body {
    padding: 0.625rem 0 0 2.8rem;
}

.emergencyContent .card-body p {
    margin: 0;
}


/* Recovery Sec Css End */


/* Roadside Sec Css Start */

.roadsideSec {
    background: #161616;
    padding: 7.8125rem 0 13.75rem 0;
}

.roadsideHeading p {
    color: var(--white);
    font-size: 1.0625rem;
    font-weight: bold;
    line-height: 1.7;
    width: 89%;
    margin: 2rem 0 0 0;
}

.roadsideSlider {
    margin: 0 -23rem 0 3rem;
}

.roadsideWrap {
    position: relative;
}

.roadsideWrap::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(0 0 0 / 20%);
    z-index: 1;
}

.roadsideWrap img {
    height: 600px;
    width: 100%;
    object-fit: cover;
    position: relative;
}

.roadsideContent {
    padding: 2rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.roadsideContent h3 {
    color: var(--white);
    font-weight: 600;
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.roadsideContent p {
    color: var(--white);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.roadBottoms {
    display: flex;
    gap: 2.5rem;
    margin: 3.125rem 0 0 3rem;
}

.roadBottoms ul {
    display: flex;
    gap: 4px;
}

.roadBottoms ul li i {
    color: var(--primary);
    font-size: 0.875rem;
}

.roadBottoms p {
    color: var(--white);
    font-size: 0.9375rem;
    line-height: 1.7;
    width: 60%;
}

.roadBottoms p span {
    font-weight: bold;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.roadsideSec .swiper-button-next:after,
.roadsideSec .swiper-button-prev:after {
    display: none;
}

.roadsideSec .swiper-button-next,
.roadsideSec .swiper-button-prev {
    background: var(--white);
    width: 58px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 5px;
    color: var(--black);
    font-size: 1.2rem;
    bottom: 8rem;
    top: inherit;
}

.roadsideSec .swiper-button-prev {
    left: -50%;
}

.roadsideSec .swiper-button-next {
    left: -41%;
}


/* Roadside Sec Css End */


/* Stories Sec Css Start */

.storiesSec {
    padding: 6.875rem 0;
    margin-top: -8rem;
}

.storiesSec:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 85%;
    right: 0;
    height: 100%;
    top: 0;
    border-radius: 7.5rem 0 0 0;
}

.storiesImg {
    position: relative;
}

.storiesImg>img {
    border-radius: 0 3rem 3rem 0;
}

.storiesBox {
    background: var(--primary);
    width: 290px;
    height: auto;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: end;
    border-radius: 2rem 0 0 0;
    position: absolute;
    bottom: -3rem;
    left: 30.5%;
    padding-left: 2.5rem;
}

.storiesBox p {
    color: var(--white);
    font-size: 0.9375rem;
    line-height: 1.8;
    width: 81%;
    margin: 1.75rem 0 1.4rem 0;
}

.storiesBox a {
    color: var(--white);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.storiesSlider {
    margin: 0 -6rem 0 5rem;
}

.storiesSlidess {
    background: var(--white);
    border-radius: 1rem;
    padding: 0 3.125rem 3.125rem 3.125rem;
    position: relative;
}

.storiesSlidess:before {
    content: "";
    position: absolute;
    background: var(--white);
    width: 56px;
    height: 46px;
    bottom: -2.1rem;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 40% 100%, 0% 100%);
}

.storiesSlidess p {
    color: #282828;
    font-size: 1.1875rem;
    font-family: 'Lexend Deca';
    margin: 1rem 0 0 0;
    line-height: 1.7;
}

.quote i {
    color: #EAEAEA;
    font-size: 3rem;
}

.quote {
    text-align: right;
    margin-top: -3.2rem;
}

.storiesSlidess figure img {
    width: 70px;
    border-radius: 8px;
    margin-top: -3rem;
}

.storiesWraps {
    margin-top: 5rem;
}

.usersName h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0;
}

.usersName span {
    color: var(--white);
    font-size: 0.875rem;
}

.usersName {
    margin: 2.1875rem 0 0 2.5rem;
}


/* Stories Sec Css End */


/* Map Sec Css Start */

.mapSec {
    padding: 10.625rem 0 8.125rem 0;
}

.mapWraps {
    display: flex;
    gap: 1.5rem;
}

.mapContent {
    flex: 1;
}

.mapContent h3 {
    color: var(--white);
    font-size: 1.1875rem;
    font-weight: 600;
    border-top: 1px solid #EAEAEA;
    margin-bottom: 1.2rem;
    padding-top: 1rem;
}

.mapContent p {
    color: var(--white);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.mapWraps:nth-child(1) .mapContent h3 {
    border: unset;
    padding-top: 0;
}

.mapImage {
    text-align: right;
    position: relative;
}

.mapHeading {
    position: absolute;
    top: -4rem;
    right: 3.5rem;
    text-align: left;
}


/* Map Sec Css End */


/* Brand Sec Css Start */

.brandSec {
    padding: 4.375rem 0 3.125rem 0;
    border-top: 1px solid #EDEDED;
}

.brandWrap {
    text-align: center;
}

.brandSlider .swiper-wrapper {
    align-items: center;
}

.brandSlider .swiper-wrapper {
    transition-timing-function: linear;
}


/* Brand Sec Css End */


/* Download Sec Css Start */

.downloadSec {
    background: url(../images/downloadBg.webp)top no-repeat;
    height: 820px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.downloadContent p {
    color: var(--white);
    font-size: 1.0625rem;
    font-weight: bold;
    line-height: 1.7;
    margin: 1.5rem 0;
}

.downloadContent .btn-group {
    gap: 1.875rem;
}

.downloadContent ul li a {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.downloadContent ul li a span {
    font-size: 1rem;
    font-weight: bold;
    color: var(--white);
}

.downloadContent ul li+li {
    border-top: 1px solid #323232;
    padding-top: 1.4rem;
    margin-top: 1.4rem;
}

.downloadContent {}

.downloadImages img {
    position: absolute;
    bottom: 0.4rem;
}

.downloadOne {
    left: 3.3rem;
}

.downloadTwo {
    left: 7rem;
}


/* Download Sec Css End */


/* Pricing Sec Css Start */

.pricingSec {
    padding: 7.5rem 0;
}

.pricingBox {
    background: var(--white);
    padding: 2.75rem 3.125rem;
    border-radius: 2rem 0 0 0;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.priceValue {
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: bold;
    width: max-content;
    height: 35px;
    display: grid;
    place-items: center;
    position: absolute;
    top: -5rem;
    right: -2rem;
    transform: rotate(45deg);
    transition: 0.5s ease;
    padding: 0 .5em;
}

.pricingBox:hover .priceValue {
    top: 2rem;
    right: -1rem;
}

.pricingBox h2 {
    font-size: 1.4375rem;
    font-weight: 600;
    color: #1B1A1A;
    border-bottom: 2px solid #EAEAEA;
    padding-bottom: 1.375rem;
}

.pricingBox h4 {
    font-size: 1.25rem;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 600;
    margin: 1.25rem 0;
}

.pricingBox p {
    font-size: 0.9375rem;
    color: #9B9B9B;
    line-height: 1.7;
    margin: 1rem 0;
    height: 180px;
    overflow-y: overlay;
}

.pricingBox ul {
    margin-bottom: 1.25rem;
}

.pricingBox ul::-webkit-scrollbar-track,
.pricingBox p::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(255 255 255);
    border-radius: 10px;
}

.pricingBox ul::-webkit-scrollbar,
.pricingBox p::-webkit-scrollbar {
    width: 6px;
    border-radius: 10px;
    background-color: #e1e1e1;
}

.pricingBox ul::-webkit-scrollbar-thumb,
.pricingBox p::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--primary);
}

.pricingBox ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pricingBox ul li span {
    font-weight: bold;
    color: #222222;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.pricingBox ul li small {
    font-weight: bold;
    font-size: 1rem;
    color: var(--primary);
}

.pricingBox ul li+li {
    margin-top: 0.875rem;
}

.pricingBox h3 {
    font-size: 2rem;
    font-weight: 500;
    color: #222222;
    margin-bottom: 1rem;
    line-height: 1;
}

.pricingBox h3 span {
    font-weight: 600;
    color: #9B9B9B;
    font-size: 1.0625rem;
}

.pricingBox .themeBtn {
    background: #222222;
    color: var(--white);
    padding: 1.6rem 2.7em;
}

.pricingBox:hover .themeBtn {
    background: var(--primary);
    color: var(--white);
}

.pricePara {
    margin: 1rem 0 0 0 !important;
    height: auto !important;
    overflow: unset !important;
}

.pricingBottom {
    text-align: center;
}

.pricingBottom p {
    color: var(--white);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 1.5625rem 0;
}

.pricingBottom .btn-group {
    align-items: center;
    gap: 1.875rem;
}

.pricingBottom .btn-group .themeBtn1 {
    background: var(--primary);
    color: var(--white);
    padding: 1.6rem 2.7em;
}

.pricingBottom .btn-group .themeBtn1:hover {
    background: var(--white);
    color: var(--black);
}

.checkAll {
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkAll:hover {
    color: var(--primary);
}


/* Pricing Sec Css End */


/* Help Sec Css Start */

.helpSec {
    padding: 0 3.75rem;
}

.safeBox {
    position: relative;
}

.safeWraps {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 7.8125rem 4rem;
}

.safeWraps p {
    color: var(--white);
    line-height: 1.7;
    font-weight: bold;
    margin-bottom: 2.1875rem;
}

.safeText .themeBtn1 {
    padding: 1.6rem 2.7em;
}

.helpBox {
    background: var(--primary);
    padding: 2.5rem 5rem 3.875rem 5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.helpForm {
    background: var(--white);
    border-radius: 1rem;
    padding: 3.125rem 3.125rem;
}

.helpForm h2 {
    font-size: 1.5rem;
    color: #1B1A1A;
    font-weight: 600;
}

.helpForm p {
    font-size: 0.9375rem;
    color: #9B9B9B;
    line-height: 1.7;
}

.helpForm p a {
    font-weight: bold;
    color: #1B1A1A;
    text-decoration: underline !important;
}

.helpForm .form-group label {
    font-size: 0.875rem;
    font-weight: bold;
    color: #282828;
    display: block;
}

.helpForm .form-group {
    margin-bottom: 1.25rem;
}

.helpForm .form-control,
.helpForm select {
    width: 100%;
    border: 2px solid #EAEAEA;
    border-radius: 8px;
    height: 58px;
    padding-left: 1.25rem;
    outline: unset;
    box-shadow: unset;
    font-size: 0.875rem;
    color: #616161;
}

.helpForm .form-control::placeholder {
    color: #616161;
}

.helpForm .form-check-input {
    width: 17px;
    height: 17px;
    position: unset;
    margin: 0;
}

.helpForm .form-check {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.helpForm .form-check label {
    font-size: 0.875rem;
    color: #9B9B9B;
}

.helpForm .form-check label span {
    color: #222222;
}

.helpForm .themeBtn1 {
    background: #222222;
    border: unset;
    outline: unset;
    color: var(--white);
    margin-top: 1rem;
}


/* Help Sec Css End */


/* Article Sec Css Start */

.articleSec {
    padding: 7.5rem 0 6.25rem 0;
}

.articleBox {
    background: var(--white);
    border-radius: 0 2rem 0 0;
    padding: 2.375rem 2.5rem;
    border-top: 8px solid #EAEAEA;
    margin-top: 2.8125rem;
}

.articleBox span {
    color: #616161;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.articleBox span small {
    color: var(--primary);
    font-size: 0.875rem;
}

.articleBox h3 {
    color: #222222;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0.625rem 0 2.125rem 0;
    width: 95%;
    line-height: 1.4;
}

.articleBox figure {
    margin-left: -2.5rem;
}

.articleBox figure img {
    border-radius: 0 1rem 1rem 0;
}

.artBox {
    font-size: 0.8125rem;
    background: var(--primary);
    width: fit-content;
    color: var(--white);
    padding: 0.625rem 1.1em;
    border-radius: 4px;
    margin: -1rem 0 0 2.5rem;
    z-index: 1;
    position: relative;
}

.articleBox p {
    color: #9B9B9B;
    font-size: 0.9375rem;
    line-height: 1.7;
    padding: 1.625rem 0 1.25rem 0;
    border-bottom: 1px solid #EAEAEA;
    margin-bottom: 1.875rem;
}

.articleBox a {
    border: 2px solid #EAEAEA;
    width: 100%;
    height: 48px;
    border-radius: 8px;
    display: inline-flex;
    place-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    font-weight: bold;
    color: #222222;
    gap: 0.75rem;
}

.articleBox a:hover {
    background: #EAEAEA;
}

.viewBlogs {
    margin-top: 2.1875rem;
}

.viewBlogs a {
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
}


/* Article Sec Css End */


/* Footer Css Start */

footer {
    background: #1B1A1A;
    padding-top: 7.8125rem;
    position: relative;
}

footer h3 {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.quickContent p {
    color: 0.875rem;
    color: #9B9B9B;
    line-height: 1.7;
}

.quickContent ul li a {
    color: var(--primary);
    font-size: 1.375rem;
    display: flex;
    align-items: center;
}

.quickContent ul li a:hover {
    color: var(--white);
}

.quickContent ul li a span {
    font-size: 1.0625rem;
    font-family: 'Lexend Deca';
    padding-left: 0.625rem;
    overflow-wrap: anywhere;
}

.quickContent ul li+li {
    margin-top: 7px;
}

.quickContent ul {
    margin-bottom: 1rem;
}

.directions {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: bold;
}

.directions:hover {
    color: var(--primary);
}

.directions i {
    font-size: 1.25rem;
    padding-right: 0.625rem;
}

.links li a {
    color: #9B9B9B;
    font-size: 0.875rem;
}

.links li a:hover {
    color: var(--white);
}

.links li+li {
    margin-top: 0.75rem;
}

.bookBtn {
    font-size: 0.9375rem;
    font-weight: bold;
    color: var(--white);
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1.3125rem 2.8em;
    width: fit-content;
}

.bookBtn:hover {
    background: var(--black);
    color: var(--white);
}

.socialLinks {
    display: flex;
    gap: 0.625rem;
    margin-top: 2.5rem;
}

.socialLinks li a {
    border: 2px solid #474747;
    width: 40px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--white);
    font-size: 1.125rem;
}

.socialLinks li a:hover {
    background: #474747;
    color: var(--white);
}

.footBottom-main {
    background: var(--black);
    margin-top: 6.25rem;
}

.footBottom {
    padding: 2.1875rem 0;
    border-bottom: 8px solid var(--primary);
}

.footBottom p {
    color: #ABABAB;
    font-size: 0.9375rem;
    margin-bottom: 0.625rem;
}

.footBottom p span {
    color: var(--primary);
}

.footBottom ul {
    display: flex;
    gap: 1.7rem;
}

.footBottom ul li a {
    font-size: 0.9375rem;
    color: #9F9F9F;
}

.footBottom ul li a:hover {
    color: var(--primary);
}

.footBtn {
    display: flex;
    gap: 1.25rem;
    justify-content: end;
}

.backBtn a {
    font-size: 0.9375rem;
    color: var(--white);
    display: grid;
    text-align: center;
    gap: 6px;
    font-weight: bold;
}

.backBtn {
    background: #1B1A1A;
    width: 175px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    position: absolute;
    left: 50%;
    bottom: 6rem;
    transform: translateX(-50%);
}

.backBtn a i {
    font-size: 1.5rem;
    color: var(--primary);
}


/* Footer Css End */


/* SEARCH BAR CSS */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 20px;
}


/* !SEARCH BAR CSS */

/* inner-pages */
.padd-y {
    padding: 5rem 0;
}

.inner-banner {
    height: 766px;
}

.inner-banner::before {
    content: "";
    background: linear-gradient(320deg, #00000000, #000000);
    position: absolute;
    inset: 0;
}

.inner-banner__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-banner>img {
    object-fit: cover;
}

.inner-banner__content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.inner-banner__content :is(h1, p, .themeBtn),
.about-inner .storiesSlidess p {
    color: var(--white);
}

.inner-banner__content h1 {
    font-size: 4.6875rem;
    font-weight: 300;
    text-transform: capitalize;
}

.inner-banner__content .font-bold {
    font-weight: 700;
}

.inner-banner__content p {
    font-size: 1.125rem;
}

.inner-banner__content .btn-group {
    gap: 1.875rem;
}

.inner-banner__content .btn-group .themeBtn {
    border: 1px solid var(--primary);
}

.inner-banner__content .btn-group .themeBtn:first-child {
    background: var(--primary);
}

.inner-banner__content .btn-group .themeBtn:last-child {
    border-color: var(--white);
    background: transparent;
}

.inner-banner__bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    border-top: 1px solid rgb(234, 234, 234, 25%);
}

.bottom__links {
    gap: 0.625rem;
}

.bottom__links li a span {
    margin-right: 0.625rem;
}

.bottom__links li:first-child a {
    font-weight: 600;
}

.bottom__links li a {
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    text-transform: capitalize;
}

.about-inner .storiesWraps {
    margin-top: 2rem;
}

.about-inner .storiesSlidess {
    padding: 2.75rem 6.125rem 2.75rem 3.125rem;
    background: #1C1C1C;
}

.about-inner .storiesSlidess:before {
    background: #1C1C1C;
}

.about-inner .storiesSlidess .quote {
    margin-top: -4rem;
}

.about-inner .storiesSlidess .quote i {
    color: var(--primary);
}

.about-inner .usersName {
    gap: 1rem;
}

.recoveryImage .rating {
    position: absolute;
    top: -1.875rem;
    left: 5rem;
    width: 80px;
    height: 126px;
    border-radius: 0.5rem;
    background: var(--white);
    text-align: center;
    overflow: auto;
}

.recoveryImage .ratingStars {
    background: var(--primary);
    height: 30px;
    display: grid;
    place-items: center;
}

.ratingContent {
    padding-top: 0.375rem;
}

.recoveryImage .ratingContent h5 {
    font-size: 1.375rem;
    font-family: "Lexend Deca", sans-serif;
}

.recoveryImage .ratingContent p {
    font-size: 12px;
    font-weight: 700;
    color: #1B1A1A;
}

.about-inner .recoveryImage {
    margin-left: 0;
}

.about-inner .recoveryBox {
    right: -2.5rem;
    bottom: -8rem;
    left: unset;
    padding: 0 2rem;
}

.about-inner .recoveryBox

/* service-inner */
.service-inner,
.pricing-inner,
.article-inner {
    padding-bottom: 14rem;
}

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

.service-inner .row:not(:last-child) {
    margin-bottom: 3.125rem;
}

.service-inner .row:nth-child(even) .service-inner__content {
    margin: 4.375rem -2.5rem 0 0;
    padding: 3.75rem 3.75rem 3.75rem 2.5rem;
}

.service-inner__content {
    background: #232323;
    margin: 4.375rem 0 0 -2.5rem;
    padding: 3.75rem 2.5rem 3.75rem 3.75rem;
}

.service-inner__content p {
    font-size: 1rem;
    line-height: 2;
    color: #C1C1C1;
}

.map-section iframe {
    width: 100%;
    height: 667px;
    border: none;
    filter: grayscale(1);
    margin-bottom: -.45rem;
}

.terms__content .secHeading {
    color: var(--primary);
}

.terms__content p {
    font-size: 1.125rem;
    color: var(--white);
}

.terms__content p strong {
    font-size: 1.5rem;
    color: var(--primary);
}

.pricingSlider-arrow {
    display: flex;
    flex-direction: row-reverse;
    gap: 1rem;
}

.pricingSlider :is(.swiper-button-next, .swiper-button-prev) {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: var(--primary);
    margin: 0;
    position: relative;
    inset: unset;
}

.pricingSlider :is(.swiper-button-next, .swiper-button-prev):hover {
    background: var(--secondary);
}

.pricingSlider :is(.swiper-button-next, .swiper-button-prev)::after {
    font-size: 1.125rem;
    color: var(--white);
}

.pricingSlider :is(.swiper-button-next, .swiper-button-prev).swiper-button-disabled {
    opacity: 50%;
}

.pricingSlider .pricingBox {
    margin-top: 2rem;
}

.chat_btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--secondary);
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: var(--white);
    z-index: 999;
    animation: floating 1s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }

    100% {
        transform: translateY(0);
    }
}

.chat_btn:hover {
    background: var(--primary);
    color: var(--white);
}


section.team-section {
    padding: 5rem 0 10rem 0;
}

.team-cntnt {
    background: #F5F5F5;
    border-radius: 40px;
    padding: 50px 20px;
    text-align: center;
    margin-top: -2rem;
}

.team-cntnt h3 {
    font-size: 40px;
    font-weight: 400;
}

.team-cntnt h5 {
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Lexend Deca';
}

ul.teamlinks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 13px 0 24px 0;
}

ul.teamlinks li {
    background: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

ul.teamlinks li a {
    color: #fff;
}

.team-cntnt .themeBtn {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    background: transparent;
    border: 2px solid #000;
    border-radius: 200px;
}

.team-wrap {
    margin-bottom: 50px;
}

.team-cntnt .themeBtn:hover {
    background: #000;
    color: #fff;
}


section.store-section {
    padding: 5rem 0 10rem 0;
}

.store-cntnt h3 {
    font-size: 1.125rem;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.store-cntnt {
    margin-top: 1.125rem;
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 12px;
}

ul.starlist {
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 14px 0;
}

ul.starlist li {
    color: #fff;
}

ul.starlist li span {
    font-size: 7px;
    font-weight: 500;
}

.store-cntnt h5 {
    font-size: 15px;
    font-weight: bold;
    color: #D7B588;
}

.store-cntnt h5 del {
    color: #BDBDBD;
}

.store-wrap {
    margin-bottom: 50px;
}

/* privacy & terms page*/

.privacy,
.terms {
    padding: 6rem 0;
}

.privacyContent :is(p,
    li),
.termsContent :is(p,
    li) {
    font-size: 1.125rem;
    font-weight: 400;
    margin: 0 0 1rem;
    color: var(--white);
}

.privacyContent p a,
.termsContent p a {
    color: var(--primary);
    font-weight: 600;
}

.privacyContent h3,
.termsContent h3 {
    font-size: 2.125rem;
    font-weight: 600;
    margin: 1.125rem 0;
    color: var(--primary);
}

.privacyContent .list li,
.termsContent .list li {
    position: relative;
    padding-left: 1.75rem;
}

.privacyContent .list li::before,
.termsContent .list li::before {
    content: "";
    width: 16px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--primary);
    position: absolute;
    top: 0.25rem;
    left: 0;
}

.youtube-coming-heading {
    font-size: 3.125rem;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0;
}

.youtube-icon {
    font-size: 5.125rem;
    color: #ff0000;
}

.recovery-solutions-img {
    margin-bottom: 2.25rem;
}

.recovery-solutions-img img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.recovery-solutions-bg {
    height: 860px;
}

.inner-banner.recovery-solutions-bg::before {
    background: linear-gradient(180deg, #00000000, #00000080);
}


/* pricingModal */
.pricingModal .modal-dialog {
    max-width: 886px;
}

.pricingModal .modal-content {
    padding: 3.125rem;
    background: var(--white);
    box-shadow: 0px 0px 30px rgb(0, 0, 0, 10%);
    border-radius: 0.625rem;
}

.pricingModal .modal-header {
    margin-bottom: 1rem;
}

.pricingModal .modal-header .mainHead {
    font-size: 2rem;
    color: var(--black);
    margin: 0;
}

.pricingModal .modal-header p {
    font-weight: 500;
    line-height: normal;
    color: #111827;
    margin: 0;
}

.pricing-form-tab {
    display: none;
}

.pricing-forminput {
    margin-bottom: 1rem;
}

.pricing-form label {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--black);
    position: relative;
}

.pricing-form :is(input, select, textarea) {
    display: block;
    width: 100%;
    background: #F6F9FF;
    border: 1px solid var(--black);
    border-radius: 0.3125rem;
    padding: 0.375em .75em;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--black);
}

.pricing-form :is(input, select, textarea)::placeholder {
    color: var(--black);
}

.pricing-form .themeBtn {
    display: block;
    border-radius: 0.3125rem;
    font-size: 1rem;
    outline: none;
    padding: .75em 2em;
    background: #222222;
    color: var(--white);
}

.pricing-form-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin: 1rem 0 0;
}

.pricing-form-btn .themeBtn#prevBtn1 span,
.pricing-form-btn .themeBtn#prevBtn2 span {
    margin: 0 .65em 0 0;
}

.pricing-form-btn .themeBtn span {
    margin-left: .65em;
}

.pricing-formtitle h5 {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 1rem;
}

.pricing-forminput .input-radio label {
    margin-bottom: 0;

}

.pricing-forminput .input-radio input[type="radio"] {
    clip: rect(0 0 0 0);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.pricing-forminput .input-radio input[type="radio"]:hover+span,
.pricing-forminput .input-radio input[type="radio"]:checked+span,
.pricing-forminput .input-radio input[type="radio"]:checked+span:hover,
.pricing-forminput .input-radio label span:hover {
    border-color: var(--primary);
    background-color: #d7b5886b;
    color: var(--black);
    z-index: 1;
}

.pricing-forminput .input-radio label span {
    display: block;
    cursor: pointer;
    background-color: var(--white);
    padding: 0.375em .75em;
    position: relative;
    border: 1px solid #222222;
    border-radius: 0.3125rem;
    transition: background-color .5s ease;
    color: #222222;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
}

.cart-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1A1A1A;
    border: 1px solid #6E6E6E;
    border-radius: 1.125rem;
    margin: 2.5rem 0;
    padding-right: 3.125rem;
    position: relative;
}

.cart-wrap::before {
    content: "";
    width: 100%;
    position: absolute;
    bottom: -1.375rem;
    border-top: 1px solid #CCCCCC;
}

.cart-box {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.cart-box-img {
    border: 1px solid #DCDCDC;
    border-radius: 1.125rem;
    overflow: hidden;
}

.cart-box-img img {
    width: 222px;
    aspect-ratio: 1;
    object-fit: cover;
}

.cart-box-title h4 {
    font-size: 2rem;
    color: var(--white);
    font-family: var(--font-lexend);
}

.cart-box-title h5 {
    font-size: 1.5rem;
    color: var(--primary);
    font-family: var(--font-lexend);
    margin: 0;
}

.cart-quantity h5 {
    font-size: 1.25rem;
    font-family: var(--font-lexend);
    color: var(--white);
    margin-bottom: 1rem;
}

.numberone {
    max-width: 120px;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    background: #F7F6FB;
    border: 1px solid #CCCCCC;
    padding: 0.375em 1em;
    border-radius: .5em;
}

.numberone :is(.minus, .plus) {
    font-size: 15px;
    color: #282828;
    cursor: pointer;
}

.numberone input {
    display: block;
    width: 100%;
    border: none;
    font-weight: 600;
    color: #282828;
    outline: none !important;
    user-select: none;
    background: transparent;
    text-align: center;
    padding: 0;
    margin-left: .65rem;
}

.cart-delete-btn {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--white);
    width: 28px;
    aspect-ratio: 1;
    border-radius: 0.25rem;
    display: grid;
    place-items: center;
    background: var(--primary);
}

.cart-total {
    margin-top: 1rem;
}

.cart-total h4 {
    font-size: 0.9375rem;
    text-transform: uppercase;
    color: var(--white);
}

.cart-total h4 span {
    font-size: 1.875rem;
    font-family: var(--font-lexend);
    margin-right: 1.75rem;
}

.cart-total p {
    font-size: 1.125rem;
    font-family: var(--font-lexend);
    color: var(--white);
}

/* / product-detail / */
.productSlider-img img,
.thumbproductSlider-img img {
    width: 100%;
    border-radius: 1rem;
}

.productSlider-img img {
    height: 500px;
    object-fit: cover;
}

.thumbproductSlider {
    margin-top: 1rem;
}

.thumbproductSlider-img img {
    width: 100% !important;
    height: 120px !important;
    margin: 0 auto;
    display: block;
}

.product-main h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.product-review,
.review-stars,
.review-content,
.product-btn,
.product-wishlist {
    display: flex;
    align-items: center;
}

.product-review {
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.review-stars {
    gap: 0.25rem;
}

.review-stars li {
    color: #FFB30F;
}

.review-content {
    gap: 1rem;
}

.review-content p {
    font-size: 1.125rem;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

.review-content p:first-child {
    border-right: 1px solid var(--white);
    padding-right: 1rem;
}

.product-main h4 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.product-content {
    border-block: 1px solid #D0D5DD;
    padding: 1.5rem 0;
}

.product-content p {
    font-size: 1rem;
    color: var(--white);
    margin: 0;
}

.product-content a {
    text-decoration: underline !important;
    color: var(--primary);
}

.product-btn {
    margin: 2.5rem 0;
    gap: 1rem;
}

.product-btn select {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    padding: 0.625em 1.25em;
    border-radius: .5em;
    border: none;
    outline: none !important;
}

.product-btn .numberone {
    padding: 0.625em .75em;
}

.product-btn .themeBtn {
    width: 100%;
    padding: 0.625em 1.5em;
    font-size: 1.125rem;
    text-align: center;
    background: var(--primary);
    color: var(--white);
}

.product-wishlist {
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.product-wishlist :is(a, p) {
    font-size: 1.125rem;
    color: var(--white);
}

.product-wishlist a span,
.product-wishlist p span {
    margin-right: .5rem;
}

.product-wishlist p {
    margin: 0;
}

.product-tab-nav {
    background: #2E2E2E;
    border-radius: 3.125rem;
    padding: 0.25em;
    justify-content: space-between;
}

.product-tab-nav .nav-item {
    flex: 0 0 32%;
    max-width: 32%;
}

.product-tab-nav .nav-item .nav-link {
    border: none !important;
    outline: none !important;
    border-radius: 3.125rem;
    width: 100%;
    background: transparent;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

.product-tab-nav .nav-item .nav-link.active {
    background: var(--primary);
    color: var(--white);
}

.product-tab-content #accordion .card {
    padding: 1.5rem 0;
    margin: 0;
    border: none;
    background: transparent;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: var(--white);
    border-radius: 0;
}

.product-tab-content #accordion .card .btn-link {
    width: 100%;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 0;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0;
}

.product-tab-content #accordion .card .btn-link i {
    margin-left: auto;
    color: var(--white);
    font-size: 1rem;
    border: 1px solid var(--white);
    border-radius: 50%;
    width: 28px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}

.product-tab-content #accordion .card .btn-link i::before {
    content: "\f106";
}

.product-tab-content #accordion .card .btn-link.collapsed i::before {
    content: "\f107";
}

.product-tab-content #accordion .card+.card {
    margin-top: 0;
}

.product-tab-content #accordion .card .card-body {
    padding: 0;
}

.product-tab-content #accordion .card .card-body p {
    color: var(--white);
    font-size: 1rem;
    margin: .75rem 0 0;
    line-height: 24px;
    padding-right: 3.75rem;
}


.checkout-form-box,
.checkout-item {
    background: #3E3E3E;
    border-radius: 1.5rem;
    padding: 1rem 1.5rem 1.875rem;
    margin: 0 0 2.8125rem;
}

.checkout-form-box h3,
.checkout-item h3 {
    font-size: 1.875rem;
    font-family: var(--font-lexend);
    color: var(--white);
    border-bottom: 1px solid var(--white);
    padding-bottom: 1rem;
    margin: 0;
}

.checkout-form-box :is(input, select) {
    display: block;
    width: 100%;
    background: #8E8D8C;
    border-radius: 1.875rem;
    border: none;
    outline: none !important;
    font-size: 1.25rem;
    color: var(--white);
    padding: .6em 1.5em;
    margin-top: 1.625rem;
}

.checkout-form-box select {
    height: 53.99px;
}

.checkout-form-box input::placeholder {
    color: var(--white);
}

.input-radio {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.input-radio label {
    margin: 0;
    cursor: pointer;
}

.input-radio input[type="radio"] {
    display: inline-block;
    width: fit-content;
    margin: 0;
    cursor: pointer;
}

.input-radio span {
    font-size: 1.25rem;
    color: var(--white);
}

.checkout-item {
    background: var(--primary);
    position: sticky;
    top: 2%;
}

.checkout-item h3 {
    color: var(--black);
    border-color: var(--black);
    margin-bottom: 1.625rem;
}

.item-box-card,
.item-subtotal ul,
.item-total ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.checkout-item .item-box-card:nth-of-type(1) {
    margin-bottom: 2.5rem;
}

.product-add {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.product-add figure {
    position: relative;
}

.product-add figure img {
    border-radius: 1.25rem;
    width: 110px;
    max-width: 110px;
    height: 84px;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-add figure span {
    position: absolute;
    width: 24px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #404040;
    color: var(--white);
    font-size: 15px;
    top: -12px;
    right: 0;
    display: grid;
    place-items: center;
}

.product-add-content h5 {
    font-size: 1.125rem;
}

.product-add-content a {
    font-size: 15px;
    color: #404040;
}

.item-box-card h4 {
    font-size: 1.25rem;
    font-family: var(--font-lexend);
    font-weight: 500;
    color: var(--black);
    margin: 0;
}

.item-box-card:nth-of-type(2) {
    margin-bottom: 1.625rem;
}

.item-subtotal {
    border-block: 1px solid var(--black);
    padding: 1.625rem 0;
}

.item-subtotal ul:not(:last-child) {
    margin-bottom: 1rem;
}

.item-subtotal ul li {
    font-size: 1.25rem;
    color: #404040;
}

.item-subtotal ul:nth-of-type(1) li:last-child {
    font-weight: 600;
    color: var(--black);
}

.item-total {
    padding: 1.625rem 0;
}

.item-total ul li {
    font-size: 1.5rem;
    font-weight: 700;
    color: #404040;
}

.checkout-item-btn .themeBtn {
    width: 100%;
    text-align: center;
    border-radius: 1.875rem;
    background: var(--black);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

/* loginModal */
.loginModal,
.signupModal {
    background: var(--black);
}

.popupimg img {
    height: 100vh;
    object-fit: cover;
}

.popupcontent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    padding: 2.5em 7.5em;
}

.popupcontent h3 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--white);
}

.popupcontent h6 {
    font-size: 1.25rem;
    color: var(--white);
    margin: 0;
}

.popupcontent h6 a {
    color: var(--primary);
}

.popupform {
    margin-top: 2.5rem;
}

.popupform-field {
    margin-bottom: 1rem;
}

.popupform-field label {
    font-size: 0.875rem;
    color: var(--white);
}

.popupform-field input {
    display: block;
    width: 100%;
    border: 1px solid var(--white);
    border-radius: 0.625rem;
    background: var(--black);
    font-size: 1rem;
    color: var(--white);
    padding: 0.5em 1em;
}

.popupform-field input::placeholder {
    color: var(--white);
}

.popupform-btn .themeBtn {
    width: 100%;
    text-align: center;
    background: var(--primary);
    outline: none !important;
    font-size: 1rem;
}

.popupform-forgot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.125rem;
}

.popupform-forgot label {
    margin: 0;
}

.popupform-forgot label span {
    font-size: 1rem;
    color: var(--white);
}

.popupform-forgot a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
}

.popuporlogin {
    margin-top: 2.5rem;
}

.popuporlogin p {
    font-size: 1rem;
    color: var(--white);
}

.popuporlogin ul {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.popuporlogin li {
    flex: 0 0 32%;
    max-width: 32%;
}

.popuporlogin li a {
    border: 1px solid var(--white);
    border-radius: 0.25rem;
    display: block;
    text-align: center;
    padding: .75em 1em;
}

.loginModal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 999;
}

.loginModal-close a {
    font-size: 1.125rem;
    color: var(--white);
}

.signupModal .popupform {
    margin-top: 1.5rem;
}

.signupModal .popupform-field {
    margin-bottom: 1.5rem;
}

/* payment */
.payment-section {
    height: 100%;
    display: grid;
    place-items: center;
}

.payment-section * {
    font-family: var(--font-lexend);
    color: var(--white);
}

.payment-title {
    border-bottom: 1px solid rgb(255, 255, 255, 16%);
    padding-bottom: 2.5rem;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.payment-title h4 {
    font-size: 2.125rem;
}

.payment-title p {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgb(255, 255, 255, 72%);
    margin: 0;
}

.payment-total {
    padding: 2.5rem 0;
    text-align: center;
}

.payment-total h6 {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgb(255, 255, 255, 72%);
}

.payment-total h3 {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 600;
}

.payment-detail {
    border: 1px solid rgb(255, 255, 255, 16%);
    border-radius: 0.625rem;
    padding: 1.25em;
}

.payment-detail h6 {
    font-size: 1.25rem;
    font-weight: 200;
    color: rgb(255, 255, 255, 72%);
    margin-bottom: 0.375rem;
}

.payment-detail h5 {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--white);
    margin: 0;
}

.payment-pdfbtn a {
    margin-top: 2.5rem;
    font-size: 1.5rem;
    text-align: center;
    display: block;
}

.privacyContent--dark p {
    color: #000;
}

.subBtns {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.forgetPassword {
    padding: 14rem 0 5rem;
}

.pricingBox ul,
.pricingBox ul li ol {
    height: auto !important;
}

.pricingBox ul li ol li {
    display: block;
}

.pricingBox ul li ol li span {
    display: block;
    position: relative;
}

/*.pricingBox ul li ol li span::before {*/
/*    content: "";*/
/*    width: 10px;*/
/*    height: 10px;*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: -1rem;*/
/*    transform: translateY(-50%);*/
/*    background: var(--primary);*/
/*    border-radius: 50%;*/
/*}*/

.pricingBox div h4:nth-of-type(3) {
    display: none;
}

.pricing-form #addon_ids {
    width: fit-content;
}

.input-radio input[type=checkbox] {
    width: auto;
}


/* pricingModal */
.pricingModal .modal-dialog {
    max-width: 886px;
}

.pricingModal .modal-content {
    padding: 3.125rem;
    background: var(--white);
    box-shadow: 0px 0px 30px rgb(0, 0, 0, 10%);
    border-radius: 0.625rem;
}

.pricingModal .modal-header {
    margin-bottom: 1rem;
}

.pricingModal .modal-header .mainHead {
    font-size: 2rem;
    color: var(--black);
    margin: 0;
}

.pricingModal .modal-header p {
    font-weight: 500;
    line-height: normal;
    color: #111827;
    margin: 0;
}

.pricing-form-tab {
    display: none;
}

.pricing-forminput {
    margin-bottom: 1rem;
}

.pricing-form label {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--black);
    position: relative;
}

.pricing-form :is(input, select, textarea) {
    display: block;
    width: 100%;
    background: #F6F9FF;
    border: 1px solid var(--black);
    border-radius: 0.3125rem;
    padding: 0.375em .75em;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--black);
}

.pricing-form :is(input, select, textarea)::placeholder {
    color: var(--black);
}

.pricing-form .themeBtn {
    display: block;
    border-radius: 0.3125rem;
    font-size: 1rem;
    outline: none;
    padding: .75em 2em;
    background: #222222;
    color: var(--white);
}

.pricing-form-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin: 1rem 0 0;
}

.pricing-form-btn .themeBtn#prevBtn1 span,
.pricing-form-btn .themeBtn#prevBtn2 span {
    margin: 0 .65em 0 0;
}

.pricing-form-btn .themeBtn span {
    margin-left: .65em;
}

.pricing-formtitle h5 {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 1rem;
}

.pricing-forminput .input-radio label {
    margin-bottom: 0;
}

.pricing-forminput .input-radio input[type="radio"] {
    clip: rect(0 0 0 0);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.pricing-forminput .input-radio input[type="radio"]:hover+span,
.pricing-forminput .input-radio input[type="radio"]:checked+span,
.pricing-forminput .input-radio input[type="radio"]:checked+span:hover,
.pricing-forminput .input-radio label span:hover {
    border-color: var(--primary);
    background-color: #d7b5886b;
    color: var(--black);
    z-index: 1;
}

.pricing-forminput .input-radio label span {
    display: block;
    cursor: pointer;
    background-color: var(--white);
    padding: 0.375em .75em;
    position: relative;
    border: 1px solid #222222;
    border-radius: 0.3125rem;
    transition: background-color .5s ease;
    color: #222222;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
}

.inputRadio label {
    display: flex;
}

.inputRadio label input {
    width: auto;
    margin-right: 0.5rem;
}

/* .otherTab.active {
        display: block !important;
    } */

.pricing-note {
    font-weight: 500;
    list-style: none;
    margin: 0 0 1rem 0;
}

.pricing-note li::marker {
    color: var(--primary);
}


.borderspan {
    border: 1px solid rgb(33, 33, 33) !important;
    padding: 0.25rem 0.5rem !important;
}

.storiesSlidess p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9;
    overflow: hidden;
    padding-right: 3rem;
}

.product-main label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
}

.product-main select {
    height: auto;
    background: var(--white);
    border: 1px none;
    padding: 0.75rem 1rem;
}

.product-main .price {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
}

/* Zoom */
.zoom-container {
    overflow: hidden;
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
}

.zoom-image {
    transition: transform 0.3s ease-in-out;
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
}


.pricing-forminput.pricingborder {
    border: 1px solid var(--black);
    padding: 1em;
    border-radius: 10px;
    margin-right: .5em;
}

.subscription-card p {
    position: relative;
    padding-left: 1.25rem;
}

.subscription-card p:not(:last-child) {
    margin: 1rem 0 0;
}

.subscription-card p::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.subscription-card strong#discountPrice {
    text-decoration: 2px line-through red !important;
}

/*  */
.btnToggle {
    position: relative;
}

.knob,
.btn-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.btnToggle {
    position: relative;
    width: 75px;
    height: 35px;
    overflow: hidden;
}

.btnToggle.btn-pill,
.btnToggle.btn-pill>.btn-bg {
    border-radius: 100px;
}

.btnToggle .checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.btnToggle .knob {
    z-index: 2;
}

.btnToggle .btn-bg {
    width: 100%;
    background-color: #ebf7fc;
    transition: 0.3s ease all;
    z-index: 1;
}

/* Button 1 */
.btnToggle#button-1 .knob:before {
    content: "YES";
    position: absolute;
    top: 50%;
    left: 4px;
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1.35;
    padding: 9px 4px;
    background-color: #03a9f4;
    border-radius: 50%;
    transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
    transform: translateY(-50%);
}

.btnToggle#button-1 .checkbox:checked+.knob:before {
    content: "NO";
    left: 42px;
    background-color: #f44336;
}

.btnToggle#button-1 .checkbox:checked~.btn-bg {
    background-color: #fcebeb;
}

.btnToggle#button-1 .knob,
.btnToggle#button-1 .knob:before,
.btnToggle#button-1 .btn-bg {
    transition: 0.3s ease all;
}






/* my css */
.btn-price:before {
    content: "\f07a";
    display: block;
    width: 20px;
    height: 20px;
    float: right;
    margin: 0 0 0 6px;
    font-family: 'Font Awesome 5 Pro';
}
.btn-price {
  display: table;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 1.1em;
  margin: 15px auto;
  border-radius: 50px;
  color: #f4f4f4 !important;
  transition: all 0.3s ease 0s;
}
.btn-color-1 {
  background-color: #5DADE2;
}
.switcher {
  display: inline-block;
  height: 40px;
  margin-top:17px;
  padding: 4px;
  background: #fff;
  border-radius: 2px;
  width: 210px;
  border-radius: 30px;
  border: solid 1px #ddd;
  position: relative;
}

.switcher__input {
  display: none !important;
}

.switcher__label {
  float: left;
  width: 50%;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  position: inherit;
  z-index: 10;
  transition: color 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
  will-change: transform;
  font-weight: unset;
}

.switcher__toggle {
  position: absolute;
  float: left;
  height: 30px;
  width: 50%;
  font-size: 12px;
  line-height: 30px;
  cursor: pointer;
  background-color: #3366cc;
  border-radius: 30px;
  left: 5px;
  top: 4px;
  transition: left 0.25s cubic-bezier(0.4, 0.0, 0.2, 1);
  will-change: transform;
}

.switcher__input:checked + .switcher__label {
  color: #fff;
}

.switcher__input--yang:checked ~ .switcher__toggle {
  left: 100px;
}

.articleSec .articleBox .col-md-4 figure img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.articleSec .col-md-4 {
    margin-bottom: 1rem;
}