@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url(../css/fontawesome.min.css);

:root {
    --black-color: #000000;
    --white-color: #ffffff;
    --primary-color: #454545;
    --secondary-color: #4D4D4D;
    --text-color: #535353;
    --heading-color: #333333;
    --icon-color: #8E12ED;
    --gradient-color: linear-gradient(90deg, #FEE175, #794C10);
    --footer-bg: #0F1D39;
    --star-color: #FFAB07;
    --primary-font: "Poppins", sans-serif;
    --secondary-font: "Open Sans", sans-serif;
    --heading-font: "Lato", sans-serif;
    --border-radius: 1vw;
    --icon-font: 900 20px / 1em "Font Awesome 6 Free";
    --box-shadow: 0px 4px 14px 0px #0000001f;
}

::after,
*::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font: 400 17px/1.5 var(--primary-font);
    color: var(--body-color);
    background: transparent;
    padding: 0;
    margin: 0;
    position: relative;
    padding-right: 0px !important;
}

::-webkit-scrollbar {
    width: 4px;
}

body::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #e1e1e1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

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

::-webkit-selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}

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

@-moz-document url-prefix() {
    html {
        scrollbar-width: thin;
        scroll-behavior: smooth;
        scrollbar-color: var(--primary-gradient) #e1e1e1;
    }
}

/* ===========Common CSS Start================ */
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
blockquote,
address {
    margin: 0;
    padding: 0;
    border: 0;
    display: block;
}

h1 {
    font-size: 52px;
    line-height: 1.2em;
    margin: 0 0 20px;
}

h2 {
    font-size: 42px;
    line-height: 1.2em;
    margin: 0 0 16px;
}

h3 {
    font-size: 32px;
    line-height: 1.3em;
    margin: 0 0 12px;
}

h4 {
    font-size: 24px;
    line-height: 1.3em;
    margin: 0 0 10px;
}

h5 {
    font-size: 20px;
    line-height: 1.4em;
    margin: 0 0 8px;
}

h6 {
    font-size: 18px;
    line-height: 1.4em;
    margin: 0 0 6px;
}

