@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Radley:ital@0;1&display=swap');
@font-face {
    font-family: "Arial-Reg";
    src: url("../fonts/ARIALLGT.TTF") format("truetype");
}

@font-face {
    font-family: "Arial-Bold";
    src: url("../fonts/ARIALBD.TTF") format("truetype");
}

@font-face {
    font-family: "Arial-Black";
    src: url("../fonts/arial-black.ttf") format("truetype");
}

@font-face {
    font-family: "Allotrope-Extra-Bold";
    src: url("../fonts/allotrope-extrabold.ttf") format("truetype");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

section {
    position: relative;
    overflow: hidden;
}

:root {
    --prim-clr: #1084EB;
    --white-clr: #fff;
    --black-clr: #000;
    --grey-clr: #2b272b;
    --grey-clr-2: #19161C;
    --grey-clr-3: #969696;
    --grey-clr-4: #FEFEFF;
    --prim-bg: #1084EB;
    --black-bg: #000;
    --white-bg: #fff;
    --grey-bg: #2b272b;
    --grey-bg-2: #19161C;
    --grey-bg-3: #1F1F1F;
    --grey-bg-4: #8e8c8d;
    --grey-bg-5: #121212;
    --yellow-clr: #ffc107;
    --font-1: "Radley", serif;
    --font-2: "Arial-Reg";
    --font-3: "Arial-Bold";
    --font-4: "Arial-Black";
    --font-5: "Allotrope-Extra-Bold", sans-serif;
    --font-6: "Open Sans", sans-serif;
}

body {
    overflow-x: hidden;
    font-family: var(--font-2);
}

main {
    overflow: hidden;
    background: linear-gradient(0deg, rgba(28, 26, 26, 1) 0%, rgba(33, 30, 32, 1) 35%, rgba(38, 34, 37, 1) 65%, rgba(42, 38, 42, 1) 100%);
}

a {
    text-decoration: none;
}

button:focus {
    outline: none !important;
    box-shadow: none !important;
}

textarea:focus,
input:focus {
    outline: none !important;
    box-shadow: none !important;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}


/************************************* header *************************************/

.navbar-toggler {
    background-color: var(--prim-bg);
    color: var(--white-clr);
    border: none;
}


/* header-btm */

header .header-btm .navbar>.container {
    align-items: center;
}

header .header-btm .navbar {
    padding: 33px 0 15px 0;
    transition: all 0.3s ease-in-out;
    background: transparent;
    z-index: 1000;
    box-shadow: 0 0 0px 0px rgb(0 0 0 / 16%);
}

header.sticky .header-btm .navbar {
    background: var(--black-bg);
    padding: 20px 0 20px 0;
    box-shadow: 0 0 11px -2px rgb(0 0 0 / 16%);
}

header .header-btm .navbar .navbar-brand {
    margin: 0;
    padding: 0;
}

header .header-btm .navbar .navbar-brand .logo {
    width: auto;
    height: clamp(20px, 4vw, 43px);
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease-in-out;
    margin: 0;
}

header .header-btm .navbar .navbar-nav {
    align-items: center;
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link {
    color: var(--white-clr);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 0;
    margin: 0 20px;
    transition: all 0.5s ease-in-out;
    border: none;
    background-color: transparent;
    opacity: 0.5;
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link:hover {
    opacity: 1;
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link.anim-active {
    opacity: 1;
    font-weight: 600;
}

header .header-btm .navbar .navbar-nav .nav-item:last-child .nav-link {
    margin-right: 0;
}

header .header-btm .navbar .navbar-nav .nav-item:first-child .nav-link {
    margin-left: 0;
}

header .header-btm .side-ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

header .header-btm .side-ul .sd-li {
    margin: 0 30px 0 0;
}

header .header-btm .side-ul .sd-li:last-child {
    margin: 0;
}

header .header-btm .side-ul .sd-li .btn-login {
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
    color: var(--white-clr);
    margin: 0;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 152px;
    background: var(--prim-bg);
    border-radius: 100px;
    border: 3px solid var(--prim-clr);
    box-shadow: none;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    &:hover {
        background: transparent;
        color: var(--white-clr);
        border-color: var(--white-clr);
    }
}

header .header-btm .navbar .btn-login {
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
    color: var(--white-clr);
    margin: 0;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 152px;
    background: var(--prim-bg);
    border-radius: 100px;
    border: 3px solid var(--prim-clr);
    box-shadow: none;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    &:hover {
        background: transparent;
        color: var(--white-clr);
        border-color: var(--white-clr);
    }
}


/***************************** header close *****************************/


/***************************** footer start *****************************/

footer {
    background: var(--black-bg);
}

footer .footer-tp {
    padding: 140px 0 79px;
}

footer .footer-btm {
    padding: 37px 0;
    border-top: 1px solid var(--grey-clr-3);
}

footer .footer-btm .desc span {
    font-family: var(--font-3);
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    color: var(--white-clr);
}

footer .footer-btm .desc .social-ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 34px;
}

footer .footer-btm .desc .social-ul li a {
    color: var(--white-clr);
    font-size: 20px;
    transition: all 0.2s ease-in-out;
    &:hover {
        color: var(--prim-clr);
    }
}


/***************************** footer close *****************************/


/***************************** sec-home-banner start *****************************/

.sec-home-banner {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.3) 100%), url(../images/home-bg.png) top/cover no-repeat;
    padding: 120px 0 38px;
    min-height: 100dvh;
    align-content: flex-end;
}

.sec-home-banner .desc-area {
    text-align: center;
}

.sec-home-banner .desc-area h3 {
    font-family: var(--font-1);
    font-size: clamp(26px, 8vw, 89px);
    line-height: clamp(36px, 8vw, 98px);
    color: var(--white-clr);
    text-transform: unset;
    margin: 0 0 33px 0;
}

.sec-home-banner .desc-area p {
    font-size: clamp(16px, 3vw, 24px);
    line-height: normal;
    color: var(--white-clr);
}

.sec-home-banner .desc-area .text-icon {
    margin: 83px auto 0;
}

.sec-home-banner .desc-area .text-icon>svg {
    height: clamp(100px, 13vw, 243px);
    width: auto;
}


/***************************** sec-home-banner close *****************************/


/***************************** sec-inner-banner start *****************************/

.sec-inner-banner {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%), url(../images/home-bg.png) center/cover no-repeat;
    padding: 120px 0 30px;
    min-height: 50dvh;
    align-content: center;
}

.sec-inner-banner .desc-area {
    text-align: center;
}

.sec-inner-banner .desc-area h3 {
    font-family: var(--font-1);
    font-size: clamp(26px, 5vw, 60px);
    line-height: normal;
    color: var(--white-clr);
    text-transform: unset;
    margin: 0 0 33px 0;
}

.sec-inner-banner .desc-area p {
    font-family: var(--font-6);
    font-size: clamp(16px, 3vw, 22px);
    line-height: normal;
    color: var(--white-clr);
}

.sec-inner-banner .desc-area .text-icon {
    margin: 83px auto 0;
}

.sec-inner-banner .desc-area .text-icon>svg {
    height: clamp(100px, 13vw, 243px);
    width: auto;
}


/***************************** sec-inner-banner close *****************************/


/***************************** sec-about start *****************************/

.sec-about {
    padding: 139px 0 82px;
    align-content: center;
}

.sec-about .desc-area h4 {
    font-family: var(--font-5);
    font-size: clamp(24px, 5vw, 64px);
    line-height: clamp(26px, 5vw, 62px);
    color: var(--white-clr);
    text-transform: uppercase;
    margin: 0 0 11px 0;
}

.sec-about>.container>.row {
    position: relative;
}

.sec-about>.container>.row::after {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 2px;
    background: var(--white-bg);
}

.sec-about>.container>.row>.col-12:first-child .desc-area {
    text-align: right;
}

.sec-about .desc-area p {
    font-size: 18px;
    line-height: 22.1px;
    color: var(--white-clr);
}


/***************************** sec-about close *****************************/


/***************************** sec-project-goal start *****************************/

.sec-project-goal {
    padding-top: 82px;
}

.sec-project-goal .head-area .ct-spc {
    margin-bottom: clamp(34px, 5vw, 64px);
}

.sec-project-goal .head-area h6 {
    font-family: var(--font-3);
    font-size: 20px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--white-clr);
    text-align: right;
}

.sec-project-goal .head-area h3 {
    font-family: var(--font-5);
    font-weight: 700;
    font-size: clamp(24px, 5vw, 64px);
    line-height: clamp(26px, 5vw, 62px);
    text-transform: uppercase;
    color: var(--white-clr);
    margin: 9px 0 0 0;
    text-align: right;
}

.sec-project-goal .head-area p {
    font-size: 18px;
    line-height: 22.1px;
    color: var(--white-clr);
}

.sec-project-goal .desc p {
    font-size: 20px;
    line-height: 25px;
}

.sec-project-goal .project-slider .item>figure>.thumb {
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.sec-project-goal .project-slider .owl-nav {
    margin: 0;
}

.sec-project-goal .project-slider .owl-nav .owl-prev,
.sec-project-goal .project-slider .owl-nav .owl-next {
    position: absolute;
    top: 35%;
    left: -15%;
}

.sec-project-goal .project-slider .owl-nav .owl-next {
    left: auto;
    right: -15%;
}

.sec-project-goal .project-slider .owl-nav .owl-prev:focus,
.sec-project-goal .project-slider .owl-nav .owl-next:focus,
.sec-project-goal .project-slider .owl-nav .owl-prev:hover,
.sec-project-goal .project-slider .owl-nav .owl-next:hover {
    background: transparent;
    border: none;
}


/***************************** sec-project-goal close *****************************/


/***************************** sec-join start *****************************/

.sec-join {
    padding: 78px 0 83px 0;
}

.sec-join .head-area {
    text-align: center;
    margin-bottom: 60px;
}

.sec-join .head-area h6 {
    font-family: var(--font-3);
    font-size: 20px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--white-clr);
    margin-bottom: 14px;
}

.sec-join .head-area h3 {
    font-family: var(--font-5);
    font-size: clamp(24px, 5vw, 64px);
    line-height: clamp(26px, 5vw, 62px);
    text-transform: uppercase;
    color: var(--white-clr);
}

.sec-join figure>.thumb {
    object-fit: contain;
    width: 100%;
}

.sec-join .form-area .inp-area {
    margin: 0 0 16px 0;
    position: relative;
}

