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

@font-face {
    font-family: 'Open Sans Condensed';
    src: url('../fonts/OpenSansCondensed-ExtraBold.woff2') format('woff2'),
        url('../fonts/OpenSansCondensed-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Bold.woff2') format('woff2'),
        url('../fonts/OpenSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-ExtraBold.woff2') format('woff2'),
        url('../fonts/OpenSans-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Light.woff2') format('woff2'),
        url('../fonts/OpenSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Medium.woff2') format('woff2'),
        url('../fonts/OpenSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-SemiBold.woff2') format('woff2'),
        url('../fonts/OpenSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.woff2') format('woff2'),
        url('../fonts/OpenSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Light.woff2') format('woff2'),
        url('../fonts/DMSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Medium.woff2') format('woff2'),
        url('../fonts/DMSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Regular.woff2') format('woff2'),
        url('../fonts/DMSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-SemiBold.woff2') format('woff2'),
        url('../fonts/DMSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Thin.woff2') format('woff2'),
        url('../fonts/DMSans-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

/*Header Css Start*/
header{
  position: fixed;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(235, 235, 235, 1) !important;
  background-color: #FFFFFF;
  z-index: 1;
}
.header-logo-wrap{
  padding: 18px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.language-sw-wrapper{
  display: flex;
  justify-content: flex-end;
}

.language-switch{
  position: relative;
  display: inline-block;
}

.language-sw-wrapper .language-switch > span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-weight: bold;
  font-size: 0.875rem;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .06);
  width: 50%;
  text-align: center;
}
        
.language-sw-wrapper .language-switch input.check-toggle-round-flat:checked ~ .off {
  color: #FEE9EF;
}
          
.language-sw-wrapper .language-switch input.check-toggle-round-flat:checked ~ .on {
  color: #B3667E;
}       
.language-sw-wrapper .language-switch > span.on {
  left: 2px;
  color: #FEE9EF;
  font-family: 'DM Sans';
}
    
.language-sw-wrapper .language-switch > span.off {
  right: 4px;
  color: #B3667E;
  font-family: 'DM Sans';
}
    
.language-sw-wrapper .language-switch .check-toggle {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

.language-sw-wrapper .language-switch .check-toggle + label {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.language-sw-wrapper .language-switch input.check-toggle-round-flat + label {
  padding: 3px;
  width: 84px;
  height: 36px;
  margin-bottom: 0px;
  background-color: #F4E8EC;
  border-radius: 16px;
}
.language-sw-wrapper .language-switch input.check-toggle-round-flat + label:before, 
.language-sw-wrapper .language-switch input.check-toggle-round-flat + label:after {
  display: block;
  position: absolute;
  content: "";
}

.language-sw-wrapper .language-switch input.check-toggle-round-flat + label:before {
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 2px;
  background-color: transparent;
  border-radius: 60px;
}
.language-sw-wrapper .language-switch input.check-toggle-round-flat + label:after {
  top: 4px;
  left: 4px;
  bottom: 4px;
  width: 40px;
  background-color: #811938;
  border-radius: 15px;
  transition: margin 0.2s;
  font-family: 'DM Sans';
  font-weight: 700;
}

.language-sw-wrapper .language-switch input.check-toggle-round-flat:checked + label:after {
  margin-left: 36px;
}
/*Header Css End*/


/*Customer Lead Capture Css Start*/
.cust-lead-box{
  padding: 56px 0px;
}

.cust-lead-title h4{
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: bold;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.03em;
  color: #141414;
  margin-bottom: 24px;
}

.cust-lead-title p{
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.005em;
  color: #141414;
}

.cust-lead-points ul{
  list-style-type: none;
  padding-left: 0px;
  margin-bottom: 0px;
  margin-top: 24px;
}

.cust-lead-points ul li{
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.lead-app-download{
  margin-top: 24px;
}

.lead-app-download h6{
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #141414;
  margin-bottom: 16px;
}

.lead-app-btn{
  display: flex;
  align-items: center;
  gap: 8px;
}

.cust-signup-form{
  padding: 32px;
  background: #F0F1F3;
  border: 1px solid #CFD4DB;
  border-radius: 16px;
}

.cust-signup-title h5{
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  display: flex;
  align-items: center;
  color: #2A313A;
  margin-bottom: 8px;
}

.cust-signup-title{
  margin-bottom: 32px;
}

.cust-signup-title h6{
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #5B6A7E;
}

.cust-signup-title h6 span{
  font-weight: 400;
}

.cust-form-content .custom-mobile-input{
  position: relative;
}

.cust-form-content .custom-mobile-input span{
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: #0F172A;
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.cust-form-content .cust-form-label{
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.005em;
  color: #2A313A;
  margin-bottom: 4px;
}

.cust-form-input {
  padding: 16px;
  height: 54px;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  box-shadow: 0px 1px 2px rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.005em;
  color: #2A313A;
  outline: 0px !important;
}

.pl-88{
  padding-left: 88px;
}

.form-control.cust-form-input:focus{
  box-shadow: 0px 1px 2px rgba(15, 23, 42, 0.06) !important;
  outline: 0px;
  border-color: #CBD5E1 !important;
}

.cust-form-input::-webkit-input-placeholder,
.cust-form-input::-moz-placeholder,
.cust-form-input:-ms-input-placeholder, 
.cust-form-input:-moz-placeholder{
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.005em;
  color: #8390A2;
}

.mb-32{
  margin-bottom: 32px;
}

.cust-drop-input{
  cursor: pointer;
  position: relative;
}

.custom-dropdown{
  position: relative;
}

.drop-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  cursor: pointer;
}

.custom-dropdown .cust-drop-input::before{
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat center;
  background-size: contain;
  transform: translateY(-50%);
  pointer-events: none;
}

.cust-form-content .dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  cursor: pointer;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  box-shadow: 0px 1px 2px rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  width: 100%;
  display: none;
  z-index: 100;
  padding: 16px;
}

.dropdown-option {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.005em;
  color: #2A313A;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #E2E8F0;
}

.dropdown-option:last-child{
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: 0px;
}

.form-check-input{
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border: 1px solid #97A2B1;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: none;
}

.req-call-back{
  padding-bottom: 32px;
  border-bottom: 1px solid #E2E8F0;
}

.req-call-back .form-check-input:focus{
  box-shadow: none;
  border: 1px solid #97A2B1;
}

.req-call-back .form-check{
  margin-bottom: 8px;
}

.req-call-back .form-check:last-of-type{
  margin-bottom: 0px;
}

.req-call-back .form-check-input:checked {
  background-color: #7d1635; /* maroon */
  border-color: #7d1635;
}

.req-call-back .form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='white' d='M16.707 5.293a1 1 0 00-1.414 0L8 12.586 4.707 9.293a1 1 0 00-1.414 1.414l4 4a1 1 0 001.414 0l8-8a1 1 0 000-1.414z'/%3e%3c/svg%3e");
}

.req-call-back .form-check-label {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.005em;
  color: #2A313A;
  cursor: pointer;
  margin-left: 4px;
}

.st-acept-action .st-acept-btn{
  padding: 14px 20px;
  background: #8E1B3E;
  box-shadow: 0px 1px 2px rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #FFFFFF;
  width: 100%;
}

.st-acept-action .st-acept-btn:focus,
.st-acept-action .st-acept-btn:hover,
.st-acept-action .st-acept-btn:focus:active{
  background-color: #fec82e;
  border-color: #fec82e;
  color: #2A313A;
}

.wc-sadad-box{
  padding: 24px;
  background: #FFFFFF;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.wc-sadad-content h4{
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  color: #141414;
  margin-bottom: 24px;
}

.ws-points-box{
  display: flex;
  gap: 24px;
  padding: 16px 0px;
}

.ws-point-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #F0F1F3;
  border-radius: 3.0911px;
  flex-shrink: 0;
}

.ws-point-content h6{
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.005em;
  color: #141414;
  margin-bottom: 8px;
}

.ws-point-content p{
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #141414;
}

.mb-24{
  margin-bottom: 24px;
}

.download-action{
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-action .download-btn{
  padding: 14px 20px;
  background: #8E1B3E;
  box-shadow: 0px 1px 2px rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #FFFFFF;
}

.download-action .download-btn:focus,
.download-action .download-btn:hover,
.download-action .download-btn:focus:active{
  background-color: #fec82e;
  border-color: #fec82e;
  color: #2A313A;
}

.wc-sadad-img{
  height: 100%;
  width: 100%;
}

.wc-mobile-img{
  display: none;
}

.wc-desktop-img{
  display: block;
  height: 100%;
  width: 100%;
}
/*Customer Lead Capture Css End*/


/* Footer Code Css Start */
.footer-wrapper{
  padding: 24px 0px;
  background: #FAFBFD;
  box-shadow: 0px 12px 24px rgba(15, 25, 40, 0.04);
}

.trusted-data{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid #9CA3AF;
}

.trusted-data ul{
  padding-left: 0px;
  margin-bottom: 0px;
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 16px;
}

.trusted-data h6{
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #8E1B3E;
  margin-bottom: 0px;
}

.trusted-data ul li a{
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 32px;
  letter-spacing: -0.005em;
  color: #141414;
  display: flex;
  gap: 8px;
  align-items: center;
}

.sadad-copyright{
  padding-top: 24px;
}

.sadad-copyright p{
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.005em;
  color: #141414;
  margin-bottom: 0px;
}
/* Footer Code Css End */