.container {
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

.transition,
[class*="scp-btn-"],
button,
a,
img,
.header_main,
.social a i,
.nav_menu a::after,
.social a i::after,
.social a:hover i::before,
.rj_box,
.rj_box .rj_icon,
.rj_text,
.subheading,
.subheading span,
.responsive_nav,
.subarrow,
.readmore,
.readmore::before,
.readmore i,
.rj_ques,
.rj_toggle .rj_ques:after,
.rj-popup-close,
.page-numbers::before,
.owl-nav [class*="owl-"],
.owl-dot span,
.heading,
.title,
.headtag,
.subheading,
.subtitle,
.subtag,
[role="button"],
.tab-button span::before {
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.transtition-5,
.sub-menu,
.shadowBoxEffect::after,
.scrollup,
.scrollup i,
.scrollup::after,
.activityBox .rj_text,
[class*="rj-btn-"]::before,
.shop-action,
.overlayimg::after {
    -moz-transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.transtition-1,
.radiusBoxHover::after {
    -moz-transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

p,
div:not([class]) {
    margin: 0 0 20px;
    line-height: 1.5em;
}
div:not([class])
{
    margin: 0;
}

p:last-child {
    margin-bottom: 0;
}

label,
span,
strong {
    display: inline-block;
    vertical-align: top;
}

a {
    display: inline-block;
    border: none;
    text-decoration: none;
    outline: none;
    color: var(--primary-color);
    cursor: pointer;
}

a:hover,
a:focus {
    color: var(--heading-color);
    outline: none;
}

img {
    display: block;
    max-width: 100%;
}

.full-img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}

label {
    display: block;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 4px;
}

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

.noList li {
    margin: 0;
}

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

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

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

.banner-bg {
    background: var(--banner-bg);
}

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

.secondary-gradient {
    background: var(--secondary-gradient);
    color: var(--white-color);
}

.body-bg {
    background: var(--body-bg);
}

.secondary-bg {
    background: var(--nav-color);
    color: var(--white-color);
}

.secondary-bg a {
    color: inherit;
}

.secondary-bg a:hover,
.secondary-bg a:focus {
    color: var(--secondary-color);
}

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

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

.cursor-pointer {
    cursor: pointer;
}

.column-gap {
    column-gap: calc(2vw + 12px);
}

.column-gap-2 {
    column-gap: calc(3vw + 16px);
}

.column-gap-3 {
    column-gap: calc(4vw + 20px);
}

del {
    color: #7B7B7B;
    font-weight: 700;
    font-size: 12px;
}

[class*="sc-btn-"] {
    display: inline-block;
    vertical-align: middle;
    min-width: 160px;
    text-align: center;
    border: 1px solid transparent;
    background: var(--icon-color);
    color: var(--white-color);
    -webkit-border-radius: 4px;
    border-radius: 4px;
    outline: none;
    text-transform: capitalize;
    font: 400 18px var(--primary-font);
    letter-spacing: 0.6px;
    height: 54px;
    line-height: 54px;
    padding: 0 20px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    text-transform: capitalize;
    transition: .3s;
}
[class*="sc-btn-"]:before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: var(--white-color);
    transform: rotate(180deg);
    z-index: -1;
    transition: .3s;
}
[class*="sc-btn-"]:hover {
    color: var(--icon-color);
    border-color: var(--primary-color);
}
[class*="sc-btn-"]:hover::before{
    width: 100%;
    left: 0;
}

[class*="sc-btn-"].bg_white{
    background: var(--white-color);
    color: var(--icon-color);
}
[class*="sc-btn-"].bg_white::before{
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: var(--icon-color);
    transform: rotate(180deg);
    z-index: -1;
}
[class*="sc-btn-"].bg_white:hover::before{
    width: 100%;
    left: 0;
}
[class*="sc-btn-"].bg_white:hover{
    color: var(--white-color);
}
/* ===========Section Part================ */
.section {
    position: relative;
    z-index: 1;
    margin: 100px 0px;
    overflow: hidden;
}

.section.section-big {
    padding: 80px 0;
}

.heading {
    font: 600 40px / 1.2em var(--heading-font);
    color: var(--heading-color);
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.heading.w {
    color: var(--white-color);
}

.heading span {
    color: var(--primary-color);
    display: initial;
}

.title {
    font: 600 18px / 1.3em var(--heading-font);
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.headtag {
    font: 600 34px / 1.3em var(--primary-font);
    color: var(--heading-color);
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.headtag.w {
    color: var(--white-color);
}

.subheading,
.subtitle,
.subtag {
    font: 600 24px / 1.3em var(--heading-font);
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
}

.heading:last-child,
.title:last-child,
.heading:last-child,
.subheading:last-child,
.subtitle:last-child,
.subtag:last-child {
    margin-bottom: 0;
}

a:hover .subheading,
a:hover .subtitle,
.subtitle a:hover,
.subheading a:hover {
    color: var(--hover-color);
}

.subtitle {
    font-size: 20px;
    margin-bottom: 5px;
}

.subtitle.secondary-subtitle,
.subheading.secondary-subheading {
    font-family: var(--primary-font);
}

.subtag {
    font-size: 18px;
}

.text-white * {
    color: var(--white-color);
    letter-spacing: 0.6px;
}

.text-white .subheading,
.text-white .subtitle {
    font-weight: 500;
    letter-spacing: 0.8px;
}

.text-balance {
    text-wrap: balance;
}

.text-pretty {
    text-wrap: pretty;
}

.flex-shrink {
    flex-shrink: 0;
}

.heading:empty,
.title:empty,
.headtag:empty,
.subheading:empty,
p:empty {
    display: none;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

/* ===========Common Content================ */
.text-white .highlight-text {
    color: var(--white-color);
    font-weight: 300;
    letter-spacing: 2px;
}

.btn_center,
.btn_left {
    margin-top: 50px;
}

.btn_center.sm,
.btn_left.sm {
    margin-top: 30px;
}

.btn_center {
    text-align: center;
}

.btn-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5vw;
    margin-top: 50px;
}

.editor-text {
    font: 400 13px var(--primary-font);
    line-height: 26px;
    color: var(--text-color);
}

.editor-text.w {
    color: var(--white-color);
}

.editor-text ul {
    margin: 40px 0;
}

.editor-text ul li {
    position: relative;
    padding: 0 0 0 15px;
}

.editor-text ul li:not(:last-child) {
    margin: 0 0 20px;
}

.editor-text ul li::before {
    content: '';
    background: var(--black-color);
    width: 7px;
    height: 7px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 10px;
}

.sm_content {
    text-align: center;
    max-width: 830px;
    margin: 0 auto;
    margin-bottom: 60px;
}

/* ===========Common CSS Ends================ */

/* ===============Form=============== */
form {
    margin: 0;
    padding: 0;
}

form .timefield .wpcf7-form-control-wrap {
    z-index: 9;
}

label {
    display: block;
    text-align: left;
    margin: 0 0 6px 0;
    line-height: normal;
    padding: 0;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 16px;
}

.wpcf7-form-control,
.form-control {
    padding: 5px 15px;
    width: 100%;
    height: 50px;
    border: 1px solid #BCBCBC66;
    -webkit-border-radius: 0 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(1px); 
    /*For old safari versions*/
    backdrop-filter: blur(1px);
 
    color: var(--white-color);
    font-size: 17 px;
    line-height: 24px;
    font-family: var(--primary-font);
    font-weight: 400;
    position: relative;
    vertical-align: top;
    outline: none;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    /* backdrop-filter: blur(14px); */
}
/* .header_popupForm .wpcf7-form-control,
.form-control
{
    background-color: #FFFFFF1F !important;  
} */

.wpcf7-form-control::placeholder,
.form-control::placeholder {
    color: var(--white-color);
}

.input-bg .wpcf7-form-control,
.input-bg .form-control {
    background-color: var(--input-bg);
}

::-webkit-input-placeholder {
    opacity: 1;
}

:-moz-placeholder {
    opacity: 1;
}

::-moz-placeholder {
    opacity: 1;
}

:-ms-input-placeholder {
    opacity: 1;
}

input[type="radio"],
input[type="checkbox"] {
    cursor: pointer;
    margin: 2px 5px 0 0;
    vertical-align: top;
}

select.wpcf7-form-control {
    -moz-appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    color: #838383;
    background-image: url(../images/select.png);
    background-repeat: no-repeat;
    background-position: 96% 20px;
    background-size: 12px;
}

textarea.wpcf7-form-control,
.wpcf7-textarea {
    height: 90px;
    resize: none;
    overflow: auto;
}

.wpcf7-textarea.row2,
.woocommerce form .form-row textarea {
    height: 120px;
}

.wpcf7-textarea.row3 {
    height: 140px;
}

.wpcf7-textarea.row4 {
    height: 190px;
}

.wpcf7-form-control:focus,
.form-control:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: none;
}

.labelWrap>span {
    margin: 0 0 5px;
}

/* .form_wrap { padding: 40px 30px; background: var(--white-color); box-shadow: 0 0 5px #c1c1c1; border-radius: 10px; overflow: hidden; max-width: 830px; } */
.formTitle {
    color: var(--white-color);
    font: 600 32px var(--primary-font);
    margin-bottom: 20px;
}

.form_wrap .row {
    row-gap: 20px;
    margin: 0 -10px;
}

.form_wrap .row>[class*="col-"] {
    padding: 0 10px;
}

.wpcf7-form-control-wrap,
.woocommerce-input-wrapper {
    display: block;
    position: relative;
    /* z-index: 1; */
}

.wpcf7-not-valid-tip {
    font-size: 15px;
    display: block;
    margin: 2px 0 -10px;
    padding-left: 4px;
}

.wpcf7-spinner {
    margin: 0;
    position: absolute;
    top: 12px;
    right: 0;
    transform: translate(-50%, 0);
    z-index: 1;
    pointer-events: none;
    left: 0;
    margin: 0 auto;
}

.newsletter-in {
    position: relative;
    margin: 10px 0 30px;
}

.btn.no-text {
    min-width: auto;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 28px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
}

.input-white-bg .wpcf7-form-control {
    background-color: var(--white-color);
    color: var(--black-color);
}

.newsletter-in input[type="email"] {
    padding-right: 50px;
}

.wpcf7-form-control:disabled,
.wpcf7-form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

.form_wrap.colorFormTitle {
    padding-top: 0;
}

.colorFormTitle .headtag {
    background: var(--other-color);
    color: var(--white-color);
    padding: 20px 20px;
    margin: 0 -40px 30px;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enquire_form .wpcf7-textarea {
    height: 155px;
}

.wpcf7-form-control[class*="sc-btn-"],
.form-control[class*="sc-btn-"] {
    width: auto;
    display: inline-block;
    vertical-align: middle;
    min-width: 160px;
    text-align: center;
    border: 1px solid var(--heading-color);
    background: var(--heading-color);
    color: var(--white-color);
    -webkit-border-radius: 90px;
    border-radius: 90px;
    outline: none;
    text-transform: capitalize;
    font: 500 16px var(--primary-font);
    letter-spacing: 0.6px;
    height: 44px;
    line-height: 44px;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-transform: capitalize;
}

.wpcf7-form-control[class*="sc-btn-"]:hover,
.form-control[class*="sc-btn-"]:hover {
    color: var(--heading-color);
    background: none;
}

/* ===============Form=============== */

/* ===============ERROR_MSG=============== */
.wpcf7 form .wpcf7-response-output {
    background: #ffd1d1 url("../images/error_icon.png") no-repeat scroll 10px 12px / 20px 20px;
    border: 1px solid #eab4b4;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #c00;
    display: block;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 500;
    min-height: 40px;
    margin: 24px 0 0;
    padding: 8px 5px 8px 40px;
    text-align: left;
    border: none;
}

.wpcf7 form.sent .wpcf7-response-output {
    background-image: url(../images/success_icon.png);
    background-color: #eaf7d9;
    border-color: #c8dd9c;
    color: #425c05;
}

.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    background-image: url(../images/warning_icon.png);
    background-color: #ffeacd;
    border-color: #ffd396;
    color: #856404;
}

.error p,
.success p,
.information p {
    padding: 0 !important;
    font-size: inherit !important;
    line-height: inherit !important;
    text-align: inherit !important;
}

.input_error {
    border-color: #c00 !important;
}

.input_success {
    border-color: #425c05 !important;
}

.norecord {
    text-align: center;
}

/* ===============ERROR_MSG=============== */

/* ===============Owl-carousel=============== */
.owl-carousel {
    padding: 0px;
}

.owl-carousel:not(.bannerslider) .owl-stage {
    /* display: flex;
    justify-content: center; */
    margin: 0;
}

.owl-carousel:not(.bannerslider) .item {
    height: 100%;
}

.owl-nav [class*="owl-"] {
    position: absolute;
    z-index: 5;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0;
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--heading-color);
    background: var(--white-color);
    border: 1px solid var(--border-color);
    -webkit-border-radius: 100%;
    border-radius: 100%;
    cursor: pointer;
    opacity: 1;
    border: 1px solid #E9E9E9;
    box-shadow: 1px 14px 37px 0px #0000001C;
}

.owl-nav .owl-prev {
    left: -60px;
    padding-right: 2px;
}

.owl-nav .owl-next {
    right: -60px;
    padding-left: 2px;
}

.owl-carousel .owl-nav .owl-prev.disabled,
.owl-carousel .owl-nav .owl-next.disabled {
    pointer-events: none;
    opacity: 0.4;
    background: #dfdfdf;
}

/* .owl-nav [class*="owl-"]:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    opacity: 1;
} */

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 50px;
    line-height: 0;
}

.owl-carousel .owl-dots .owl-dot span {
    min-width: auto;
    width: 10px;
    height: 10px;
    background: #B2C0C7;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    margin: 5px 8px;
    outline: 1px solid transparent;
    outline-offset: 4px;
}

.owl-carousel .owl-dots .owl-dot.active span {
    background: var(--primary-color);
    border-color: var(--primary-color);
    /* outline-color: var(--border-color); */
}

.owl-carousel:not(.bannerslider) .owl-item img {
    width: auto;
    margin: 0 auto;
    font-size: 12px;
}

.item:has(.shadowBox) {
    padding-bottom: 12px;
}

/* ===============Owl-carousel=============== */

/*=======================Header and Banner Section======================*/
header nav {
    display: none;
}

/* .quote_btn .sc-btn-quote {
	background: var(--icon-color);
	border: none;
	border: 1px solid var(--icon-color);
}
.quote_btn .sc-btn-quote:hover {
	border: 1px solid var(--icon-color);
	color: #fff;
} */
.header_popupForm .quote_btn .sc-btn-quote:hover {
    color: #fff;
    border:1px solid #fff;
}
.header_full_menu_top {
    position: absolute;
    width: 100%;
    z-index: 9;
    top: 45px;
}

.header_menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    padding-left: 30px;
    padding-right: 30px;
    color: var(--white-color);
}

.header_social {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header_social_icon {
    display: flex;
    gap: 20px;
}

.menu_navigation {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    font-family: "Inter", serif;
    font-size: 16px;
    font-weight: 400;
}

.menu_navigation li a {
    color: var(--white-color);
    position: relative;
    padding-top: 7px;
    padding-bottom: 7px;
}

.header_social_icon li a {
    font-size: 18px;
    color: var(--white-color);
}

.header_social_icon li a:hover {
    color: #3bfe43;
}

.green_btn {
    font-size: 15px;
    color: var(--white-color);
    background: #4AAB3D;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 6px;
    margin-left: 8px;
}

.green_btn.homeBanner {
    margin-top: 20px;
    font-size: 18px;
    padding: 17px 44px;
}

.white_btn {
    font-size: 15px;
    color: var(--black-color);
    background: var(--white-color);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 6px;
}

.bannertext_home_slider .container {
    max-width: 860px;
}

.bannertext_home_slider {
    position: absolute;
    top: 61px;
    width: 100%;
    height: 100%;
    display: flex;
    text-align: center;
    align-items: center;
}

.heading_banner {
    font-family: var(--primary-font);
    color: var(--white-color);
    font-size: 54px;
    font-weight: 600;
    line-height: 65px;
}

.shortDesc_banner {
    font: 500 20px/30px var(--primary-font);
    color: var(--white-color);
}

.banner_bottom_text {
    font: 400 18px/26px var(--primary-font);
    color: var(--white-color);
    text-align: center;
}

.inner_banner {
    position: relative;
    height: 400px;
}

.inner_banner::before {
    content: '';
    position: absolute;
    background-color: #000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
}

.inner_banner .bannertext {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner_banner .banner_img,
.inner_banner .banner_img img {
    height: 100%;
}

.inner_banner .bannertext-in {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/*=======================Values Section======================*/
.home_values figure.sk_icon {
    border-radius: 100px;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border: 1px solid #E9E9E9;
}

.sk_icon img {
    width: 30px !important;
    height: auto;
}

.sk_image img {
    width: 80px !important;
    height: auto;
}

.home_values .subheading {
    font-size: 20px;
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-weight: 500;
}

/* ==========Popup Form Star========== */
.header_popupForm .wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 1em !important;
}

.header_popupForm {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: #000000d1;
}

.header_popupForm-content .form_wrap {
    max-width: 100%;
    padding: 40px;
}

.header_popupForm-content {
    max-width: 720px;
    margin: auto;
    height: 100%;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.header_popupForm-content form {
    overflow: hidden;
    overflow-y: auto;
    max-height: 650px;
    margin-right: -10px;
    padding-right: 10px;
}

.close-icon {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 11px;
    right: -10px;
    display: grid;
    place-items: center;
    font-size: 16px;
    width: 30px;
    height: 30px;
    background: #ff0000;
    text-align: center;
    color: #fff;
    border-radius: 100%;
    opacity: 0.8;
    padding-left: 1px;
}



/* ==========Popup Form Ends========== */


.newsletter-wrap .tnp-field label {
    display: none;
}


/* process_section_start */
.section.home_service .service_heading .cmnHeading {
    font: 600 40px/50px var(--primary-font);
}

.section.home_service .service_shortdesc .short_desc {
    font: 400 17px/28px var(--primary-font);
    text-align: center;
    padding: 0 300px;
    color: var(--primary-color);
    margin: 31px 0 0 0;
}

.section.home_service .service_icon {
    background: var(--icon-color);
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 11px;
}

.section.home_service .gridView.service_list {
    background: #F9F9F9;
    border: 1px solid #E2E2E2;
    border-radius: 25px;
    padding: 100px 80px;
    margin: 60px 0 0 0;
}

.section.home_service .gridView.service_list .sk_box {
    background: #fff;
    border-radius: 22px;
    border: 1px solid #EDEDED;
    padding: 35px 31px 100px 31px;
}

.section.home_service .gridView.service_list .sk_box .subheading {
    font: 600 20px / 28px var(--primary-font);
    color: #242424;
    margin-bottom: 27px;
    margin-top: 45px;
}

.section.home_service .gridView.service_list .sk_box .para {
    font: 400 16px/26px var(--primary-font);
    color: var(--secondary-color);
}

/* process_section_end */


/* cta_section_start */
.cta_section {
    background-repeat: no-repeat !important;
    width: 100%;
    background-size: cover !important;
    height: 550px;
    position: relative;
    background-attachment: fixed !important;
}

.cta_section::after {
    position: absolute;
    content: '';
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.cta_section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.cta_section .cta_text_box .cmnHeading {
    font: 600 40px/52px var(--primary-font);
    color: var(--white-color);
}

.cta_section .cta_text_box .cmnSubHeading {
    font: 400 17px/28px var(--primary-font);
    color: var(--white-color);
    margin: 29px 0;
}

.cta_section .cta_text {
    max-width: 594px;
}

/* .cta_section [class*="sc-btn-"]:hover {
    border: 1px solid #8e12ed;
    background: var(--white-color);
    color: #720cc0;
    transition: 0.5s all ease-in-out;
} */

/* cta_section_end */

/* contact_section_start */
.section.home_contact .about_right_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s all ease-in-out;
}

.Contact_image figure {
    overflow: hidden;
}

.Contact_image:hover img {
    scale: 1.1;
    transition: 1s all ease-in-out;
}

.contact_content .cmnHeading {
    font: 600 40px/52px var(--primary-font);
    color: #272727;
}

.contact_content .cmnPara p {
    font: 400 17px/28px var(--primary-font);
    color: var(--primary-color);
    max-width: 495px;
}

.contact_content {
    padding: 67px 320px 0 65px;
}

.contact_btn [class*="sc-btn-"] {
    min-width: 145px;
    border-radius: 5px;
    height: 48px;
    line-height: 44px;
    margin: 35px 0;
    transition: 0.4s all ease-in-out;
    background:#700CBD;
}
.contact_btn .sc-btn-contact:before{
     display: none;
}
.contact_btn .sc-btn-contact:hover, 
.contact_btn .sc-btn-contact:focus {
	border: 1px solid #8e12ed;
	background: #fff;
	color: #8e12ed !important;
	transition: 0.4s all ease-in-out;
}
.phoneInfo a,
.emailInfo a {
    font: 600 18px/46px var(--secondary-font);
    color: #272727;
    padding-left: 10px;
}

.phoneInfo i,
.emailInfo i {
    font-size: 20px;
}

.section.home_contact {
    margin-bottom: 0;
}

/* contact_section_end */

/* footer_section_start */
footer {
    background-color: #23053B;
}

footer .copyright_wrapper {
    justify-content: center;
    align-items: center;
    padding: 27px 0;
}

footer .copyright_wrapper p,
footer .copyright_wrapper a,
footer .copyright_wrapper span {
    margin: 0 0;
    color: var(--white-color);
    font: 400 16px/26px var(--primary-font);
}

/* footer_section_end */
.green_btn.homeBanner {
    display: none;
}

/* contact_form_section_start */

.banner_home_section {
    position: relative;
}

.banner_form {
    position: absolute;
    top: 65%;
    left: 0;
    right: 0;
    bottom: 0;
}

.booking_form {
    display: flex;
    gap: 15px;
    margin: 0 141px;
}

.booking_form [class*="sc-btn-"] {
	min-width: 149px;
	border-radius: 5px;
	height: 50px;
	line-height: 50px;
	transition: 0.5s all ease-in-out;
	background: var(--icon-color);
}

.booking_form [class*="sc-btn-"]:hover {
    border: 1px solid #8e12ed;
    background: var(--white-color);
    color: #720cc0;
    transition: 0.5s all ease-in-out;
}

/* contact_form_section_end */

/* banner_section_start */
.banner_home .banner_home_bgimg {
    position: relative;
    height: 915px;
}
.banner_home .banner_home_bgimg img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
/* .banner_home .banner_home_bgimg::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    height: 100%;
    background: #02152D66;
} */

/* banner_section_end */

/* pop_up_form_start */
.header_popupForm .form_wrap {
    background: #FFFFFF1F;
    backdrop-filter: blur(14px);
    border: 1px solid #BCBCBC66;
    border-radius: 8px;
}

/* pop_up_form_end */
.wpcf7 form .wpcf7-response-output {
    margin: 2em 8.5em 1em !important;
}

/* Contact_page_start */
.contactPage ul li i {
    width: 50px;
    height: 50px;
    border: 1px solid var(--icon-color);
    border-radius: 10px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--icon-color);
}

.contactPage ul li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 20px;
}

.contactPage ul li a {
    font-weight: 500;
    font-size: 18px;
    color: #000;
}

.contactPage h1 {
    font-weight: 700;
    font-size: 48px;
    color: #000;
    margin-bottom: 24px !important;
}

.contactPage .social {
    display: flex;
    gap: 10px;
}

.contactPage .social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--icon-color);
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--icon-color);
}

