:root {
    --c_primary: #FF6A09;
    --c_primary_light: #FFF9F6;
    --c_secondary: #033B7E;
    --c_secondary_light: #131313;
    --c_heading: #131313;
    --c_subheading: #1F1F1F;
    --c_text: #00000099;
    --c_grey: #c3c9d2;
    --c_black: #000000;
    --c_white: #ffffff;
    --c_danger: #FF1D1D;
    --c_border: #CBCAD7;
    --f_body: "DM Sans", serif;
    --transition: all 0.3s ease-in-out 0s;
    --c_back_bg: #091F39;
}

/* Reset | Start */
* {
    outline: 0 !important;
    margin: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    background-color: var(--c_grey_light)
}

b,
strong {
    font-weight: 700
}

a,
a:hover {
    color: var(--c_text);
    transition: var(--transition)
}

a,
a:not(.btn_n):hover {
    text-decoration: none
}

:is(h1, h2, h3, h4, h5, h6) {
    color: var(--c_heading);
    font-weight: 700;
    line-height: 1.2;
    font-family: var(--f_body);
    margin-bottom: 0
}

.hd_1 :where(h1, h2, h3, h4, h5, h6),
h1 {
    font-size: 50px;
    font-weight: 900;
}

.hd_2 :where(h1, h2, h3, h4, h5, h6),
h2 {
    font-size: 46px;
}

.hd_3 :where(h1, h2, h3, h4, h5, h6),
h3 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hd_4 :where(h1, h2, h3, h4, h5, h6),
h4 {
    font-size: 34px;
}

.hd_5 :where(h1, h2, h3, h4, h5, h6),
h5 {
    font-size: 30px;
}

.hd_6 :where(h1, h2, h3, h4, h5, h6),
h6 {
    font-size: 26px;
}

.hd_7 :where(h1, h2, h3, h4, h5, h6) {
    font-size: 14px;
    font-weight: 400;
}

.text_center {
    text-align: center;
}

.text_white :where(h1, h2, h3, h4, h5, h6, p) {
    color: var(--c_white);
}

body,
li,
p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--c_text);
    font-family: var(--f_body)
}

li,
p {
    margin: 0
}

:is(p, ul, ol, li):not(:last-child) {
    margin-bottom: 16px
}

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

img {
    max-width: 100%
}

figure {
    margin: 0
}

img {
    max-width: 100%;
}

.u_spc,
.ut_spc {
    padding-top: 60px
}

.u_spc,
.ub_spc {
    padding-bottom: 60px
}

.c_primary {
    color: var(--c_primary);
}

.bg_primary {
    background-color: var(--c_primary)
}

.c_secondary {
    color: var(--c_secondary)
}

.bg_secondary {
    background-color: var(--c_secondary)
}

.sb_hd:not(:last-child) {
    margin-bottom: 45px
}

.sb_hd h2 {
    margin-bottom: 30px
}

.s_h p {
    font-size: 24px;
    font-weight: 500;
    color: var(--c_text);
}

.p_h p {
    font-size: 22px;
}

.m_h p {
    font-size: 20px;
}

.k_h p {
    font-size: 18px;
}

.d_h p {
    font-size: 16px;
}

.conta_iner {
    max-width: 1170px;
    width: 90%;
    margin-inline: auto
}

@media (max-width:767.98px) {
    .conta_iner {
        width: 100%;
        padding: 0 15px
    }
}

/* Reset | End */

/* Button | Start */
.btnn {
    gap: 5px;
    font-size: 24px;
    font-weight: 700;
    min-height: 65px;
    padding: 5px 25px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    box-shadow: none !important;
    transition: var(--transition);
    border: 1px solid transparent;
    letter-spacing: 0;
    position: relative;
    text-indent: 0;
    overflow: hidden;
    cursor: pointer;
    line-height: 1;
    z-index: 1
}

.btnn span {
    background: var(--c_white);
    height: 30px;
    width: 30px;
    border-radius: 50px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.btnn span img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn_sm {
    font-size: 16px;
    min-height: 50px;
}

.btnn::before {
    content: "";
    background: linear-gradient(90deg, #40ebf100 0, #fffefd8f 50%, #fffefd47 69%, #40ebf100);
    top: 0;
    bottom: 0;
    position: absolute;
    transition: var(--transition);
    z-index: -1;
    width: 0
}

@keyframes slide {
    0% {
        left: -100%
    }

    100% {
        left: 100%
    }
}

.btnn:hover {
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, .1) !important
}

.btnn:hover::before {
    width: 100%;
    animation: slide 2s infinite
}

.btn_primary {
    color: var(--c_white);
    background-color: var(--c_primary);
    border-color: var(--c_primary)
}

.btn_primary:is(:hover, :focus) {
    color: var(--c_white);
    background-color: var(--c_primary);
    border-color: var(--c_primary)
}

.btn_secondary {
    color: var(--c_secondary_light);
    background-color: var(--c_white);
    border-color: var(--c_secondary)
}

.btn_white {
    border: 1px solid #FF66044D;
    border-radius: 10px;
}

/* Button | End */


/* Form | Start */
.control_group {
    margin-bottom: 15px
}

label {
    font-size: 15px;
    font-weight: 500;
    color: var(--c_text_dark);
    text-transform: capitalize;
    line-height: 1.2;
    margin: 0 0 8px;
    display: block
}

.form_prtnr form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

form input {
    border: 0.94px solid var(--G300, #CBCAD7)
}

label.error {
    position: absolute;
    top: 100%;
    left: 0;
    color: red;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: .2px;
    margin: 2px 0 0
}

label.checkbox_label {
    display: inline-flex;
    align-items: center;
    color: var(--c_text);
    transition: var(--transition);
    cursor: pointer;
    margin: 0;
    gap: 8px
}

label.checkbox_label:hover {
    color: var(--c_black)
}

.bootstrap-select>.btn,
input,
select,
textarea {
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    color: var(--c_black);
    background-color: var(--c_white);
    border: 1px solid var(--c_border);
    transition: var(--transition);
    box-shadow: none;
    outline: 0
}

input {
    height: 50px;
    padding: 0 15px
}

input:is([type=checkbox], [type=radio]) {
    width: 22px;
    height: 22px;
    min-width: 22px;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 0
}

input:is([type=checkbox], [type=radio]) {
    color: var(--c_white);
    accent-color: var(--c_primary);
    cursor: pointer
}

input:is([type=checkbox], [type=radio]):checked::before {
    font-family: "Font Awesome 5 Free";
    transition: var(--transition);
    font-weight: 900;
    line-height: 1
}

input[type=checkbox] {
    border-radius: 4px;
    border: 1px solid var(--c_border);
    background-color: var(--c_white)
}

input[type=checkbox]:checked {
    background-color: var(--c_primary);
    border-color: var(--c_primary)
}

input[type=checkbox]:checked::before {
    content: "\f00c";
    color: var(--c_white)
}

input[type=radio] {
    border-radius: 50%;
    border: 1px solid var(--c_border);
    background-color: var(--c_white)
}

input[type=radio]:checked {
    border-color: var(--c_primary)
}

input[type=radio]:checked::before {
    content: "\f111";
    color: var(--c_primary)
}

.form-check.form-switch {
    margin: 0;
    padding: 0;
    min-height: 22px;
    vertical-align: middle
}

.form-check.form-switch .form-check-input {
    margin: 0;
    width: 2.5rem;
    box-shadow: none
}

.form-check.form-switch .form-check-input::before {
    display: none
}

.bootstrap-select>.btn,
select {
    height: 50px;
    padding: 0 40px 0 15px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 13px 13px;
    appearance: none
}

textarea {
    height: 120px;
    padding: 8px 15px;
    border-radius: 10px;
    resize: none
}

:is(input, select, textarea)::placeholder {
    color: #686677;
    font-weight: 500;
    opacity: 1
}

:is(input, select, textarea):focus {
    border-color: var(--c_primary)
}

:is(input, select, textarea, .control-group).empty_value {
    border-color: red
}

.form_btn {
    margin-top: 35px
}

/* Form | End */


/* Grid | Start */
.gap_m,
.gap_p {
    --gap_x: 30px;
    --gap_y: 30px;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--gap_y) * -1);
    margin-left: calc(var(--gap_x) * -1)
}

