*{margin: 0px; padding: 0px; box-sizing: border-box;}
body {
  font-family: "inter", sans-serif;
  font-size: 15px;
  color: #484848;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6{
  letter-spacing: 0.6px;
}
p{
   font-family: "inter", sans-serif;
   letter-spacing: 0.6px;
}
a{
 text-decoration: none;
 letter-spacing: 0.6px;
}
ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
  :root {
  --primary-color1: #d7172e;
  --primary-color2: #0e1728;
  --secondary-color: #373639;
  --drk-color:#2c2f34;
  --white: #fff;
  --txt-color:#55535d;
  --title-color:#36374c;
}
/*-------button-----style-2-----start----------*/
.button-style2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 21px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  background: var(--primary-color1);
  border: 2px solid #f9fafb;
  border-radius: 40px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  transition: color 0.4s ease;
  z-index: 1;
  width: fit-content;
}
/* Hover background effect */
.button-style2::before {
  content: "";
  position: absolute;
  width: 0;
  aspect-ratio: 1 / 1;
  background: var(--primary-color2);
  border-radius: 50%;
  left: -100%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.7s ease;
  z-index: -1;
}
.button-style2:hover::before {
  width: 200%;
  left: 0;
  transform: translateY(-50%) scale(1.5);
}
.button-style2:hover {
  color: #f9fafb;
}
/* Arrow icon */
.arrow {
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--white);
  transition: all 0.7s ease;
  font-size: 15px;
  line-height: 28px;
}
/* Hover arrow */
.button-style2:hover .arrow {
  transform: rotate(45deg);
  background: var(--primary-color1);
  border: none;
  color: var(--white);
}
/*------button------style-2-----end-----------*/
/*------------header--------wrap––––––start––––––––– */
.header-wrp{
  width: 100%;
  position: relative;
  padding: 5px 0;
  z-index: 99;
  background-color: rgba(240, 238, 238, 0.76);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.header-wrp:before{
  content: '';
  width: 20%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #FCE8EB;
  clip-path: polygon(0 0, 100% 0, 87% 100%, 0 99%);
}
.header-wrp nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
/*------STICKY-----STYLES––––START––––– */
.header-wrp.is-sticky{
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
  background-color: rgba(252, 252, 252, 0.91);
  top: 0;
  z-index: 99;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/*------STICKY------STYLES––––END––––– */
.main-nav-wrp{
  display: grid;
  grid-template-columns: 1fr 8fr 2fr;
  width: 100%;
  position: relative;
  align-items: center;
}
.logo{
  width: 200px;
}
.logo a img{
  width:185px;
}
/*-------nav-----links-----start----*/
.mobile-logo-close-btn .logo{
  display: none;
}
.menu ul{
  display: flex;
  column-gap: 15px;
}
.menu.landing-menu ul{
  column-gap: 45px;
}
.menu ul li{
  position: relative;
  z-index: 1;
}
.menu ul li.mn{
  padding: 0 13px;
}
.menu ul li.mn::after{
   content: '';
    position: absolute;
    width: 100%;
    height: 34px;
    background: rgb(215 23 46);
    top: -6px;
    left: 0;
    border: 1px solid rgb(215 23 46);
    z-index: -1;
    transform: skew(338deg);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease-in;
}

.menu ul li.mn.price-hilight::after{
     content: '';
    position: absolute;
    width: 100%;
    height: 34px;
    background: transparent;
    top: -6px;
    left: 0;
    border: 1px solid rgb(215 23 46 / 20%);
    z-index: -1;
    opacity: 1;
    visibility: visible;
    box-shadow: inset 0 0 7px rgb(215 23 46 / 29%);
    transition: background 0.4s ease-in;
}
.menu ul li.mn.price-hilight>a{
  color: var(--primary-color1);
}
.menu ul li ul li {
  padding: 11px 10px;
  width: 100%;
  transition: 0.4s ease-in;
  border-bottom: 1px solid #eff0f3;
}
.menu ul li ul li:last-child{
  border-bottom: none;
}
.menu ul li a{
  color: var(--txt-color);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: 0.5s ease;
  padding: 35px 0px;
}
.menu ul li ul li a{
  padding: 15px 0px;
}
.menu ul li.mn.active>a,
.menu ul li.mn>a:hover{
  color: #fff;
}
.menu ul li.mn.active::after{
  transition: opacity 0.4s ease-in;
  opacity: 1;
  visibility: visible;
}
.menu ul li.mn:has( > a:hover)::after{
transition: opacity 0.4s ease-in;
opacity: 1;
  visibility: visible;
}
.menu ul li.mn.price-hilight.active::after{
  background: var(--primary-color1);
  transition: background 0.4s ease-in;
}
.menu ul li.mn.price-hilight:has(>a:hover)::after{
  background: var(--primary-color1);
  transition: background 0.4s ease-in;
}
/*--------------------------------------*/
.header-wrp .menu ul li ul {
  position: absolute;
  left: 0;
  top: 50px;
  border-radius: 4px;
  border: 1px solid rgba(106, 92, 255, 0.1098039216);
  background: var(--white);
  -webkit-backdrop-filter: blur(27px);
  backdrop-filter: blur(27px);
  width: 275px;
  box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s ease;
  display: block;
}
.menu ul li>ul {
    opacity: 0;
    visibility: hidden;
    top: 50px;
    right: 0;
    transition: all 0.3s;
    transform: translateY(20px) rotateX(45deg);
}
.menu ul li:hover>ul {
    /*visibility: visible;
    opacity: 1;*/
    top: 40px;
    transition: all 0.3s;
    z-index: 1;
    transform: translateY(0);
}
.menu ul li>ul li a:hover{
  color: var(--primary-color1);
}
/*---------------------------------------*/
/*-------nav-----links-----end----*/
.menu-icn-book-btn-bx{
  margin: 0px 0px 0px auto;
  display: flex;
  justify-content: end;
  align-items: center;
}
/*------mobile---menu---start--------*/
.menu-toggle {
  display: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--txt-color);
  display: block;
  margin: 5px 0;
  transition: 0.3s ease;
}
.menu-toggle:hover span{
  background-color: var(--primary-color1);
}
/*------mobile---menu---end--------*/
/* Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(86, 88, 101, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 11;
  height: 100vh;
  width: 100%;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
/*--------------------------*/
.mobile-menu-info{
  display: none;
}
.dropdown-menu-parrent.open .arw-icn i {
  transform: rotate(180deg);
  transition: 0.3s;
}
/*------------header--------wrap––––––end––––––––– */
/*-------button----style----wrap--start-------*/
.book-demo-btn a{
  position: relative;
  font-weight: 700;
  overflow: hidden;
  text-align: center;
  padding: 15px 17px;
  display: inline-block;
  border-radius: 5px;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  background-color: rgb(215, 23, 46);
  transition: all 0.3s ease;
}
.book-demo-btn a::before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background: var(--secondary-color);
}
.book-demo-btn a:hover::before {
  top: -40%;
}
.book-demo-btn .btn-wrap {
  position: relative;
  z-index: 1;
  float: left;
  overflow: hidden;
  display: inline-block;
}
.book-demo-btn .btn-wrap .text-one {
  position: relative;
  display: block;
  color: var(--white);
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.book-demo-btn .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  display: block;
  color: var(--white);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.book-demo-btn:hover .btn-wrap .text-one:first-child {
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}
.book-demo-btn:hover .btn-wrap .text-two {
  color: var(--white-color);
}
.book-demo-btn:hover .btn-wrap .text-two {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*-------button----style----wrap----end------*/
/*-------form-------wrap------start-----------*/
.free-demo-form{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  padding: 30px 35px;
  border-radius: 34px;
  border: 2px solid #f1e2e2;
  position: relative;
  background-color: var(--white);
  max-width: 490px;
}
.free-demo-form:before{
  content: '';
  position: absolute;
  left: 0px;
  right: 0px;
  width: 80%;
  height: 11px;
  background-color: var(--primary-color1);
  clip-path: polygon(0 0, 100% 0, 97% 100%, 2% 100%);
  top: 0px;
  margin: 0px auto;
}
.free-demo-form h3{
  text-align: center;
  font-size: 25px;
  color: var(--title-color);
  margin-bottom: 23px;
  position: relative;
}
.frm-inpt-bx{
  margin-bottom: 15px;
}
.frm-inpt-bx .form-group label{
  font-size: 13px;
  color: var(--txt-color);
  padding-bottom: 5px;
}
.frm-inpt-bx .form-group label sup{
  color: #dc243a;
  font-size: 14px;
}
.innr-inpt-bx{
  position: relative;
}
.frm-inpt-icn{
  position: absolute;
  left: 1px;
  top: 1px;
  width: 39px;
  text-align: center;
  height: 38px;
  line-height: 36px;
  font-size: 14px;
  background-color: #eee;
  color: #81858e;
  border-radius: 4px 0px 0px 4px;
}
.innr-inpt-bx .form-control,
.innr-inpt-bx .form-select{
  width: 100%;
  height: 40px;
  padding: 2px 5px 2px 47px;
  border: 1px solid #cacada;
  border-radius: 4px;
  font-size: 13px;
  color: var(--title-color);
}
.innr-inpt-bx .form-control:focus,
.innr-inpt-bx .form-select:focus{
  border-color:#d7172e7d ;
  outline: 0;
  box-shadow: none;
}
.innr-inpt-bx textarea{
  height: 80px !important;
  resize: none;
  padding: 2px 7px !important;
}
.cntry-cd-mob-bx{
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  gap: 5px 13px;
}
.cntry-cd-mob-bx .innr-inpt-bx .form-control{
  padding: 2px 7px;
}
.cptcha-wrp {
  display: grid;
  grid-template-columns: 0.8fr 2fr 1fr;
  align-items: center;
  width: 60%;
  gap: 5px 14px;
}
.innr-cptch-bx .innr-inpt-bx .form-control{
  padding: 2px 7px;
}
.rst-cptcha-icn i{
  color: #8b8b8b;
  transition: 0.4s ease;
}
.rst-cptcha-icn i:hover {
  color: var(--primary-color1);
  transform: rotate(150deg);
}

.iti {
  display: block !important;
}

.iti__country-list {
  scrollbar-width: thin;
  width: 100%;
  overflow-x: hidden;
}

.iti__country {
  font-size: 13px;
}

.innr-inpt-bx .iti__selected-flag {
  padding: 0 5px 0 6px !important;
}
.innr-inpt-bx .iti__selected-flag {
  background-color: #eee;
  border-radius: 4px 0px 0px 4px;
  width: 40px;
}
/*---------validation--------start----------*/
/* REMOVE Bootstrap default validation icons */
.form-control.is-valid,
.form-control.is-invalid,
.form-select.is-valid,
.form-select.is-invalid {
  background-image: none !important;
  padding-right: 40px !important;
  box-shadow: none !important;
}
.innr-inpt-bx .form-control.is-valid,
.innr-inpt-bx .form-select.is-valid  {
  border-color: #198754 !important;
}
.innr-inpt-bx .form-control.is-invalid,
.innr-inpt-bx .form-select.is-invalid {
  border-color: #dc3545 !important;
}
/*.innr-inpt-bx:has(.is-valid) .frm-inpt-icn {
  color: #198754;
  background-color: #e9f7ef;
}
.innr-inpt-bx:has(.is-invalid) .frm-inpt-icn {
  color: #dc3545;
  background-color: #fdecec;
}*/
.validation-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  font-size: 14px;
  pointer-events: none;
}
/* SHOW ICON based on input state (works for intl-tel-input) */
.innr-inpt-bx:has(.is-valid) .validation-icon {
  display: block;
  color: #198754;
}
.innr-inpt-bx:has(.is-invalid) .validation-icon {
  display: block;
  color: #dc3545;
}
.innr-inpt-bx:has(.is-valid) .validation-icon::before {
  font-family: "fontawesome";
  font-weight: 500;
  content: "\f00c"; 
  font-size: 13px;
}
.innr-inpt-bx:has(.is-invalid) .validation-icon::before {
  font-family: "fontawesome";
  font-weight: 500;
  content: "\f00d";
  font-size: 13px;
}
/*---------validation-----end---------*/
/*-------form------wrap---------end------------*/
   
/*-------footer---------wrap-----start-------*/
.ftr-bx{
  background: url(../images/footer.webp);
    padding: 50px 0 0 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.footer-hdg .hdg-h3{
  color: #fff;
    font-size: 20px;
    letter-spacing: .2px;
    margin: 0;
    width: fit-content;
    position: relative;
    margin-bottom: 32px;
}
.footer-hdg .hdg-h3::after{
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--primary-color1);
  content: '';
  bottom: -7px;
  left: 0;
}
.footer-hdg .hdg-h3 .icn{
  display: inline-block;
  margin-right: 6px;
}
.footer-hdg .hdg-h3 .icn img{
  width: 27px;
}
.footer_links{
  position: relative;
  z-index: 1;
}
.footer_links::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background: rgb(255 255 255 / 15%);
  bottom: -13px;
  left: 0;
}
.links-bx{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.link-itm{
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.link-itm li{
  display: block;
  padding-left: 25px;
  position: relative;
  margin-top: 15px;
} 
.link-itm li:first-child{
  margin-top: 0;
}
.link-itm li::after{
  position: absolute;
    content: '\f00c';
    font-family: 'fontAwesome';
    color: var(--primary-color1);
    left: 0;
    top: 1px;
    font-size: 15px;
}
.link-itm li a{
  color: rgb(255 255 255 / 85%);
    font-size: 13px;
    font-weight: 300;
    display: block;
    position: relative;
   transition: 0.2s ease;
}
.link-itm li a:hover{
  text-decoration: underline;
}
/*------foot-------contact----detail----start---------*/
.ftr-rgt-info {
    padding: 20px;
    background: linear-gradient(0deg, rgb(255 255 255 / 7%), transparent);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    min-height: 275px;
}
.ftr-rgt-info .ftr-add li{
  margin-top: 15px;
}
.ftr-rgt-info .ftr-add li a{
  color: rgb(255 255 255 / 85%);
    font-size: 13px;
    font-weight: 300;
}
.ftr-rgt-info .ftr-add li:first-child{
  margin-top: 0;
}
.ftr-rgt-info .ftr-add .add-itm{
  display: flex;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
.ftr-rgt-info .ftr-add .add-itm .icn{
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ftr-rgt-info .ftr-add .add-itm .icn img{
      width: 100%;
    height: 100%;
    object-fit: scale-down;
    object-position: center;
}
.ftr-rgt-info .ftr-add .add-itm .cntnt{
  width: calc(100% - 45px);
}
.ftr-rgt-info .ftr-add .add-itm .cntnt {
  color: rgb(255 255 255 / 85%);
    font-size: 13px;
    font-weight: 300;
}
.ftr-rgt-info .ftr-add .add-itm .cntnt a{
 color: rgb(255 255 255 / 85%);
    font-size: 14px;
    font-weight: 300;
}
/*------foot-------contact----detail----end-------*/
/*-----footer-----social-----start--------*/
.foot-social-link h6{
  text-align: center;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 15px;
}
.foot-social-link{
  border-top: 1px solid #4c4f63a8;
  padding-top: 15px;
  margin: 17px auto 0px;
}
.foot-social-link ul{
  position: relative;
  display: flex;
  justify-content: center;
  column-gap: 7px;
  
}
.foot-social-link ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  background: var(--white);
  border-radius: 50%;
  color: #02060a;
  font-size: 14px;
  text-align: center;
  transition: all 200ms linear;
    transition-delay: 0s;
  transition-delay: 0.1s;
  z-index: 1;
}
.foot-social-link ul li a::before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--primary-color1);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: scale(0.5);
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}
.foot-social-link ul li:hover a::before {
  opacity: 1.0;
  transform: scale(1.0);
}
.foot-social-link ul li:hover a {
  color: var(--white);
  border-color: var(--primary-color1);
}
/*-----footer-----social-----end------*/
/*-----copyright------wrap-----start-------*/
.footer-cpy-rgt{
 margin-top: 40px;
    padding: 10px 0 4px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.footer-cpy-rgt::after{
 position: absolute;
    content: '';
    z-index: -1;
    width: 50%;
    left: -7%;
    height: 100%;
    background: var(--primary-color1);
    top: 0;
    transform: skewX(-45deg);
}
.footer-cpy-rgt::before{
 position: absolute;
    content: '';
    z-index: -1;
    width: 62%;
    right: -7%;
    height: 100%;
    background: #2B2F30;
    top: 0;
    transform: skewX(-45deg);
}
.cpy-lft-txt p{
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  color: rgb(255 255 255 / 85%);
}
.cpy-lft-txt p a{
  color: rgb(255 255 255 / 85%);
}
.ftr-plocy {
      text-align: right;
}
.ftr-plocy li{
  display: inline-block;
}
.ftr-plocy li a{
  color: rgb(255 255 255 / 80%);
    display: block;
    font-weight: 300;
    font-size: 13px;
    padding: 0px 8px;
    position: relative;
    line-height: 1;
    transition: 0.3s ease;
}
.ftr-plocy li a:hover{
  color: #ed8490;
}
.ftr-plocy li a::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    right: -2px;
    background: rgb(255 255 255 / 50%);
}
.ftr-plocy li:last-child a::after{
  display: none;
}
/*-----copyright------wrap-----end------*/
/*-----whatsapp-------wrap-------start----------*/
.btn-whatsapp-pulse {
  position: fixed;
  bottom: 70px;
  right: 15px;
  width: 48px;
  height: 48px;
  background-color: #1c9b13;
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  font-size: 20px;
  z-index: 105;
  margin-right: 6px;
}
.btn-whatsapp-pulse:hover{
  color: var(--white);
}
.btn-whatsapp-pulse::after, .btn-whatsapp-pulse::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  background: #1c9b13;
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: 1.3s ease-in-out infinite grow;
  animation: 1.3s ease-in-out infinite grow;
}
@keyframes grow {
    0% {
        transform: scale(1, 1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}
/*-----whatsapp-------wrap-------end----------*/
/*-----scroll----top---wrap---start----------*/
.progress-wrap {
  position: fixed;
  right: 18px;
  bottom: 8px;
  height: 43px;
  width: 43px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(178, 170, 211, 0.71);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  z-index: 1;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  content: "\f062";
  font-family: "fontawesome";
  font-weight: 400;
  font-size: 1.10rem;
  color: var(--primary-color1);
  position: absolute;
  left: 0;
  top: 0;
  height: 43px;
  width: 43px;
  line-height: 43px;
  text-align: center;
  z-index: 1;
  pointer-events: none;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary-color1);
  stroke-width: 4;
  transition: stroke-dashoffset 10ms linear;
  box-sizing: border-box;
}
/*-----scroll----top---wrap---end----------*/
/*---get---a---free----demo----modal-----form----start-------*/
.get_demo-mdl .bttn-close {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  font-size: 15px;
  background-color: #191b22;
  width: 28px;
  height: 28px;
  border-radius: 50% 10% 20% 50%;
  border: none;
  color: #fdfdff;
  transition: 0.5s ease;
}
.get_demo-mdl .bttn-close:hover{
  color: var(--primary-color1);
}
.get_demo-mdl{
  max-width: 955px;
  width: 95%;
  margin: auto;
}
.mdl-form-wrap{
  display: grid;
  grid-template-columns: 1fr 1.0fr;
  position: relative;
  gap: 5px 15px;
}
.popup-lft-form-dtl{
  position: relative;
  background-color: #1a1c23;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.popup-lft-form-dtl:before{
  content: '';
  width: 85%;
  height: 370px;
  background-color: var(--primary-color1);
  position: absolute;
  top: -16px;
  left: 0px;
  right: 0px;
  border-radius: 0px 0px 170px 170px;
  margin: auto;
  box-shadow: inset 10px -14px 31px 9px #9a3434;
  z-index: 1;
}
.popup-lft-form-dtl:after{
  content: '';
  width: 446px;
  height: 374px;
  border-radius: 10px 10px 50% 50%;
  background-color: #ffffff0f;
  position: absolute;
  left: 0px;
  margin: auto;
  top: 1px;
}
.logo-box{
  position: absolute;
  text-align: center;
  background-color: var(--white);
  padding: 5px 15px;
  width: fit-content;
  margin: auto;
  border-radius: 0px 0px 10px 10px;
  top: -16px;
  left: 0px;
  right: 0px;
  z-index: 1;
}
.logo-box img{
  width: 130px;
  image-rendering: -webkit-optimize-contrast;
}
.popup-round-img{
  width: 325px;
  height: 325px;
  border-radius: 50%;
  position: absolute;
  overflow: hidden;
  background-color: #eee;
  margin: auto;
  left: 0px;
  right: 0px;
  top: 9%;
  z-index: 1;
  border: 4px solid var(--white);
}
.popup-round-img img,
.popup-round-img video{
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}
.sidebar-banner-box{
  position: absolute;
  bottom: -5px;
  left: 0px;
  right: 0px;
  text-align: center;
}
.sidebar-banner-box h3 {
  color: var(--white);
  font-size: 18px;
  line-height: 29px;
  margin: 0px 0px 10px;
  text-align: center;
}
.sidebar-banner-box h2 {
  text-align: center;
  color: #eee;
  font-size: 27px;
  text-shadow: 2px 3px 3px #0f0f0f;
  position: relative;
}
.sidebar-banner-box h2 span {
  color: var(--primary-color1);
}
.sidebar-banner-box h2::after {
  display: block;
  content: "";
  width: 184px;
  height: 2px;
  background-color: #eee;
  position: absolute;
  left: 41px;
  right: 0;
  margin: auto;
}
.sidebar-banner-box .info-list {
  text-align: center;
  margin: 15px auto 9px;
}
.sidebar-banner-box .info-list li {
  list-style: none;
  padding-bottom: 9px;
  color: #eeeeee70;
}
.sidebar-banner-box .info-list li a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
}
/*---get---a---free----demo----modal-----form----end------*/