.sec-join .form-area .inp-area .eye-icon {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 12px 6px;
    color: #fff;
    width: 45px;
    height: 60px;
    font-size: 20px;
    position: absolute;
    right: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec-join .form-area .inp-area .ct-inp {
    height: 62px;
    width: 100%;
    background: transparent;
    color: var(--white-clr);
    font-family: var(--font-2);
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.144px;
    border-radius: 8.788px;
    border: 4px solid var(--white-clr);
    padding: 15px 30px 15px 30px;
}

.sec-join .form-area .inp-area .ct-inp option {
    color: black;
}

.sec-join .form-area .inp-area .icn-locate {
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    align-content: center;
}

.sec-join .form-area .inp-area .ct-inp::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-family: var(--font-2);
    color: var(--white-clr);
    font-size: 18px;
    text-transform: capitalize;
}

.sec-join .form-area .inp-area .ct-inp::-moz-placeholder {
    /* Firefox 19+ */
    font-family: var(--font-2);
    color: var(--white-clr);
    font-size: 18px;
    text-transform: capitalize;
}

.sec-join .form-area .inp-area .ct-inp:-ms-input-placeholder {
    /* IE 10+ */
    font-family: var(--font-2);
    color: var(--white-clr);
    font-size: 18px;
    text-transform: capitalize;
}

.sec-join .form-area .inp-area .ct-inp:-moz-placeholder {
    /* Firefox 18- */
    color: var(--white-clr);
    font-size: 18px;
    text-transform: capitalize;
}

.sec-join .form-area .btn-submit {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-3);
    text-transform: capitalize;
    text-align: center;
    color: var(--black-clr);
    margin: 5px 0 0 0;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 100%;
    background: var(--white-bg);
    border-radius: 8px;
    border: 3px solid var(--white-clr);
    box-shadow: none;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    &:hover {
        background-color: #8e8d8e;
        color: #fff;
        border-color: var(--white-clr);
    }
}


/***************************** sec-join close *****************************/


/***************************** sec-choose start *****************************/

.sec-choose {
    background: linear-gradient(90deg, rgba(31, 31, 31, 0.8) 100%, rgba(31, 31, 31, 0.8) 0%), url(../images/choose-bg.jpg) top/cover no-repeat;
    min-height: 46.3vh;
    padding: 83px 0 149px;
}

.sec-choose .desc-area h6 {
    font-family: var(--font-3);
    font-size: 20px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--white-clr);
    margin-bottom: 14px;
}

.sec-choose .desc-area h3 {
    font-family: var(--font-5);
    font-size: clamp(24px, 5vw, 64px);
    line-height: clamp(26px, 5vw, 62px);
    text-transform: uppercase;
    color: var(--white-clr);
    margin-bottom: 13px;
}

.sec-choose .desc-area p {
    font-size: 18px;
    line-height: 22.1px;
    color: var(--white-clr);
}


/***************************** sec-choose close *****************************/


/***************************** sec-marquee start *****************************/

.sec-marquee {
    overflow: visible;
    padding: 0 0 83px 0;
}

.sec-marquee .slider-area {
    z-index: 1;
    position: relative;
    margin-top: -100px;
}

.sec-marquee .marquee-slider figure .thumb {
    object-fit: cover;
    object-position: center;
    height: 124px;
    width: auto;
    border-radius: 15px;
    border: 2px solid var(--white-clr);
}


/***************************** sec-marquee close *****************************/


/***************************** sec-faq start *****************************/

.sec-faq {
    padding-bottom: 100px;
}

.sec-faq .desc-area h3 {
    font-family: var(--font-5);
    font-weight: 700;
    font-size: clamp(24px, 4vw, 48px);
    line-height: clamp(26px, 4vw, 60px);
    letter-spacing: -0.96px;
    text-transform: capitalize;
    color: var(--white-clr);
    margin-bottom: 13px;
}

.sec-faq .desc-area p {
    font-size: 20px;
    line-height: 30px;
    color: var(--grey-clr-4);
}

.sec-faq .accordion-main .accordion {}

.sec-faq .accordion-main .accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    background: var(--grey-bg-4);
    border-radius: 4px;
}

.sec-faq .accordion-main .accordion .accordion-item .accordion-header {}

.sec-faq .accordion-main .accordion .accordion-item .accordion-header .accordion-button {
    font-family: "Arial-Black";
    font-size: 14px;
    text-transform: unset;
    line-height: normal;
    text-align: center;
    color: var(--black-clr);
    padding: 28px;
    background: var(--grey-bg-4);
    position: relative;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
}

.sec-faq .accordion-main .accordion .accordion-item .accordion-header .accordion-button::after {
    background-image: url(../images/arrow-down.png);
    background-position: center;
    height: 17px;
    width: 17px;
    background-size: 16px;
    /* content: '\e59e'; */
    font-family: 'Font Awesome 6 Pro';
    transform: rotate(0deg);
    /* height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-bg-4); */
}

.sec-faq .accordion-main .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: var(--black-clr);
    background: var(--grey-bg-4);
    padding: 28px 28px 10px 28px;
}

.sec-faq .accordion-main .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    /* background-image: none; */
    /* content: '\f068'; */
    /* font-family: 'Font Awesome 6 Pro'; */
    transform: rotate(180deg);
    /* color: var(--black-clr); */
}

.sec-faq .accordion-main .accordion .accordion-item .accordion-collapse {
    background: var(--grey-bg-4);
    box-shadow: 0px 3px 20px rgb(0 0 0 / 10%);
    border-radius: 4px;
}

.sec-faq .accordion-main .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 0 78px 19px 28px;
}

.sec-faq .accordion-main .accordion .accordion-item .accordion-collapse .accordion-body p {
    font-size: 14px;
    line-height: 16px;
    color: var(--black-clr);
    margin: 0;
    padding: 0;
}


/***************************** sec-faq close *****************************/


/************************************** inner pages css start **************************************/


/***************************** lOGIN PAGE START *****************************/

.account-area {
    min-height: 100vh;
    vertical-align: middle;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.3) 100%), url(../images/home-bg-2.png) center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.account-area .form-area {
    border-radius: 24px;
    background-blend-mode: normal, lighten;
    backdrop-filter: blur(5px);
    padding-top: clamp(25px, 4vw, 53px);
    padding-bottom: clamp(25px, 3vw, 40px);
    padding-left: clamp(22px, 3vw, 39px);
    padding-right: clamp(22px, 3vw, 39px);
    position: relative;
    z-index: 3;
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 51.97%, #000 102.92%);
    box-shadow: -0.5px -0.5px 0px #ffffff, 1px 1px 0px #4e4e4e;
}

.account-area .form-area figure {
    margin: 0;
}

.account-area .form-area figure img {
    text-align: center;
    margin: 0 auto;
    display: flex;
    height: clamp(20px, 5vw, 45px);
    object-fit: contain;
    object-position: center;
}

.form-area .form-main {
    margin-top: 56px;
}

.form-area .form-main h2 {
    font-family: var(--font-5);
    font-weight: 700;
    font-size: 24px;
    line-height: normal;
    text-transform: capitalize;
    color: var(--white-clr);
    margin-bottom: 5px;
    text-align: center;
}

.form-area .form-main p {
    font-size: 18px;
    line-height: normal;
    color: var(--grey-clr-4);
    text-align: center;
    font-family: var(--font-6);
}

.form-area .form-main .btn-solid,
.form-area .form-main .btn-line {
    font-family: var(--font-6);
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
    color: var(--white-clr);
    padding: 5px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 100%;
    background: var(--prim-bg);
    border-radius: 100px;
    border: 3px solid var(--prim-clr);
    box-shadow: none;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    &:hover {
        background: transparent;
        color: var(--white-clr);
        border-color: var(--white-clr);
    }
}

.form-area .form-main .btn-line {
    background: var(--white-bg);
    color: var(--prim-clr);
    border: 3px solid var(--white-clr);
    &:hover {
        background: transparent;
        color: var(--white-clr);
    }
}

.form-area .form-main .form-group {
    margin-bottom: 16px;
}

.form-area .form-main .form-group .form-label {
    color: var(--white-clr);
    font-family: var(--font-6);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.form-area .form-main .form-group .ct-inp {
    border-radius: 10px;
    border: 1px solid var(--white-clr);
    background-color: rgba(0, 0, 0, 0.65);
    padding: 12px;
    color: var(--white-clr);
    font-family: var(--font-6);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    height: 64px;
}

.form-area .form-main .form-group .ct-inp::placeholder {
    color: var(--white-clr);
}

.form-area .form-main .ct-dropdown .drop-toggle {
    width: 100%;
    padding: 12px;
    font-family: var(--font-6);
    background: var(--black-bg);
    text-align: left;
    border-radius: 10px;
    border: 1px solid var(--white-clr);
    height: 55px;
    color: var(--white-clr);
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.form-area .form-main .ct-dropdown .drop-toggle::after {
    display: none;
}

.form-area .form-main .ct-dropdown .dropdown-menu {
    width: 100%;
    margin-top: 8px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid var(--white-clr);
    background-color: var(--black-bg);
}

.form-area .form-main .ct-dropdown .dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    &:hover {
        background: transparent;
    }
}

.form-area .form-main .ct-dropdown .dropdown-menu .dropdown-item .form-check-label {
    color: var(--white-clr);
    font-size: clamp(16px, 1.5vw, 17px);
    line-height: normal;
    margin: 0;
    cursor: pointer;
}

.form-area .form-main .ct-dropdown .dropdown-menu .dropdown-item .form-check-input[type="checkbox"] {
    width: 22px;
    height: 22px;
    border: 0.13rem solid var(--white-clr);
    background-color: transparent;
    border-radius: 3px;
    padding: 0px;
    margin: 0;
}

.form-area .form-main .ct-dropdown .dropdown-menu .dropdown-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
    align-items: center;
    gap: 30px;
}

.form-area .form-main .ct-dropdown .dropdown-menu .dropdown-actions .clear-btn {
    color: var(--prim-bg);
    border: none;
    cursor: pointer;
    width: 50%;
    background: var(--white-bg);
    height: auto;
    border-radius: 4px;
    padding: 8px 20px;
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 500;
    line-height: 24px;
}

.form-area .form-main .ct-dropdown .dropdown-menu .dropdown-actions .ok-btn {
    color: white;
    width: 50%;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 4px;
    background: var(--prim-bg);
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 400;
    line-height: 24px;
}

.form-area .form-main .ct-dropdown .dropdown-menu .dropdown-item .dropdown-option input[type="checkbox"]:checked {
    background-color: var(--black-bg) !important;
    --bs-form-check-bg-image: url(../images/notification/check-solid.svg) !important;
    background-size: 15px 15px !important;
}

.form-area .form-main .forget-pass {
    text-align: end;
}

.form-area .form-main .forget-pass a {
    color: var(--white-clr);
    font-family: var(--font-6);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-bottom: 1px solid var(--white-bg);
    letter-spacing: 1px;
    display: inline-block;
}