.gap_m>*,
.gap_p>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    margin-top: var(--gap_y)
}

.gap_p>* {
    padding-left: var(--gap_x)
}

.gap_m>* {
    margin-left: var(--gap_x)
}

/* Grid | End */





/* Landing Page | Start */
.landing_header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing_header .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
}

.landing_header .head figure {
    width: 120px;
    height: 60px;
}

.landing_header .head ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin: 0;
}

.landing_header .head ul li {
    margin: 0;
}

.landing_header .head ul li a {
    font-size: 18px;
    font-weight: 400;
    color: var(--c_black);
}

.banner_flx {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    max-width: 900px;
    width: 100%;
    margin-inline: auto;

}

.banner_flx .banner_head {

    margin: 0 !important;
    max-width: unset !important;
}

.banner_flx .explore {
    border-radius: 130px;
    border: 2px solid #E3C9B866;
    font-size: 22px;
    font-weight: 600;
    height: 70px;
    background: #FFF0E599;
    width: 200px;
    color: var(--c_primary);

}

.banner_sec .banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner_sec .banner .banner_lft,
.banner_sec .banner .banner_rt {
    width: 49%;
}

.banner_sec .banner .banner_lft {
    padding: 20px;
}

.banner_rt figure {
    border-radius: 22px;
}

.banner_lft h1 {
    text-transform: uppercase;
    line-height: 82px;
}

.banner_lft h1 span {
    color: var(--c_primary);
}

.banner_lft .btnn {
    margin: 25px 0 65px 0;
}

.bnr_lst {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}

.bnr_lst li {
    width: calc(100%/2 - 20px*1/2);
    border: 1px solid #E8F3FF;
    border-radius: 17px;
    background: linear-gradient(180deg, rgba(220, 234, 250, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%);
    padding: 14px;
    margin: 0;
    min-height: 185px;
}

.bnr_lst li:last-child {
    border: 1px solid;
    border-image-source: linear-gradient(180deg, #FFFFFF 0%, #FCF5C5 100%);

    background: linear-gradient(180deg, rgba(255, 251, 223, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);

}

.bnr_lst li p {
    font-size: 14px;
    margin-top: 12px;
    color: var(--c_black);

}

.bnr_lst li figure {
    width: 55px;
    height: 55px;
    backdrop-filter: blur(8.51957893371582px);
    box-shadow: 0px 3.79px 10.41px 0px #E1EBFA;
    background-color: #FFFFFF;
    padding: 14px;
    border-radius: 50px;
}

.explore h2 {
    text-transform: uppercase;
}

.explore p {
    color: var(--c_subheading);
    margin: 13px 0 35px;
}

.explore_lst {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
    margin-top: 46px;
}

.explore_lst li {
    width: calc(100%/3 - 60px*2/3);
    border-radius: 24px;
    margin: 0;
    border: 1px solid #EEDFC5;
    background-color: var(--c_white);
    min-height: 470px;
}

.explore_lst li p {
    padding: 24px 7px 40px 20px;
    font-size: 16px;
    color: var(--c_black);
    text-align: left;
    margin: 0;
}

.partner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 360px;
    background: linear-gradient(90deg, #004291 0%, #08284E 100%);
    overflow: hidden;

}

.partner .conta_iner {
    position: relative;
    z-index: 0;
    padding: 65px 0 52px;
}

.partner .conta_iner::before {
    content: "";
    position: absolute;
    background-image: url(../images/become_partner_bg.png);
    height: 360px;
    width: 100%;
    top: 0;
    left: 0;
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: 0.2;
}

.partner h2 {
    color: var(--c_white);
    text-transform: uppercase;
    letter-spacing: 5px;
}

.partner p {
    color: #DDE4EC;
    margin: 16px 0 28px;
    line-height: 40px;
}



.steps_lst {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
    margin-top: 80px;
}

.steps_lst li {
    padding: 14px 12px;
    height: 405px;
    width: calc(100%/3 - 50px*2/3);
    border: 1px solid;
    border-image-source: linear-gradient(180deg, rgba(255, 102, 4, 0.2) 0%, #FFFFFF 100%);
    background: linear-gradient(180deg, rgba(254, 241, 232, 0.6) 0%, rgba(255, 223, 202, 0.6) 100%);
    border-radius: 22px;
    margin: 0;

}

.steps_lst li figure {
    width: 96px;
    height: 96px;
    background: #FF6604;
    border: 5px solid #fecaa7;
    padding: 23px;
    border-radius: 50px;
    margin-left: 15px;

}

.steps_lst li div {
    background: var(--c_white);
    padding: 23px 9px 19px 19px;
    border-radius: 16px;
    margin-top: 13px;
    height: 260px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;

}

.steps_lst li div h3 {
    line-height: 42px;
    margin-bottom: 10px;
}





/* Landing Page | End */

/* Header | Start */


.site_header .conta_iner {
    max-width: 1400px;
    width: 97%;
    margin: 0 auto;
}

.site_header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 10px 10px;
}

.site_header .inner .logo_head figure {
    width: 108px;
    height: 55px;
}

.site_header .inner .hd_links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
}

.site_header .inner .hd_links li {
    margin: 0;

}

.site_header .inner .hd_links li a {
    color: var(--c_black);
    font-size: 14px;
    font-weight: 500;
}

.site_header .inner .hd_links li a:hover {
    color: var(--c_primary);
}

.site_header .inner .whist {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    padding: 0px 20px;
    border-left: 0.83px solid #E7E7E7;
}

.site_header .inner .whist figure {
    width: 42px;
    height: 42px;
    border: 0.83px solid #E3E3E3;
    padding: 11px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    justify-content: center;

}

.site_header .inner .dropdown .dropdown-toggle {
    background-color: var(--c_white);
    border: none;

}

.site_header .inner .dropdown .dropdown-toggle::after {
    display: none;
}

.site_header .inner .dropdown .dropdown-toggle figure {
    width: 42px;
    height: 42px;
}

.hd_left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hd_left .search_bar {
    width: 300px;

    margin-right: 60px;

}

.site_header1 .search_bar input {
    border: 1px solid #EFEFEF;
    background: #F6F6F6;
    border-radius: 90px;
    height: 40px;
    font-size: 16px;
    font-weight: 400;
    color: var(--c_white);
    opacity: 0.4;
    padding: 5px 40px 5px 15px;
    background-image: url(../images/search.png);
    background-position: center right 12px;
    background-repeat: no-repeat;
    background-size: 20px;
    color: var(--c_black);

}

.site_header .location {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 14px 11px;

}

.site_header .location::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    left: 50%;
    height: 100%;
    width: 100%;
    transform: translate(-50%, 0);
    background-color: #142A45;
    z-index: -1;
}

.site_header .location figure {
    height: 22px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site_header .location p {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}




/* Header | End */


/* Footer | Start*/

.site_footer {
    height: 375px;
    background-color: var(--c_back_bg);
    overflow: hidden;

}

.site_footer .conta_iner {
    max-width: 1140px;
    width: 90%;
    margin: 0 auto;

}

.site_footer .conta_iner .inner {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    gap: 20px;
}

.site_footer .inner .single_col {
    max-width: 285px;
}

.site_footer .inner .single_col .site_logo {
    margin-bottom: 20px;
    display: inline-flex;
}

.site_footer .inner .single_col p {
    font-size: 16px;
    color: #D6D6D6;
    line-height: 1.5;
}

.site_footer .inner .single_col h2:not(:first-child) {
    margin-top: 22px;
    margin-bottom: 14px;
}

.social_links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social_links li {
    display: inline-flex;
    margin-bottom: 0 !important;
}

.social_links li a {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--c_white);
}

.social_links li a img {
    width: 13px;
    height: 13px;
    object-fit: contain;
}

.site_footer .inner .single_col h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #ffffff;
}