/*---------form-------- Loader-----start----------- */
#loaderBody {
    background: #212529a1;
    position: fixed;
    z-index: 999999;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#loaderBody .outer-loader{
   width: 100px;
    height: 100px;
    /* background: url(../images/loder-bg.png); */

    /* display: flex;
    align-items: center;
    justify-content: center; */
 
 position: relative;   
}
#loaderBody .outer-loader::after{
  position: absolute;
    content: '';
    background: url(../images/loder-bg.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    left: 0;
    animation: featureLogo 2.2s linear infinite;
    transform: rotate(0deg);
    display: block;
}
@keyframes featureLogo {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
#loaderBody .feature-logo {
        width: 93px;
    height: 93px;
    margin: 0 auto;
    /* background: #fff; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 6px;
    text-align: center;
    position: relative;
    z-index: 1;
    /* box-shadow: 0 0 7px rgb(215 23 46 / 70%); */
    /* animation: featureLogo 3s linear infinite; */
}
/* @keyframes featureLogo{
    0%{
        box-shadow: 0 0 7px rgb(215 23 46 / 70%);
    }

    50%{
        box-shadow: 0 0 15px rgb(215 23 46 / 70%);
    }

    100%{
        box-shadow: 0 0 7px rgb(215 23 46 / 70%);
    }
} */
#loaderBody .feature-logo::after {
    position: absolute;
    width: 84px;
    height: 84px;
    content: '';
    /* background: #fff; */
    /* border-radius: 50%; */
    /* z-index: -1; */
    /* box-shadow: inset 0 0 10px rgb(215 23 46 / 25%); */
}
#loaderBody .feature-logo img {
    width: 38px;
}
#loaderBody .feature-logo h6 {
        margin: 0;
    color: var(--primary-color1);
    font-size: 8px;
    font-weight: 600;
    margin-top: 2px;
    line-height: 1;
}
/* .loading {
    height: 0;
    width: 0;
    padding: 15px;
    border: 6px solid #ccc;
    border-right-color: #b32c2c;
    border-radius: 22px;
    -webkit-animation: rotate 1s infinite linear;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 99999;
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
} */