.form-area .form-main .login-btn {
    margin-top: clamp(22px, 2vw, 28px);
    margin-bottom: clamp(22px, 2vw, 28px);
    font-family: var(--font-6);
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
    color: var(--white-clr);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 100%;
    background: var(--prim-bg);
    border-radius: 100px;
    border: 3px solid var(--prim-clr);
    box-shadow: none;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    &:hover {
        background: transparent;
        color: var(--white-clr);
        border-color: var(--white-clr);
    }
}

.form-area .form-main .login-with-social p {
    color: var(--white-clr);
    text-align: center;
    font-family: var(--font-6);
    font-size: clamp(16px, 1.5vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 16px;
}

.form-area .form-main .login-with-social .social-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.form-area .form-main .login-with-social .social-login a {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 15px 9.5px;
    justify-content: center;
    align-items: center;
    gap: 0px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.2);
}

.form-area .form-main .login-with-social .social-login a img {
    width: 24px;
    height: 24px;
    object-fit: scale-down;
}

.form-area .form-main .login-signup {
    text-align: center;
    margin-top: 28px;
}

.form-area .form-main .login-signup p {
    color: var(--white-clr);
    font-family: var(--font-6);
    font-size: clamp(16px, 1.5vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-area .form-main .login-signup p a {
    color: var(--white-clr);
    border-bottom: 1px solid var(--white-clr);
    display: inline-block;
}

.form-area .form-main .field-icon {
    position: absolute;
    right: 10px;
    top: 70%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--white-clr);
}


/***************************** lOGIN PAGE END *****************************/


/***************************** reset-password-modal start *****************************/

.reset-password-modal .modal-content {
    border-radius: 24px;
}

.reset-password-modal .modal-body {
    padding: 24px 40px;
    background-color: var(--white-clr);
    border-radius: 24px !important;
    box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.1);
}

.reset-password-modal .modal-body .modal-body-form {
    text-align: center;
}

.reset-password-modal .modal-body .modal-body-form figure {
    margin-top: 40px;
}

.reset-password-modal .modal-body .modal-body-form figure img {}

.reset-password-modal .modal-body .modal-body-form>i {
    color: var(--prim-clr);
    font-size: 30px;
    margin-bottom: 15px;
}

.reset-password-modal .modal-body .modal-body-form h2 {
    color: var(--black-clr);
    text-align: center;
    font-family: var(--font-5);
    font-size: clamp(18px, 1.5vw, 24px);
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 16px;
}

.reset-password-modal .modal-body .modal-body-form p {
    color: var(--black-clr);
    text-align: center;
    font-family: var(--font-2);
    font-size: clamp(14px, 1.5vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    width: 78%;
    margin: 0 auto 30px;
}

.reset-password-modal .modal-body .modal-body-form .btn-modal {
    margin-top: clamp(22px, 2vw, 28px);
    margin-bottom: clamp(22px, 2vw, 28px);
    font-family: var(--font-6);
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
    color: var(--white-clr);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 100%;
    background: var(--prim-bg);
    border-radius: 100px;
    border: 3px solid var(--prim-clr);
    box-shadow: none;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    &:hover {
        background: var(--white-bg);
        color: var(--prim-clr);
        border-color: var(--prim-clr);
    }
}


/***************************** reset-password-modal end *****************************/


/***************************** sec-contact start *****************************/

.sec-contact {
    padding: 50px 0;
}

.sec-contact .side-info .info-card {
    background: transparent;
    border-radius: 16px;
    border: 4px solid var(--white-clr);
    padding: clamp(16px, 2vw, 26px);
    color: var(--white-clr);
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: clamp(20px, 4vw, 50px);
}

.sec-contact .side-info .info-card .icon-area {
    height: clamp(30px, 5vw, 60px);
    width: clamp(30px, 5vw, 60px);
    border-radius: 13px;
    background: var(--white-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: clamp(16px, 3vw, 30px);
}

.sec-contact .side-info .info-card .desc {
    padding-left: 19px;
}

.sec-contact .side-info .info-card .desc h6 {
    font-family: var(--font-6);
    font-size: clamp(14px, 1.5vw, 17px);
    text-transform: capitalize;
    line-height: normal;
    color: #92929d;
    margin-bottom: 16px;
}

.sec-contact .side-info .info-card .desc a {
    font-family: var(--font-2);
    color: var(--white-clr);
    font-size: clamp(14px, 3vw, 18px);
}

.sec-contact .form-main .input-field {
    position: relative;
    padding-bottom: 24px
}

.sec-contact .form-main .input-field label {
    font-family: var(--font-6);
    font-size: clamp(14px, 1.5vw, 17px);
    text-transform: capitalize;
    line-height: normal;
    color: var(--white-clr);
    margin-bottom: 8;
}

.sec-contact .form-main .input-field input {
    height: 62px;
    width: 100%;
    background: transparent;
    color: var(--white-clr);
    font-family: var(--font-6);
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.144px;
    border-radius: 8.788px;
    border: 4px solid var(--white-clr);
    padding: 17px 45px 17px 32px;
}

.sec-contact .form-main .input-field input::-webkit-input-placeholder {
    font-family: var(--font-6);
    font-size: 17px;
    opacity: .5;
    color: var(--white-clr);
    letter-spacing: 1px;
    text-transform: capitalize
}

.sec-contact .form-main .input-field input::-moz-placeholder {
    font-family: var(--font-6);
    font-size: 17px;
    opacity: .5;
    color: var(--white-clr);
    letter-spacing: 1px;
    text-transform: capitalize
}

.sec-contact .form-main .input-field input:-ms-input-placeholder {
    font-family: var(--font-6);
    font-size: 17px;
    opacity: .5;
    color: var(--white-clr);
    letter-spacing: 1px;
    text-transform: capitalize
}

.sec-contact .form-main .input-field input:-moz-placeholder {
    font-family: var(--font-6);
    font-size: 17px;
    opacity: .5;
    color: var(--white-clr);
    letter-spacing: 1px;
    text-transform: capitalize
}

.sec-contact .form-main .input-field textarea {
    width: 100%;
    background: transparent;
    color: var(--white-clr);
    font-family: var(--font-2);
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.144px;
    border-radius: 8.788px;
    border: 4px solid var(--white-clr);
    padding: 17px 45px 17px 32px;
}

.sec-contact .form-main .input-field textarea::-webkit-input-placeholder {
    font-family: var(--font-6);
    font-size: 17px;
    opacity: .5;
    color: var(--white-clr);
    letter-spacing: 1px;
    text-transform: capitalize
}

.sec-contact .form-main .input-field textarea::-moz-placeholder {
    font-family: var(--font-6);
    font-size: 17px;
    opacity: .5;
    color: var(--white-clr);
    letter-spacing: 1px;
    text-transform: capitalize
}

.sec-contact .form-main .input-field textarea:-ms-input-placeholder {
    font-family: var(--font-6);
    font-size: 17px;
    opacity: .5;
    color: var(--white-clr);
    letter-spacing: 1px;
    text-transform: capitalize
}

.sec-contact .form-main .input-field textarea:-moz-placeholder {
    font-family: var(--font-6);
    font-size: 17px;
    opacity: .5;
    color: var(--white-clr);
    letter-spacing: 1px;
    text-transform: capitalize
}

.sec-contact .form-main .submit-btn {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-3);
    text-transform: capitalize;
    text-align: center;
    color: var(--black-clr);
    margin: 5px 0 0 0;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 74px;
    width: 100%;
    background: var(--white-bg);
    border-radius: 8px;
    border: 3px solid var(--white-clr);
    box-shadow: none;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    &:hover {
        background: var(--black-bg);
        color: var(--white-clr);
        border-color: var(--white-clr);
    }
}


/***************************** sec-contact end *****************************/


/***************************** sec-blog start *****************************/

.sec-blog {
    padding: 50px 0;
}

.sec-blog .blog-card {
    background: var(--grey-bg-5);
    border: none;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 24px;
}

.sec-blog .blog-card .blog-img {
    object-fit: cover;
    object-position: center;
    height: clamp(120px, 18vw, 222px);
    width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
}

.sec-blog .blog-card .desc h6 {
    font-family: var(--font-6);
    color: var(--white-clr);
    font-size: clamp(16px, 3vw, 20px);
    line-height: clamp(25px, 4vw, 30px);
    letter-spacing: -.6px;
    margin-top: clamp(10px, 2vw, 20px);
    margin-bottom: 10px;
}

.sec-blog .blog-card .desc .author-area {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

.sec-blog .blog-card .desc .author-area .auth-ico {
    height: 36px;
    width: 36px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.sec-blog .blog-card .desc .author-area span {
    font-family: var(--font-6);
    font-size: clamp(16px, 2.3vw, 20px);
    line-height: normal;
    color: #98989a;
    text-transform: capitalize;
    display: inline-flex;
}

.sec-blog .blog-card .desc .btm-area {
    gap: 21px;
    margin-top: 23px;
}

.sec-blog .blog-card .desc .btm-area .shares {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 100px;
    border: 1px solid #262626;
    background: #1a1a1a;
    height: clamp(33px, 4vw, 43px);
    width: clamp(60px, 7vw, 80px);
    font-family: var(--font-6);
    color: #98989a;
}

.sec-blog .blog-card .desc .btm-area .shares .icon {
    height: 19px;
    width: auto;
    object-fit: contain;
    object-position: center;
}

.sec-blog .blog-card .desc .btm-area .read-btn {
    color: #98989a;
    height: clamp(40px, 7vw, 63px);
    width: clamp(160px, 16vw, 227px);
    font-family: var(--font-6);
    font-size: clamp(16px, 3vw, 20px);
    text-transform: capitalize;
    margin: 0;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white-clr);
    background: transparent;
    transition: all .5s ease-in-out;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    gap: 10px;
}

.sec-blog .blog-card .desc .btm-area .read-btn:hover {
    color: var(--black-clr);
    border-color: transparent;
    background: var(--white-bg);
}

.sec-blog .blog-card .desc .btm-area .read-btn:hover svg {
    color: var(--black-clr);
}

.sec-blog .blog-card .desc .btm-area .read-btn svg {
    color: var(--white-clr);
    font-size: clamp(16px, 2vw, 23px);
    transition: all .5s ease-in-out
}

.sec-blog .pagination-wrap {
    margin-top: 40px
}

.sec-blog .pagination-wrap>span {
    font-family: var(--font-6);
    font-size: clamp(16px, 3vw, 22px);
    line-height: normal;
    text-transform: capitalize;
    color: var(--white-clr);
}

.sec-blog .pagination {
    gap: 13.75px;
}

.sec-blog .pagination .page-item .page-link {
    border-radius: 5.5px;
    background: transparent;
    border-color: var(--white-clr);
    width: 33px;
    height: 33px;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-6);
    font-size: clamp(16px, 3vw, 22px);
    line-height: normal;
    text-transform: capitalize;
    color: var(--white-clr);
}

.sec-blog .pagination .page-item .page-link:hover {
    background: var(--white-clr);
    color: var(--black-clr);
}

.sec-blog .pagination .page-item .page-link:focus {
    outline: none;
    box-shadow: none;
}

.sec-blog .pagination .page-item .page-link>span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-blog .pagination .page-item:last-child .page-link {
    border: none;
}

.sec-blog .pagination .page-item.active .page-link {
    background: var(--white-bg);
    color: var(--black-clr);
}

.sec-blog-detail {
    position: relative;
    padding: 70px 0;
}

.sec-blog-detail .blog-detail {
    background-color: var(--grey-bg-5);
    border: none;
    margin: 0 0 20px 0;
    padding: 15px;
    overflow: hidden;
    box-shadow: 0px 0px 20px 1px rgb(0 0 0 / 10%);
    border-radius: 16px;
}

.sec-blog-detail .blog-detail .img .thumb {
    width: 100%;
    min-height: 400px;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    margin: 0;
    display: block;
    border-radius: 5px;
}

.sec-blog-detail .comment-form {
    color: #fff;
}

.sec-blog-detail .blog-detail .desc ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    padding: 15px 0 0 0;
    margin: 15px 0 10px 0;
    border-top: 1px solid rgba(31, 31, 31, 0.10);
}

