@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

@font-face {
  font-family: "Calibri";
  src: url("../fonts/Calibri.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Calibri";
  src: url("../fonts/Calibri-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Calibri";
  src: url("../fonts/Calibri-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {
  padding: 0px;
  margin: 0px;
}
:root {
  --theme_pink_bg: #d30c80;
  --theme_gray: #505050;
  --theme_gradient: linear-gradient(180deg, #d30c80 4.96%, #0460b5 116.79%);
  --blue_bg: #0a0266;
}

body {
  font-family: "Calibri";
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}
p,
li {
  color: var(--theme_gray);
  font-family: "Calibri", sans-serif;
  font-weight: 400;
  margin: 0px;
}
a {
    color: #0a0266;font-weight: 600;}
ul {
  margin: 0px;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  display: inline;
}
section {
  padding: 60px 0px;
}
button.btn.contact-msg-btn.custom_btn {
  width: 100%;
  text-align: center;
  margin: auto;
  display: block;
}
.btn {
    background: var(--blue_bg);
    text-align: center;
    padding: 12px 18px;
    border-radius: 5px;
    line-height: 1;
    color: #fff;
    font-size: 14px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    border: none;
    font-family: "Poppins", sans-serif;
    height: 46px;
    white-space: nowrap;
    justify-content: center;
}
.btn:hover {
  color: #fff;
}
.white_btn {
  color: var(--theme_pink_bg);
  background-color: #fff;
}
.white_btn:hover {
  color: var(--theme_pink_bg);
  background-color: #fff;
}
.btn_lg {
  font-size: 20px;
  height: 56px;
}
.form-control {
  padding: 0px 15px;
  border-radius: 8px;
  border: none;
  height: 46px;
  line-height: 46px;
  font-size: 16px;
  font-weight: 400;
  color: var(--theme_gray);
  /*margin: 4px 0px 20px;*/
  /* border: 1px solid #b7b5b5; */
}
textarea.form-control {
  height: 110px;
}
.map-col {
    height: 100%;
}
.map-col iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.form-control::placeholder {
  color: var(--theme_gray);
}
.number_group {
  display: flex;
  gap: 10px;
}
.nice-select {
  float: none;
}
.main_title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 44px;
  color: #373737;
}
.btn_center {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.swiper-wrapper {
  padding-bottom: 60px;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #eeeeee;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--theme_pink_bg);
}
/* =========HEADER =============*/
.header {
    position: absolute;
    width: 100%;
    left: 0px;
    top: 24px;
    z-index: 99;
}
/*.navbar {*/
/*  background: #00000080;*/
/*  padding: 18px 24px;*/
/*  border-radius: 8px;*/
/*  box-shadow: 0px 4px 4px 0px #0000001f;*/
/*}*/

.navbar {
	background: #fff;
	padding: 2px 24px;
	border-radius: 8px;
	box-shadow: 0px 4px 4px 0px #fff0;
	backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.header_btns {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header_btns .dropdown {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--theme_pink_bg);
    padding: 10px;
    border-radius: 8px;
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 15px;
  padding-left: 15px;
  color: #333;
}
.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: var(--theme_pink_bg);
}

.navbar-brand img{
    height:100px;
    width: 100%;
}

#registerForm {
    background: rgba(255, 255, 255, 0.2); /* White with 80% opacity */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
#registerForm label{
    color:white;
}

/* ===========HEADER ===========*/
/* ===========HERO SECTION ===========*/
.banner {
  padding: 0px;
  /*background: url(../images/banner.jpg) no-repeat top center;*/
  /*background-size: cover;*/
  /*height: 100dvh;*/
  position: relative;
}

.banner_overlay {
    position: absolute;
    top: 57%;
    z-index: 9;
    width: 100%;
    display: flex;
    align-items: center;
    transform: translate(-50%, -50%);
    left: 50%;
    padding: 0px 100px;
}
.banner .swiper-wrapper {
    padding-bottom: 0px;
}
.banner_caption {
  padding-right: 165px;
}.nice-select {
    float: none;
    height: 46px;
    line-height: 46px;
    font-size: 16px;
}
.banner h1 {
  font-size: 48px;
  font-weight: 300;
  line-height: 54.72px;
}
.banner_caption p {
  margin: 30px 0px 50px;
}
/*.banner_form {*/
/*  background: #00000080;*/
/*  padding: 24px 18px;*/
/*  border-radius: 12px;*/
/*}*/
.banner_form h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}
.form_group {
  margin-bottom: 10px;
}
.number_group {
  display: flex;
  gap: 10px;
}
.number_group .nice-select {
  width: 75px;
}
.banner_form p {
  color: #fff;
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  margin-bottom: 0px;
}
/* ===========HERO SECTION ===========*/
.cta_section {
  background: #eeeeee;
}
.cta_cont {
  background: var(--blue_bg) url(../images/cta-bg.png) no-repeat center;
  padding: 40px;
  border-radius: 16px;
  background-size: cover;
}
.cta_cont {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta_txt {
  max-width: 522px;
  text-align: center;
}
.cta_txt p {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  margin-top: 10px;
}
/* ==========BENIFITS=========== */
.benifit_sec {
  background: #eeeeee;
}
.benifit_item {
  display: grid;
  place-items: center;
  gap: 20px;
  padding: 0px 50px;
}
.benifit_icon {
  height: 52px;
  width: 52px;
  background: var(--theme_gradient);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ==========BENIFITS=========== */

/* ==========ABOUT US=========== */

.about_img {
  position: relative;
}
.abaut_info p {
  margin: 14px 0px;
}
.about_img > img {
  width: 100%;
  border-radius: 15px;
}
.about_img::before {
  position: absolute;
  content: "";
  width: 90%;
  height: 90%;
  border-radius: 15px;
  border: #fff 1px solid;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
/* ==========ABOUT US=========== */

/* ==========SERVICE=========== */
.service_item {
  text-align: center;
}
.service_img {
  position: relative;
  display: table;
  margin: 0px auto 20px;
}
.service_img::before {
  position: absolute;
  content: "";
  width: 90%;
  height: 90%;
  border-radius: 50%;
  border: #fff 1px solid;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.about-cont-col {
  margin-bottom: 20px;
}
.service_img img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
}
.service_info p {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}
ul.service-details li {
  text-align: left;
  display: list-item;
  list-style: auto;
  margin-bottom: 4px;
}
.benifit_info h4 {
    font-family: "Calibri";
    font-size: 18px;
    font-weight: 600;
}
ul.service-details li {
  color: #505050;
  font-weight: 500;
}
.service-icon-box {
  min-height: 310px;
}
/* ==========SERVICE=========== */

/* ==========HOME CONTACT=========== */

.home_contct_wrap {
    background-color: #7c76c0;
    padding: 48px;
    border-radius: 12px;
    background: linear-gradient(45deg, #0a0266, #3F51B5);
}
.home_contact_form {
  padding: 0px 40px;
}
/* ==========HOME CONTACT=========== */

/* ==========SUCCESS=========== */
.success_item {
  border: 1px solid #eeeeee;
  border-radius: 12px;
  overflow: hidden;
}
.success_img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
}
.success_info {
  padding: 18px;
}
.success_info_head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}
.date {
  display: flex;
  align-items: center;
  gap: 7px;
}

.date span {
  font-family: Calibri;
  font-weight: 400;
  text-align: center;
}
.success_info > p {
  margin-bottom: 18px;
}
.success_info a {
  color: #0460b5;
}
/* ==========SUCCESS=========== */

/* ==========Footer=========== */
footer.footer {    padding: 40px 10px 20px;
  background: #0a0266;
}
.ftr_item {
    margin-top: 25px;
}
ul.contact_info {
    padding-left: 0px ! IMPORTANT;
}
.contact_info li {
    display: flex;margin-bottom: 10px;
}
.contact_info li i {
    padding-right:10px;
}
footer p,
footer li,
footer li a,
footer h4 {
  color: #fff;
}
.copyright {
  border-top: 1px solid #423e6f;
  margin-top: 30px;
  padding: 15px 0px;
}
.copyright ul li {
  display: inline-block;
  padding: 0px 15px;
  float: right;
}
ul.ftr_links {
  padding: 0px;
}
ul.contact-social {
  display: inline-flex;
  margin: 0px;
  padding: 0px;
}
.contact-social li {
  padding: 10px 6px;
  font-size: 20px;
}
.contact-form .form-control {
    border: 1px solid #D0D5DD;
}
.contact-form .form-control::placeholder {
    color: #949494;
}
/* ==========Footer=========== */
.banner-breadcrum {
  background-image: url("../images/breadcrumb-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 550px;
  padding-top: 110px;display: flex;
}
.banner-breadcrum .container{    margin: auto;
    vertical-align: middle;}
.pg_title h1 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 42px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}
.user-icon {
    display: grid;
    min-height: 240px;
    place-items: center;
    gap: 20px;
    padding: 22px;
    box-shadow: 0px 3px 8px 2px #d7d7d75c;
    border-radius: 10px;
    background: #fff;
}

.cform-col {
    box-shadow: 0px 3px 8px 2px #d7d7d75c;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
}
.contact-form-col h3 {
  font-family: "Playfair Display";
  margin-bottom: 25px;
  font-size: 32px;
}
span.contcat-phone {
  color: #d30c80;
}
.career-info {
  padding-left: 50px;
}

    /* Hide the original select box */
    .select-caste select {
      display: none;
    }

    /* Style the search input */
    .select-caste .search-cst-input { padding:10px !IMPORTANT }

    /* Style the dropdown list */
    .select-caste .select-caste-items {
      /*position: absolute;*/
      background-color: #f9f9f9;
      max-height: 150px;
      overflow-y: auto;
      border: 1px solid #ccc;
    }

    /* Style individual options */
    .select-caste .select-caste-items div {
      padding: 7px;     
      line-height: 1.3;
      cursor: pointer;
    }

    /* Highlight option on hover */
    .select-caste .select-caste-items div:hover {
      background-color: #f1f1f1;
    }

    /* Hide the dropdown list by default */
    .select-caste .select-caste-items.hidden {
      display: none;
    }
/*------------------- Register page 1 css ------------*/

    .regi-about-section {
        background-image: url(https://sanpurpleinc.in/sundarsathi/assets-front-end/images/register/regiter-form-bg.jpg);
        background-size: cover;
        background-position: center;
        padding: 50px; 
    }

    .regi-about-content {
        padding: 80px 20px;
        border-radius: 8px;
        text-align: center;
        color: white;
        margin: auto; 
    }
    
    .regi-form-container .btn {
        background: #0A0266;
        margin: auto;
        width: 100%;
        text-align: center;
        display: block;
        margin-bottom: 14px;
    }
    .regi-form-container {
      width: 100%;
      padding: 20px;
      border-radius: 8px;
      background-color: white;
    }
    .row.register-section { box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);}
    .regi-form-container h2 {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 500;
    text-align: left;
    margin-top: 30px; }
    .formbg-overlay{
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    vertical-align: middle;
    margin: auto;
    display: grid; }
    .regi-form-check-label {
      font-size: 14px;
    }
    .nice-select .list { width: 100%;}
    .regi-about-content p { color: #fff; }
    .regi-form-container .form-control, .regi-form-container .form-select { border: 1px solid #D0D5DD; }
    .regi-form-container .form-select::placeholder, .regi-form-container .form-control::placeholder {  color: #ababab;}
    .regi-form-container .form-select {  padding-top: 0px;    color: #505050;}
    .nice-select.form-select .current { color: #000;}
    .nice-select.form-select { background-image: none;}
    .regi-form-container .nice-select:after {border-bottom: 2px solid #7c7c7c;
    border-right: 2px solid #7c7c7c;
    content: '';
    display: block;
    height: 10px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 10px; }
    .without-banner-pg { margin: 100px 10px;}
  /*regiter page 1 css end*/
  
  div#loom-companion-mv3 {
    display: none;
}
 /*regiter form 2 personal details*/
 /* Custom Select Styles */
.hg-drop-custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.hg-drop-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    background-color: #fff;
}

.hg-drop-arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
}

.hg-drop-select-options {
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    z-index: 1000;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hg-drop-option {
    padding: 10px;
    cursor: pointer;
}

.hg-drop-option:hover {
    background-color: #f0f0f0;
}

.hidden {
    display: none;
}

 /*register form 3 family details*/
.fvalue-opt.regi-radio-pt input {
    margin: 5px 2px 5px 12px;
    text-align: center;
    vertical-align: middle;
}

/*upload image form css*/
   
    .image-preview-container {  display: flex; flex-wrap: wrap; justify-content: center; margin-top: 20px; }
    .image-preview-box { position: relative;  margin: 10px; }
    .image-preview-box img { height: 100px; }
    .remove-image-btn {
      position: absolute;
      top: -5px;
      right: -5px;
      background-color: red;
      color: white;
      border: none;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      font-size: 12px;
      cursor: pointer;
    }

    .custom-upload-btn {
          background-color: #ff4081;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: auto;
    text-align: center;
    width: 200px;
    }

    input[type="file"] { display: none;}
    
/*upload image form css End*/
.option-mainh {font-size:20px;}

/*------------------- OTP Verification page 1 css ------------*/
.otp-container {margin: 40px auto;
            padding: 20px;
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .otp-header {
            background: linear-gradient(to right, #2d22b2, #9C27B0);
            padding: 20px;
            color: white;
            border-radius: 10px 10px 0 0;
            text-align: center;
        }
        .otp-header p {  margin: 15px 0 ; color:#fff;  }

        .otp-input {
            padding: 10px;
            border-radius: 25px;
            border: 1px solid #ccc;
            outline: none;
            width: 100%;
        }
        .thank-set {margin:auto;}
    /*------------------- OTP Verification page 1 css ------------*/
    
    /*===================== login popup css =============== */
    .popup-close-btn {
    float: right;
    border: 2px solid #041b3c;
    border-radius: 50px; }
    .login-submit { text-align: center; background: #0A0266; display: block;}
    .pink-text a{color:#D20C80;}
    .popup-footer {padding:20px;}
    .popup-forgotpwd { text-align: right; }
    .regi-btn {  text-align: center;}
    .popup-forgotpwd { text-align: right; }
    .regi-btn {  text-align: center;}
    /*===================== login popup css =============== */
    /*========== career form css =============*/
    .upload-btn-wrapper {
      position: relative;
      display: inline-block;
    }

    .upload-btn-wrapper .btn-upload {
      border: 1px solid #d1d3e2;
      color: #5a5c69;
      background-color: #f8f9fc;
      padding: 10px 20px;
      font-size: 16px;
      cursor: pointer;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .upload-btn-wrapper .btn-upload:hover {
      background-color: #e2e6ea;
    }

    .upload-btn-wrapper input[type="file"] {
      font-size: 100px;
      position: absolute;
      left: 0;
      top: 0;
      opacity: 0;
      cursor: pointer;
    }

    .upload-btn-wrapper .btn-upload img {
      margin-right: 10px;
    }
    /*========== career form css =============*/
    .blog-details-row ul li {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 8px; }

/*css for membership page*/
    /* Styling for the pricing cards */
   .pricing-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 10px 0;
    text-align: center;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

    .pricing-card .price {
      font-size: 28px;
      color: #e91e63;
      font-weight: bold;
    }

    .pricing-card .duration {
      font-size: 16px;
      color: #6c757d;
      margin-top: -8px;
    }

    .pricing-card .features {
      text-align: left;
      margin: 20px 0;
      color: #6c757d;
    }

    .pricing-card .btn {
        line-height: 1.4;
        background-color: #e91e63;
        color: white;
        border-radius: 10px;
        border: none;
        padding: 10px 25px 6px;
    }

    .best-selling .badge {
        background-color: #e91e63;
        color: white;
        font-size: 14px;
        font-weight: bold;
        padding: 14px 11px;
        width: 100%;
    }
    .pricing-card.best-selling { padding: 0px; border: 1px solid #e91e63; }
    .best-selling-content {padding: 0px 20px 20px;}
    .pricing-hr {  border: 1px solid #e91e63; }
    
.formregister {
    padding: 20px 20px ;
    background-color: rgba(0, 0, 0, 0.5) ! important;
    border-radius: 8px;
}    
.btn_search {
    border-radius: 5px;
    background: linear-gradient(108.69deg, #d30c80 0.99%, #d51583 100%);
    margin-right: -1px;
    border: none;
    width: 100%;
    height: 46px;
    font-size: 18px;
    color: #fff;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999;
    border: none;
}   
.swiper-button-next, .swiper-button-prev {
    color: #5e5b5b;
    background: #fff;
    padding: 10px;
    width: 80px;
    height: 80px;
    border-radius: 50px;
}
.swiper-button-prev:after, .swiper-button-next:after {
    font-size: 20px;
}
.banner .swiper-slide img {
    height: calc(100vh + 90px);
    object-fit: cover;
    object-position: center;
}
.usecontact_sec {
    background: #f6f6f6;
}
.select2-container--default.select2-container--disabled .select2-selection--single, .select2-container .select2-selection--single {
    background-color: #fff!important;
    border: 1px solid #D0D5DD;
    border-radius: 6px;
    height: 46px;
    line-height: 46px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 42px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--theme_gray);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -4px;
    transform: rotate(45deg);
    border-bottom: 2px solid #343a40;
    border-right: 2px solid #343a40;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
    margin-right: 33px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 13px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
}
@media (max-width: 1400px) {
.benifit_item {
 
    gap: 5px;
    padding: 0px;
}
}
/* Media queries for responsiveness */
@media (min-width: 567px) and (max-width: 991.98px) { 
.banner_overlay {
    top: 60%;
}
.swiper-button-next, .swiper-button-prev {
    width: 50px;
    height: 50px;
} 
.header_btns {
    position: absolute;
    right: 88px;
    top: 40px;
}
.navbar-toggler {
   
    background: #fff;
    padding: 5px 10px;
    
}
.banner .swiper-slide img {
    height: calc(100vh + 80px);
    object-fit: cover;
    object-position: center;
}
.home_contact_form {
    padding: 0px;
}
}

@media (max-width: 767px) {
  .pricing-card {
    margin-bottom: 20px;
  }
  .cta_cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}
.service_img img {
    width: 228px;
    height: 228px;
    border-radius: 50%;
}
.banner .swiper-slide img {
    height: calc(100vh + -170px);
    object-fit: cover;
    object-position: center;
}
.banner_overlay {
    width: calc(100% - 0%);
    padding: 50px 0px;
    position: relative;
    top: 0px;
    transform: none;
    left: 0px;
    margin-top: 50px;
}
.home_contact_form {
    padding: 0px;
}
.home_contct_wrap {
    padding: 25px;
    background: linear-gradient(178deg, #0a0266, #3F51B5);
}
.home_contct_wrap .btn {
    margin: 0px auto;
    display: table;
}
#registerForm {
    background: rgb(10 2 102);
}
#registerForm .btn {
    background: var(--theme_gradient);
}
.btn_lg {
    font-size: 14px;
    height: 46px;
}
}
    /*css end for membership page*/
@media (max-width: 800px) {
    .banner-breadcrum { min-height: 400px;}
    section {
        padding: 50px 0px;
    }
    .cont-col { margin-bottom: 20px;}
}

@media (max-width: 1024px) {
.career-info { padding-left: 10px;}
}
@media (max-width: 567px) {
    .navbar {
    padding: 10px;
    gap: 10px;
    justify-content: space-between;
}
.banner_overlay{ top: 100%; }
.header_btns{display:none;}
.navbar {
    padding: 0px;
    border-radius: 8px;
    box-shadow: 0px 4px 4px 0px #fff0;
}

.header {
    top: 0px;
    background: #fff;
}
.header_btns { margin-left: auto; }
.banner_navigation {
    position: absolute;
    bottom: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: row-reverse;
    gap: 15px;
}
.swiper-button-next, .swiper-button-prev {
    color: #5e5b5b;
    background: #fff;
    padding: 10px;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    position: relative;
    left: 0px;
    top: 0px;
}
.cta_cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: wrap;
    justify-content: center;
    padding: 20px;
    gap: 15px;
}

.banner_form {
    margin-top: 50px;
}
.navbar-toggler {
    color: #ffffff;
    background: var(--theme_gradient);
    padding: 7px 10px;
    border: none;
}
.navbar-brand img {
    height: 85px;
    width: auto;
}
.without-banner-pg {
    margin: 100px 0px 0px;
}
.navbar-collapse {
   
    padding-bottom: 10px;
}
.banner {
    margin-top: 95px;
}
.banner .swiper-slide img {
    height: 460px;
    object-fit: cover;
    object-position: center;
}
.banner_overlay {
    top: 100%;
    padding: 0px;
    margin: 0px;
}
}
.footerlogo{
    width:150px;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
.emailform{
   background-color: ghostWhite !important;
   border: solid 1px cadetBlue;
}

.widget-visible{
    display:none;
}
.privacy-section li {
    list-style: disc;
}
.privacy-section h5 {
    margin-top: 20px;
    margin-bottom: 10px;
}
.privacy-section h6 {
    margin-top: 10px;
}

    
     .policy-container h1 {
            margin-bottom: 10px;
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
        }
        .policy-container h2 {
            font-size: 22px;
            margin-top: 25px;
        }
        .policy-container p {
            font-size: 16px;
            margin-bottom: 12px;
        }
        .policy-container ul {
            padding-left: 25px;
            margin-bottom: 20px;
            list-style-type: disc;
        }
        .policy-container li {
            font-size: 16px;
            margin-bottom: 10px;
            list-style: disc;
        }
        .policy-container .highlight {
            background: #f1f1f1;
            padding: 12px 15px;
            border-left: 4px solid #0073e6;
            margin: 15px 0;
            border-radius: 5px;
        }
        .policy-container a {
            color: #0073e6;
            text-decoration: none;
        }
        .policy-container a:hover {
            text-decoration: underline;
        }
        .policy-container .highlight p{
            margin: 0px;
        }