/* fonts */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --bs-filter-shadow: 0 10px 20px rgba(108, 99, 255, 0.18);
  }

/* reset css */
*{
 margin:0;
 padding:0;
 box-sizing:border-box;
}

body,p{
 font-family: "Roboto", sans-serif;
 font-weight:400;
 font-size:15px;
 line-height:24px;
 color:#1c1b1b;
 background-color: rgb(253 248 248 / 27%);
 margin:0;
 padding:0;
}
p{
 background-color:transparent !important;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Lora", serif;
    font-weight:600;
}
ul{
margin:0;
padding:0;
}
ul,li{
 list-style-type:none;
}

a{
 display:inline-block;
 text-decoration:none;
}

input,input:hover,input:focus,select,select:hover,select:focus{
  box-shadow:none;
  outline:none;
}

::-webkit-scrollbar{
  width:3px;
}
::-webkit-scrollbar-thumb {
  background-color:rgb(67 92 175 / 29%);
  border-radius: 4px;
}

::-webkit-scrollbar-track{
  background: transparent;
}
img{
 width:100%;
 height:auto;
}

/* header css */
.hdr_sec{
    padding: 15px 0 !important;
    border-bottom: 1px solid rgb(0 0 0 / 26%);
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
.hdr_sec .navbar{
  padding:0 !important;
}
.hdr_logo a img{
 max-width:225px;
}
.hdr_btn{
 margin-left:auto;
}
.hdr_sec .navbar-nav{
 margin:0 auto;
}
.hdr_sec .navbar-nav li{
  padding:0 30px;
}
.hdr_sec .navbar-nav li:last-child{
  padding-right:0;
}
.hdr_sec .navbar-nav li a{
 font-size:14px;
 line-height:24px;
 color:#263e90;
 font-weight:500;
 position: relative;
 overflow: hidden;
 padding:0 !important;
 display:inline-block;
}
.hdr_sec .navbar-nav li a::after{
  position: absolute;
  content:'';
  left:0;
  bottom:0;
  right:0;
  transform:translateX(-100%);
  transition:all 500ms ease-in-out;
  width:100%;
  height:1px;
  background-color:#263e90;
}
.hdr_sec .navbar-nav li a:hover::after{
 transform:translateX(0);
}

.cta-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 50px 14px 32px;
  background: linear-gradient(135deg, #1f3c88, #5a4fcf);
  color: #ffffff;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 500ms ease;
  box-shadow: 0 10px 25px rgba(31,60,136,0.35);
  overflow:hidden;
  text-transform:capitalize;
  
}
.cta-btn::after{
 position: absolute;
 content:'\f178';
 font-family: "Font Awesome 6 Free";
 font-weight: 900;
 position: absolute;
  right:20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity:0;
}
.cta-btn:hover::after{
  opacity:1;
}

/* light sweep */
.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  transition: all 0.6s ease;
}