.sec-blog-detail .blog-detail .desc ul li {
    padding: 0 0 0 20px;
    margin: 0 15px 0 0;
    font-family: var(--font-2);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    position: relative;
    color: var(--white-bg);
}

.sec-blog-detail .blog-detail .desc ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Font Awesome 6 Pro';
    font-weight: 800;
    color: var(--sec-clr);
    font-size: 14px;
}

.sec-blog-detail .blog-detail .desc ul li.usr-icn::before {
    content: '\f007';
}

.sec-blog-detail .blog-detail .desc ul li.cln-icn::before {
    content: '\f073';
}

.sec-blog-detail .blog-detail .desc ul li.cmnt-icn::before {
    content: '\f075';
}

.sec-blog-detail .blog-detail .desc ul li.vws-icn::before {
    content: '\f06e';
}

.sec-blog-detail .blog-detail .desc h6 {
    font-size: clamp(22px, 5vw, 40px);
    font-weight: 700;
    text-transform: capitalize;
    margin: 15px 0 10px 0;
    font-family: var(--font-5);
    padding: 0;
    color: var(--white-clr);
}

.sec-blog-detail .blog-detail .desc span {
    color: var(--bg-sec);
}

.sec-blog-detail .blog-detail .desc p {
    font-size: 16px;
    font-family: var(--white-clr);
    color: var(--white-clr);
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 22px;
}

.sec-blog-detail .side-bar-main .search-bar {
    margin: 0;
}

.sec-blog-detail .side-bar-main .search-bar .input-field {
    position: relative;
}

.sec-blog-detail .side-bar-main .search-bar .input-field .search-control {
    border: none;
    height: 55px;
    width: 100%;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-6);
    color: var(--white-clr);
    padding: 10px 55px 10px 30px;
    margin: 0;
    box-shadow: 0px 0px 20px 1px rgb(0 0 0 / 10%);
    background-color: var(--grey-bg-5);
    border-radius: 50px;
}

.sec-blog-detail .side-bar-main .search-bar .input-field .search-control:focus {
    box-shadow: 0px 0px 20px 1px rgb(0 0 0 / 10%) !important;
    outline: none;
}

.sec-blog-detail .side-bar-main .search-bar .input-field .search-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 16px;
    font-weight: 400;
    color: var(--grey-clr-3);
}

.sec-blog-detail .side-bar-main .search-bar .input-field .search-control::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 16px;
    font-weight: 400;
    color: var(--grey-clr-3);
}

.sec-blog-detail .side-bar-main .search-bar .input-field .search-control:-ms-input-placeholder {
    /* IE 10+ */
    font-size: 16px;
    font-weight: 400;
    color: var(--grey-clr-3);
}

.sec-blog-detail .side-bar-main .search-bar .input-field .search-control:-moz-placeholder {
    /* Firefox 18- */
    font-size: 16px;
    font-weight: 400;
    color: var(--grey-clr-3);
}

.sec-blog-detail .side-bar-main .search-bar .input-field .search-btn {
    border: 1px solid var(--sec-clr);
    background-color: var(--sec-clr);
    border-radius: 50%;
    height: 90%;
    width: 50px;
    position: absolute;
    top: 3px;
    right: 5px;
    color: var(--white-clr);
    transition: all 0.2s ease-in-out;
}

.sec-blog-detail .side-bar-main .search-bar .input-field .search-btn:hover {
    background-color: var(--white-bg);
    color: var(--black-clr);
}

.sec-blog-detail .side-bar-main .news .news-card {
    box-shadow: 0px 0px 20px 1px rgb(0 0 0 / 10%);
    background-color: var(--grey-bg-5);
    border: none;
    border-radius: 10px;
    padding: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 15px 0;
}

.sec-blog-detail .side-bar-main .news .news-card .img {
    width: 30%;
}

.sec-blog-detail .side-bar-main .news .news-card .img .thumb {
    width: 100%;
    min-height: 100px;
    max-height: 100px;
    object-fit: cover;
    object-position: center;
    margin: 0;
    border-radius: 10px;
}

.sec-blog-detail .side-bar-main .news .news-card .desc {
    width: 65%;
}

.sec-blog-detail .side-bar-main .news .news-card .desc a {
    font-size: 16px;
    color: var(--white-clr);
    font-family: var(--font-2);
    text-transform: capitalize;
    margin: 0 0 10px 0;
    padding: 0;
}

.sec-blog-detail .side-bar-main .news .news-card .desc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sec-blog-detail .side-bar-main .news .news-card .desc ul li {
    font-size: 14px;
    color: var(--white-clr);
    font-family: var(--font-2);
    text-transform: capitalize;
    font-weight: 400;
    margin: 0 0 10px 0;
    padding: 0 0 0 20px;
    position: relative;
}

.sec-blog-detail .side-bar-main .news .news-card .desc ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Font Awesome 6 Pro';
    font-weight: 800;
    color: var(--prim-clr);
    font-size: 12px;
}

.sec-blog-detail .side-bar-main .news .news-card .desc ul li:nth-child(1)::before {
    content: '\f073';
}

.sec-blog-detail .side-bar-main h5 {
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: var(--font-5);
    margin: 20px 0 20px 0;
    padding: 0 0 10px;
    color: var(--white-clr);
    border-bottom: 2px solid var(--prim-clr);
}

.sec-blog-detail .side-bar-main .category ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sec-blog-detail .side-bar-main .category ul li {
    margin: 0;
    padding: 10px;
    position: relative;
    border-radius: 5px;
}

.sec-blog-detail .side-bar-main .category ul li a {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0;
    font-family: var(--font-6);
    padding: 0 0 0 20px;
    color: var(--white-clr);
    position: relative;
    display: block;
    transition: all 0.2s ease-in-out;
}

.sec-blog-detail .side-bar-main .category ul li a:hover {
    color: var(--prim-clr);
}

.sec-blog-detail .side-bar-main .category ul li a::before {
    content: '\f054';
    position: absolute;
    top: 0px;
    left: 0px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    color: var(--prim-clr);
    font-size: 12px;
}

.sec-blog-detail .side-bar-main .category ul li a::after {
    content: attr(data-text);
    position: absolute;
    top: 0px;
    right: 10px;
    font-family: var(--font-2);
    font-weight: 700;
    color: var(--sec-clr);
    font-size: 14px;
}

.sec-blog-detail .side-bar-main .tags ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.sec-blog-detail .side-bar-main .tags ul li a {
    padding: 8px 12px;
    margin: 0 8px 8px 0;
    background: var(--grey-bg-5);
    color: var(--white-clr);
    font-family: var(--font-2);
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    display: inline-flex;
    transition: all 0.2s ease-in-out;
    box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 0.1);
    border-radius: 10px;
}

.sec-blog-detail .side-bar-main .tags ul li a:hover {
    color: var(--prim-clr);
}

.sec-blog-detail .comments-area {
    margin-top: clamp(40px, 9vw, 70px);
}

.sec-blog-detail .comments-area .comment {
    border-bottom: 1px solid rgba(75, 75, 75, 0.3);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.sec-blog-detail .comments-area .comment .comment-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 28px;
}

.sec-blog-detail .comments-area .comment .comment-top h6 {
    font-family: var(--font-5);
    font-size: clamp(16px, 2vw, 24px);
    text-transform: capitalize;
    line-height: normal;
    color: var(--white-clr);
    margin: 0 0 3px 0;
}

.sec-blog-detail .comments-area .comment .comment-top span {
    font-family: var(--font-2);
    font-size: clamp(16px, 1vw, 18px);
    text-transform: capitalize;
    line-height: normal;
    color: var(--grey-clr-3);
    margin: 0;
}

.sec-blog-detail .comments-area .comment .desc p {
    font-family: var(--font-2);
    font-size: 16px;
    line-height: 22px;
    margin: 8px 0;
    color: var(--white-clr);
}

.comment-form .form-main .input-field {
    position: relative;
    padding-bottom: 24px;
}

.comment-form .form-main .input-field label {
    font-family: var(--font-2);
    font-size: clamp(14px, 1.5vw, 17px);
    text-transform: capitalize;
    line-height: normal;
    color: #fff;
    margin-bottom: 8;
}

.comment-form .form-main .input-field small {
    color: #821131;
    position: absolute;
    bottom: 0;
    left: 0;
    font-family: var(--font-2);
    display: flex;
    align-items: center;
}

.comment-form .form-main .input-field input {
    border: none;
    box-shadow: none;
    border-radius: 8px;
    background: var(--grey-bg-5);
    height: 62px;
    padding: 18px 16px;
    font-family: var(--font-2);
    color: var(--white-clr);
    font-size: 17px;
    line-height: normal;
    letter-spacing: 0.141px;
}

.comment-form .form-main .input-field input:focus {}

.comment-form .form-main .input-field input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-family: var(--font-2);
    font-size: 17px;
    opacity: 0.5;
    color: var(--grey-clr-3);
    letter-spacing: 1px;
    text-transform: capitalize;
}

.comment-form .form-main .input-field input::-moz-placeholder {
    /* Firefox 19+ */
    font-family: var(--font-2);
    font-size: 17px;
    opacity: 0.5;
    color: var(--grey-clr-3);
    letter-spacing: 1px;
    text-transform: capitalize;
}

