@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
*{
   font-family: "DM Sans", sans-serif;
     margin: 0px;
     padding: 0px;
     box-sizing: border-box;
}
:root{
     --color-white: white;
     --color-black: black;
     --color-purple: #540C6F;
     --color-red: #EE4367;
}
h1, h2, h3, h4, h5, h6{
     margin: 0px;
}
ul{
     padding: 0px;
}
.relative{
     position: relative;
}
p{
     margin-bottom: 0px;
}
.container, .container-xl, .container-xxl{
     max-width: 1250px;
     padding: 0px;
}
.row{
      margin: 0px;
     padding: 0px;
}
img{
     width: 100%;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6,.col-7, .col-8, .col-9, .col-10, .col-11, .col-12{
     margin: 0px;
     padding: 0px;
}
li, a{
     list-style: none;
     text-decoration: none;
}
.flex_props{
     display: flex;
     align-items: center;
}
.logo_nav img{
     height: 35px;
     width: auto;
}
.common_title1{
     font-size: 40px;
}
.nav_container_1{
     gap: 35px;
}
 
.nav_links{
     position: relative;
     margin-bottom: -18px;
}
.nav_links ul{
     gap: 40px;
}
.nav_links ul li a{
     color: black; 
     font-weight: 500;
}
.nav_header{
     padding: 16px 0px;
}
.save_font{
     font-size: 9px;
     background-color: #fefaff;
     color: black;
     border-radius: 50px;
     text-align: center;
     padding: 5px 7px;
     display: inline-flex;
     justify-content: center;
     width: 78%;
     border: 1px solid rgba(0, 0, 0, 0.1);
}
.nav_links_a{
     color: black;
     display: flex;
     flex-direction: column;
     align-items: end;
}
.nav_num{
     font-size: 20px;
     font-weight: 600;
     margin-top: 2px;
}
.nav_num img{
     height: 26px;
     width: auto;
}
.margin_top{
     margin-top: 70px;
}
/*Footer*/
.bg_footer{
     background-color: #fbf2ff;
}
.footer_title_ab{
     font-size: 19px;
     font-weight: 500;
}
.footer_title{
     font-weight: 600;
     font-size: 17px;
     color: var(--color-purple);
}
.footer_ul li{
     margin: 5px 0px;   
}
.footer_ul li a{
     font-size: 15px;
     color: var(--color-black);
}
.sub_form{
     border: none;
     padding: 0px;
     width: 75%;
     background-color: transparent;
       box-shadow: none !important;
}
.footer_sub{
     background-color: white;
     border-radius: 5px;
     padding: 9px 16px;  
}
.btn_email_footer{
     border: none;
     background-color: var(--color-purple);
     color: white;
     font-size: 14px;
     padding: 13px 14px;
     border-radius: 3px;
     font-weight: 600; 
     box-shadow: none;
}
.hr_footer{
     margin: 10px 0px;
     opacity: 0.1;
}
 
.footer_hr{
     margin: 20px 0px;
     opacity: 0.1;
}
 /**/
.searc_data{
    position: absolute;
    top: 24px;
    left: 0px;
    background-color: white;
    width: 100%;
    z-index: 9;
    font-size: 13px; 
    border-radius: 0px 0px 3px 3px;
    max-height: 120px;
    overflow-y: scroll; 
}
.searc_data1{
    display: none;
}
.searc_data2{
    display: none;
}
.searc_data_ac1{
    display: block;
}
.searc_data_ac2{
   display: block;
}
.searc_data li{
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    cursor: pointer;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.progress-bar{
    background-color: var(--color-red);
}
.color_red{
    font-family: var(--font-dm);
    color: black !important;
}
.active_me{
    background-color: var(--color-red) !important;
    color: white !important;
}
.searc_data li span{
    background-color: var(--color-red);
    color: var(--color-white);
    font-size: 10px;
    padding: 2px 4px;
    border-radius: 3px;
}
.ti-control{
    font-size: 30px;
}
.color_grey{
    font-size: 13px;
    color: grey;
}
.searc_data::-webkit-scrollbar {
    width: 10px;
  }
   
.searc_data::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
    
  .searc_data::-webkit-scrollbar-thumb {
    background: #888; 
  }
    
  .searc_data::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }
  .des_fr{
    font-weight: 500;
    font-size: 18px;
    color: var(--color-blue);
    margin: 3px 0px;
  }
  .loader {
    width: 48px;
    height: 48px;
    display: inline-block;
    position: relative;
  }
  .loader::after,
  .loader::before {
    content: '';  
    box-sizing: border-box;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-purple);
    position: absolute;
    left: 0;
    top: 0;
    animation: animloader 2s linear infinite;
  }
  .loader::after {
    animation-delay: 1s;
  }
  
  @keyframes animloader {
    0% {
      transform: scale(0);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 0;
    }
  }
  .box_c{
    background-color: #f1f6fa;
    padding: 20px;
    border-radius: 5px;
  }
  .fr_f{
    background-color: var(--color-purple);
    color: var(--color-white);
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    padding: 1px 4px;
    border-radius: 3px;
  }
  .date_d_box{
    font-size: 14px;
  }
  .ae_img{
    border-radius: 5px;
    height: 350px;
    object-fit: cover;
  }
  .serch_p{
    font-size: 17px;
    color: var(--color-purple);
  }
  .call_uss{
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--color-purple);
    font-size: 21px;
    padding: 14px;
    border-radius: 5px 5px 0px 0px;
  }
  .call_uss img{
    height: 33px;
    width: auto;
  }
  /**/
  .ui-datepicker-header{
    background-color: var(--color-purple);
    color: var(--color-white);
  }
  .ui-widget-header .ui-icon{
    filter: brightness(0) invert(1);
  }
  .ui-datepicker .ui-datepicker-next{
    background-color: transparent !important;
  }
  .ui-datepicker .ui-datepicker-prev{
    background-color: transparent !important;
  }
  .ui-datepicker-month{
    border-radius: 3px;
    padding: 4px;
    font-size: 14px;
    font-weight: 600;
    width: 35% !important;
    margin-right: 10px;
}
.arr_ds{
    width: 35px;
    height: 35px;
    background-color: var(--color-purple);
    border-radius: 3px;
    background: linear-gradient(to right, #E77A32, #C01C7A);
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
    font-size: 14px;
    color: white;
    font-weight: 600;
    
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 14px;
    color: white;
    font-weight: 600; 
}
.bg_des111{
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-top: 10px;
border-radius: 3px;
}
/**/