/*---------form-------- Loader-----end-------- */


/*---==============responsive==========wrap=============start================---*/
@media (min-width: 992px) {
  .menu ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    top: 50px;
  }
}
@media only screen and (max-width:1399px){
.header-wrp::before {
    width: 26%;
  }
  .menu ul {
    display: flex;
    column-gap: 5px;
  }
  .book-demo-btn a {
    padding: 13px 11px;
  }
  .menu ul li a {
    font-size: 13px;
  }
  .cptcha-wrp {
  width: 75%;
}

}
/*-----====large----screen----start====------*/
@media only screen and (max-width:1299px){
  .header-wrp::before {width: 24%;}
}
@media only screen and (max-width:1199px){
/*----header-------wrap-------start---------*/
.logo {
  width: 150px;
}
.logo a img {
  width: 140px;
}
.header-wrp::before {
  width: 25%;
}
.main-nav-wrp {
   grid-template-columns: 1fr 8fr 2.3fr;
  }
  .menu ul {
   column-gap: 7px;
  }
  .menu ul li.mn {
    padding: 0 7px;
}
.menu ul li a {
   
    letter-spacing: 0;
}
.menu ul li.mn::after{
  transform: skew(352deg);
}
  .book-demo-btn a {
    padding: 11px 9px;
  }
/*----header-------wrap-------end---------*/
.free-demo-form h3 {
  font-size: 23px;
  margin-bottom: 20px;
}
.free-demo-form {
  padding: 30px 30px;
  margin: auto;
}
/*----footer--------wrap-------start---------*/
.footer-cpy-rgt::after {
  width: 100%;
  transform: skewX(0deg);
  left: 0%;
}
.ftr-plocy {
  text-align: center;
}
.cpy-lft-txt p {
  margin: 10px auto 0px;
  text-align: center;
  border-top: 1px solid #d2d3e242;
  padding: 7px 0px;
}
/*----footer--------wrap-------end---------*/


/*-------thank-------you------wrap---start------*/

.thnks-txt h3 {
  font-size: 50px;
  padding-bottom: 15px;
}

.thnks-txt p {
  margin-top: 10px;
}

.bck-btn-bx .button-style2{
  padding: 10px 20px 10px 14px;
}


/*-------thank-------you------wrap---end------*/

}
/*-----====large----screen----end===------*/
/*-----====tablet--------start====------*/
@media only screen and (max-width:991px){
  /*--------header------wrap-----start--------*/
  .header-wrp::before {
  width: 38%;
}
  .main-nav-wrp {
    display: flex;
  }
  .menu-icn-book-btn-bx {
    column-gap: 15px;
  }
  .header-wrp {
  padding: 5px 10px;
}
/*-------mobile---menu---start------------*/
.mobile-logo-close-btn{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f5caca;
  padding: 10px 15px;
}
  .mobile-logo-close-btn .logo{
    display: block;
  }
  .mobile-logo-close-btn .logo a img {
    width: 155px;
  }
  nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #f7eeee;
    transition: right 0.4s ease;
    z-index: 99;
    overflow-y: scroll;
    scrollbar-width: thin;
  }
  .menu.active {
    right: 0;
  }
  .menu ul {
    flex-direction: column;
    z-index: 1;
  }
  .menu ul li{
    padding: 12px 10px 12px;
    border-bottom: 1px solid #ddd;
    margin: 0px 16px;
  }
  .menu ul li a {
    width: 100%;
    display: flex;
    padding: 0px;
    align-items: center;
    justify-content: space-between;
  }
  .menu ul li.mn a{
            padding: 10px 0;
  }
  .menu ul li.mn::after {
    top: 3px;
}
.menu ul li.mn.price-hilight::after{
      top: 2px;
}
   .menu ul li ul {
    position: relative;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition:unset !important;
  }