.comment-form .form-main .input-field input:-ms-input-placeholder {
    /* IE 10+ */
    font-family: var(--font-2);
    font-size: 17px;
    opacity: 0.5;
    color: var(--grey-clr-3);
    letter-spacing: 1px;
    text-transform: capitalize;
}

.comment-form .form-main .input-field input:-moz-placeholder {
    /* Firefox 18- */
    font-family: var(--font-2);
    font-size: 17px;
    opacity: 0.5;
    color: var(--grey-clr-3);
    letter-spacing: 1px;
    text-transform: capitalize;
}

.comment-form .form-main .input-field textarea {
    border: none;
    box-shadow: none;
    border-radius: 8px;
    background: var(--grey-bg-5);
    padding: 16px 24px;
    font-family: var(--font-2);
    color: var(--white-clr);
    font-size: 17px;
    line-height: normal;
    letter-spacing: 0.141px;
}

.comment-form .form-main .input-field textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-family: var(--font-2);
    font-size: 17px;
    opacity: 0.5;
    color: var(--grey-clr-3);
    letter-spacing: 1px;
    text-transform: capitalize;
}

.comment-form .form-main .input-field textarea::-moz-placeholder {
    /* Firefox 19+ */
    font-family: var(--font-2);
    font-size: 17px;
    opacity: 0.5;
    color: var(--grey-clr-3);
    letter-spacing: 1px;
    text-transform: capitalize;
}

.comment-form .form-main .input-field textarea:-ms-input-placeholder {
    /* IE 10+ */
    font-family: var(--font-2);
    font-size: 17px;
    opacity: 0.5;
    color: var(--grey-clr-3);
    letter-spacing: 1px;
    text-transform: capitalize;
}

.comment-form .form-main .input-field textarea:-moz-placeholder {
    /* Firefox 18- */
    font-family: var(--font-2);
    font-size: 17px;
    opacity: 0.5;
    color: var(--grey-clr-3);
    letter-spacing: 1px;
    text-transform: capitalize;
}

.comment-form .form-main .submit-btn {
    color: var(--black-clr);
    height: clamp(45px, 5vw, 58px);
    width: 100%;
    font-family: var(--font-6);
    font-size: clamp(16px, 1vw, 20px);
    text-transform: capitalize;
    margin: 12px 0 0 0;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white-clr);
    background: var(--white-bg);
    transition: all 0.5s ease-in-out;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    &:hover {
        background: transparent;
        color: #fff;
    }
}


/***************************** sec-blog close *****************************/


/***************************** sec-about-us start *****************************/

.sec-about-us {
    position: relative;
    padding: 80px 0;
}

.sec-about-us .abt-area .abt-box:nth-child(even)>.container>.row {
    flex-direction: row-reverse;
}

.sec-about-us .abt-box {
    padding: 30px 0;
}

.sec-about-us .abt-box .main-img img.thumb {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
}

.sec-about-us .abt-box .desc h4 {
    font-family: var(--font-5);
    font-size: 30px;
    line-height: normal;
    text-transform: uppercase;
    margin: 20px 0 20px 0;
    padding: 0 0 10px;
    color: var(--white-clr);
    border-bottom: 2px solid var(--prim-clr);
    display: inline-block;
}

.sec-about-us .abt-box .desc p {
    font-family: var(--font-6);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--white-clr);
    margin: 0 0 10px;
    padding: 0;
}


/***************************** sec-about-us close *****************************/


/***************************** sec-restaurant start *****************************/

.sec-restaurant {
    padding: 70px 0;
}

.sec-restaurant .search-area {
    margin-bottom: 53px;
}

.sec-restaurant .search-area .input-main {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    height: 56px;
    border-radius: 8px;
    /* border: 3px solid var(--white-clr); */
    border: none;
    padding: 16px;
    background: var(--grey-bg-5);
}

.sec-restaurant .search-area .input-main input {
    border: none;
    border-radius: 0;
    padding: 0;
    color: var(--white-clr);
    font-size: 18px;
    background: var(--grey-bg-5);
}

.sec-restaurant .search-area .input-main input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--grey-clr-3);
    text-transform: capitalize;
    font-size: 18px;
}

.sec-restaurant .search-area .input-main input::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--grey-clr-3);
    text-transform: capitalize;
    font-size: 18px;
}

.sec-restaurant .search-area .input-main input:-ms-input-placeholder {
    /* IE 10+ */
    color: var(--grey-clr-3);
    text-transform: capitalize;
    font-size: 18px;
}

.sec-restaurant .search-area .input-main input:-moz-placeholder {
    /* Firefox 18- */
    color: var(--grey-clr-3);
    text-transform: capitalize;
    font-size: 18px;
}

.sec-restaurant .search-area .input-main button {
    padding: 0;
    color: var(--grey-clr-3);
    font-size: 18px;
}

.sec-restaurant .search-area .ct-drp {
    position: relative;
}

.sec-restaurant .search-area .ct-drp button.btn.filter-btn {
    width: 100%;
    font-family: var(--font-6);
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
    color: var(--black-clr);
    margin: 0;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 100%;
    background: var(--white-bg);
    border-radius: 10px;
    border: 3px solid var(--white-clr);
    box-shadow: none;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.sec-restaurant .search-area .ct-drp .ct-menu {
    width: 100%;
    min-width: 415px;
    max-width: 415px;
    margin-top: 15px;
    box-shadow: 0px 4px 31.9px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(67, 110, 134, 0.5);
    border-radius: 8px;
    padding: 28px 9px 11px;
    right: 0;
    position: absolute;
    z-index: 10;
    background: var(--white-bg);
}

.sec-restaurant .search-area .ct-drp .ct-menu .rest-locate {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin-bottom: 36px;
    padding: 0 20px;
}

.sec-restaurant .search-area .ct-drp .ct-menu .rest-locate h6 {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--black-bg);
    margin-bottom: 5px;
    font-family: var(--font-2);
}

.sec-restaurant .search-area .ct-drp .ct-menu .rest-locate a {
    width: 100%;
}

.sec-restaurant .search-area .ct-drp .ct-menu .rest-locate a input.location {
    background-color: #f8f8f8;
    border: 1px solid #d2d2d2;
    border-radius: 10px;
    height: 48px;
    padding: 12px 12px 12px 42px;
    color: var(--black-bg);
    font-size: 16px;
    width: 100%;
    background-image: url(../images/location-grey.png);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: left 0.9rem center;
}

.sec-restaurant .search-area .ct-drp .ct-menu .inp-area {
    margin-bottom: 36px;
    padding: 0 20px;
}

.sec-restaurant .search-area .ct-drp .ct-menu .inp-area label {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--black-clr);
    margin-bottom: 5px;
    font-family: var(--font-2);
}

.sec-restaurant .search-area .ct-drp .ct-menu .inp-area .custom-dropdown {
    position: relative;
    width: 100%;
}

.sec-restaurant .search-area .ct-drp .ct-menu .inp-area .custom-dropdown button.drop-toggle {
    width: 100%;
    padding: 10px 15px;
    background: white;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    border: 1px solid var(--grey-clr-6);
    background-color: #f8f8f8;
    height: 55px;
    color: var(--black-clr);
    font-family: var(--font-2);
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 400;
    line-height: normal;
}

.sec-restaurant .search-area .ct-drp .ct-menu .inp-area .custom-dropdown .dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    width: 100%;
    margin-top: 8px;
    padding: 10px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    border-radius: 10px;
    border: 1px solid #d2d2d2;
    background-color: #f8f8f8;
}

.sec-restaurant .search-area .ct-drp .ct-menu .inp-area .custom-dropdown .dropdown-options .dropdown-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    margin-bottom: 15px;
}

.sec-restaurant .search-area .ct-drp .ct-menu .inp-area .custom-dropdown .dropdown-options .dropdown-option label.form-check-label {
    color: #436f86;
    font-family: var(--font-2);
    font-size: 17px;
    font-weight: 400;
    margin: 0px;
    cursor: pointer;
}

.sec-restaurant .search-area .ct-drp .ct-menu .inp-area .custom-dropdown .dropdown-options .dropdown-option input[type=checkbox] {
    width: 22px;
    height: 22px;
    border: 0.13rem solid #436f86;
    border-radius: 3px;
    appearance: none;
    -webkit-appearance: none;
    padding: 0px;
    margin: 0;
}

.sec-restaurant .search-area .ct-drp .ct-menu .inp-area .custom-dropdown .dropdown-options .dropdown-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
    align-items: center;
    gap: 30px;
}

.sec-restaurant .search-area .ct-drp .ct-menu .inp-area .custom-dropdown .dropdown-options .dropdown-actions button.clear-btn {
    color: var(--black-clr);
    border: none;
    cursor: pointer;
    width: 50%;
    background: #e2e8f0;
    height: auto;
    border-radius: 4px;
    padding: 8px 20px;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 500;
    line-height: 24px;
}

.sec-restaurant .search-area .ct-drp .ct-menu .ct-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 16px;
}

.sec-restaurant .search-area .ct-drp .ct-menu .ct-flex button.btn {
    height: 56px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    width: 50%;
    font-family: var(--font-2);
    border: 1px solid var(--black-bg);
    transition: .5s all ease-in;
    text-transform: capitalize;
}

.sec-restaurant .search-area .ct-drp .ct-menu .ct-flex button.btn.reset-btn {
    background: var(--black-clr);
    color: var(--white-clr);
}

.sec-restaurant .search-area .ct-drp .ct-menu .ct-flex button.btn.reset-btn:hover {
    background: transparent;
    color: var(--black-clr);
}

.sec-restaurant .search-area .ct-drp .ct-menu .ct-flex button.btn.apply-btn {}

.sec-restaurant .search-area .ct-drp .ct-menu .ct-flex button.btn.apply-btn:hover {
    background: var(--black-bg);
    color: var(--white-clr);
}

.sec-restaurant .search-area .ct-drp .ct-menu .inp-area .custom-dropdown .dropdown-options .dropdown-actions button.ok-btn {
    color: white;
    width: 50%;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 4px;
    background: var(--black-bg);
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 400;
    line-height: 24px;
}

.sec-restaurant .search-area .ct-drp button.btn.filter-btn:hover {
    background: transparent;
    color: var(--white-clr);
    border-color: var(--white-clr);
}

.sec-restaurant .restaurant-area .rest-card {
    background: var(--grey-bg-5);
    border-radius: 8px;
    box-shadow: 0px 4px 24px 0px var(--shadow);
    border: none;
    padding: 14px;
    margin-bottom: 32px;
}