.site_footer .inner .footer_links li {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
    color: var(--c_white);
}

.site_footer .inner .footer_links li a {
    color: var(--c_white);
}

.site_footer .inner .footer_links li a:hover {
    color: var(--c_primary);
}

.site_footer .copywrite {
    padding: 18px 0;
    position: relative;
    text-align: center;
    z-index: 1;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site_footer .copywrite p {
    font-size: 14px;
    line-height: 21px;
    color: rgba(255, 255, 255, 0.6980392157);
}

.site_footer .copywrite::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 100vw;
    transform: translate(-50%, 0);
    background-color: #142A45;
    z-index: -1;
}

/* Footer | End */


/* Main | Start */

.banner_form .banner_head {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #0000001A;
    border-width: 0px, 0px, 0px, 0px;
    border-style: solid;
    border-color: #0000001A;
    background: var(--c_white);
    border-radius: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px 16px 40px;
    gap: 20px;

}

.banner_form .banner_forms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    width: 80%;
}

.banner_form .banner_forms div {
    border-left: 1px solid #0000001A;
    padding-left: 10px;
    width: 50%;
}

.banner_form .banner_forms div:first-child {
    border: none;
}

.banner_form .banner_forms div label {
    margin: 0;
    color: var(--c_black);
    font-size: 16px;
    font-weight: 400;
}

.banner_form .banner_forms div input {
    border: none;
    padding: 0;
    height: 30px;

}

.banner_form .banner_head figure {
    width: 60px;
    height: 60px;
    background-color: var(--c_primary);
    border: 5px solid #fecaa7;
    border-radius: 50px;
    padding: 17px;
    display: inline-flex;
}

.carousel_sec {
    overflow: hidden;
}

.carousel_sec .carousel-inner .carousel-item h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 46px;
    color: var(--c_white);
}

.carousel_sec .carousel-inner .carousel-item .carousel-caption {
    transform: translate(-50%, -50%);
    top: 50%;
    position: absolute;
    left: 50%;
    max-width: 1022px;
    width: 100%;
}

.carousel_sec .carousel-control-next,
.carousel_sec .carousel-control-prev {
    width: unset;
    color: var(--c_white);

    height: 92px;
    width: 92px;
    border-radius: 50%;
    background-color: #1B324C;
    margin: auto;
}

.carousel_sec .carousel-control-prev {
    justify-content: flex-end;
    padding-right: 14px;
    left: -46px;
}

.carousel_sec .carousel-control-next {
    justify-content: flex-start;
    padding-left: 14px;
    right: -46px;
}

.carousel_sec .carousel-dark .carousel-control-next-icon,
.carousel_sec .carousel-dark .carousel-control-prev-icon {
    filter: none;
}

.carousel_sec .carousel-dark .carousel-indicators button {
    height: 12px;
    width: 12px;
    border-radius: 50px;
    border: none;
    background: var(--c_white);
    opacity: 0.3;
}

.carousel_sec .carousel-dark .carousel-indicators button.active {
    opacity: 1;
}