.menu ul li:hover > ul {
  transition: none;
}
  .menu ul li.open > ul {
    max-height: 600px;
    position: relative !important;
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    top: 0px;
    background-color: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
  }
  
  .menu ul li ul li {
    padding: 11px 0px;
    border-bottom: 1px solid #d8dce9;
    margin: 0px;
  }
   .menu ul li ul li a{
    color: var(--txt-color) !important;
    padding: 0px !important;
   }
   .menu ul li ul li:last-child{
    border-bottom: none;
   }
  .arw-icn i {
    transition: transform 0.3s ease;
  }
  .menu ul li.open .arw-icn i {
    transform: rotate(180deg);
  }
/* Close Button */
.menu-close {
  position: absolute;
  top: 25px;
  right: 15px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.menu-close span {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  background: var(--txt-color);
  transition: 0.3s ease;
}
.menu-close:hover span{
  background-color: var(--primary-color1);
}
.menu-close span:first-child {
  transform: rotate(45deg);
}
.menu-close span:last-child {
  transform: rotate(-45deg);
}
/*-----mobile----menu--------end--------*/
/*------mobile-----contact-----detail---start-------*/
.mobile-menu-info {
    padding: 20px 10px;
    margin: 10px auto;
    display: block;
    background-color: var(--white);
    width: 95%;
    border-radius: 25px;
  }
 .mobile-menu-info h6{
    font-size: 20px;
    position: relative;
    padding-bottom: 2px;
    margin-bottom: 15px;
 } 
 .mobile-menu-info h6:first-letter{
  font-weight: 700;
 }
 .mobile-menu-info h6:after,
 .mobile-menu-info h6:before {
    content: '';
    position: absolute;
    bottom: 0px;
    height: 2px;
    background-color: var(--primary-color1);
 }
 
 .mobile-menu-info h6:before{
  left: 0px;
  width: 16px;
 }
 .mobile-menu-info h6:after{
  left: 20px;
   width: 100px;
 }
  .contact-info{
    padding-top: 0px !important;
  }
  .contact-info li {
    border-bottom: 1px dashed #f2b7b7 !important;
    padding: 13px 5px !important;
    margin: 0px !important;
    display: flex;
    align-items: center;
    column-gap: 8px;
  }
  .contact-info li i {
    color: var(--primary-color1);
    font-size: 14px;
  }
  .contact-info li a{
    font-size: 13px !important;
    color: var(--txt-color) !important;
    transition: 0.4s ease;
  }
  .contact-info li a:hover{
    color: var(--primary-color1) !important;
  }
  .menu_social-links {
    display: flex;
    gap: 7px;
    margin-top: 20px;
  }
  .menu_social-links a {
    width: 36px;
    height: 36px;
    background: #dadbea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--title-color);
    font-size: 14px;
    transition: 0.3s ease;
    border: 2px solid #fff;
  }
  .menu_social-links a:hover {
    background: var(--primary-color1);
    color: #fff;
  }
/*-----mobile----contact-----detail---end-----*/
/*--------header------wrap-----end--------*/
.footer-right{
  margin-top: 27px;
}


.thanku-sctn {
  height: 100% !important;
}


.thnks-txt p {
  color: var(--txt-color);
  font-size: 18px;
  text-align: center;
  width: 85%
}
  
}
/*-----====tablet--------end====------*/
/*----====tablet---or--mobile---medium---start====------*/
@media only screen and (max-width: 767px) {
  .header-wrp::before {
    width: 47%;
  }
  .mdl-form-wrap.free-dm .popup-lft-form-dtl{display: none!important;}
  .free-demo-bg {padding: 40px 0!important;}
}
/*-----====tablet---or--mobile---medium----end=====------*/
/*-----=====mobile-----start=====--------*/
@media only screen and (max-width:575px){
/*   .menu.active {
    right: 100px;
  }*/
  .header-wrp::before {
    width: 49%;
  }
   .header-wrp {
    padding: 5px 0px;
  }
  
  .logo {
    width: 117px;
  }
  .menu-icn-book-btn-bx {
    column-gap: 12px;
  }
   .book-demo-btn a {
    padding: 11px 7px;
    font-weight: 500;
    font-size: 12px;
  }
  /*.menu ul {
    padding-top: 5px;
  }*/
   .menu ul li a {
    font-size: 14px;
  }
  
/*---------------------------*/
  .get_demo-mdl .modal-body {
    padding: 0rem;
  }
  .free-demo-form h3 {
    font-size: 20px;
    margin-bottom: 17px;
  }
  .free-demo-form {
    padding: 30px 20px;
    margin: 0 auto 0;
  }
 
/*-----footer----wrap----start---------*/
.ftr-bx {
  padding: 35px 8px 0 8px;
}
.links-bx {
  grid-template-columns: 1fr !important;
  gap: 15px !important;
}
/*-----footer----wrap----end--------*/
 .wow {
    visibility: visible !important;
    animation: none !important;
  }

   .thnks-txt h3 {
    font-size: 41px;
    padding-bottom: 8px;
  }

   .thnks-txt p {
    width: 92%;
    font-size: 17px;
    line-height: 27px;
  }

  
}