.cta-btn:hover::before {
  left: 120%;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(31,60,136,0.45);
  color: #fff;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}


/* banner */
.bnnr_sec{
 padding: 200px 0 100px;
   background: linear-gradient(358deg, #ffffff 0%, rgb(246 247 252 / 0%) 0%, rgb(144 149 243 / 71%) 110%);
    position: relative;
    z-index:1;
}
.bnnr_sec::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../images/bnnr-shape.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
    opacity: 0.6;
    z-index: -1;
}

.bnnr_sec .row{
 justify-content:center;
 align-items:center;
}

.bnnr_cntnt h1 {
 margin:0 0 10px;
}
.bnnr_cntnt h3{
 color: #1b1a1a;
}
.bnnr_cntnt p{
  padding: 0 0 20px;
}
h1{
 font-size:45px;
 line-height:50px;
 color:#263e90;
}
.bnnr_cntnt a{
  max-width: 300px;
  margin: 0 auto;
}
.bnnr_cntnt p{
 background-color:transparent;
}

/* how work */
.how_work{
    padding:80px 0;
    background: linear-gradient(183deg, #ffffff 0%, #ffffff 40%, #f3f3f3 100%);
    position: relative;
    z-index:2;
    overflow:hidden;
}
.how_work::after {
    position: absolute;
    content: '';
    right: 0;
    bottom:-50px;
    background-image: url(../images/work-shape.png);
    background-size: 20%;
    background-position: bottom right;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    margin-right: -150px;
    opacity: 0.1;
}

.section-title{
 text-align:center;
 margin-bottom:35px;
}
.section-title h2{
  margin-bottom:15px;
}
.how_work_head p{
 background-color:transparent;
}

h2{
 font-size:38px;
 line-height:42px;
 text-align:center;
 color:#263e90;
 text-transform:capitalize;
}
.step_icon img{
 max-width:65px;
 filter: brightness(0) saturate(100%) invert(35%) sepia(39%) saturate(2451%) hue-rotate(224deg) brightness(83%) contrast(95%);
}

.step_icon{
   background-color:rgb(104 105 217 / 22%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    min-width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 20px; */
    margin: 0 auto 20px;
    position: relative;
    z-index:2;
}
.step_icon::after{
   position: absolute;
    content: '';
    left: -250px;
    /* transform: translateX(-50%); */
    background-image: url(../images/arw-shape.png);
    background-repeat: no-repeat;
    background-size: 150px;
    background-position: center;
    z-index: 1;
    width: 150px;
    height: 150px;
    transform: rotate(32deg);
}
.how_work .row .col-md-4:nth-child(2) .step_innr .step_icon::after{
    display: none;
}
.step_innr .step_txt{
  text-align: center;
}
h3{
 font-size:24px;
 line-height:30px;
 color:#263e90;
 margin-bottom:15px;
}
.work_btn{
  text-align: center;
  margin-top:40px;
}
.work_btn a{
  padding:10px 49px 10px 35px;
}
.work_btn a::after{
  right:20px;
}
.how_work .row .col-lg-4.col-md-6:nth-child(1) .step_innr .step_icon::after{
    display:none;
   }
 



/* guidance*/
.guidance_sec{
  padding:80px 0;
  background: linear-gradient(358deg, #ffffff 0%, rgb(246 247 252 / 0%) 0%, rgb(144 149 243 / 63%) 110%);
  position: relative;
  overflow:hidden;
}
.guidance_sec::after{
   position: absolute;
    content: '';
    right: 0;
    bottom: -50px;
    background-image: url(../images/work-shape.png);
    background-size: 20%;
    background-position: bottom left;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    margin-left: -150px;
    opacity: 0.1;
}


.guidance_icon{
   background-color: rgb(104 105 217 / 22%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    min-width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 20px; */
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}
.guidance_icon img{
  max-width: 70px;
  filter: brightness(0) saturate(100%) invert(35%) sepia(39%) saturate(2451%) hue-rotate(224deg) brightness(83%) contrast(95%);
  
}
.guidance_innr{
  background-color:#fff;
  padding: 15px;
  border: 2px solid #e8e8f2;
  border-radius: 15px;
  text-align: left;
  transition: all 500ms ease;
  box-shadow: 0 10px 20px rgba(132, 134, 169, 0.1);
  transform:translateY(0);
  min-height: 360px;
}
.guidance_innr:hover{
  border-color:#8486a9;
  transform:translateY(-5px);
}

/* faq section */
.faq-section{
 padding:80px 0;
 background: #fafbfe;
}
.faq_head,.faq_head h2{
  text-align:left;
}
.faq_innr .accordion-item{
  margin-bottom:15px;
}

.faq_head h2{
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 10px;
}

.faq_head p{
  font-size: 14px;
  max-width: 520px;
}

.faq_innr{
  margin-top: 30px;
}

.faq_innr .accordion-item{
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e6e9f3;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(31,42,68,0.04);
}
/* Accordion button */
.faq_innr .accordion-button{
  background: transparent;
  font-size: 20px;
  font-weight: 600;
  color: #1f2a44;
  padding: 18px 22px;
  box-shadow: none;
}

/* Remove default bootstrap arrow */
.faq_innr .accordion-button::after{
   background-size: 17px;
    transform: rotate(0deg);
    background-image: url(../images/minus.png);
    width: 50px;
    height: 50px;
    min-width: 50px;
    box-shadow: 1px 3px 4px 0px rgb(0 0 0 / 15%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-color: rgb(42 64 149 / 89%);
}
.faq_innr .accordion-button.collapsed::after{
   background-image: url(../images/plus.png);
}

/* Active accordion */
.faq_innr .accordion-button:not(.collapsed){
  background: linear-gradient(135deg, #eef2ff, #d3defb);
  color:#3c45ab;
  border-bottom: 1px solid rgb(0 0 0 / 8%);
}

/* Accordion body */
.faq_innr .accordion-body{
  padding:20px 22px;
}

.faq_innr .accordion-body p{
  font-size: 14px;
  line-height:24px;
}
.faq-section .row{
  align-items:center;
}


/* cta column */

.cta_row{
   background: linear-gradient(135deg, #09277e, #435caf);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(31, 42, 68, 0.08);
    margin-left: 40px;
    position: sticky;
    top: 200px;
    box-shadow: 2px 1px 4px 2px rgb(0 0 0 / 17%);
}

.cta_txt h3{
  font-size: 28px;
  font-weight: 500;
  color:#fff;
  margin-bottom: 12px;
}

.cta_txt p{
  font-size: 14px;
  color:#fff;
  margin-bottom: 20px;
}

.cta_btn a{
  background: #fff;
  color: #1c1b1b;
  border:1px solid transparent;
}
.cta_btn a:hover{
   background:transparent;
  border-color:#fff;
}
.cta_btn a::after{
  color:#1c1b1b;
}
.cta_btn a:hover::after{
  color:#fff;
}
.cta_btn a::before{
  display:none;
}
.dsclaimr_sec{
 background-color: rgb(132 134 169 / 13%);
    padding: 50px 0;
}
.disclaimer_box{
 background-color: rgb(132 134 169 / 31%);
    border-radius: 7px;
    padding: 15px;
    max-width: 940px;
    margin: 0 auto;
}
.disclaimer_box p{
  font-size: 14px !important;
  line-height: 24px !important;
}
.dsclaim_icon svg path{
  fill: #262760;
}
.dsclaim_icon{
  margin-right:5px;
}

.disclaimer_box small {
    font-size: 12px;
    margin-left: 20px;
}

/* footer */

.ftr_sec {
   background: linear-gradient(135deg, #09277e, #435caf);
    padding: 80px 0 25px;
}
.ftr_logo a img {
    max-width: 195px;
    filter: brightness(0) saturate(100%) invert(98%) sepia(3%) saturate(135%) hue-rotate(214deg) brightness(115%) contrast(100%);
}
.ftr_txt p{
  color:#fff;
  margin:10px 0 0;
  max-width:500px;
}

.ftr_menu_head h5{
  font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    text-decoration: underline;
    text-underline-offset: 0.4em;
}
.ftr_menu ul li,.addrs_menu ul li{
  padding:12px 0 0;
}
.ftr_menu ul li a{
  font-size: 14px;
    line-height: 24px;
    color:#fff;
    font-weight: 500;
    position: relative;
    overflow: hidden;

}
.addrs_menu ul li .icon svg{
  color:#fff;
}
.addrs_menu ul li .icon{
  margin-right:5px;
}
.addrs_menu ul li a,.addrs_menu ul li p{
   font-size: 14px;
    line-height: 24px;
    color:#fff;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}
.addrs_menu ul li{
  display:flex;
}
.ftr_menu ul li a::after,.addrs_menu ul li a::after{
  position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    right: 0;
    transform: translateX(-100%);
    transition: all 0.6s ease-in-out;
    width: 100%;
    height: 1px;
    background-color:#fff;
}
.ftr_menu ul li a:hover::after,.addrs_menu ul li a:hover::after{
  transform: translateX(0);
}
.ftr_sec .row .col-lg-5{
 margin-right:65px;
}
.btm_ftr{
 margin-top: 40px;

    border-top: 1px solid rgb(255 255 255 / 39%);
    padding-top: 20px;
}
.btm_ftr p{
  font-size: 12px;
  line-height: 20px;
  color:#fff;
  max-width: 600px;
}
.btm_ftr{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}


/* about page */
.innr_bnnr .bnnr_cntnt{
  text-align:left;
}
.innr_bnnr .bnnr_cntnt h1{
  margin-bottom:15px;
}
.innr_bnnr .row{
  align-items:center;
}

.innr_bnnr_img img{
  width:100%;
  height:350px;
  object-fit:cover;
  filter:drop-shadow(var(--bs-filter-shadow));
}
.innr_bnnr .bnnr_cntnt h4{
  color:#1b1a1a;
  margin-bottom:0;
}
.innr_bnnr .bnnr_cntnt p{
  padding: 10px 0 15px;
}

.why_we{
    padding: 80px 0;
    background: linear-gradient(183deg, #ffffff 0%, #ffffff 40%, #f3f3f3 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.why_we::after{
  position: absolute;
    content: '';
    right: 0;
    bottom: -50px;
    background-image: url(../images/work-shape.png);
    background-size: 20%;
    background-position: bottom right;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    margin-right: -150px;
    opacity: 0.1;
}
h4{
 font-size:22px;
 line-height:30px;
}
.why_we_head h4,.value_head h4{
  color:#1b1a1a;
  margin-bottom:15px;
}
.why_we_head,.value_head{
  text-align: center;
    margin-bottom: 45px;
}
.why_we_head h2,.value_head h2{
  margin-bottom:12px;
}
.why_we_innr{
  background-color: #fff;
    padding: 10px 15px;
    border: 2px solid #e8e8f2;
    border-radius: 15px;
    text-align: left;
    transition: all 500ms ease;
    box-shadow: 0 10px 20px rgba(132, 134, 169, 0.1);
    transform: translateY(0);
    display: flex;
    align-items:flex-start;
    min-height: 210px;
}
.why_we_innr:hover{
  border-color: #8486a9;
    transform: translateY(-5px);
}
.why_we_icon img,.value_icon img{
  max-width: 45px;
  filter: brightness(0) saturate(100%) invert(35%) sepia(39%) saturate(2451%) hue-rotate(224deg) brightness(83%) contrast(95%);
}
.value_icon img{
  max-width:45px !important;
}
.why_we_icon,.value_icon{
  margin-right:15px;
    background-color: rgb(104 105 217 / 22%);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    min-width:75px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 20px; */
    position: relative;
    z-index: 2;
}

.why_we_txt h3{
  font-size: 21px;
  line-height: 28px;
  color: #263e90;
}

.values{
  padding: 80px 0;
    background: linear-gradient(358deg, #ffffff 0%, rgb(246 247 252 / 0%) 0%, rgb(144 149 243 / 63%) 110%);
    position: relative;
    overflow: hidden;
}
.values::after{
    position: absolute;
    content: '';
    right: 0;
    bottom: -50px;
    background-image: url(../images/work-shape.png);
    background-size: 20%;
    background-position: bottom left;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    margin-left: -150px;
    opacity: 0.1;
}

.value_innr{
   background-color: #fff;
    padding: 25px 15px;
    border: 2px solid #e8e8f2;
    border-radius: 80px 15px;
    text-align: left;
    transition: all 500ms ease;
    box-shadow: 0 10px 20px rgba(132, 134, 169, 0.1);
    transform: translateY(0);
    min-height: 250px;
}
.value_innr:hover{
  border-color: #8486a9;
  transform: translateY(-5px);
}
.value_txt_wrap{
  display: flex;
  align-items: center;
  margin-bottom:10px;
}
.value_txt h3{
  margin-bottom:0;
  color: #263e90;
}
.cta-section{
  padding:80px 0;
}

/* how it works */
.process_sec{
    padding: 80px 0;
    background: linear-gradient(177deg, #ffffff 0%, rgb(58 82 203 / 0%) 0%, rgb(144 149 243 / 63%) 110%);
    position: relative;
    overflow: hidden;
}
.process_sec .row:nth-child(even){
  flex-direction:row-reverse;
}
.process_sec .row{
  align-items: center;
  margin-bottom: 20px;
}
.procss_txt{
    background-color: #fff;
    padding: 25px 30px;
    border: 2px solid #e8e8f2;
    border-radius: 15px;
    text-align: left;
    transition: all 500ms ease;
    box-shadow: 0 10px 20px rgba(132, 134, 169, 0.1);
    position:relative;
    transform:translateY(0);
}
.procss_txt:hover{
  border-color: #8486a9;
  transform: translateY(-5px);
}
.procss_txt h3{
  color: #09277e;
}
.num{
position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    font-size: 30px;
    font-weight: 600;
    line-height: 35px;
    background-color: #5a4fcf;
    width: 80px;
    height: 80px;
    min-width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: -30px;
    color: #fff;
    border-radius: 50%;
    box-shadow: 5px 0px 8px 1px rgb(90 79 207 / 28%);
    margin-top: -30px;
}

.process_img img{
    max-width: 390px;
    object-fit: contain;
    height: 460px;
    object-position: center;
    filter:drop-shadow(var(--bs-filter-shadow));
}
.process_img{
    background:rgb(108 86 147 / 16%);
    border-radius: 100%;
    width: 500px;
    height: 480px;
    min-width: 500px;
    display: inline-flex;
    justify-content: center;
    margin-left: 30px;
}

/* debt solutions */
.debt_solutns{
  padding:80px 0;
  background: linear-gradient(183deg, #ffffff 0%, #ffffff 40%, #f3f3f3 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.debt_solutns::after{
  position: absolute;
    content: '';
    right: 0;
    bottom: -50px;
    background-image: url(../images/work-shape.png);
    background-size: 20%;
    background-position: bottom right;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    margin-right: -150px;
    opacity: 0.1;
}
.innr_bnnr_vdo video {
  mix-blend-mode: multiply;
  opacity: 0.95;
}

.debt_solutn_dsclmr {
    background-color: rgb(90 79 207 / 21%);
    padding:60px 0;
}
.dsclaim_wrap{
  display: flex;
}
.dsclm_img{
  margin-right:10px;
}
.dsclm_img img{
  max-width:20px;
  filter: brightness(0) saturate(100%) invert(6%) sepia(78%) saturate(6191%) hue-rotate(222deg) brightness(95%) contrast(94%);
}
.dsclm_txt p:nth-child(1){
  font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom:5px;
}

.debt_innr_head h3{
  position: relative;
  display: inline-block;
  padding: 14px 36px;
  background: #6C63FF;           
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px 30px 30px 0;
  white-space: nowrap;
  z-index: 1;
  transition:background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.debt_innr_head h3::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 15px;
  height: 14px;
  background: #4B44C0;          
  border-radius: 0 0 0 14px;
  z-index: -1;
  transition:background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.debt_solutn_innr:hover .debt_innr_head h3{
   background: #1F2FA3;
   box-shadow: 
     0 6px 0 #151E6F,   
     0 10px 20px rgba(0,0,0,0.15);
   transform: translateY(-2px);
}
.debt_solutn_innr:hover .debt_innr_head h3::after{
  background: #151E6F;
  bottom: -15px; 
  height: 14px; 
}
.debt_solutn_innr:hover .debt_txt_icon{
  background: rgb(31 47 163 / 60%);
}
.debt_solutn_innr:hover .debt_txt_icon img{
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
.debt_solutn_innr{
  background-color: #fff;
  padding: 0 15px 15px;
  border: 2px solid #e8e8f2;
  border-radius: 15px;
  text-align: left;
  transition: all 0.5s ease;
  box-shadow: 0 10px 20px rgba(132, 134, 169, 0.1);
  display: flex;
  flex-direction: column;
  min-height: 250px;
  margin-bottom:30px;
}


.debt_innr_head{
  margin-bottom: 18px;
   margin-left:-30px;
   margin-top:-5px;
}


.debt_solutn_innr:hover{
  border-color: #8486a9;
  transform: translateY(-5px);
}

.debt_txt_wrap{
  display: flex;
  padding-top:10px;
}
.debt_solutn_head{
  margin-bottom:35px;
}
.debt_innr_head {
  margin-bottom: 0;
}
.debt_txt_icon img{
  max-width:45px;
  filter: brightness(0) saturate(100%) invert(35%) sepia(39%) saturate(2451%) hue-rotate(224deg) brightness(83%) contrast(95%);
}
.debt_txt_icon{
    margin-right: 15px;
    background-color: rgb(104 105 217 / 22%);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    min-width: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.support_sec{
  padding:80px 0;
  background: linear-gradient(358deg, #ffffff 0%, rgb(246 247 252 / 0%) 0%, rgb(144 149 243 / 63%) 110%);
    position: relative;
    overflow: hidden;
}
.support_sec .row{
  align-items:center;
}
.support_list h2{
  text-align:left;
}
.supprt_img img{
  height: 550px;
  object-fit: cover;
  filter:drop-shadow(var(--bs-filter-shadow));
}
.support_list h2{
  margin-bottom:25px;
}
.support_list ul li{
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    position: relative;
    color: #1c1b1b;
    padding-bottom: 10px;
    padding-left: 30px;
}
.support_list ul li::after{
    position: absolute;
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    left: 0;
    font-weight: 900;
    font-size: 17px;
    color:#4B44C0;
}
.support_sec::after{
    position: absolute;
    content: '';
    right: 0;
    bottom: -50px;
    background-image: url(../images/work-shape.png);
    background-size: 20%;
    background-position: bottom left;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    margin-left: -150px;
    opacity: 0.1;
}
/* contact */

.contact_bnnr .innr_bnnr_img img{
  height:300px;
}
.contact_info{
    padding: 50px 0;
    background: linear-gradient(182deg, #ffffff 0%, rgb(246 247 252 / 0%) 0%, rgb(144 149 243 / 63%) 110%);
    position: relative;
    overflow: hidden;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.contact_info::after{
  position: absolute;
    content: '';
    right: 0;
    bottom: -50px;
    background-image: url(../images/work-shape.png);
    background-size: 20%;
    background-position: bottom right;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    margin-right: -150px;
    opacity: 0.1;
}
.cntct_dtls_innr{
  display: flex;
}


.cntct_info_box{
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 20px 30px 85px; 
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}
.cntct_illustratn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    bottom: 0;
    margin-left: -210px;
}
.cntct_illustratn img{
  max-width:285px;
  filter: drop-shadow(--bs-filter-shadow);
}
.cntct_dtls_outr{
  display: flex;
 margin: 0 -12px;
  flex-wrap: wrap;
}
.cntct_dtls_innr{
    width: 47%;
    flex: 0 0 47%;
  padding: 12px 0 12px 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid #e6e6f0;
}

.cntct_info_box h3{
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(230 230 240 / 78%);
    display: inline-block;
    padding-bottom: 10px;
}
.cntct_dtls_innr:nth-child(odd){
  border-right: 1px solid #e6e6f0;
}

/* remove border from last row */
.cntct_dtls_innr:nth-last-child(1),
.cntct_dtls_innr:nth-last-child(2){
  border-bottom: none;
}

.cntct_icon{
   width: 45px;
    height: 45px;
    background: #09277e;
    color: #fff !important;
    border-radius: 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 25px !important;
    min-width: 45px;
}

.cntct_dtls_innr span {
  font-size: 15px;
    color: #1b1a1a;
    line-height: 21px;
    display: block;
    font-weight: 500;
}
.cntct_dtls_innr p {
    font-size: 13px;
    font-weight: 500;
    color: #09277e;
    line-height: 20px;
    
}
.cntct_dtls_outr .cntct_dtls_innr:last-child P span{
  margin-bottom:6px;
}
.cntct_dtls_innr a {
    display: block;
    font-weight: 500;
    color: #09277e;
    text-decoration: none;
    margin-top: 6px;
    font-size: 13px;
    line-height:21px;
}
.cntct_dtls_innr a:hover{
  text-decoration: underline;
}
.contact_info .cta_row{
  position:static;
  top:inherit;
}
.contact_info .row{
  align-items:center;
}

/* privacy */
.privacy_bnnr{
  padding: 150px 0 90px;
}
.privacy_txt{
  padding:80px 0;
}
.txt_area h2{
  text-align:left;
  font-size:28px;
  margin-bottom:0;
}
.txt_hdng{
  padding-bottom:10px;
}
.txt_area p{
  padding-bottom:7px;
}
.sub_list ul li{
  position: relative;
  padding:0 0 0 15px !important;
}
.sub_list ul li::after{
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.75);
    width: 6px;
    height: 6px;
    min-width: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    border-radius: 50%;
    top: 7px;
}
.sub_nested_list ul li::after{
  background-color: transparent;
  border: 1px solid rgb(0 0 0 / 50%);
}
.cmpny_dtls span{
  padding-bottom:5px;
  display:block;
}
.cmpny_dtls span a,.txt_area a{
  font-weight:500;
  color: #09277e;
  transition:all 600ms ease-in-out;
  text-decoration:none;
}
.cmpny_dtls span a:hover,.txt_area a:hover{
 text-decoration:underline;
 text-underline-offset:0.3em;
}
.cmpny_dtls span:last-child{
  padding-bottom:15px;
}
.sub_list{
  padding-bottom:15px;
}
.sub_list ul{
  padding-left:10px;
}
.sub_nested_list {
  padding:10px 0;
}
.sub_ol_list h3{
  font-size:20px;
}
.txt_area h3{
  font-size: 20px;
  line-height: 28px;
  margin-bottom:7px;
}

/* enquiry_sec */
.enquiry_sec{
  padding: 130px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 45%, #f5f4f9 100%);
  position: relative;
  z-index: 1;
  overflow:hidden;
}
.enquiry_sec::after{
  content:'';
  position:absolute;
  right:-120px;
  bottom:-60px;
  width:100%;
  height:100%;
  background-image:url(../images/work-shape.png);
  background-repeat:no-repeat;
  background-position:bottom right;
  background-size:22%;
  opacity:0.08;
  z-index:-1;
}
.enquiry_sec .row{
  align-items:center;
}
.lft_enqry img{
  max-width:100%;
  object-fit:contain;
  filter:drop-shadow(0 20px 30px rgba(0,0,0,0.12));
}
.lft_enqry{
  position:relative;
  text-align:center;
  padding-right:40px;
}
.lft_enqry::before{
  content:'';
  position:absolute;
  width:260px;
  height:260px;
  background:rgba(103,58,183,0.06);
  border-radius:50%;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  z-index:-1;
}
.enqry_frm_outr{
   background: #fff;
    padding: 40px 35px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(103, 58, 183, 0.12);
    position: relative;
    max-width: 600px;
}
.enqry_frm_outr::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg, #673ab7, #8e6cef);
  border-radius:18px 18px 0 0;
}
.enquiry_frm_head{
  padding-bottom:25px;
}
.enquiry_frm_head h3{
  font-size:28px;
  line-height:34px;
  font-weight:700;
  margin-bottom:8px;
}
.enquiry_frm_head{
  padding-bottom:15px;
}
.enquiry_frm_head p{
  font-size:14px;
  line-height:20px;

}
.enqry_form .form-row{
  margin-bottom:10px;
}

.enqry_form .form-label{
  font-size:13px;
  font-weight:600;
  color:#1b1a1a;
  margin-bottom:6px;
}
.enqry_form .form-control,.enqry_form .form-select{
  height:40px;
  border-radius:10px;
  border:1px solid #1b1a1a;
  font-size:14px;
  padding:10px 14px;
}
.enqry_form .form-control:focus,.enqry_form .form-select:focus{
  border-color:#673ab7;
  box-shadow:0 0 0 3px rgba(103,58,183,0.15);
}
.enqry_form .form-select option{
  background:#ffffff;
  color:#1b1a1a;
}
.enqry_form .form-select option:checked{
  background:rgba(104, 58, 183, 0.5);
  color:#ffffff;
}
.agreemnt_wrap input[type="checkbox"]{
  accent-color:rgb(103 58 183 / 64%);
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button{
  -webkit-appearance:none;
  margin:0;
}

.agreemnt_wrap{
  display:flex;
  gap:10px;
  align-items:center;
}

.agreemnt_wrap label{
  font-size:13px;
  color:#555;
  line-height:18px;
}

.agreemnt_small_dtls{
  margin-top:10px;
  padding-left:26px;
  background-color: rgb(90 79 207 / 21%);
  border-radius:10px;
  padding:10px 15px;
}

.agreemnt_small_dtls ul{
  padding-left:0;
}

.agreemnt_small_dtls ul li{
   font-size: 12px;
    color: #1b1a1a;
    margin-bottom: 3px;
    position: relative;
    padding-left: 15px;
    line-height: 20px;
}
.agreemnt_small_dtls ul li::after{
  position: absolute;
    content: '';
    width: 4px;
    height: 4px;
    background-color: rgb(27 26 26 / 63%);
    left: 0;
    top: 8px;
    border-radius: 50%;
}


.form_btn{
  margin-top:25px;
  text-align: center;
}

.form_btn .cta-btn{
  height:52px;
  border-radius:30px;
  color:#fff;
  font-size:18px;
  font-weight:600;
  border:none;
  transition:all 0.3s ease;
  min-width: 180px;
  justify-content:center;
}

.form_btn .cta-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 30px rgba(103,58,183,0.45);
}


/* privacy */
.sub_ol_list ul li{
 padding:12px 0;
}