.sec-restaurant .restaurant-area .rest-card figure {
    margin: 0 0 8px 0;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.sec-restaurant .restaurant-area .rest-card figure img {
    width: 100%;
    border-radius: 8px;
    height: 167px;
    object-fit: cover;
    object-position: center;
}

.sec-restaurant .restaurant-area .rest-card .tp-area {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sec-restaurant .restaurant-area .rest-card .tp-area .lt-box a {
    font-family: var(--font-5);
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 700;
    color: var(--white-clr);
    margin-bottom: 8px;
    display: inline-block;
}

.sec-restaurant .restaurant-area .rest-card .tp-area .lt-box small {
    font-family: var(--font-6);
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    text-transform: capitalize;
    color: var(--grey-clr-3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 213px;
}

.sec-restaurant .restaurant-area .rest-card .tp-area .lt-box small::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Pro";
    font-size: 18px;
    font-weight: 700;
    color: var(--prim-clr);
}

.sec-restaurant .restaurant-area .rest-card .tp-area .rt-box {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sec-restaurant .restaurant-area .rest-card .tp-area .rt-box span {
    font-family: var(--font-6);
    font-size: 16px;
    font-weight: 500;
    color: var(--white-clr);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.sec-restaurant .restaurant-area .rest-card .tp-area .rt-box span::before {
    content: "\e63a";
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    font-size: 14px;
    color: var(--prim-clr);
    transform: rotate(35deg);
    align-self: baseline;
}

.sec-restaurant .restaurant-area .rest-card .tp-area .rt-box small {
    font-family: var(--font-6);
    font-size: 18px;
    color: var(--grey-clr-3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.sec-restaurant .restaurant-area .rest-card .tp-area .rt-box small::before {
    content: "\f005";
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    font-size: 14px;
    color: var(--yellow-clr);
}

.sec-restaurant .restaurant-area .rest-card .btm-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 16px;
}

.sec-restaurant .restaurant-area .rest-card .btm-area .btn-rest {
    font-family: var(--font-6);
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
    color: var(--black-clr);
    margin: 0;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 100%;
    background: var(--white-bg);
    border-radius: 10px;
    border: 3px solid var(--white-clr);
    box-shadow: none;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    &:hover {
        background: transparent;
        color: var(--white-clr);
        border-color: var(--white-clr);
    }
}


/***************************** sec-restaurant close *****************************/


/***************************** sec-inner-banner start *****************************/

.sec-inner-banner.restaurant-banner {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%), url(../images/banner/resturant-banner.png) center/cover no-repeat;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.sec-inner-banner.restaurant-banner::before {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, var(--black-bg) 0%, rgba(0, 0, 0, 0) 109.98%);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.sec-inner-banner.restaurant-banner .back-area {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.sec-inner-banner.restaurant-banner .back-area .back-btn {
    font-size: 20px;
    color: var(--white-clr);
}

.sec-inner-banner.restaurant-banner .back-area {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.sec-inner-banner.restaurant-banner .back-area h6 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white-clr);
    text-transform: capitalize;
}


/***************************** sec-inner-banner close *****************************/


/***************************** sec-restaurant-detail start *****************************/

.sec-restaurant-detail {
    overflow: visible;
    padding-bottom: 10px;
}

.sec-restaurant-detail .top-bar-area {
    z-index: 1;
    position: relative;
    margin-top: -80px;
}

.sec-restaurant-detail .top-bar-area .ct-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sec-restaurant-detail .top-bar-area .ct-flex .lt-area {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}

.sec-restaurant-detail .top-bar-area .ct-flex .lt-area figure {
    margin: 0;
}

.sec-restaurant-detail .top-bar-area .ct-flex .lt-area figure img {
    width: 172px;
    height: 172px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 13px solid var(--white-clr);
    box-sizing: content-box;
}

.sec-restaurant-detail .top-bar-area .ct-flex .lt-area .desc {
    margin-bottom: 30px;
}

.sec-restaurant-detail .top-bar-area .ct-flex .lt-area .desc h6 {
    font-weight: 700;
    font-size: 24px;
    color: var(--white-clr);
    text-transform: capitalize;
}

.sec-restaurant-detail .top-bar-area .ct-flex .lt-area .desc ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.sec-restaurant-detail .top-bar-area .ct-flex .lt-area .desc ul li {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--green-clr);
    position: relative;
    margin-top: 16px;
}

.sec-restaurant-detail .top-bar-area .ct-flex .lt-area .desc ul li:not(:first-child) {
    padding-left: 16px;
}

.sec-restaurant-detail .top-bar-area .ct-flex .lt-area .desc ul li:not(:last-child) {
    padding-right: 16px;
}

.sec-restaurant-detail .top-bar-area .ct-flex .lt-area .desc ul li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    height: 19px;
    width: 1px;
    background: var(--green-clr);
}

.sec-restaurant-detail .top-bar-area .ct-flex .lt-area .desc ul li.icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
}

.sec-restaurant-detail .top-bar-area .ct-flex .lt-area .desc ul li.icon.star-icon::before {
    content: "\f005";
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    font-size: 14px;
    color: var(--yellow-clr);
}

.sec-restaurant-detail .top-bar-area .ct-flex .lt-area .desc ul li.icon.locate-icon::before {
    content: "\e63a";
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    font-size: 14px;
    color: var(--prim-clr);
    transform: rotate(35deg);
}

.sec-restaurant-detail .top-bar-area .ct-flex .lt-area .desc ul li a {
    color: var(--white-clr);
}

.sec-restaurant-detail .top-bar-area .detail {
    margin-bottom: 13px;
}

.sec-restaurant-detail .top-bar-area .detail p {
    font-size: 18px;
    line-height: 24px;
    color: var(--white-clr);
    margin-top: 15px;
}

.sec-restaurant-detail .restaurant-detail-area {}

.sec-restaurant-detail .restaurant-detail-area .tags-area {
    margin-top: 30px;
}

.sec-restaurant-detail .restaurant-detail-area .tags-area h6 {
    color: var(--white-clr);
    font-size: 28px;
    line-height: 35px;
    font-weight: 700;
    font-family: var(--font-3);
    margin-bottom: 20px;
}

.sec-restaurant-detail .restaurant-detail-area .tags-area .cuisine-main {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 37px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.sec-restaurant-detail .restaurant-detail-area .tags-area .cuisine-main .cuisine-box {
    /* max-width: 130px; */
    word-wrap: break-word;
}

.sec-restaurant-detail .restaurant-detail-area .tags-area .cuisine-main .cuisine-box figure {
    margin: 0 0 11.81px 0;
    text-align: center;
}

.sec-restaurant-detail .restaurant-detail-area .tags-area .cuisine-main .cuisine-box figure img {
    height: 109px;
    width: 109px;
    border-radius: 11.81px;
    object-fit: cover;
    object-position: center;
}

.sec-restaurant-detail .restaurant-detail-area .tags-area .cuisine-main .cuisine-box .desc a {
    text-align: center;
    display: block;
    font-size: 19.61px;
    text-transform: capitalize;
    line-height: normal;
    color: var(--white-clr);
    transition: all 0.2s ease-in-out;
    font-family: var(--fon-1);
}

.sec-restaurant-detail .restaurant-detail-area .tags-area .cuisine-main .cuisine-box .desc a:hover {
    color: var(--bs-blue);
}

.sec-restaurant-detail .restaurant-detail-area .tags-area rest-card {}

.sec-restaurant-detail .restaurant-detail-area .tags-area .rest-card {
    background: var(--black-bg);
    border-radius: 8px;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.05);
    border: none;
    padding: 8px 8px 11px 8px;
    margin-bottom: 30px;
}

.sec-restaurant-detail .restaurant-detail-area .tags-area .rest-card figure {
    margin: 0 0 8px 0;
    position: relative;
    overflow: hidden;
}

.sec-restaurant-detail .restaurant-detail-area .tags-area .rest-card figure img {
    width: 100%;
    border-radius: 8px;
    height: 167px;
    object-fit: cover;
    object-position: center;
}

.restaurant-detail-area .tags-area .rest-card .desc {}

.restaurant-detail-area .tags-area .rest-card .desc .tp-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.restaurant-detail-area .tags-area .rest-card .desc .tp-area .lt-box {}

.restaurant-detail-area .tags-area .rest-card .desc .tp-area .lt-box a {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 700;
    color: var(--white-clr);
    font-family: var(--font-2);
}

.restaurant-detail-area .tags-area .rest-card .desc .md-area {}

.restaurant-detail-area .tags-area .rest-card .desc .md-area .lt-box {}

.restaurant-detail-area .tags-area .rest-card .desc .md-area .lt-box h6 {
    color: var(--white-clr);
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    font-family: var(--font-2);
    margin-bottom: 8px;
}

.restaurant-detail-area .tags-area .rest-card .desc .btm-area {}

.restaurant-detail-area .tags-area .rest-card .desc .btm-area a.more-btn {
    font-family: var(--font-6);
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
    color: var(--black-clr);
    margin: 0;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 100%;
    background: var(--white-bg);
    border-radius: 10px;
    border: 3px solid var(--white-clr);
    box-shadow: none;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.restaurant-detail-area .tags-area .rest-card .desc .btm-area a.more-btn:hover {
    background: transparent;
    color: var(--white-clr);
    border-color: var(--white-clr);
}

.restaurant-detail-area .tags-area .eventcard {
    border: 1px solid #eaeaea;
    background: var(--white-bg);
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
    width: 100%;
}

.restaurant-detail-area .tags-area .eventcard .calendar-icon {
    left: 10px;
    position: absolute;
    top: 10px;
}

.restaurant-detail-area .tags-area .eventcard .calendar-icon .iconcalendarydate {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    font-size: 16px;
    padding-top: 3px;
    text-align: center;
    width: 40px;
}

.restaurant-detail-area .tags-area .eventcard .calendar-icon .iconcalendarydate .iconcalendarydate__month {
    color: #eb1700;
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
}

.restaurant-detail-area .tags-area .eventcard .calendar-icon .iconcalendarydate .iconcalendarydate__day {
    color: #eb1700;
    flex: 1;
    font-family: var(--font-2);
    justify-content: center;
    letter-spacing: -.25px;
    display: flex;
    align-items: center;
}

.restaurant-detail-area .tags-area .eventcard .image {}

.restaurant-detail-area .tags-area .eventcard .image img {
    aspect-ratio: 16 / 9;
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
    display: block;
    -o-object-fit: cover;
    /* object-fit: cover; */
    width: 100%;
}

.restaurant-detail-area .tags-area .eventcard .info {
    padding: 10px 10px 18px;
}

.restaurant-detail-area .tags-area .eventcard .info .venue-name {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    color: var(--black-clr);
    font-family: var(--font-2);
    margin-bottom: 5px;
}

.restaurant-detail-area .tags-area .eventcard .info .event-name {
    color: var(--prim-bg);
}

.restaurant-detail-area .tags-area .eventcard .info .event-name h5 {
    font-size: 20px;
    line-height: 27px;
    font-weight: 700;
    font-family: var(--font-3);
    letter-spacing: -1px;
}

.restaurant-detail-area .tags-area .eventcard .info .date {}

.restaurant-detail-area .tags-area .eventcard .info .date span {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: var(--black-clr);
}

.restaurant-detail-area .tags-area .eventcard .info .neighborhood {
    position: relative;
    color: #737373;
    font-family: var(--font-2);
    font-size: 13px;
    line-height: 18px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.restaurant-detail-area .tags-area .eventcard .info .neighborhood img {
    width: auto;
}

.deal-details-main {
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    position: relative;
    z-index: 1;
}

.deal-details-main .ct-flex {
    text-align: center;
}

.deal-details-main::before {
    content: '';
    background: black;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.5;
}

.deal-details-main .ct-flex h6 {
    font-size: 50px;
    line-height: 57px;
    font-weight: 700;
    color: var(--white-clr);
    font-family: var(--font-2);
}

.deal-details-main .ct-flex ul {}

.deal-details-main .ct-flex ul li {
    font-size: 20px;
    line-height: 27px;
    font-weight: 700;
    color: var(--white-clr);
    font-family: var(--font-2);
}

section.sec-event-detail {
    padding: 50px 0px;
}

.sec-event-detail .event-detail-area {}

.event-detail-area .event-details-title {}

.event-detail-area .event-details-title span {
    font-weight: 600;
    color: var(--white-clr);
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: clamp(22px, 1.5vw, 25px);
    font-family: var(--font-2);
}

.event-detail-area .event-details-title h2 {
    font-weight: 900;
    color: var(--white-clr);
    font-size: clamp(45px, 1.5vw, 48px);
    line-height: clamp(52px, 1.5vw, 55px);
    font-family: var(--font-2);
    margin-bottom: 20px;
}

.event-detail-area .event-details-title p {
    font-weight: 400;
    color: var(--white-clr);
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: clamp(22px, 1.5vw, 25px);
    font-family: var(--font-2);
}

.event-detail-area .event-date-main {
    margin-top: 35px;
}

.event-detail-area .event-date-main h5 {
    font-weight: 800;
    color: var(--white-clr);
    font-size: clamp(22px, 1.5vw, 25px);
    line-height: clamp(29px, 1.5vw, 32px);
    font-family: var(--font-2);
}

.event-detail-area .event-date-main .date-icon {
    display: flex;
    align-items: start;
    justify-content: start;
    margin-top: 20px;
    gap: 10px;
}

.event-detail-area .event-date-main .date-icon svg {
    fill: var(--white-clr);
}

.event-detail-area .event-date-main .date-icon p {
    font-weight: 400;
    color: var(--white-clr);
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: clamp(22px, 1.5vw, 25px);
    font-family: var(--font-2);
}

.event-detail-area .event-date-main .events-tag-flx {
    margin-top: 30px;
}

.event-detail-area .event-date-main .events-tag-flx ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.event-detail-area .event-date-main .events-tag-flx ul li {
    background-color: var(--white-clr);
    border-radius: 48px;
    color: var(--black-clr);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    transition: all .4s cubic-bezier(.4, 0, .3, 1);
}

.event-detail-area .event-date-main .events-tag-flx ul a {
    color: var(--black-clr);
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
}

.event-detail-area .event-date-main .events-tag-flx ul li:hover {
    background: var(--black-bg);
    color: var(--white-clr);
}

.event-detail-area .event-date-main .events-tag-flx ul li:hover a {
    color: var(--white-clr);
}


/***************************** sec-restaurant-detail close *****************************/

.sec-change-password-main-head {
    padding-top: clamp(100px, 14vw, 250px);
    padding-bottom: clamp(40px, 6vw, 64px);
}

.sec-change-password-main-head .head h6 {
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 700;
    color: var(--white-clr);
}

.sec-change-password-main-head .head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

section.review-card-section {
    margin-bottom: clamp(25px, 2vw, 32px);
}

section.review-card-section .review-card {}

.review-card-section .review-card .food-image {}

.review-card-section .review-card .food-image figure {
    margin-bottom: 0px;
}

.review-card-section .review-card .food-image img {
    height: 288px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    border-radius: 24px;
}

.review-card-section .review-content-area {
    margin-top: 20px;
    margin-bottom: 7px;
}

.review-card-section .review-content-area .review-content {
    align-items: center;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}

.review-card-section .review-content .review-title {
    width: 50%;
}

.review-content .review-title h2 {
    font-size: clamp(25px, 2vw, 36px);
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    margin-bottom: clamp(15px, 1.5vw, 30px);
    color: var(--white-clr);
    font-family: var(--font-5);
}

.review-content .review-title .rating-info {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}

.review-content .review-title .rating-info .rating-number {
    font-family: var(--font-2);
    font-size: clamp(23px, 2.5vw, 48px);
    font-style: normal;
    font-weight: 700;
    line-height: clamp(30px, 2.5vw, 55px);
    letter-spacing: -0.22px;
    color: var(--white-clr);
}

.review-content .review-title .rating-info .rating-stars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-content .review-title .rating-info .rating-stars i {
    color: #febf60;
    font-size: 30px;
}

.review-content .review-title .rating-info .rating-stars i:nth-last-child(1) {
    color: #cbd5e1;
}

.review-content .review-title .review-count {
    font-family: var(--font-2);
    font-size: clamp(18px, 1.5vw, 23px);
    font-style: normal;
    font-weight: 400;
    line-height: clamp(25px, 1.5vw, 30px);
    /* 183.333% */
    color: var(--white-clr);
}

.review-card-section .review-content .rating-info-text {
    width: 50%;
}

.review-content .rating-info-text .rating-bars {}

.rating-info-text .rating-bars .rating-row {
    display: grid;
    margin-bottom: 8px;
    align-items: center;
    gap: 0px;
    grid-template-columns: 25% 70%;
}

.rating-info-text .rating-bars .rating-row:nth-child(2) .progress .progress-bar {
    background: #a5d631;
}

.rating-info-text .rating-bars .rating-row:nth-child(3) .progress .progress-bar {
    background: #f7d732;
}

.rating-info-text .rating-bars .rating-row:nth-child(4) .progress .progress-bar {
    background: #f7ab32;
}

.rating-info-text .rating-bars .rating-row:nth-child(5) .progress .progress-bar {
    background: #ef3a10;
}

.rating-info-text .rating-bars .rating-row span {
    font-family: var(--font-2);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    color: var(--white-clr);
}

.rating-info-text .rating-bars .rating-row .progress {
    width: 100%;
    --bs-progress-height: 8px;
    border-radius: 16px;
    background: #f3eeee;
}

.rating-info-text .rating-bars .rating-row .progress .progress-bar {
    background: #4aa54a;
}

.review-card-section .review-content-area a.write-review-btn {
    text-align: center;
    font-family: var(--font-2);
    font-size: clamp(16px, 1.5vw, 18px);
    font-style: normal;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: normal;
    border-radius: 16px;
    background: var(--white-bg);
    height: 74px;
    width: 100%;
}

.review-card-section .review-content-area a.write-review-btn:hover {
    background: var(--black-bg);
    color: var(--white-clr);
    border: 1px solid var(--white-clr);
}

section.sec-review-tab-section {
    margin-bottom: clamp(30px, 7vw, 85px);
}

.sec-review-tab-section .review-tab-heading {
    margin-bottom: 20px;
}

.sec-review-tab-section .review-tab-heading h3 {
    font-size: clamp(18px, 2vw, 24px);
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    color: var(--white-clr);
    font-family: var(--font-5);
}

.sec-review-tab-section .review-tab-area {}

.sec-review-tab-section .review-tab-area .review-tab-head {
    margin-bottom: clamp(20px, 3vw, 50px);
}

.review-tab-area .review-tab-head ul {
    border: none;
    gap: 15px;
}

.review-tab-area .review-tab-head ul li.nav-item {}

.review-tab-area .review-tab-head ul li.nav-item button {
    display: flex;
    width: 165px;
    height: 48px;
    padding: 8px 16px;
    align-items: center;
    border-radius: 36px;
    justify-content: center;
    background: var(--white-clr);
    border: 1px solid var(--sec-clr);
    color: var(--prim-clr);
    font-family: var(--font-2);
    font-size: clamp(16px, 1.5vw, 18px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    transition: 0.2s all ease-in;
}

.review-tab-area .review-tab-head ul li.nav-item button.active,
.review-tab-area .review-tab-head ul li.nav-item button:hover {
    background: var(--prim-clr);
    color: var(--white-clr);
    border-color: var(--prim-clr);
}

.sec-review-tab-section .review-tab-area .review-tab-body {}

.review-tab-area .review-tab-body .review-item-area {}

.review-tab-area .review-tab-body .review-item-area .review-item {
    padding: 16px;
    border-radius: 24px;
    background: var(--white-clr);
    margin-bottom: 25px;
}

.review-item-area .review-item .reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-item-area .review-item .reviewer-info .reviewer-avatar {}

.review-item-area .review-item .reviewer-info .reviewer-avatar figure {
    margin: 0;
}

.review-item-area .review-item .reviewer-info .reviewer-avatar figure img {
    width: auto;
}

.review-item-area .review-item .reviewer-info .reviewer-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.review-item-area .review-item .reviewer-info .reviewer-details .reviewer-name {
    color: var(--black-clr);
    font-family: var(--font-1);
    font-size: clamp(18px, 1.5vw, 24px);
    font-style: normal;
    font-weight: 700;
    line-height: clamp(18px, 1.5vw, 24px);
}

.review-item-area .review-item .reviewer-info .reviewer-details .review-meta {
    text-align: end;
}

.reviewer-info .reviewer-details .review-meta .rating {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 5px;
}

.reviewer-info .reviewer-details .review-meta .rating .rating-number {
    text-align: center;
    font-family: var(--font-3);
    font-size: clamp(16px, 1.8vw, 18px);
    font-style: normal;
    font-weight: 600;
    line-height: clamp(21px, 1.8vw, 28px);
}

.reviewer-details .review-meta .rating .rating-stars {}

.reviewer-details .review-meta .rating .rating-stars i {
    color: #febf60;
}

.reviewer-details .review-meta .rating .rating-stars i:nth-last-child(1) {
    color: #cbd5e1;
}

.reviewer-details .review-meta .review-date {
    font-family: var(--font-2);
    font-size: clamp(16px, 1.5vw, 18px);
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.review-item-area .review-item .review-content {}

.review-item-area .review-item .review-content p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    font-family: var(--font-6);
}

.appoints-tab-pagination {
    margin-top: 46px;
}

.appoints-tab-pagination ul.pagination {
    align-items: center;
}

.appoints-tab-pagination ul.pagination p {
    font-family: var(--font-2);
    color: var(--prim-clr);
    font-weight: 700;
    font-size: clamp(16px, 1.5vw, 20px);
    margin-right: 20px;
    line-height: clamp(16px, 1.5vw, 20px);
}

.appoints-tab-pagination ul.pagination li.page-item {}

.appoints-tab-pagination ul.pagination li.page-item a.page-link {
    background: none;
    border: 1px solid var(--prim-clr);
    margin-right: 15px;
    border-radius: 5.5px;
    font-family: var(--font-3);
    color: var(--prim-clr);
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 500;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.appoints-tab-pagination ul.pagination li.page-item:nth-last-child(1) a.page-link {
    border: none;
    font-size: 18px;
    margin-right: 0;
    width: auto;
    height: auto;
    padding: 0;
}

.appoints-tab-pagination ul.pagination li.page-item.active {
    outline: none;
    box-shadow: none;
    --bs-pagination-focus-box-shadow: none;
}

.appoints-tab-pagination ul.pagination li.page-item.active a.page-link {
    background: var(--prim-clr);
    color: var(--white-clr);
}

.appoints-tab-pagination ul.pagination li.page-item:focus-visible {
    outline: none;
}


/***************************** sec-review-card-section close *****************************/


/***************************** sec-write-review-form-section start *****************************/

.write-review-form-section {
    margin-bottom: clamp(30px, 7vw, 85px);
}

.write-review-form-section .restaurant-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: clamp(18px, 2vw, 27px);
}

.write-review-form-section .restaurant-info figure {
    margin: 0;
}

.restaurant-info figure img {
    width: 100%;
}

.restaurant-info .restaurant-desc {}

.restaurant-info .restaurant-desc h4 {
    color: var(--white-clr);
    font-family: var(--font-2);
    font-size: clamp(18px, 2vw, 24px);
    font-style: normal;
    font-weight: 700;
    line-height: 28.545px;
}

.restaurant-info .restaurant-desc .rating-info {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.restaurant-info .restaurant-desc .rating-info .rating-stars {}

.restaurant-info .restaurant-desc .rating-info .rating-stars i {
    color: #febf60;
}

.restaurant-info .restaurant-desc .rating-info .rating-stars i:nth-last-child(1) {
    color: #cbd5e1;
}

.restaurant-info .restaurant-desc .rating-info .rating-number {
    text-align: center;
    font-family: var(--font-1);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25.95px;
    color: var(--black-clr);
}

.write-review-form-section .write-rev-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14.2px;
}

.write-review-form-section .write-rev-user figure {
    margin: 0;
}

.write-review-form-section .write-rev-user figure img {
    width: 46px;
    height: 46px;
}

.write-review-form-section .write-rev-user .rating-user-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 31.4px;
}

.write-review-form-section .write-rev-user .rating-user-stars i {
    cursor: pointer;
    font-size: 43px;
    color: var(--white-clr);
    transition: color 0.3s ease;
}

.write-review-form-section .write-rev-user .rating-user-stars i.fa-solid {
    color: #febf60;
}

.write-review-form-section .write-rev-form {
    margin-top: clamp(30px, 2vw, 50px);
}

.write-review-form-section .write-rev-form .inp-area {}

.write-review-form-section .write-rev-form .inp-area label {
    color: var(--white-clr);
    font-family: var(--font-2);
    font-size: clamp(16px, 1.5vw, 18px);
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 8px;
}

.write-rev-form .inp-area .file-upload-area {
    border-radius: 16px;
    border: 1px solid var(--grey-clr-7);
    background: #ffffff;
    padding: 40px 30px;
    text-align: center;
    min-height: 195px;
}

.write-rev-form .inp-area .file-upload-area .media-upload-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.write-rev-form .inp-area .file-upload-area .media-upload-link img.upload-icon {
    width: auto;
}

.write-rev-form .inp-area .file-upload-area .media-upload-link p {
    color: var(--black-clr);
    text-align: center;
    font-family: var(--font-2);
    font-size: clamp(16px, 1.5vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: clamp(16px, 1.5vw, 18px);
}

.write-review-form-section .write-rev-form .inp-area textarea {
    display: block;
    border-radius: 8px;
    border: 1px solid var(--grey-clr-7);
    background: #ffffff;
    padding: 12px 16px;
    width: 100%;
    font-family: var(--font-2);
    font-size: clamp(16px, 1.5vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    resize: none;
    color: var(--black-clr);
}

.write-review-form-section .write-rev-form .inp-area textarea::placeholder {
    color: var(--black-clr);
}

.write-review-form-section .write-rev-form .inp-area button.save-btn {
    height: 72px;
    margin-top: 58px;
    text-align: center;
    font-size: clamp(16px, 1.5vw, 22px);
    font-style: normal;
    font-weight: 700;
}

.write-review-form-section .write-rev-form .inp-area a.save-btn {
    height: 72px;
    margin-top: 58px;
    text-align: center;
    font-size: clamp(16px, 1.5vw, 22px);
    font-style: normal;
    font-weight: 700;
    width: 100%;
    border-radius: 8px;
    background: var(--prim-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-clr);
    border: 2px solid var(--prim-clr);
    text-transform: capitalize;
}

.write-review-form-section .write-rev-form .inp-area a.save-btn:hover {
    background: transparent;
    color: var(--white-clr);
    border-color: var(--white-clr);
}


/************************************** inner pages css close **************************************/

@media only screen and (min-width: 1600px) and (max-width: 1920px) {}

@media only screen and (min-width: 1445px) and (max-width: 1599px) {}

@media only screen and (min-width: 1400px) and (max-width: 1444px) {}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .rating-info-text .rating-bars .rating-row span {
        font-size: 14px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .write-review-form-section .write-rev-user .rating-user-stars i {
        font-size: 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sec-about {
        padding: 40px 0;
    }
    .sec-about>.container>.row::after {
        display: none;
    }
    .sec-about>.container>.row>.col-12:first-child .desc-area {
        text-align: left;
    }
    .sec-about>.container>.row>.col-12:not(:last-child) .desc-area {
        margin-bottom: 20px;
    }
    .review-card-section .review-card .food-image img {
        width: 100%;
        height: 100%;
    }
    .review-card-section .review-content-area {
        margin-left: 0px;
    }
    .rating-info-text .rating-bars .rating-row {
        gap: 17px;
    }
    .review-tab-area .review-tab-head ul {
        gap: 8px;
    }
    .review-content .review-title .rating-info .rating-stars i {
        font-size: 16px;
    }
    .write-review-form-section .write-rev-user .rating-user-stars i {
        font-size: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .sec-about {
        padding: 40px 0;
    }
    .sec-about>.container>.row::after {
        display: none;
    }
    .sec-about>.container>.row>.col-12:first-child .desc-area {
        text-align: left;
    }
    .sec-about>.container>.row>.col-12:not(:last-child) .desc-area {
        margin-bottom: 20px;
    }
    .review-tab-area .review-tab-head ul li.nav-item button {
        width: 100%;
        height: auto;
        padding: 12px 25px;
    }
    .rating-info-text .rating-bars .rating-row span {
        font-size: 14px;
    }
    .write-review-form-section .write-rev-user .rating-user-stars i {
        font-size: 25px;
    }
}

@media only screen and (min-width: 280px) and (max-width: 575px) {
    .sec-about {
        padding: 40px 0;
    }
    .sec-about>.container>.row::after {
        display: none;
    }
    .sec-about>.container>.row>.col-12:first-child .desc-area {
        text-align: left;
    }
    .sec-about>.container>.row>.col-12:not(:last-child) .desc-area {
        margin-bottom: 20px;
    }
    .review-card-section .review-content-area {
        margin-left: 0;
        margin-top: 20px;
    }
    .review-card-section .review-content-area .review-content {
        display: block;
    }
    .review-card-section .review-content .review-title {
        width: 100%;
        text-align: center;
    }
    .review-content .review-title .rating-info {
        justify-content: center;
    }
    .review-card-section .review-content .rating-info-text {
        width: 100%;
        margin-top: 30px;
    }
    .review-tab-area .review-tab-head ul li.nav-item button {
        width: 100%;
        height: auto;
        padding: 10px 10px;
    }
    .review-card-section .review-content-area {
        margin-left: 0;
        margin-top: 20px;
    }
    .review-card-section .review-content-area .review-content {
        display: block;
    }
    .review-card-section .review-content .review-title {
        width: 100%;
        text-align: center;
    }
    .review-content .review-title .rating-info {
        justify-content: center;
    }
    .review-card-section .review-content .rating-info-text {
        width: 100%;
        margin-top: 30px;
    }
    .review-tab-area .review-tab-head ul {
        display: grid;
        grid-template-columns: 48% 48%;
    }
    .review-tab-area .review-tab-head ul li.nav-item button {
        width: 100%;
        height: auto;
        padding: 10px 10px;
    }
    .review-item-area .review-item .reviewer-info {
        display: block;
        text-align: center;
    }
    .review-item-area .review-item .reviewer-info .reviewer-avatar {
        margin-bottom: 10px;
    }
    .review-item-area .review-item .reviewer-info .reviewer-details {
        display: block;
    }
    .review-item-area .review-item .reviewer-info .reviewer-details .review-meta {
        text-align: center;
        margin-top: 10px;
    }
    .reviewer-info .reviewer-details .review-meta .rating {
        justify-content: center;
    }
    .write-review-form-section .write-rev-user {
        display: block;
        text-align: center;
    }
    .write-review-form-section .write-rev-user figure {
        margin-bottom: 10px;
    }
    .write-review-form-section .write-rev-form {
        margin-top: 20px;
    }
    .write-review-form-section .write-rev-form .inp-area {
        margin-bottom: 15px;
    }
    .sec-notification-main-head .notification-list ul li {
        display: block;
        text-align: center;
    }
    .sec-notification-main-head .notification-list ul li img.notification-post-img {
        margin-top: 10px;
    }
    .write-review-form-section .write-rev-user .rating-user-stars i {
        font-size: 20px;
    }
}

.counter-wrapper {
    display: flex;
    justify-content: end;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.counter-wrapper::before {
    content: "";
    position: absolute;
    top: -135%;
    background: url(https://rendvous.com/public/uploads/web_cms_images/counter-bg.png);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: contain;
    height: 500px;
    width: 525px;
    display: block;
    z-index: -1;
}

.counter-digit {
    font-size: 5rem;
    font-weight: bold;
    color: #ffffff;
    background-color: transparent;
    padding: 8px 18px;
    border-radius: 10px;
    border: 1px solid #fff;
    width: 80px;
    text-align: center;
}