.contactPage .form_wrap {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 50px 50px;
    border-radius: 10px;
}

.section.contactPage {
    margin: 80px 0;
}

.contactPage .wpcf7-form-control::placeholder,
.form-control::placeholder {
    color: #757575;
}

.contactPage .wpcf7-form-control {
    border: 1px solid #D3D3D3;
}

.breadcrumbs {
    display: none;
}

.contactPage .form_wrap {
    margin: 20px 0;
}

.contactPage .wpcf7-form-control {
    color: #000;
    caret-color: #000;
}

.contactPage .wpcf7 form .wpcf7-response-output {
    margin: 2em -0.5em 1em !important;
}
.contactPage [class*="sc-btn-"]:hover {
	border: 1px solid #8e12ed;
	background: var(--white-color);
	color: #720cc0;
	transition: 0.5s all ease-in-out;
}
.contactPage [class*="sc-btn-"]{
    background-color: var(--icon-color);
    color: #fff;
}
.contactPage [class*="sc-btn-"] {
	min-width: 149px;
	border-radius: 5px;
	height: 50px;
	line-height: 50px;
	transition: 0.5s all ease-in-out;
	background: var(--icon-color);
}
/* Contact_page_end */

/* thankyouSection_start */
.thankyouSection .header_menu {
    display: none !important;
}

