:root {
    --primary-color: #FF2325;
    --grey-color: #FAFAFA;
    --font-color: #777171;
    --font-color2: #2B2727;
    --font-color3: #263238;
    --font-color4:#666666;
}

/**font-family-starts**/
@font-face {
    font-family: 'Be Vietnam Pro';
    src: url('../fonts/BeVietnamPro-Medium.woff2') format('woff2'),
        url('../fonts/BeVietnamPro-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam Pro';
    src: url('../fonts/BeVietnamPro-Black.woff2') format('woff2'),
        url('../fonts/BeVietnamPro-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam Pro';
    src: url('../fonts/BeVietnamPro-Bold.woff2') format('woff2'),
        url('../fonts/BeVietnamPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam Pro';
    src: url('../fonts/BeVietnamPro-ExtraBold.woff2') format('woff2'),
        url('../fonts/BeVietnamPro-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam Pro';
    src: url('../fonts/BeVietnamPro-SemiBold.woff2') format('woff2'),
        url('../fonts/BeVietnamPro-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam Pro';
    src: url('../fonts/BeVietnamPro-Regular.woff2') format('woff2'),
        url('../fonts/BeVietnamPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* @font-face {
    font-family: 'Be Vietnam Pro';
    src: url('../fonts/BeVietnamPro-Light.woff2') format('woff2'),
        url('../fonts/BeVietnamPro-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam Pro';
    src: url('../fonts/BeVietnamPro-Thin.woff2') format('woff2'),
        url('../fonts/BeVietnamPro-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
} */

html,
body {
    font-size: 16px;
    font-family: 'Be Vietnam Pro', sans-serif;
    color: var(--font-color);
}

*,
ul {
    margin: 0;
    padding: 0;
}

::-moz-selection {
    color: #fff;
    background: var(--primary-color)
}

::selection {
    color: #fff;
    background: var(--primary-color)
}

li {
    list-style-type: none;
}

/* img {
    max-width: 100%;
    height: auto;
    width: auto;
} */

a {
    text-decoration: none;
}

p {
    margin: 0;
    line-height: 1.5;
}

/**typo-css-starts**/
.heading-xxxl {
    font-size: clamp(40px, 9vw, 100px);
}


.heading-xxl {
    font-size: clamp(26px, 2.7vw, 50px);
}

h1,
.heading1 {
    font-size: clamp(22px, 2.2vw, 40px);
}

h2,
.heading2 {
    font-size: clamp(22px, 2vw, 35px);
    font-weight: bold;
}

h3,
.heading3 {
    font-size: clamp(20px, 1.6vw, 30px);
}
h4,
.heading4 {
    font-size: clamp(17px, 1.6vw, 26px);
}

h5,
.heading5 {
    font-size: 24px;
}

h6,
.heading6 {
    font-size: 22px;
}

:is(h1, h2, h3, h4, h5, h6) a,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--font-color2);
    margin: 0;
    line-height: 1.4;
}

.text-default {
    font-size: 16px;
}

.text-xl {
    font-size: 20px;
}

.text-lg {
    font-size: 18px;
}

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

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

.fc-default {
    color: var(--font-color);
}

.fc-black {
    color: #000;
}

.fc-2 {
    color: var(--font-color2);
}

.fc-3 {
    color: var(--font-color3);
}

.text-grey {
    color: #979797;
}

.text-black {
    color: #000;
}

.text-green{
    color: #388e3c;
}



/**typo-css-ends**/

/**form-css**/
input[type="text"],
input[type="email"],
input[type="phone"],
input[type="search"],
input[type="password"],
input[type="date"],
input[type="url"],
input[type="tel"],
textarea,
select,
input[type="number"],
input[type="file"],
.select2-container--default .select2-selection--multiple {
    color: #000;
    height: 48px;
    width: 100%;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    font-size: 18px;
    padding: 8px 16px;
    background-color: #fff;
}

.select2-container--default .select2-selection--multiple {
    background-color: transparent;
}

.select2-container--default .select2-search--inline .select2-search__field {
    height: auto;
    margin-top: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    margin-top: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0;
}

input:focus {
    border-color: #000;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

input[type="checkbox"],
input[type="radio"] {
    height: 15px;
    width: 15px;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    margin-right: 10px;
    background-color: #D9D9D9;
    cursor: pointer;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 3px;
}

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

input[type="checkbox"]:checked::before,
input[type="radio"]:checked::before {
    position: absolute;
    content: "";
    display: inline-block;
}

input[type="checkbox"]:checked::before {
    top: 50%;
    left: 50%;
    height: 10px;
    width: 5px;
    font-size: 16px;
    text-align: center;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: -6px 0 0 -3px;
}

input[type="radio"],
input[type="checkbox"].checkbox-2 {
    border: 1px solid #E0E0E0;
    background-color: #fff;
    height: 26px;
    width: 26px;
    border-radius: 50%;
}

input[type="checkbox"].checkbox-2 {
    border-radius: 0;
}

input[type="checkbox"].checkbox-2::before {
    border-color: var(--primary-color);
    margin: -9px 0 0 -4px;
    height: 14px;
    width: 8px;
    border-width: 3px;
}

input[type="radio"]:checked::before {
    background-color: var(--primary-color);
    left: 5px;
    bottom: 5px;
    top: 5px;
    right: 5px;
    background: var(--primary-color);
    border-radius: 50%;
}

select {
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: 50px!important;
    left: 0;
    position: absolute;
    right: 0;
    top: 26px;
    width: 100%!important;
    margin: 0 auto;
    z-index: 111;
}

input.input-type-2,
.select-field--2 select {
    height: 60px;
    border: 1px solid #B7B7B7;
    border-radius: 12px;
}
select option{font-size: 15px;}

input[type="text"].search-bar-input {
    background: url("../images/search.svg") no-repeat 18px;
    padding-left: 60px;
}

.sec-space {
    padding: clamp(38px, 4vw, 75px) 0;
}


.search-bar .search-btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

.search-bar .search-btn,
.btn.btn--action {
    font-size: 20px;
    border-radius: 12px;
    min-width: 150px;
    font-weight: 600;

}

.select-field {
    position: relative;
}

.select-field select {
    padding-right: 38px;
    position: relative;
    z-index: 1;
    background-color: transparent;
}

.select-field::before {
    position: absolute;
    content: "";
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #C1C1C1;
    margin-top: -5px;
    top: 50%;
    right: 20px;
}

.select-field.select-field--3 select {
    font-weight: 600;
    color: var(--font-color2);
    font-size: 18px;
    border-radius: 0;
    border: none;
}

.input-icn {
    padding-right: 44px !important;
}

.input-icn--cal {
    background: url("../images/calendar.svg") no-repeat center 25px;
    background-position: right 18px top 10px;
}

.eye-icn,
.eye-icn1 {
    width: 32px;
    height: 23px;
    background: url("../images/eye.svg");
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 13px;
}

.eye-icn1 {
    background: url("../images/eye-icn.svg");
}

.ph-field .country_code {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    width: 100%;
}

.ph-field .country_code_cs {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.ph-field .iti__flag-container {
    width: 100%;
}

/**form-css**/

/**buttons-css**/
.btn {
    border-radius: 5px;
    color: #fff;
    padding: 11px 30px;
    font-size: 18px;
}

.btn:hover {
    color: #fff;
}

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

.btn--lg {
    width: 100%;
    padding: 13px 30px;
}

.btn--type-2 {
    border-radius: 56px;
    /* font-size: 20px; */
    font-weight: 600;
    padding: 12px 48px;
}

.btn--type-3 {
    border-radius: 56px;
    min-width: 220px;
    font-weight: 600;
}

.btn--type-4 {
    /* font-size: 20px; */
    font-weight: 600;
    min-width: 198px;
    border-radius: 12px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.btn--type-5 {
    /* font-size: 20px; */
    padding: 14px 40px;
    border-radius: 56px;
    font-weight: 600;
    min-width: clamp(170px, 17vw, 260px);
}

.btn.btn--md {
    min-width: clamp(140px, 13vw, 188px);
}

.btn.btn--md2 {
    min-width: 130px;
}

.btn--border {
    background-color: transparent;
    color: #1F1F1F;
    border: solid currentColor 1px;
}

.btn--border:hover {
    background-color: #1F1F1F;
    color: #fff;
}

.btn--border-white {
    background-color: transparent;
    border: solid #fff 1px;
    color: #fff;
}

.btn--facebook {
    background-color: #2353FF;
}

.btn--white {
    background-color: #fff;
    color: var(--font-color);
}

.btn--white:hover {
    color: var(--font-color2)
}

.btn--black, .contact-info-card {
    background-color: #000;
    color: #fff;
}

.btn.btn--sm {
    font-size: 14px;
    min-width: 108px;
    padding: 8px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.btn.btn--sm2 {
    font-size: 16px;
    min-width: 110px;
    padding: 8px 26px;
}

.btn.btn--type-6 {
    min-width: 259px;
    padding: 17px 20px;
    border-radius: 56px;
    font-weight: 600;
}

.btn:active,
.btn:focus {
    box-shadow: none
}

/**buttons-css**/

/**common-css-starts**/
.container {
    max-width: 1395px;
    padding: 0 40px;
}

.site-header+.body {
    padding-top: 84px;
}

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

.bg-grey-2 {
    background-color: #F4F1F1;
}

.bg-grey-3 {
    background-color: #F5F5F5;
}

.bg-grey-4 {
    background-color: #ECECEC
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.txt-primary {
    color: var(--primary-color) !important;
}

.form-wrapper {
    padding: 40px 50px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.form-wrapper--2 {
    max-width: 735px;
    padding: 40px 60px;
    margin-left: auto;
    margin-right: auto;
}

.form-wrapper--3 {
    max-width: 850px;
    padding: 40px 60px;
    margin-left: auto;
    margin-right: auto;
}

/* .form-wrapper--3{max-width: 890px;} */
.border-bottom2 {
    border-bottom: solid #D9D9D9 2px;
}

.border-bottom-dark {
    border-bottom: solid rgba(0, 0, 0, 0.3) 1px;
}

.border-bottom-dark {
    border-bottom: solid rgba(0, 0, 0, 0.3) 1px
}

.border-top-primary {
    border-top: solid var(--primary-color) 1px;
}

.border-top-gray {
    border-top: solid rgba(0, 0, 0, 0.2) 1px;
}

.border-primary-lg {
    border: solid var(--primary-color) 4px;
}

.border-y {
    border-top: solid #E0E0E0 1px;
    border-bottom: solid #E0E0E0 1px;
}

.border-left-white {
    border-left: solid #fff 1px;
}

.border-left {
    border-left: solid #DCDCDC 1px;
}

.border-right {
    border-right: solid #DCDCDC 1px;
}

.border-x {
    border-left: solid #DCDCDC 1px;
    border-right: solid #DCDCDC 1px;
}

.border-t-primary-light {
    border-top: solid rgba(255, 35, 37, 0.2) 1px;
}

.border-top-dark {
    border-top: solid #b3b3b3 1px;
}

.shadow2 {
    -webkit-box-shadow: 0 0rem 0.5rem rgba(138, 138, 138, 0.15) !important;
    box-shadow: 0 0rem 0.5rem rgba(138, 138, 138, 0.15) !important;
}

.shadow3 {
    -webkit-box-shadow: 0px 10px 28px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 10px 28px rgba(0, 0, 0, 0.08);
}

.rounded-xxl {
    border-radius: clamp(12px, 2.3vw, 35px);
}

.rounded-xl {
    border-radius: 20px !important;
}

.rounded-lg {
    border-radius: 15px;
}

.rounded-md {
    border-radius: 12px;
}

.rounded-sm {
    border-radius: 7px;
}

label {
    font-size: 15px;
    color: var(--font-color2);
}

.mt-ng {
    top: -13px
}

.theme-white * {
    color: #fff
}

.cursor-pointer {
    cursor: pointer;
}

::-webkit-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--font-color2);
    opacity: 0.3;
    /* Firefox */
}

::-moz-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--font-color2);
    opacity: 0.3;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--font-color2);
    opacity: 0.3;
    /* Firefox */
}

::-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--font-color2);
    opacity: 0.3;
    /* Firefox */
}

/* .min-h-100vh {
    min-height: 100vh;
} */
.icn {
    display: inline-block;
}

.icn--xl {
    height: clamp(55px, 5.5vw, 90px);
    width: clamp(55px, 5.5vw, 90px);
}

.icn--xs {
    height: 28px;
    width: 28px;
}

.object-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

.minH-fixed {
    min-height: 100px;
}

.flex-hack {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
    min-width: 0;
}

.back-btn {
    height: clamp(45px, 3.2vw, 60px);
    width: clamp(45px, 3.2vw, 60px);
    border-radius: 50%;
    border: solid #dddd 4px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 7px;

}

.row-spans-2>*:first-child,
.row-spans-2>*:last-child {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50%;
}

.bg-curvy {
    position: relative;
    overflow: hidden;
}

.bg-curvy::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 200%;
    border-radius: 52%;
    background-color: var(--primary-color);
}

.min-w-auto {
    min-width: auto !important;
}

.list li {
    padding: 0 0 13px 28px;
    position: relative;
}

.list li::before {
    content: " ";
    display: inline-block;
    position: absolute;
    background: var(--primary-color);
    left: 0;
    top: 7px;
    height: 10px;
    width: 10px;
}

.list.list--2 li {
    padding: 0 0 15px 15px
}

.list.list--2 li::before {
    background-color: #000;
    border-radius: 50%;
    height: 4px;
    width: 4px;
    top: 9px
}



.block-wrap {
    padding: 32px 28px;
}

.editor-content p,
.editor-content span,
.editor-content div,
.editor-content ul {
    color: #000 !important;
    font-family: 'Be Vietnam Pro' !important;
    font-size: 16px !important;
}

.w-sm {
    width: 170px;
}

.row-column-2>* {
    width: 50%;
}

.theme-tabs,
.theme-tabs-2 {
    overflow-x: auto;
    overflow-y: hidden;
}

.theme-tabs-2 .nav-link {
    border: none;
    font-size: 18px;
    padding: 12px 16px;
    color: #000;
    border-bottom: solid transparent 3px;
    background-color: transparent;
}

.theme-tabs .nav-link.active svg {
    fill: #fff;
}

.theme-tabs-2 .nav-link.active {
    background-color: transparent;
    color: #000;
    border-bottom-color: var(--primary-color);
}

.theme-tabs-2 .nav-link:not(.active) {
    border-color: transparent;
}

.fixed-block {
    min-height: clamp(80px, 10vw, 150px);
}
.fixed-block--2{max-height: 300px;overflow-y: auto;}

input.icon-input {
    padding-left: 55px;
}

input.icn-cal {
    background: url('../images/cal.svg') no-repeat top 15px left 20px
}

input.icn-cal--right {
    background: url('../images/cal.svg') no-repeat top 15px right 20px
}

.modal-dialog.modal-md {
    max-width: 600px;
}

.overflow-x-auto {
    overflow-x: auto;
    overflow-y: hidden;
}

/**common-css-ends**/

/**header-css**/
.site-header {
    color: #0E0E0E;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 2;
}

.site-header .navigations .nav-link {
    font-size: 18px;
    color: inherit;
    font-weight: 500;
    padding-top: 28px;
    padding-bottom: 28px;
}

.home-page-outer .site-header:not(.header-white) {
    color: #fff;
}

.home-page-outer .site-header:not(.header-white) {
    background-color: transparent !important;
    border-bottom: none !important;
}

.home-page-outer .site-header+.body {
    padding-top: 0 !important;
}

.site-header .nav-item:not(:last-child) {
    margin-right: 50px;
}

.site-header .nav-item.is-active a {
    color: var(--primary-color);
}

.navbar-toggler {
    z-index: 1;
    height: 42px;
    display: block;
    width: 45px;
    padding: 12px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin-left: -10px;
}

.navbar-toggler:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.navbar-toggler .icon-bar {
    display: block;
    position: absolute;
    height: 3px;
    width: 60%;
    background: #CC0002;
    border-radius: 9px;
    opacity: 1;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.navbar-toggler .icon-bar:nth-child(1) {
    top: 11px;
}

.navbar-toggler .icon-bar:nth-child(2) {
    top: 19px;
}

.navbar-toggler .icon-bar:nth-child(3) {
    top: 27px;
}

.dropdown-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.dropdown-toggle::after,
.btn--dwnarrow::after,
.select-field.select-field--3::before,
.arrow-action::after {
    content: "";
    display: inline-block;
    border: none;
    height: 8px;
    width: 8px;
    border-left: solid currentColor 2px;
    border-bottom: solid currentColor 2px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-left: 9px;
}

.btn--dwnarrow::after {
    content: "";
    display: inline-block;
    border-color: #fff;
    border-width: 1px;
    margin: 0 0px 2px 17px;
    height: 10px;
    width: 10px;
}

.select-field.select-field--3::before {
    border-color: var(--primary-color);
    height: 10px;
    width: 10px;
}

.arrow-action::after {
    height: 12px;
    width: 12px;
    cursor: pointer;
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    border-color: #263238;
}

.auth-actions .user-img img {
    height: 45px;
    width: 45px;
}

/**header-css**/
.bg-footer {
    background: url("../images/bg-login.jpg") no-repeat center/cover
}

footer * {
    color: #fff;
}

.sub-sec input.email-input {
    height: 78px;
    border-radius: 56px;
    border: 0;
    padding: 10px 80px;
    color: #000;
    background: #fff url("../images/email-icn.svg") no-repeat 17px/52px;
}

.sub-sec button {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer-nav li {
    font-weight: 500;
    font-size: 18px;
}

.footer-nav li a:hover {
    color: #fff
}

.social-buttons .btn {
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 12px;
    padding-left: 5px;
    padding-right: 5px;
}

.edit-img {
    position: absolute;
    right: 0;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background: #D9D9D9;
    border: solid var(--primary-color) 4px;
}

.user-img .edit-img img {
    width: 14px;
    height: 18px;
}

.theme-accordion .accordion-button--black:not(.collapsed) {
    color: #000;
}

.space-sm {
    padding: 23px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 62px;
    height: 25px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E0E0E0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 25px;
    width: 30px;
    left: 0px;
    bottom: 0px;
    background-color: #ff2325;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    border-radius: 56px;
}

/* .switch input:focus+.switch-slider {
    box-shadow: 0 0 1px #2196F3;
} */

.switch input:checked+.switch-slider:before {
    -webkit-transform: translateX(32px);
    -ms-transform: translateX(32px);
    transform: translateX(32px);
    background-color: rgb(3, 119, 3);
}

/* Rounded sliders */

/**Home-page-slider**/
.hero-banner {
    padding: clamp(60px, 8.5vw, 170px) 0 clamp(60px, 12vw, 220px);
    background: url("../images/bg-banner-both.png") no-repeat bottom 20px right 89%/107%;
    position: relative;
}

.hero-banner-2 {
    background: url("../images/bg-banner2.svg") no-repeat bottom 0 center;
}

.hero-banner__slider .slide {
    position: relative;
    width: 850px;
    height: inherit;
}

.hero-banner__slider .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.hero-banner__slider .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 36px;
}

.hero-banner__slider .slick-dots button,
.s-dots button {
    border-top: none;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 16px solid #D9D9D9;
    margin-top: -5px;
    font-size: 0;
    background-color: transparent;
    display: inline-block;
    vertical-align: middle;
}

.hero-banner__slider .slick-dots li.slick-active button {
    border-bottom-color: var(--primary-color);
}

.hero-banner__slider .slick-dots li:not(:last-child) {
    margin-right: 8px;
}

.hero-banner__slider .cta {
    position: absolute;
    bottom: 35px;
    left: 35px;
    z-index: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.hero-slider2 .slide .btn {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 5%;
}

.bottom-line {
    position: relative;
    padding-bottom: 15px;
}

.bottom-line::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: clamp(100px, 13vw, 200px);
    background-color: var(--primary-color);
    height: 2px;
    opacity: 0.9;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);

}

.bottom-line.bottom-line--left::after {
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.bottom-line--sm::after {
    width: 80px;
}

.theme-white .bottom-line::after {
    background-color: #fff;
}

.bottom-line.bottom-line--md::after {
    width: clamp(100px, 13vw, 160px);
}

.bottom-line.bottom-line--md {
    padding-bottom: 10px;
}

.hover-content {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

.hover-content--2 {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    bottom: auto;
    right: auto
}

.tag {
    border-radius: 0px 0px 0px 21px;
    min-width: 107px;
    padding: 5px 20px;
}

.tag--2 {
    border-radius: 0px 0px 21px 0px;
}

.tag-large {
    padding: 15px 30px;
    background: #E0E0E0;
    border-radius: 56px;
    font-size: 20px;
    color: #1F1F1F;
    font-weight: 600;
}

/**Home-page-slider**/

.img-fixed-2 {
    padding-bottom: 56%;
}

.img-fixed-2 img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.popular-event-sec .slide {
    padding: 0 15px;
}

.events-slider-wrapper {
    margin: 0 -15px;
}

.events-slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.card__img {
    display: block;
}

.card__img--fixed {
    position: relative;
    padding-bottom: 58%;
}

.card__img--fixed>img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.event-tag {
    background: rgba(255, 35, 37, 0.38);
    color: var(--primary-color);
    min-width: 65px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3px 12px;
    border-radius: 40px;
    white-space: nowrap;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.event-tag-list {
    overflow-x: auto;
    padding-bottom: 3px;
}

.event-tag-list::-webkit-scrollbar {
    height: 4px;
    width: 4px;
    background: rgb(216, 214, 214);
}

.event-tag-list::-webkit-scrollbar-thumb:horizontal {
    background: #fd7375;
    border-radius: 10px;
}

.event-tag-list .event-tag {
    margin-right: 7px;
}

.icons-tag .icn:not(:last-child) {
    padding-right: 10px;
    margin-right: 10px;
    border-right: solid #fff 1px;
}

.nav-view-contrl li a.active svg {
    fill: var(--primary-color);
}

.custom-dropdown {
    min-width: 354px;
    background: #1F1F1F;
    color: #fff;
    border-radius: 12px;
}

.pagination-wrap li a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 36px;
    width: 36px;
    color: #777171;
    border: solid #E0E0E0 1px;
    border-radius: 50%;
    background-color: #fff;
}

.pagination-wrap li:not(:last-child) {
    margin-right: 24px;
}

.pagination-wrap li a.action--btn {
    padding: 5px 20px;
    border-radius: 18px;
}

.pagination-wrap .action--btn.prev-btn::before,
.prev_btn::before,
.pagination-wrap .action--btn.next-btn::after,
.next_btn::after,
.slick-arrow::after,
.theme-accordion .accordion-button::after {
    content: " ";
    display: inline-block;
    height: 12px;
    width: 12px;
    margin-right: 4px;
    border-left: solid var(--primary-color) 2px;
    border-bottom: solid var(--primary-color) 2px;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.pagination-wrap .action--btn.next-btn::after,
.next_btn::after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    margin: 1px 0 -1px 4px;
}

.theme-accordion .accordion-button::after {
    border-color: #fff;
    background-image: none;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.theme-accordion .accordion-button.collapsed::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.slick-arrow {
    position: absolute;
    bottom: 30px;
    right: 40px;
    height: 36px;
    width: 36px;
    background-color: #fff;
    font-size: 0;
    border: none;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.slick-arrow.slick-prev {
    right: 92px;
    z-index: 1;
}

.slick-arrow::after {
    margin-left: 7px;
}

.slick-next.slick-arrow::after {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    margin: 0 0 0 -4px;
}

.card__header,
.card__body {
    padding: 20px 30px;
}

.btn-close-fixed {
    position: absolute;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: 10px;
    right: 10px;
    height: 28px;
    width: 28px;
    border: solid #000 2px;
    opacity: 1;
    border-radius: 50px;
    background-size: 12px;
}

.theme-tabs .nav-link {
    font-size: 20px;
    color: var(--font-color3);
    border: solid #B7B7B7 1px;
    border-bottom: 0;
    min-width: clamp(120px, 15vw, 155px);
    padding: 14px 20px;
    border-radius: 12px 12px 0px 0px;
    background-color: transparent;
    display: flex;
    justify-content: center;
}

.theme-tabs .nav-link.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff
}

.misc-label {
    width: 250px;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
}

.icn-2 {
    height: 40px;
    width: 40px;
}

.circle-sm {
    height: 24px;
    width: 24px;
}

.arrow-action {
    height: 42px;
    width: 42px;
}

#mobile_number-error {
    position: absolute;
    top: 13%;
  }

.table td,
.table th {
    padding: 13px 22px;
    vertical-align: middle;
}

.table--common th {
    background-color: #F5F5F5;
    color: var(--font-color);
    font-weight: 500;
}

.table> :not(caption)>*>* {
    border-color: #E0E0E0;
}

.table--common tr:first-child th:first-child,
.table-top-rounded {
    border-top-left-radius: 10px;
}

.table--common tr:last-child th,
.table-top-rounded {
    border-top-right-radius: 10px;
}

.table--common td {
    color: var(--font-color3);
    font-weight: 600;
}

.table--common td {
    padding-top: 10px;
    padding-bottom: 10px;
}

.table--common tr:last-child td {
    border: none;
}
.table--header2.table--common tr:first-child th{background-color: #ff6369;color: #fff;}
.table--header3.table--common tr:first-child th{background-color: #424242;color: #fff;}
.static-check-icn{height: 12px;width: 12px;background-color:#ff6369 ;}
.check-icn-2{background-color: #424242;}
.cell-fixed {
    min-width: 200px;
}

.back-btn2::before {
    content: " ";
    display: inline-block;
    height: 12px;
    width: 12px;
    border-left: solid currentColor 1px;
    border-top: solid currentColor 1px;
    -webkit-transform: rotate(-43deg);
    -ms-transform: rotate(-43deg);
    transform: rotate(-43deg);
    margin-left: 3px;
}

.table--common {
    margin-bottom: 0;
}

.table-fixed {
    max-height: 324px;
    overflow-y: auto;
}
span.img_err {
    font-size: 15px;
    font-weight: 100;
}
.loader-wrap {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    display: none;
    place-items: center;
    z-index: 1100;
}

.sub-sec #email-error {
    position: absolute;
    left: 0;
    top: 100%;
}

.brand-logo-top {
    position: absolute;
    top: 30px;
    right: 35px;
    z-index: 1;
}

.ph-field .country_code {
    height: 48px;
}

.alert {
    margin-top: 15px;
    padding: 10px;
    text-align: center;
}

.accordion-button:focus {
    z-index: 0;
}

select+.validate-error-class {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 3px;
}

.form-control:focus {
    background-color: transparent;
}
/***** css added by vipul *****/

.hero-slider2 .slide .banner-heading{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 5%;
    color: #fff;
    font-weight: 800;
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.list.list--3 li::before {
    border-radius: 50%;
}


.large-content-section h2,.large-content-section h3,.large-content-section h4{
    font-weight: 500;
    color: var(--font-color4);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.large-content-section p, .large-content-section li{
font-size: 14px;
}
.box-space {
    padding: 25px 0 0 0;
}
.box-space-small {
    padding: 12px 0 0 0;
}
.large-content-section .list li {
    padding: 0 0 5px 28px;
}
.tc-section h2,.tc-section h3{
color: var(--font-color);
}
.list--numbered {
    counter-reset: item; /* Reset the counter for each list */
    list-style-type: none; /* Remove the default list-style */
    padding-left: 20px; /* Adjust the left padding for spacing */
}

.list--numbered li {
    counter-increment: item; /* Increment the counter for each list item */
    position: relative;
    margin-bottom: 8px; /* Adjust margin between list items */
}

.list--numbered li::before {
    content: counter(item) ". "; /* Display the counter with a period after it */
    position: absolute;
    left: -20px; /* Adjust the positioning for the counter */
}
/* Styles for Roman numerals */
.list--roman {
    counter-reset: item; /* Reset the counter for each list */
    list-style-type: none; /* Remove the default list-style */
    padding-left: 25px; /* Adjust the left padding for spacing */
}

.list--roman li {
    counter-increment: list-number;
    position: relative;
    margin-bottom: 8px;
}

.list--roman li::before {
    content: counter(list-number, lower-roman)". ";
    position: absolute;
    left: -25px;
}
/* .v-scroll::-webkit-scrollbar {
    height: 10px;
    width: 10px;
    background: rgb(216, 214, 214);
}

.v-scroll::-webkit-scrollbar-track {
    background: rgb(216, 214, 214);
    border-radius: 10px;
}

.v-scroll::-webkit-scrollbar-thumb{
    background: var(--primary-color);
    border-radius: 7px;
} */

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.image-float .float-left, .image-float .float-right {
    width: calc(21% - 5px); /* Adjust this for the desired width of the elements */
    margin-top: 8px;
}
.image-float .float-right{
    margin-left: 35px;
}
.image-float .float-left{
    margin-right: 35px;
}

.custom-placeholder::-webkit-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--font-color2);
    opacity: 1;
    /* Firefox */
}

.custom-placeholder::-moz-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--font-color2);
    opacity: 1;
    /* Firefox */
}

.custom-placeholder:-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--font-color2);
    opacity: 1;
    /* Firefox */
}

.custom-placeholder::-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--font-color2);
    opacity: 1;
    /* Firefox */
}

.bg-grey-important {
    background-color: var(--grey-color)!important;
}





/* css by vipul ends */
.old-price, .offer{
    font-size: 12px;
}

.close {
    position: absolute;
    right: 0;
    top: 0px;
    width: 0px;
    height: 0px;
    opacity: 0.8;
  }
  .close:hover {
    opacity: 1;
  }
  .close:before, .close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 20px;
    width: 2px;
    background-color: var(--primary-color);
  }
  .close:before {
    transform: rotate(45deg);
  }
  .close:after {
    transform: rotate(-45deg);
  }



.blink-text {
    animation: blinker 1.2s linear infinite;
  }

@keyframes blinker {
    50% {
      opacity: 0;
    }
  }

  .site-header .dropdown-menu{min-width: 13rem;border-radius: 4px;right: 10px;top: 139%;}
  .home-page-outer .site-header .dropdown-menu::before {
    content: " ";
    top: -9px;
    position: absolute;
    right: 10%;
    border-top: none;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 15px solid #fff;
    margin-top: -5px;
    font-size: 0;
    background-color: transparent;
    display: inline-block;
    vertical-align: middle;
  }
  .site-header .dropdown-menu .dropdown-item{padding: 7px 20px !important;}

  .site-header.header-white .dropdown-menu::before{display: none;}
@media (min-width:1024px) {
    .auth-pages::before {
        content: " ";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 40%;
        background: #fafafa;
        z-index: -1;
    }
}

@media(min-width:1200px) {
    .site-header.header-white .dropdown-menu{top: 138%;}

    .home-page-outer .site-header:not(.header-white) {
        padding-top: 11px !important;
    }

    .hero-banner__slider .cta {
        opacity: 0;
        visibility: hidden;
    }

    .hero-banner__slider .slide.slick-current .cta {
        opacity: 1;
        visibility: visible;
    }

    .hero-banner__slider .slick-slide:not(.slick-current) {
        -webkit-transform: scale(0.88);
        -ms-transform: scale(0.88);
        transform: scale(0.88);
    }

    /* .home-page-outer .site-header:not(.header-white)  {
        margin-top: -20px !important;
    } */

    .hero-banner__slider .slide {
        margin: 5px !important;
    }

    .select-field.select-field--3 select {
        padding-left: 18px;
        padding-right: 18px;
        height: 55px;
    }


    .scrollable-section::-webkit-scrollbar,.table-fixed::-webkit-scrollbar {
        width: 4px;
    }

    .scrollable-section::-webkit-scrollbar-track,.table-fixed::-webkit-scrollbar-track {
        background: rgb(216, 214, 214);
        border-radius: 4px;
    }

    .scrollable-section::-webkit-scrollbar-thumb, .table-fixed::-webkit-scrollbar-thumb{
        background: #fd7375;
        border-radius: 7px;
    }

    .mobile-footer-bar{
        display: none;
        }

}

@media(min-width:1600px) {
    .table--common th {
        font-size: 18px;
    }

    .hero-banner__slider .slick-slide:not(.slick-current) {
        -webkit-transform: scale(0.88);
        -ms-transform: scale(0.88);
        transform: scale(0.83);
    }

    .hero-banner__slider .btn {
        min-width: 162px;
    }

    .sec-space {
        padding: clamp(40px, 7vw, 75px) 0;
    }

    .my-xxxl-2 {
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .pt-xxxl-5 {
        padding-top: 48px !important;
    }

    .pt-xxxl-3 {
        padding-top: 16px !important;
    }

    .pt-xxxl-4 {
        padding-top: 24px !important;
    }

    .pt-xxxl-1 {
        padding-top: 4px !important;
    }

    .mt-xxxl-1 {
        padding-top: 4px !important;
    }

    .mt-xxxl-4 {
        margin-top: 24px !important;
    }
}

@media(max-width:1599px) {
    .site-header+.body {
        padding-top: 80px;
    }

    .site-header .nav-item:not(:last-child) {
        margin-right: clamp(24px, 3vw, 44px);
    }

    .site-header .navigations .nav-link {
        font-size: 16px;
        padding-top: 28px;
        padding-bottom: 28px;
    }

    input[type="text"],
    input[type="email"],
    input[type="phone"],
    input[type="search"],
    input[type="password"],
    input[type="date"],
    input[type="url"],
    input[type="tel"],
    textarea,
    select,
    input[type="number"],
    input[type="file"],
    .text-lg,
    .footer-nav li,
    .select2-container--default .select2-selection--multiple,
    .select-field.select-field--3 select {
        font-size: 16px;
    }

    input.input-type-2,
    .select-field--2 select {
        height: 55px;
    }

    .theme-tabs .nav-link,
    .btn {
        font-size: 16px;
    }

    .btn {
        padding: 9px 22px;
    }

    .btn--type-2 {
        border-radius: 40px;
        font-size: 16px;
        padding: 12px 42px;
    }

    .btn--type-4 {
        font-size: 16px;
        min-width: 158px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    h6,
    .heading6,
    .text-xl,
    .search-bar .search-btn,
    .btn.btn--action {
        font-size: 18px;
    }

    .btn--type-3 {
        min-width: 172px;
    }

    .hero-banner {
        padding: clamp(64px, 9vw, 130px) 0 clamp(50px, 10vw, 130px)
    }
    .hero-slider2 .slide .banner-heading{
        font-size: 46px;
    }

    .hero-banner__slider .slick-dots {
        margin-top: 22px;
    }

    .sub-sec input[type="text"].email-input {
        height: 62px;
        background-size: 40px;
        padding-left: 65px;
        padding-right: 65px;
    }

    .sub-sec input[type="email"].email-input {
        height: 62px;
        background-size: 40px;
        padding-left: 65px;
        padding-right: 65px;
    }

    .sub-sec button img {
        height: 35px;
        width: 35px;
    }

    .setting-options .card__img img {
        max-width: 75px;
        height: auto;
    }

    .setting-options .card__img img.profile-img {
        height: 75px;
        width: 75px;
        max-width: unset;
    }

    .minH-fixed {
        min-height: 77px;
    }

    .social-buttons .btn {
        height: 48px;
    }

    .tag-large {
        padding: 10px 24px;
        font-size: 16px;
    }

    .btn--type-5 {
        font-size: 16px;
    }

    h5,
    .heading5 {
        font-size: 19px;
    }

    .theme-tabs-2 .nav-link {
        font-size: 16px;
    }

    .hero-banner__slider .slide {
        width: 650px;
    }

    .btn--type-5 {
        min-width: 200px;
    }

    .btn.btn--type-6 {
        min-width: 187px;
        padding: 11px 25px;
    }

    .search-bar .search-btn,
    .btn.btn--action {
        min-width: 132px;
        font-size: 16px;
    }

    .user-img img {
        height: 80px;
        width: 80px;
    }

    .card__header,
    .card__body {
        padding: 15px 25px;
    }

    .block-wrap {
        padding: 28px;
    }

    /* .form-wrapper{max-width: 590px;}
    .form-wrapper.form-wrapper--2 {
        max-width: 470px;
      }
      .form-wrapper{max-width: 550px;}
      .form-wrapper--3{max-width: 650px;} */
    .decor-img {
        max-width: 285px;
    }

    .form-wrapper {
        max-width: 600px;
    }

    .form-wrapper--2 {
        max-width: 540px;
    }

    .form-wrapper--3 {
        max-width: 700px;
    }

    .auth-options a img {
        max-width: 40px;
        max-width: 40px;
    }

    .icn--xl {
        height: clamp(55px, 4.1vw, 90px);
        width: clamp(55px, 4.1vw, 90px);
    }
}

@media (min-width:1024px) and (max-width:1300px) {
    .user-detail-box {
        max-width: 160px;
        word-wrap: break-word;
    }
}

@media(max-width:1199px) {
    .container {
        padding: 0 20px;
    }

    .navbar-brand img {
        max-width: 56px;
        height: auto;
        width: auto;
    }

    .btn--lg {
        padding: 9px 0;
        font-size: 16px;
    }

    .site-header+.body {
        padding-top: 60px;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: #fff;
        overflow: auto;
        z-index: 1;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

    .site-header .navbar-nav .nav-link {
        padding: 10px 20px;
        border-bottom: dashed #808080 1px;
    }

    .site-header .navigations .nav-item:not(:last-child) {
        margin: 0;
    }

    .site-header .collapse:not(.show) {
        display: block;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    .site-header .navbar-toggler:not(.collapsed)::after {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

    .home-page-outer .site-header:not(.header-white) .dropdown-menu{right: 10px !important;}

    .site-header .navigations .nav-link {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    h6,
    .heading6 {
        font-size: 18px;
    }

    .btn--type-2 {
        border-radius: 34px;
        font-size: 14px;
        padding: 12px 34px;
    }

    /* .popular-event-sec .slide img {
        max-height: 82px;
        width: auto;
    } */

    .text-xl {
        font-size: 18px;
    }

    /* .hero-banner__slider {
        margin: 0 -15px;
    } */

    .hero-banner__slider .slide {
        width: 550px;
    }

    .home-page-outer .navbar-nav .nav-link {
        color: #000;
    }

    .hero-banner__slider .cta .btn {
        border-radius: 3px;
        padding: 8px 20px;
        font-size: 14px;
    }

    input.input-type-2,
    .select-field--2 select {
        height: 45px !important;
        border-radius: 8px;
    }

    .search-bar .search-btn,
    .btn.btn--action {
        font-size: 16px;
        border-radius: 10px;
        min-width: 90px;
        padding: 5px;
    }

    input[type="text"].search-bar-input {
        background-position: 15px;
        padding-left: 40px;
        background-size: 20px;
    }

    .btn--type-5 {
        padding: 10px 30px;
        font-size: 16px;
    }
    .site-header .dropdown-menu{top: 58px;right: 0}


    .mobile-footer-bar {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        background-color: #fff;
        text-align: center;
        font-size: clamp(12px, 2vw, 16px);
        z-index: 100;
    }

    .mobile-footer-bar li a {
      color: var(--font-color);
    }

    .bg-footer{
        padding-bottom:55px;
    }

    .mobile-bar-links{
        display: flex;
        justify-content: space-around;

    }
    .mobile-footer-bar li .active {
        filter: invert(18%) sepia(88%) saturate(5492%) hue-rotate(349deg) brightness(102%) contrast(100%);
      }
    input.icn-cal--right {
        background: url('../images/cal.svg') no-repeat top 8px right 16px;
    }



}

@media(max-width:1280px) {
    .social-buttons .btn {
        font-size: 14px;
    }
}

@media(max-width:1024px) {
    .tag-large {
        font-size: 20px;
        padding: 10px 22px;
        font-size: 16px;
    }

    .border-bottom-ipad {
        border-bottom: 1px solid #dee2e6 !important
    }
    .hero-slider2 .slide .banner-heading{
        font-size: 36px;
    }
}

@media(min-width:992px) {
    .minH-lg-100vh {
        min-height: 100vh;
    }

    .back-btn {
        position: absolute;
        top: 30px;
        left: 50px;
        z-index: 1;
    }

    .border-lg-right {
        border-right: solid #DCDCDC 1px;
    }

    .w-lg-100 {
        width: 100%;
    }
}

@media(max-width:991px) {

    input[type="text"],
    input[type="email"],
    input[type="phone"],
    input[type="search"],
    input[type="password"],
    input[type="date"],
    input[type="url"],
    input[type="tel"],
    textarea,
    select,
    input[type="number"],
    input[type="file"] {
        height: 42px;
        padding-left: 12px;
        padding-right: 12px;
        font-size: 16px;
    }

    .ph-field .country_code {
        height: 42px;
    }
    .box-space {
        padding: 15px 0 0 0;
    }
    .btn.btn--md {
        font-size: 15px;
    }

    .auth-options img {
        height: 40px;
        width: 40px;
    }
    .eye-icn {
        background-size: 24px;
        width: 24px;
        height: 17px;
    }

    .input-icn--cal {
        background-size: 21px;
    }

    .select-field::before {
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 10px solid #C1C1C1;
    }

    .form-wrapper {
        padding-top: 0;
    }

    h6,
    .heading6 {
        font-size: 18px;
    }

    h5,
    .heading5 {
        font-size: 20px;
    }

    .app-section .btn--type-3 {
        font-size: 14px;
        padding: 6px 20px;
        min-width: unset;
    }

    .text-xl {
        font-size: 17px;
    }
    .site-header .dropdown-menu {
        top: 53px;
      }
    .setting-options .card__img img {
        max-width: 62px;
    }

    .minH-fixed {
        min-height: 58px;
    }

    html,
    body,
    .site-header .navigations .nav-link {
        font-size: 14px;
    }

    .price-tag {
        min-width: 96px;
        padding: 5px 18px;
    }

    .btn--type-4 {
        font-size: 16px;
        min-width: 100px;
        padding-top: 9px;
        padding-bottom: 9px;
        border-radius: 5px;
    }

    .auth-actions .user-img img {
        height: 40px;
        width: 40px;
    }

    .list li {
        padding: 0 0 9px 22px
    }
    .large-content-section .list li {
        padding: 0 0 5px 22px;
    }

    .list li::before {
        top: 5px
    }

    .card__header,
    .card__body {
        padding: 16px;
    }

    .block-wrap {
        padding: 24px 20px;
    }

    .theme-tabs .nav-link {
        font-size: 16px;
        padding: 12px 35px
    }

    .switch {
        width: 60px;
        height: 24px;
    }

    .switch-slider::before {
        height: 23px;
        width: 28px;
    }

    .switch input:checked+.switch-slider::before {
        -webkit-transform: translateX(32px);
        -ms-transform: translateX(32px);
        transform: translateX(32px);
    }

    .theme-tabs-2 .nav-link {
        font-size: 16px;
    }

    .hero-banner__slider .slide {
        width: 450px;
    }

    .brand-logo-top {
        position: fixed;
        top: 18px;
        right: 26px;
    }

    .editor-content p,
    .editor-content span,
    .editor-content div,
    .editor-content ul {
        font-size: 14px !important;
    }

    .form-wrapper--3 {
        padding: 20px;
        max-width: unset;
    }

    .theme-tabs .nav-link {
        padding: 11px 24px;
    }

    .modal-dialog.modal-lg {
        max-width: 680px;
    }
}

@media(min-width:768px) {
    .border-md-left {
        border-left: solid #DCDCDC 1px;
    }

    .border-md-right {
        border-right: solid #DCDCDC 1px;
    }

    .hero-banner__slider .slide {
        margin: 16px;
    }

}

@media(max-width:767px) {
    .form-wrapper {
        padding: 0 10px 40px;
    }

    .form-wrapper--2 {
        padding: 20px 10px;
    }

    .form-wrapper--3 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .btn--type-3 {
        min-width: 162px;
        font-size: 16px;

    }

    .hero-slider2 .slide img {
        height: 130px;
        object-fit: cover;
    }
    
    .btn.btn--type-6 {
        min-width: 172px;
        padding: 9px 21px;
        font-size: 16px;
    }

    h2,
    .heading2,
    h3,
    .heading3 {
        font-size: 18px;
    }
    h4,
    .heading4 {
        font-size: 17px;
    }

    h5,
    .heading5,
    h6,
    .heading6 {
        font-size: 16px;
    }
    .large-content-section p{
        font-size: 14px;
    }
    .sub-sec input[type="text"].email-input {
        height: 50px;
        background-size: 32px;
        background-position: 12px;
        padding-left: 48px;
        padding-right: 48px;
    }

    .sub-sec button {
        right: 10px;
    }

    .sub-sec button img {
        height: 30px;
        width: 30px;
    }

    .rounded-lg {
        border-radius: 10px;
    }

    .btn--type-5 {
        padding: 10px 28px;
    }

    .back-btn {
        height: auto;
        width: auto;
        border: none;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .back-btn img {
        max-width: 26px;
    }

    .bg-curvy::before {
        border-radius: 46%;
    }

    .hero-banner__slider .slick-dots button {
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 14px solid #D9D9D9;
    }

    .hero-banner {
        background-size: cover;
        background-position: bottom;
    }

    .hero-banner__slider .slick-dots {
        margin-top: 18px;
    }

    .hero-banner__slider .slide {
        margin: 0 8px;
    }

    .hero-banner__slider {
        margin: 0 -8px;
    }

    .card__img.responsive-fixed {
        padding-bottom: 58%;
    }

    .card__img.responsive-fixed>img {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }

    .tag-large {

        padding: 7px 19px;
        font-size: 14px;
    }

    .card__header,
    .card__body {
        padding: 12px 18px;
    }

    .custom-dropdown.dropdown-menu {
        -webkit-transform: translateY(0) !important;
        -ms-transform: translateY(0) !important;
        transform: translateY(0) !important;
        top: 101% !important
    }

    .user-img img {
        height: 76px;
        width: 76px;
    }

    .navbar-brand img,
    .brand-logo {
        max-width: 45px;
    }

    .sub-sec input[type="email"].email-input {
        height: 48px;
        background-size: 32px !important;
        padding-left: 52px;
        padding-right: 52px;
        background-position: 10px;
    }

    .nav-view-contrl li:first-child a svg {
        max-width: 33px;
    }

    .nav-view-contrl li:last-child a svg {
        max-width: 35px;
    }

    .hero-slider2 .slide .btn {
        padding-left: 10px;
        padding-right: 10px;
    }

    .iti-mobile .iti--container {
        width: 80%;
    }
    .site-header .dropdown-menu {
        top: 50px;
      }
    .image-float .float-left, .image-float .float-right {
        margin-right: 20px;
        width: calc(100% - 5px); 
        margin-top: 8px;
        float: unset;
    }  
    .image-float .float-right{
        margin: unset;
    }  

}

@media(min-width:576px) {
    .footer-nav li:not(:last-child) {
        margin-right: 85px
    }

    .select-field.select-field--3 {
        max-width: 184px;
    }

    .border-sm-right {
        border-right: solid #DCDCDC 1px
    }

    .border-sm-left {
        border-left: solid #DCDCDC 1px
    }

    .table td,
    .table th {
        padding-left: 16px;
        padding-right: 16px;
    }

}

@media(max-width:575px) {

    input[type="text"],
    input[type="email"],
    input[type="phone"],
    input[type="search"],
    input[type="password"],
    input[type="date"],
    input[type="url"],
    input[type="tel"],
    textarea,
    select,
    input[type="number"],
    input[type="file"],
    .text-lg,
    .btn--lg,
    label {
        font-size: 14px;
    }

    .btn,
    .theme-tabs-2 .nav-link,
    .theme-tabs .nav-link {
        font-size: 14px;
    }

    .popular-event-sec .img img {
        max-width: 68px;
    }

    .container,
    .container-fluid {
        padding: 0 14px;
    }

    .hero-banner__slider .cta {
        bottom: 20px;
        left: 20px;
    }

    input.input-type-2,
    .select-field--2 select {
        height: 45px !important;
        border-radius: 8px;
    }

    .search-bar .search-btn,
    .btn.btn--action {
        font-size: 14px;
        border-radius: 6px;
        padding: 10px 4px;
    }

    .btn.btn--type-4 {
        min-width: 88px;
        padding: 8px 5px;
        font-size: 14px;
    }

    .btn.back--btn {
        padding: 8px 28px;
    }

    /* .pagination-wrap li a{height: 30px;width: 30px;font-size: 14px;} */
    .pagination-wrap li:not(:last-child) {
        margin-right: 12px;
    }

    .pagination-wrap .action--btn.prev-btn::before,
    .pagination-wrap .action--btn.next-btn::after {
        height: 10px;
        width: 10px;
    }

    .pagination-wrap li a.action--btn {
        padding: 5px 15px;
    }

    .slick-arrow {

        bottom: 12px;
        right: 15px;
    }

    .slick-arrow.slick-prev {
        right: 60px;
    }

    .space-sm {
        padding: 20px 12px;
    }

    .btn--type-2 {
        border-radius: 34px;
        font-size: 14px;
        padding-left: 26px;
        padding-right: 26px;
    }

    .block-wrap {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    #mobile_number-error {
        position: absolute;
        top: 7%;
    }
    .hero-slider2 .slide .banner-heading{
        font-size: 26px;
    }

}

.validate-error-class.error {
    color: rgb(248, 10, 10);
}

.country_code {
    padding: 0;
    width: 43px;

    border: 1px solid #DDDDDD;
    border-radius: 5px;
    font-size: 18px;
    padding: 8px 16px;
    background-color: transparent;
}

.iti__country-list {
    width: 371px;
    overflow-x: hidden;
}

.iti {
    width: 20%;
}

.country_code_cs {
    width: 84% !important;
}

#toast-container>div {
    opacity: 1 !important;
}

.swal-title {
    color: #000;
}

.swal-text {
    color: #000;
    font-family: inherit;
    font-weight: 500;
}

li.page-active {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 36px;
    width: 36px;
    color: #fff;
    border: solid #E0E0E0 1px;
    border-radius: 50%;
    background-color: #ff2325;
}

li.disabled {
    padding-top: 6px;
}

h3.no-data {
    text-align: center;
    padding-top: 50px;
}

img.puulImg {
    width: 30px;
}

span.star {
    color: red;
}

.graph {
    width: 100%;
    height: 500px
}

.h-scroll::-webkit-scrollbar {
    height: 4px;
    width: 4px;
    background: rgb(216, 214, 214);
}

.h-scroll::-webkit-scrollbar-thumb:horizontal {
    background: #fd7375;
    border-radius: 10px;
}

.overflow-wrap {
    overflow-wrap: anywhere;
}

::placeholder { /* Recent browsers */
    text-transform: none;
}