@media (max-width: 450px){
    .thnks-txt h6 {
      font-size: 22px;
    }

  .thnku-img {
    width: 85%;
  }

.thnks-txt h3 {
  font-size: 36px !important;
  padding-bottom: 20px !important;
}

.thnks-txt h6 {
  font-size: 24px !important;
  line-height: 34px !important;
}

.thnku-img {
  width: 100% !important;
  height: 100% !important;
}

}
/*-----=====mobile-----end=====--------*/

/*--------thank----you-----style----start------*/

.thanku-sctn{
  width: 100%;
  position: relative;
  /* height: 100vh; */
  padding: 40px 0px;
  margin: auto;
}


.thnks-txt h3 {
  font-size: 55px;
  font-family: "Pacifico", cursive;
  text-align: center;
  letter-spacing: 5px;
  padding-bottom: 30px;
  background: linear-gradient(90deg, var(--primary-color2) 0%, #ffffff 0%,
    var(--primary-color2) 20%,
    var(--primary-color2) 100%
  );
  background-size: 600px;
  background-repeat: no-repeat;
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear forwards;
  text-shadow: 4px 0px 1px var(--primary-color1);
}


@keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 300px;
  }
  100% {
    background-position: 600px;
  }
}

.thnks-txt h6{
  text-align: center;
  font-size: 29px;
  color: var(--txt-color);
  line-height: 37px;
  font-weight: 400;
  text-transform: capitalize;
}

.thnks-txt p{
  color: var(--txt-color);
  font-size: 18px;
  text-align: center;
  width: 61%;
  margin: 20px auto 10px;
  line-height: 31px;
}

.thnku-img {
  margin: auto;
  width: 445px;
  height: 350px;
}

.thnku-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bck-btn-bx{
  display: flex;
  justify-content: center;
}



/*-------thank-----you---style------end-------*/