.billboard {
    background: linear-gradient(180deg, #08284E 0%, #153B69 100%);

}

.billboard .conta_iner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.billboard .conta_iner .bill_lt,
.billboard .conta_iner .bill_rt {
    width: 50%;
}

.billboard .conta_iner .bill_lt h2 {
    text-transform: uppercase;
    line-height: 46px;
    margin-bottom: 30px;
    color: var(--c_white);
}

.billboard .conta_iner .bill_lt p {
    color: var(--c_white);
    opacity: 0.7;
    line-height: 32px;
}


.bill_rt .slick-slide {
    position: relative;
}

.bill_rt .slick-slide .bill_rt_abs {
    position: absolute;
    backdrop-filter: blur(74px);
    background: linear-gradient(90deg, rgba(8, 40, 78, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    border-radius: 12px;
    padding: 15px;
    width: 95%;
    bottom: 14px;
    left: 15px;
    cursor: pointer;
    text-align: left;
}

.bill_rt .slick-slide .bill_rt_abs h2 {
    color: var(--c_white);
    line-height: 48px;
    font-size: 22px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bill_rt .slick-slide .bill_rt_abs h2 img {
    width: 24px;
    height: 22px;
}

.bill_rt .slick-slide .bill_rt_abs p {
    color: var(--c_white);
    line-height: 31px;
    font-size: 28px;
    margin-block: 10px;
}

.bill_rt .slick-slide .bill_rt_abs p span {
    color: var(--c_grey);
}

.bill_rt .slick-slide .bill_rt_abs button {
    border-radius: 50px;
}

.bill_rt .slick-dots {
    bottom: -24px;
}

.img_sec .conta_iner {
    display: flex;

    justify-content: space-between;
    gap: 30px;
}

.img_sec .img_sec_lt {
    width: 55%;
    position: relative;
}

.img_sec .img_sec_lt figure {
    display: inline-flex;
}

.img_sec_lt div {
    position: absolute;
    backdrop-filter: blur(74px);
    background: linear-gradient(90deg, rgba(8, 40, 78, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    border-radius: 12px;
    padding: 15px;
    width: 95%;
    bottom: 14px;
    left: 15px;
}

.img_sec_lt div h2 {
    color: var(--c_white);
    line-height: 48px;
    margin-bottom: 5px;
}

.img_sec_lt div p {
    color: var(--c_grey);
    line-height: 31px;
}

.img_sec .img_sec_rt {
    width: 45%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;

}

.img_sec .img_sec_rt li:first-child {
    height: 60%;
    display: inline-flex;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.img_sec .img_sec_rt li:last-child {
    height: 40%;
    display: inline-flex;
}

.img_sec .img_sec_rt li figure {
    position: relative;
    display: inline-flex;
}

.img_sec .img_sec_rt li figure img {
    object-fit: cover;
    border-radius: 12px;
}

.img_sec .img_sec_rt li:first-child p {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    font-size: 20px;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    /* Semi-transparent black background */
    color: #fff;
    /* White text */
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    /* Hide the paragraph initially */
    visibility: hidden;
    /* Ensure it's hidden when not hovered */
    z-index: 2;
    /* Ensure the paragraph is above other content */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    /* Smooth transition */
}

.img_sec .img_sec_rt li:first-child:hover p {
    opacity: 1;
    /* Make the paragraph fully visible */
    visibility: visible;
    /* Ensure it becomes visible */
}

.registered ul {
    display: flex;
    justify-content: flex-start;
    gap: 100px;
}

.registered ul li {
    width: calc(100%/3 - 100px*2/3);
    box-shadow: 0px 3.71px 33.39px 0px #00000012;

}

.registered ul li p {
    font-size: 14px;
    color: var(--c_grey);
    margin-top: 15px;
}

.rcmd_hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;

}

.rcmd_hd a {
    color: var(--c_primary);
    font-size: 24px;
    font-weight: 500;
}

.properties {
    margin-inline: 10px;
    box-shadow: 0px 3.71px 33.39px 0px #00000012;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}

.fig_rel {
    position: relative;
    display: inline-flex;
    width: 100%;
    height: 200px;
}

.fig_rel figure,
.fig_rel figure img {
    width: 100%;
    border-radius: 18px;
}


.fig_rel span {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--c_white);
    height: 45px;
    width: 45px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fig_rel p {
    position: absolute;
    left: 10px;
    bottom: 10px;
    border-radius: 50px;
    backdrop-filter: blur(124.29950714111328px);
    background: #00000080;
    color: var(--c_white);
    font-size: 14px;
    padding: 5px 10px;
    margin: 0;
    font-weight: 500;

}

.fig_rel h4 {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 50px;
    backdrop-filter: blur(124.29950714111328px);
    background: #00000080;
    color: var(--c_white);
    font-size: 14px;
    padding: 5px 10px;
    margin: 0;
    right: 10px;
    bottom: 10px;
    font-weight: 500;


}

.fig_rel h4 img {
    width: 16px;
    height: 16px;
}

.prty_dt {
    padding: 12px;
}

.prty_dt h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 32px;
}

.prty_dt p {
    color: var(--c_grey);
}

.prty_dt p span {
    color: #08284E;
    font-weight: 500;
}

.prty_dt h5 {
    font-size: 18px;
    line-height: 40px;
    font-weight: 700;
}

.prty_dt h5 span {
    color: var(--c_grey);
    font-size: 16px;
    font-weight: 400;
}

.prty_dt h6 {
    border: 1px solid #FAECE4;
    padding: 5px 8px;
    color: var(--c_primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;

}

.w_100 {
    width: 100%;
}

.multiple-items .slick-prev {
    background-image: url(../images/arrow_bk_b.png);
    font-size: 0;
    background-size: contain;
    height: 24px;
    width: 12px;
    background-repeat: no-repeat;
    border: none;
    position: absolute;
    transform: translate(50%, 50%);
    top: 50%;
    left: -50px;
}

.multiple-items .slick-next {
    background-image: url(../images/arrow_nxt_b.png);
    font-size: 0;
    background-size: contain;
    height: 24px;
    width: 12px;
    background-repeat: no-repeat;
    border: none;
    position: absolute;
    transform: translate(50%, 50%);
    top: 50%;
    right: -50px;
}

.routing {
    font-size: 18px;
    font-weight: 400;
    color: var(--c_grey);
    line-height: 30px;

}

.routing b {
    color: var(--c_black);
    font-weight: 400;
}

.recmd_prt h1 {
    margin-top: 24px;
    font-weight: 600;
    line-height: 32px;
}

.static_bill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-block: 20px;
}

.static_bill h2 {
    color: #828282;
    font-weight: 500;
    margin: 0;

}

.static_bill p {
    color: var(--c_black);
}

.static_bill p i {
    color: var(--c_grey);
    margin-right: 5px;
}

.bill_images {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.bill_images_lt {
    width: 50%;
}

.bill_images_lt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.bill_images_rt {
    width: 50%;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.bill_images_rt li {
    width: calc(100%/2 - 24px*1/2);
    border-radius: 14px;

    margin: 0;
}

.bill_images_rt li img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.bill_images_rt li:last-child {
    position: relative;
    cursor: pointer;
}

.bill_images_rt li:last-child p {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: var(--c_black);
    opacity: 0.7;
    border-radius: 14px;
    color: var(--c_white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;

}

.rcmd_cont {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.rcmd_cont_lt,
.rcmd_cont_rt {
    width: 50%;


}

.rcmd_cont_lt_in {
    padding: 15px 25px;
    margin-top: 20px;
    background: #F5F9FD;
    border-radius: 14px;
}

.rcmd_cont_lt_in h3 {

    font-weight: 600;

}

.rcmd_cont_lt_ot {
    margin-top: 30px;
}

.rcmd_cont_lt_ot ul {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    margin-top: 20px;
}

.rcmd_cont_lt_ot ul li {
    font-size: 16px;
    border: 0.79px solid #F9E9DE;
    padding: 7px 15px;
    color: var(--c_black);
    margin: 0;
    background: #FFF7F2;
    border-radius: 90px;
}

.rcmd_cont_rt {
    margin-top: 30px;
    background: #FFF9F6;
    padding: 20px;
    border: 0.7px solid #F5E1D4;
    border-radius: 14px;
}

.rcmd_cont_rt h3 {
    font-weight: 600;
    line-height: 40px;
}

.rcmd_cont_rt h3 span {
    color: var(--c_primary);

}

.rcmd_cont_rt div {
    position: relative;
    margin-top: 20px;
    margin-bottom: 30px;

}

.rcmd_cont_rt div input {
    border: 1px solid #F2E7E2;
    border-radius: 10px;
    font-size: 16px;


}

.rcmd_cont_rt div span {
    position: absolute;

    font-size: 16px;

    right: 10px;
    top: 13px;
}

.rcmd_cont_rt h4 {
    font-size: 34px;
    font-weight: 700;
    line-height: 54px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rcmd_cont_rt h4 img {
    height: 30px;
    width: 30px;
    object-fit: cover;
    cursor: pointer;
}

/* Slider Container Styling */
.your-slider-class figure {
    width: 500px;
    height: 500px;
    margin-inline: 20px;
}

.your-slider-class figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Navigation Arrows for Slick */

.slick-prev:hover,
.slick-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

/* Slick Dots */
.slick-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slick-dots li {
    margin: 0;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 0;
}

.slick-dots li.slick-active button {
    background: #007bff;
    /* Active dot color */
}

.saved_prt h1 {
    margin-block: 20px;
}

.saved_prt .multiple-items {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.saved_prt .multiple-items li {
    width: calc(100%/3 - 30px*2/3);
    display: inline-flex;
    box-shadow: 0px 3.66px 32.96px 0px #00000012;
    background: #FFFFFF;
    border-radius: 14px;
    padding: 5px;
    margin: 0;
}

.saved_prt .multiple-items li .fig_rel span i {
    color: var(--c_primary);
}

.fig_rel figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.saved_prt .multiple-items li a {
    width: 100%;
    margin: 0;
}

.saved_prt .multiple-items li .fig_rel {
    display: unset;
}

.bkng_lst {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.bkng_lstng {
    width: calc(100%/2 - 20px*1/2);
    margin: 0 !important;
    padding: 15px 10px;
    box-shadow: 0px 3.66px 32.96px 0px #00000012;
    background: var(--c_white);
    border-radius: 14px;

}

.bkng_lstng_tp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #00000014;

}


.bkng_lstng_tp h2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 32px;
    color: var(--c_black);
}

.bkng_lstng_tp p {
    color: var(--c_primary);
    font-weight: 600;
    border: 0.92px solid #FEE6C8;
    background: #FFF6EB;
    padding: 10px 20px;
    border-radius: 8px;
}

.bkng_lstng_btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;

}

.bkng_lstng_btm figure {
    width: 30%;
    height: 177px;
    border-radius: 18px;
    overflow: hidden;
}

.bkng_lstng_btm figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bkng_lst_inner {
    padding: 10px;
    width: 68%;
}

.bkng_lst_inn_tp {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bkng_lst_inn_tp h3 {


    font-size: 18px;
    font-weight: 600;

    margin: 0;
}

.bkng_lst_inn_tp h4 {
    gap: 2px;
    border-radius: 50px;
    backdrop-filter: blur(122.6827621459961px);

    background: var(--c_black);
    color: var(--c_white);
    font-size: 14px;
    padding: 5px 10px;
    margin: 0;
    display: flex;
    align-items: center;

    font-weight: 500;
}

.bkng_lst_inn_tp h4 img {
    height: 11px;
    width: 11px;

}

.bkng_lst_inn_tp2 p {
    margin: 0;
    font-size: 12px;
    color: var(--c_grey);
    display: flex;

}

.bkng_lst_inn_tp2 p span {
    font-size: 14px;
    font-weight: 500;
    color: #08284E;
}

.bkng_lst_inn_tp2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.bkng_lst_inner h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 32px;
    color: var(--c_primary);
    padding: 2px 8px;
    border: 0.92px solid #FAECE4;
    background: #FFF8F4;
    margin-top: 12px;
}

.bkng_lst_inner h6 {
    font-size: 28px;
    font-weight: 700;
    line-height: 40px;
    color: var(--c_black);
    margin-top: 15px;
}

.bkng_dtl h1 {
    line-height: 42px;
    font-weight: 700;
    font-size: 32px;
    margin-block: 20px;
}

.phases {
    padding: 20px;
    max-width: 800px;

}

.phases .modal-body {
    padding: 40px;
}

.phases h1 {
    font-size: 36px;
    color: var(--c_black);
}

.phases ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
    max-height: 500px;
    overflow: auto;
}

.phases ul li {
    width: calc(100%/3 - 30px*2/3);
    background: #FFE2D3;
    border: 1px solid #0000000A;
    box-shadow: 0px 3.66px 32.96px 0px #00000012;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
}

.phases ul li.selected {
    background: var(--c_primary);
}

.phases ul li.selected h2,
.phases ul li.selected p,
.phases ul li.selected h3,
.phases ul li.selected p span,
.phases ul li.selected h3 span {
    color: var(--c_white) !important;
}

.phases ul li h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}


.phases ul li p {
    font-size: 16px;
    color: var(--c_black);
    font-weight: 400;
    margin: 0;

}

.phases ul li p span {
    font-size: 16px;
    color: #08284E;
    font-weight: 500;
}

.phases ul li h3 {
    font-size: 20px;
    color: var(--c_black);
    margin-top: 10px;
}

.phases ul li h3 span {
    font-size: 22px;
    color: #08284E;
}

.phases .btn_div {
    margin-top: 20px;
    text-align: right;
}

.phases .btn-close {

    position: absolute;
    right: 20px;
}

.slider {
    width: 80%;
    margin: auto;
}

.slider .item {
    background: #ddd;
    padding: 20px;
    text-align: center;
    border: 1px solid #ccc;
}



.banner_host .banner_hst_inner {
    cursor: pointer;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FDFDFD;
    border: 2px solid #FFE4D4;
    border-radius: 14px;

    height: 290px;
}

.banner_host figure {
    width: 130px;
    height: 130px;

}

.banner_host figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.become_partner h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    color: var(--c_black);
    margin-block: 20px;
}

.become_partner p {
    color: var(--c_black);
    opacity: 0.8;
}

.w_47 {
    width: 47%;
}

.form_prtnr {
    margin-top: 30px;
}

.form_prtnr button {
    margin-top: 70px;
    margin-inline: auto;
    display: flex;
    max-width: 300px;
    width: 100%;
    font-weight: 600;
}

.banner_add_prop h1 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    margin-block: 20px;
}

.flex_check {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

.am_check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.am_check label {
    margin: 0;
}

.am_check input {
    border-radius: 50%;
    border: 1px solid #F4E9E3;
    width: 23px;
    height: 23px;
}

.am_check input.active {
    background-color: var(--c_primary);
}

.banner_host .control_group {
    margin-top: 50px;
}

.width_flx {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.width_flx::after {

    content: "";
    position: absolute;
    height: 40px;
    width: 1px;
    background-color: var(--c_border);
    left: 50%;
}

.width_flx input:first-child {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    position: relative;
}

.width_flx input:last-child {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.banner_host .control_group a {

    display: flex;
    margin-top: 30px;
    max-width: 300px;
    margin: 30px auto;
}

.bootstrap-tagsinput {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.bootstrap-tagsinput input {
    order: -1;
}

.bootstrap-tagsinput .tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 25px 7px 10px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    word-break: break-word;
    color: var(--c_white);
    background-color: var(--c_primary);
    position: relative;
    gap: 6px;
}

.bootstrap-tagsinput .tag [data-role="remove"] {
    top: 3px;
    right: 0;
    width: 25px;
    height: 25px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bootstrap-tagsinput .tag [data-role="remove"]::after {
    content: "\f057";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.submit_prop .modal-body {
    padding: 40px;
    text-align: center;
}

.submit_prop figure {
    height: 93px;
    width: 93px;
    margin: 0 auto;
}

.submit_prop figure img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.submit_prop h1 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    color: var(--c_black);
    margin-block: 20px;
}

.submit_prop p {
    font-size: 18px;
    font-weight: 400;
    color: var(--c_grey);
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* Center vertically within the viewport */
    background-color: #fff;
}

.rotating-icon {
    width: 100px;
    /* Adjust size as needed */
    animation: rotate 4s linear infinite;
    /* Animation: 2 seconds, linear motion, infinite loop */
}

.submit_prop button {
    position: absolute;
    right: 10px;
    top: 10px;
}

.rcmd_cont_rt p {
    margin: 0;
}

.view_images {
    max-width: 1070px;
}

.banner_hst_inner {
    position: relative;
}

.banner_hst_inner input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    top: 0;
}

.tooltip {
    max-width: 210px;
    /* Set your desired width */
    font-size: 14px;
    /* Adjust font size for better readability (optional) */
    word-wrap: break-word;
    /* Ensure text wraps within the tooltip */
    font-size: 18px;
    text-align: left;
}

.prop_bundle_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prop_bundle_top p {
    display: flex;
    align-items: center;
}

.prop_bundle_top b {
    text-decoration: line-through;
    font-size: 18px;
}

.prop_bundle_top p span {
    font-size: 34px;
    text-decoration: none;
    font-weight: 700;
    line-height: 54px;
    color: var(--c_primary);
}

.rcmd_cont_rt .full_wt {
    width: 100%;
}

.location_lstng {

    margin-block: 30px;
}

.location_lstng li {
    margin-inline: 15px;
    border: 1px solid #F6CFB6;
    background: #FFF3EBE5;
    padding: 18px 30px;
    border-radius: 8px;
    margin-bottom: 0;
    cursor: pointer;
}

.location_lstng li.selected {
    background: var(--c_primary);
    color: var(--c_white)
}

.location_lstng .slick-prev {
    top: 20%;
    left: -20px;

}

.location_lstng .slick-next {
    top: 10%;
    right: -20px;

}

.about_us h1 {
    color: var(--c_black);
    margin-bottom: 30px;

}

.about_us p {
    color: var(--c_black);
    opacity: 0.6;
    margin-bottom: 20px;
}

/* Rajeena Css | start */
.lgn_pge_flx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.lgn_pge_lt {
    width: 45%;
    padding: 2em;
}

.lgn_pge_rt {
    width: 55%;
    height: 100vh;
    padding: 20px;

}

.lgn_pge_lt h1 {
    margin-bottom: 30px;
}

video {
    object-fit: cover;
    height: 100%;
    border-radius: 14px;
}

/* .lgn_pge_rt::after{
    content: "";
    background: url('../images/Signup_grid.png') no-repeat;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-position: center center;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;

} */
.form label {
    text-align: left;
}

.toggle-click {
    position: absolute;
    right: 15px;
    font-size: 14px;
    top: 44px;
    width: 18px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.control_group {
    margin-bottom: 22px;
    position: relative;
}

.or {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.or::after,
.or:before {
    content: "";
    width: 165px;
    height: 1px;
    background-color: var(--c_border);
    display: inline-block;
}

.lgn_pge_lt>.btnn {
    border: 1px solid var(--c_border);
    background: var(--c_white);
    font-size: 18px;
    color: #19181F;
    font-weight: 500;
    margin: 20px 0 25px;
}

.lgn_lnk {
    margin: 18px 0;
}

.lgn_lnk a {
    color: var(--c_primary);
    text-decoration: underline;
}

.lgn_pge_lt .social_links li a img,
.lgn_pge_lt .social_links li a {
    width: 30px;
    height: 30px;
}

.lgn_pge_lt .social_links {
    justify-content: center;
    gap: 20px;
}

.lgn_pge_lt .form_btn {
    margin-top: 50px;
}

.why_wrk_us {
    position: relative;
    height: 904px;
    overflow: hidden;
}

.why_wrk_us .conta_iner {
    height: 100%;
}

.gallery_thumb li p,
.why_wrk_lst.gallery_content p:nth-child(3) {
    color: #FFFFFFCC;
}

.gallery_thumb li {
    margin: 0 15px;
    position: relative;
    padding-top: 15px;
}

.gallery_thumb li::after {
    position: absolute;
    content: "";
    background: #FFFFFF33;
    width: 100%;
    height: 6px;
    left: 0;
    right: 0;
    top: 0;
}

.gallery_thumb li.slick-slide.slick-current.slick-active:after {
    background: var(--c_primary);
}

.gallery_thumb li.slick-slide.slick-current.slick-active p {
    color: var(--c_white);
}

.why_wrk_lst.gallery_main {
    position: absolute;
    inset: 0;
    height: 904px;
    z-index: -1;
    width: 100vh;
}

.why_wrk_lst.gallery_main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why_wrk_lst.gallery_main .slick-list {
    height: 904px;
    width: 100vw;
}

.why_wrk_lst li.slick-slide figure {
    width: 100vw;
    left: 50%;
    position: absolute;
    transform: translate(-50vw);
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) -1.98%, #000000 67.93%);
    height: 904px;
}

.tchnly_inner {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
}

.why_wrk_lst.gallery_content {
    width: 50%;
}

.why_wrk_lst.gallery_content h3 {
    line-height: 46px;
}

.why_wrk_lst li.slick-slide figure::after {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    inset: 0;
    width: 42%;
    height: 100%;
    filter: blur(30px);
}

.why_wrk_lst.gallery_content {
    max-width: 400px;
}

.register-button {
    padding: 10px 20px;
    background-color: #f57c00;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.register-button:hover {
    background-color: #d36800;
}

.renovation_inner {
    display: flex;

    justify-content: space-between;
}

.renovation_inner h2 {
    font-size: 40px;
    font-weight: 900;
    line-height: 58px;
    margin-bottom: 15px;
}

.renovation_inner ul {
    flex-direction: column;
}

.renovation_inner ul li {
    margin-bottom: 50px !important;

}

.renovation_inner ul li button {
    background-color: var(--c_white) !important;
    color: var(--c_grey) !important;
    font-weight: 400 !important;
    font-size: 34px !important;
}

.renovation_inner ul li button span {
    color: var(--c_primary);
    margin-right: 10px;
}

.renovation_inner ul li button.active {
    color: var(--c_black) !important;
    font-weight: 700 !important;

}

.renovation_inner h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 30px;
    color: var(--c_black);
    margin-bottom: 30px;
}

.renovation_inner .tab-pane p {
    font-size: 22px;
    font-weight: 400;
    line-height: 38px;
    color: var(--c_grey);

}

.renovation_inner .tab-pane button {
    margin-top: 40px;
}

.renovation_inner .nav {
    width: 50%;
}

.renovation_inner .tab-content {
    width: 50%;
    border-left: 1px solid #0000002E;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}


.renovation_inner .tab-content .tab-pane {
    width: 60%;
}

.renovation_inner .tab-content .tab-pane figure {
    border: 4px solid #0F498E;

    padding: 30px;
    position: absolute;
    border-radius: 50%;
    left: -14%;
    z-index: 4;
    top: 35%;
    background: var(--c_white);
}

.filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Rajeena css | End */
/* Main | End */


/* Pagination | Start */
.pagination {
    justify-content: center;
    gap: 15px;
}

.pagination li {
    height: 26px;
    width: 36px;
    display: inline-flex;

}

.pagination li a {
    padding: 4px 16px !important;
    font-size: 14px;
    color: #1B1B1B;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F1EFEF;
    border-radius: 2px;

}

.pagination li a i {
    color: #1B1B1B99;

}

.pagination li a.btn_prev {
    border: none;
}

.page_dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination li.active a {
    background-color: var(--c_primary);
    border: 1px solid var(--c_primary);
}

.pagination .page-item:not(:first-child) .page-link {
    margin: 0;
}

/* Pagination | End */

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.button-container {
    position: relative;
    display: inline-block;
    /* Keeps the button and div together */
}

.button-container img {

    position: relative;
}

.hover-content {
    display: none;
    /* Hidden by default */
    position: absolute !important;
    top: 100%;
    /* Position the content below the button */
    left: 0;
    width: 200px;
    /* Set desired width for the content */
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 8px;
    z-index: 1000;
    margin: 0 !important;
}

.button-container:hover .hover-content {
    display: block;
    /* Show the content when hovering over the container */
}

.hover-content p {
    color: var(--c_grey);
    font-size: 16px;
    font-weight: 400;
}

.hover-content span {
    color: var(--c_black);
    position: unset !important;
    font-weight: 600 !important;

}

.ham,
.logo_flex {
    display: none;
}

.head_flx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

}

.registered ul li h2 {
    color: var(--c_primary);
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sr_br2 {
    display: none;
}
.bck_buttn
{
    text-align: left;
    margin-bottom: 20px;
}
.bck_buttn a
{
    color: var(--c_primary);
}
.bck_buttn a:hover
{
    color: var(--c_grey);
}

/*Responsiveness Starts */
@media(max-width:1400px) {
    .renovation_inner .tab-content .tab-pane figure {
        top: 40%;
    }

    .hd_left .search_bar {
        margin: 0;
    }

    .btn_sm,
    .btnn {

        min-height: 40px;
        font-weight: 600;
    }

    .btnn span {
        height: 27px;
        width: 27px;
        padding: 8px;
    }

    .hd_1 :where(h1, h2, h3, h4, h5, h6),
    h1 {
        font-size: 46px;
    }
}

@media(max-width:1200px) {
    .banner_form .banner_head figure {
        width: 60px;
        height: 60px;
        padding: 14px;

    }

    .banner_form .banner_head {
        padding: 15px;
    }

    .hd_1 :where(h1, h2, h3, h4, h5, h6),
    h1 {
        font-size: 42px;
    }

    .banner_sec .banner {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .banner_rt figure {
        width: 60%;
        margin: 0 auto;
    }

    .banner_rt figure img {
        width: 100%;
        object-fit: contain;
    }

    .bnr_lst li p {
        text-align: left;
    }

    .banner_sec .banner .banner_lft,
    .banner_sec .banner .banner_rt {
        width: 100%;
        text-align: center;
    }

    .steps_lst {
        flex-wrap: wrap;
        justify-content: center;
    }

    .steps_lst li {
        width: calc(100%/2 - 50px*1/2);
        height: unset !important;
    }

    .steps_lst li div {
        height: unset;
    }

    .carousel_sec .carousel-inner .carousel-item h2 {
        font-size: 24px;
    }

    .hd_4 :where(h1, h2, h3, h4, h5, h6),
    h4 {
        font-size: 28px;
    }

    .multiple-items .slick-next {
        right: -20px;
    }

    .multiple-items .slick-prev {
        left: -20px;
    }

    .hd_3 :where(h1, h2, h3, h4, h5, h6),
    h3 {
        font-size: 32px;
    }

    .site_menu {
        position: fixed;
        left: 0px;
        top: 0px;
        height: 100vh;
        flex-direction: column;
        z-index: 99;
        align-items: flex-start;
        overflow: auto;
        background: rgb(255, 255, 255);
        transform: translateX(-100%);
        transition: 0.3s;
        width: 300px;
    }

    .site_menu.active {
        transform: translateX(0%);
    }

    .ham {
        height: 50px;
        width: 50px;
        background-color: #ECF2F6;
        border: none;
        border-radius: 50%;
        color: black;
        display: flex;
        align-items: center;
        justify-content: center;
    }



    .site_header .head_listing li a {
        width: 100%;
    }

    .site_header .head_listing {
        flex-direction: column;
        align-items: flex-start;
    }

    .site_header .head_listing li {
        border-bottom: 1px solid #DBDEFF;
        width: 100%;
    }

    .site_header .head_listing li a::after {
        display: none;
    }

    .site_header .conta_iner {
        justify-content: space-between;
    }

    .site_header .head_listing li a {
        height: 50px;
        line-height: 50px;
    }

    .site_cr {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        height: 30px;
        width: 30px;
        border: 2px solid #99A1AA;
        border-radius: 10px;
        color: #27272E;
        font-size: 14px;
        transition: all 0.3s ease-in-out;
        line-height: 1;
    }

    .logo_flex {
        display: flex;
        justify-content: space-between;
        padding: 10px;
        align-items: center;
        width: 100%;
    }

    .head_flx {
        gap: 10px;
    }

    .sr_br2 {
        display: block;
    }

    .sr_br1 {
        display: none;
    }

    .site_header1 .site_menu {
        justify-content: flex-start;
        gap: 20px;
    }

    .site_header1 .inner .hd_links {
        flex-direction: column;
        padding: 20px;
        width: 100%;
    }

    .site_header1 .inner .hd_links li,
    .site_header1 .inner .hd_links li a {
        width: 100%;
        text-align: left;
        display: flex;
        margin: 0;
    }

    .site_header1 .site_menu a {
        margin-inline: 20px;
    }

    .whist a {
        margin: 0;
    }





}

@media(max-width:991px) {

    .hd_1 :where(h1, h2, h3, h4, h5, h6),
    h1 {
        font-size: 36px;
    }

    h2,
    h3,
    h4,
    h5,
    h6,
    p {
        line-height: 1.5 !important;
    }



    .s_h p {
        font-size: 20px;
    }

    .renovation_inner h2 {
        line-height: 1.1;
    }

    .renovation_inner h2 br,
    .renovation_inner p br {
        display: none;
    }

    .renovation_inner h3 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .steps_lst li div h3 {
        font-size: 22px;
        line-height: 1.5;
    }



    .explore_lst {
        flex-wrap: wrap;
        justify-content: center;
    }

    .explore_lst li {
        width: calc(100%/2 - 60px*1/2);
        min-height: 460px;
    }


    .landing_header .head ul {
        flex-direction: column;
        gap: 0;
        margin-top: 20px;
    }

    .landing_header .head ul li {
        text-align: left;
        width: 100%;
        padding: 20px;
    }

    .landing_header .head ul li a {
        width: 100%;
        display: flex;
    }



    .btnn {
        font-size: 20px;
        padding: 5px 10px;
        font-weight: 500;
    }

    .explore_lst li p {
        padding: 15px;
    }

    .banner_lft .btnn {
        margin: 20px;
    }

    .gallery_thumb .slick-prev {
        position: absolute;
        font-size: 0;
        background-image: url(../images/arrow_bk_b.png);
        font-size: 0px;
        background-color: white;
        padding: 12px;
        left: -20px;
        background-size: 10px;
        height: 24px;
        background-position: center;
        width: 24px;
        background-repeat: no-repeat;
        border: none;
    }

    .gallery_thumb .slick-next {
        position: absolute;
        font-size: 0;
        background-image: url(../images/arrow_nxt_b.png);
        font-size: 0px;
        background-color: white;
        padding: 12px;
        right: -20px;
        top: 0;
        background-size: 10px;
        height: 24px;
        background-position: center;
        width: 24px;
        background-repeat: no-repeat;
        border: none;
    }

    .why_wrk_us {
        height: 750px;
    }

    .gallery_thumb {
        top: -20px;
    }

    .why_wrk_lst.gallery_main {
        height: 100%;
    }

    .partner p br {
        display: none;
    }

    .p_h p {
        font-size: 20px;
    }

    .renovation_inner {
        flex-direction: column;
    }

    .renovation_inner .nav,
    .renovation_inner .tab-content,
    .renovation_inner .tab-content .tab-pane {
        width: 100%;
    }

    .renovation_inner .tab-content .tab-pane figure {
        display: none;
    }

    .renovation_inner .tab-content .tab-pane {
        text-align: center;
    }

    .renovation_inner ul li {
        margin-bottom: 0px !important;
    }

    .renovation_inner ul li:first-child {
        margin-bottom: 20px !important;
    }

    .renovation_inner ul li button {
        font-size: 22px !important;
    }

    .renovation_inner h2 {
        font-size: 28px;
    }

    .billboard .conta_iner {
        flex-wrap: wrap;
    }

    .billboard .conta_iner .bill_lt,
    .billboard .conta_iner .bill_rt {
        width: 100%;
        text-align: center;
    }

    .billboard .conta_iner .bill_lt h2 {
        margin-bottom: 20px;
    }

    .img_sec_lt div h2 {
        font-size: 22px;
    }

    .bkng_lstng {
        width: 100%;
    }

    .bkng_lstng_btm {
        margin: 0;
    }

    .banner_host .banner_hst_inner {
        height: 200px;
    }

    .banner_host figure {
        height: 80px;
        width: 80px;
    }

    .banner_host .control_group {
        margin-top: 30px;
    }

    .img_sec .img_sec_rt li:first-child p {
        font-size: 12px;
    }

    .rcmd_cont {
        flex-wrap: wrap;
    }

    .rcmd_cont_lt,
    .rcmd_cont_rt {
        width: 100%;
        margin: 0;
    }

    .rcmd_cont_rt h4 {
        font-size: 28px;
    }

    .your-slider-class figure {
        width: 300px;
        height: 300px;
    }

    .view_images {
        max-width: unset;
    }

    .prop_bundle_top {
        flex-direction: column;
        align-items: flex-start;
    }



}

@media(max-width:767px) {



    .btnn {
        font-size: 18px;
        min-height: 45px;
    }

    .btnn span {
        height: 20px;
        width: 20px;
        padding: 5px;
    }

    .btn_sm {
        min-height: 40px;
    }

    .u_spc,
    .ut_spc {
        padding-top: 40px
    }

    .u_spc,
    .ub_spc {
        padding-bottom: 40px
    }

    .banner_flx {
        flex-direction: column;
    }

    .banner_form .banner_head {
        width: 100%;
    }

    .explore_lst {
        gap: 20px;
    }

    .explore_lst li {
        width: calc(100%/2 - 20px*1/2);
        min-height: 380px;
    }

    .explore_lst li p,
    .bnr_lst li p {
        font-size: 16px !important;
    }

    .banner_lft h1 {
        line-height: 1.5;

    }

    .hd_1 :where(h1, h2, h3, h4, h5, h6),
    h1 {
        font-size: 32px;
    }

    .gallery_thumb {
        top: 0px;
    }

    .why_wrk_lst.gallery_content {
        max-width: 100%;
        width: 100%;
    }

    .why_wrk_us {
        z-index: 0;
    }

    .why_wrk_us::before {
        content: "";
        background-color: var(--c_black);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0.6;
        position: absolute;
    }

    .steps_lst li figure {
        width: 70px;
        height: 70px;
        padding: 15px;
    }

    .steps_lst li div h3 {
        font-size: 20px;
    }

    .steps_lst {
        margin-top: 20px;
        gap: 20px;
    }

    .partner h2 {
        font-size: 22px;
    }

    .p_h p,
    .s_h p {
        font-size: 18px;
    }

    .renovation_inner h2 {
        font-size: 22px;
    }

    .renovation_inner p {
        font-size: 16px;
    }

    .lgn_pge_lt,
    .lgn_pge_rt {
        width: 100%;

        height: unset;
    }

    .lgn_pge_rt {
        padding: 0;
    }

    .lgn_pge_flx {
        flex-direction: column-reverse;
    }

    .carousel_sec .carousel-inner .carousel-item .carousel-caption {
        top: 30%;
        max-width: 450px;
    }

    .carousel_sec .carousel-inner .carousel-item h2,
    .bill_rt .slick-slide .bill_rt_abs h2,
    .bill_rt .slick-slide .bill_rt_abs p {
        font-size: 20px;
    }

    .prty_dt h3,
    .prty_dt p {
        font-size: 16px;
    }

    .hd_4 :where(h1, h2, h3, h4, h5, h6),
    h4 {
        font-size: 24px;
    }

    .rcmd_hd a,
    .img_sec_lt div h2 {
        font-size: 18px;
    }

    .img_sec_lt div p {
        font-size: 14px;
    }

    .img_sec .conta_iner {
        flex-wrap: wrap;
    }

    .img_sec .img_sec_lt,
    .img_sec .img_sec_rt {
        width: 100%;
    }

    .img_sec_rt {
        flex-direction: row !important;
        gap: 20px;
    }

    .img_sec .img_sec_rt li {
        height: 100% !important;
        margin: 0;
    }

    .img_sec .img_sec_rt li img {
        width: 100%;
    }

    .img_sec .img_sec_rt li:first-child p {
        font-size: 12PX;
    }

    .multiple-items .slick-next {
        right: -9px;
    }

    .m_h p {
        font-size: 18px;
    }

    .saved_prt .multiple-items {
        gap: 20px;
    }

    .saved_prt .multiple-items li {
        width: calc(100%/2 - 20px*1/2);
    }

    .become_partner h1 {
        font-size: 24px;
        margin: 0;
    }

    .form_prtnr button {
        margin-top: 20px;
    }

    .form_prtnr form .w_47 {
        width: 100%;
    }

    .registered ul {
        gap: 20px;
        flex-wrap: wrap;
    }

    .registered ul li {
        width: 100%;
    }

    .registered ul li h2 {
        font-size: 32px;
        margin-bottom: 0;
    }

    .recmd_prt h1 {
        font-size: 22px;
    }

    .bill_images_rt li:last-child p {
        font-size: 12px;
    }

    .rcmd_cont_lt_ot ul li {
        font-size: 14px;
        padding: 5px 10px;
    }

    .rcmd_cont_rt div.button-container {
        margin: 0;
    }

    .phases h1 {
        font-size: 26px;
    }

    .your-slider-class figure {
        width: 200px;
        height: 200px;
    }

    .site_footer .conta_iner .inner {
        flex-wrap: wrap;
    }

    .site_footer .inner .single_col {
        max-width: unset;
    }

    .site_footer .inner .single_col:first-child {
        text-align: center;
    }

    .social_links {
        justify-content: center;
    }

    .site_footer {
        height: unset;
    }

    .site_header1 .inner {
        flex-wrap: wrap;
    }

    .site_header1 .inner .search_bar {
        width: 100%;
    }
}

@media(max-width:575px) {
    .landing_header .head {
        padding: 10px;
    }

    .btnn {
        font-size: 16px;
        gap: 2px;
    }

    .ham {
        height: 30px;
        width: 30px;
        font-size: 14px;
    }

    .landing_header .head figure {
        width: 80px;
        height: 40px;
    }

    .landing_header .head figure img {
        width: 100%;
        height: 100%;
    }

    .site_menu {
        width: 200px;
    }

    .hd_1 :where(h1, h2, h3, h4, h5, h6),
    h1 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }

    .banner_form .banner_head,
    .bnr_lst {
        flex-wrap: wrap;
        border-radius: 15px;
    }

    .banner_form .banner_forms {
        gap: 20px;
        flex-wrap: wrap;
        width: 100%;
    }

    .banner_form .banner_forms div {
        width: 80%;
    }

    .banner_form .banner_head figure {
        margin: 0 auto;
    }

    .explore_lst li,
    .bnr_lst li,
    .steps_lst li,
    .explore_lst li figure img,
    .banner_rt figure {
        width: 100%;
    }

    .hd_5 {
        font-size: 20px;
    }

    .steps_lst li div {
        padding: 15px;
    }

    .renovation_inner .tab-content {
        border: none;
    }

    .lgn_pge_lt h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .banner_head a {
        margin: 0 auto;
    }

    .carousel_sec {
        height: 300px;
    }

    .carousel_sec .carousel.pointer-event,
    .carousel,
    .carousel_sec .carousel-inner,
    .carousel_sec .carousel-item.active,
    .carousel_sec .carousel-item.active figure,
    .carousel_sec .carousel-item.active figure img {
        height: 100%;
    }

    .carousel_sec .carousel-inner .carousel-item .carousel-caption {
        top: 45%;
    }

    .carousel_sec .carousel-inner .carousel-item h2 {
        font-size: 16px;
    }

    .hd_4 :where(h1, h2, h3, h4, h5, h6),
    h4 {
        font-size: 20px;
    }

    .m_h p {
        font-size: 16px;
    }

    .bill_rt .slick-slide .bill_rt_abs,
    .img_sec_lt div {
        left: 7px;
    }

    .img_sec .conta_iner {
        gap: 10px;
    }

    .saved_prt .multiple-items li {
        width: 100%;
    }

    .bkng_lst_inn_tp h3,
    .routing {
        font-size: 14px;
    }

    .bkng_lstng_btm {

        flex-direction: column;
    }

    .bkng_lstng_btm figure,
    .bkng_lst_inner {
        width: 100%;
    }

    .bkng_lst_inn_tp2 {
        margin-top: 10px;
    }

    .bkng_lst_inn_tp h4 {
        font-size: 10px;
        border-radius: 10px;
    }

    .bkng_lst_inn_tp2 p span,
    .bkng_lst_inner h5 {
        font-size: 12px;
    }

    .bkng_lst_inner h6 {
        font-size: 18px;
    }

    .bkng_lstng_tp p {
        padding: 5px 10px;
    }

    .bkng_dtl h1,
    .banner_add_prop h1 {
        font-size: 24px;
    }

    .bill_rt .slick-slide .bill_rt_abs h2,
    .bill_rt .slick-slide .bill_rt_abs p {
        font-size: 16px;
    }

    .bill_rt .slick-slide .bill_rt_abs {
        bottom: 4px;
    }

    .form_prtnr .w_47 {
        width: 100%;
    }

    input {
        height: 40px;
    }

    .banner_host .banner_hst_inner {
        height: 150px;
    }

    .flex_check {
        flex-wrap: wrap;
    }

    .bootstrap-tagsinput .tag {
        font-size: 10px;

    }

    .bootstrap-tagsinput .tag [data-role="remove"] {
        top: -1px;
    }

    .submit_prop figure {
        width: 50px;
        height: 50px;
    }

    .submit_prop p {
        font-size: 14px;
    }

    .submit_prop h1 {
        margin-bottom: 0;
    }

    .hd_6 :where(h1, h2, h3, h4, h5, h6),
    h6 {
        font-size: 22px;
    }



    .static_bill h2,
    .rcmd_cont_rt h4,
    .phases h1 {
        font-size: 20px;
    }

    .static_bill {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .bill_images,
    .rcmd_cont_lt_ot ul {
        flex-wrap: wrap;
    }

    .bill_images_lt,
    .bill_images_rt {
        width: 100%;
        gap: 10px;
    }

    .bill_images_rt li {
        width: calc(100%/4 - 10px*3/4);
    }

    .bill_images_rt li:last-child p {
        border-radius: 5px;
    }

    .rcmd_cont_lt_in {
        padding: 0;

    }

    .rcmd_cont_lt_in h3,
    .rcmd_cont_lt_ot h4,
    .rcmd_cont_rt h3,
    .phases ul li h2 {
        font-size: 18px;
    }

    .rcmd_cont_lt_in p,
    .phases ul li p,
    .phases ul li h3,
    .phases ul li h3 span {
        font-size: 14px;
        margin: 0;
    }

    .rcmd_cont_lt_ot ul li {
        font-size: 10px;
    }

    .rcmd_cont_rt a {
        width: 100%;
    }

    .phases h1 img {
        width: 20px;
        height: 20px;
    }

    .phases ul {
        gap: 10px;
    }

    .phases ul li {
        width: 100%;
    }

    .your-slider-class figure {
        width: 120px;
        height: 150px;
    }

    .recmd_prt {
        padding-top: 0 !important;
    }

    .site_footer .inner .single_col h2 {
        margin-bottom: 20px;
    }

    .site_footer .inner .footer_links li {
        margin-bottom: 10px;
    }

    .site_header1 .site_menu {
        width: 270px;
    }

    .location_lstng li {
        padding: 10px;
    }

    .prop_bundle_top p span {
        font-size: 22px;
    }
}







/*Responsiveness Ends */