.thankyouSection {
	margin: 180px 0 52px 0;
	height: 63vh;
}

.newsltterContent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: invert(53%) sepia(48%) saturate(582%) hue-rotate(66deg) brightness(97%) contrast(93%);
}

.newsltterContent figure {
    width: 80px;
    height: auto;
}

.newsltterContent {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.newsltterContent p {
    color: #000;
    margin: 25px 0;
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 1.4px;
}

.newsltterContent h1 {
    display: none;
}

.thankyouSection .thanks_button {
    margin: 0;
}

.thankyouSection .icon-404 img {
    max-width: 100%;
}

.error_page {
    height: 100px;
}

.error_page .thankyouSection {
    margin: 125px 0;
    height: 50vh;
}

.icon-404 {
    width: 700px;
    margin: 0 auto;
}

/* thankyouSection_end */

/* new css */

/* .sc-btn-quote.bg_white {
	background: #fff !important;
	color: #272727;
	margin-left: 10px;
}
.sc-btn-quote.bg_white:hover{
	background: #8e12ed !important;
     border: 1px solid #fff; 
	color: #fff;
}
.sc-btn-quote.bg_white:hover i{
    color: #fff;
} */
.sc-btn-quote.bg_white i{
    color: #8e12ed;
    margin-right: 7px;
}
.sc-btn-quote.bg_white:hover i{
    color: var(--white-color);
}
.header_popupForm .form-control:not(.wpcf7-submit) {
	background: #fff;
    color: #000;
}
.quote_btn i
{
    display: none;
}
.quote_btn .wpcf7-submit
{
    background-color: var(--icon-color);
}