/* poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* roboto */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wdth,wght@75..100,100..900&display=swap");
/* rock salt  */
@import url("https://fonts.googleapis.com/css2?family=Rock+Salt&display=swap");
/* Montserrat */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");
/* outfit  */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

/* fontowsome  */
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v4-shims.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v5-font-face.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v4-font-face.min.css?token=7ca6a895ef);

:root {
   --bodyBg: linear-gradient(180deg, #e0eeff 0%, #ffffff 100%);
   --primery: #3687f2;
   --primarDark: #0a0b1e;
   --primarDark15: rgba(10, 11, 30, 0.15);
   --secondary: #6c6d78;
   --lightBlack: rgba(10, 11, 30, 0.6);
   --black: #000000;
   --offWhite: #f9f7ff;
   --white: #ffffff;
   --danger: #f08779;
   --transition: 0.3s all ease;
   --border: 1px solid rgba(10, 11, 30, 0.15);
   --dGray: #303030;
   --cardShadow: 0px 0px 20px 0px rgba(30, 30, 30, 0.06);
   --secondaryDark: #1e1e1e;
}

* {
   box-sizing: border-box;
}

body {
   font-family: "Outfit", sans-serif;
   padding: 0;
   margin: 0;
   overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p,
a {
   margin: 0;
   padding: 0;
   text-decoration: none;
}

img {
   width: 100%;
   height: auto;
}

input {
   transition: var(--transition);
}

input:focus {
   box-shadow: 0 0 0 3px rgba(54, 135, 242, 0.4);
   border-color: #3687f2 !important;
   outline: unset;
}

input::placeholder {
   color: var(--primarDark);
   font-size: 18px;
}

h2,
h1 {
   font-size: 44px;
   font-weight: 700;
   color: var(--secondaryDark);
}

h2 {
   font-weight: 500;
}

h4 {
   font-size: 32px;
   font-weight: 700;
   color: var(--dGray);
}

h3 {
   font-size: 32px;
   color: var(--dGray);
   font-weight: 500;
}

h5 {
   font-size: 14px;
   font-weight: 600;
   color: var(--primarDark);
}

h6 {
   font-size: 12px;
   color: var(--secondary);
}

p {
   color: var(--secondary);
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
   display: none;
   -webkit-appearance: none;
}

/* component classes */

.site-btn {
   background-color: var(--primery);
   display: inline-flex;
   justify-content: center;
   align-items: center;
   min-width: 120px;
   font-size: 16px;
   border-radius: 102px;
   font-weight: 500;
   position: relative;
   z-index: 1;
   border: 1px solid var(--primery);
   color: var(--white);
   overflow: hidden;
   transition: 0.3s all ease;
   padding: 11.5px;
   transition: var(--transition);
   text-transform: capitalize;
}

.site-btn:hover {
   color: var(--primery);
}

.site-btn::before {
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   right: 0;
   width: 0;
   margin: auto;
   height: 100%;
   background-color: var(--white);
   z-index: -1;
   transition: var(--transition);
}

.site-btn:hover::before {
   width: 100%;
}

.btn-white {
   background-color: var(--white);
   color: var(--secondaryDark);
   border-color: var(--white);
}

.btn-white::before {
   background-color: var(--secondaryDark);
}

.btn-white:hover {
   color: var(--white);
}

.btn-2 {
   background-color: transparent;
   color: var(--primarDark);
   border: var(--border);
}

.btn-2:hover {
   color: #e0eeff;
   border-color: var(--primarDark);
}

.btn-2::before {
   background-color: var(--primarDark);
}

.wrapper {
   max-width: 1170px;
   margin: auto;
}

.roboto {
   font-family: "Roboto", sans-serif;
   color: var(--secondary);
}

.rocksalt {
   font-family: "Rock Salt", cursive;
   font-weight: 400;
}

.montserrat {
   font-family: "Montserrat", sans-serif;
}

.text-primery {
   color: var(--primery);
}

.sec-p {
   padding: 100px 0;
}

.sec-m {
   margin: 100px 0;
}

.title-p {
   margin-bottom: 65px;
}

.main-title-m {
   margin-bottom: 130px;
}

.text-white :is(p, h2, h1, h3, h4, h5, h6, span, li) {
   color: var(--white);
}

.text-white p {
   color: #f2f2f2;
}

/* header  */
header {
   position: fixed;
   z-index: 1050;
   top: 0;
   left: 0;
   width: 100%;
   transition: var(--transition);
   background-color: var(--primery);
}

header.sticky {
   backdrop-filter: blur(40px);
   background-color: rgba(232, 242, 255, 0.5);
   box-shadow: -6px 5px 30px -9px rgba(54, 135, 242, 0.4);
}

header .wrapper>.navbar {
   padding: 30px 0;
}

header.sticky .wrapper>.navbar {
   border-bottom: unset;
}

.navbar-nav {
   gap: 22px;
}

header .nav-item .nav-link {
   color: var(--lightBlack);
   font-size: 14px;
}

.bg-grid {
   background-image: var(--bodyBg);
   background-repeat: no-repeat;
   background-size: 100% 60%;
}

.btn-outline-white {
   border-color: var(--white);
}

.btn-outline-white:hover {
   border-color: var(--primery);
}

/* banner  */

.banner {
   padding: 160px 0 130px;
   position: relative;
   z-index: 1;
}

.ba-vacter {
   position: absolute;
   z-index: -1;
   bottom: 0;
   left: 0;
   max-width: 240px;
}

.ba-vacter-left {
   left: unset;
   right: 0;
}

.banner .text {
   max-width: 513px;
}

.banner .text span {
   font-size: 28px;
   font-weight: 400;
}

.banner .text h4 {
   font-size: 26px;
   font-weight: 600;
   margin: 35px 0 15px;
}

.banner .text h1 {
   margin-bottom: 10px;
}

.before-title span {
   font-size: 52.26px;
   font-weight: 500;
   color: var(--primarDark);
}

.main-title h1,
.main-title span {
   font-size: 87px;
   color: var(--primery);
   font-weight: 800;
   display: inline-flex;
}

.address-box {
   position: relative;
   z-index: 1;
}

.address-box input {
   width: 100%;
   padding: 15px 50px 15px 20px;
   border: 1px solid #d2d2d2;
   border-radius: 30px;
   height: 50px;
}

.address-box input::placeholder {
   color: #727272;
}

.address-box button {
   min-width: unset;
   border-radius: 6px;
   position: absolute;
   z-index: 0;
   top: 0;
   right: 6px;
   bottom: 0;
   margin: auto;
   width: 38px;
   aspect-ratio: 1;
   border-radius: 50%;
   border: 1px solid var(--primery);
   padding: 0;
}

.address-box button i {
   font-size: 18px;
   font-weight: 400;
   line-height: 1.4;
}

.primary-bg {
   background-color: var(--primery);
}

/* address-pop  */
.text-model {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 10px;
   padding: 50px 35px;
}

.text-model p {
   color: #303030;
   font-size: 28px;
   font-weight: 500;
}

.text-model a:first-of-type {
   font-weight: 600;
   font-size: 24px;
}

.text-model a:last-of-type {
   text-decoration: underline;
   color: var(--secondary);
}

.text-model .site-btn {
   padding: 5px 35px;
   font-size: 24px;
   font-weight: 500;
   margin: 20px 0 5px;
}

/* personal detail page  */
.banner-h1 {
   padding: 130px 0 30px;
   position: relative;
   z-index: 1;
   min-height: 100vh;
}

.text-h1 span {
   color: var(--secondary);
}

.text-h1 h3 {
   font-size: 16px;
   font-weight: 600;
}

.banner-h1 .inner-wrapper {
   background-color: var(--white);
   padding: 30px;
   border-radius: 10px;
}

/* chat  */
.msger {
   width: 100%;
   max-width: 100%;
   border-radius: 20px;
   background-color: #e8f2ff;
   border: var(--border);
   border-radius: 6px;
   overflow: hidden;
}

.msger p {
   margin: 0;
}

.msger h2 {
   margin: 0;
}

.msger-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 15px 40px;
   border-top-right-radius: 20px;
   border-top-left-radius: 20px;
   background: #4b84e9;
   color: #ffffff;
}

.msger-header h2 {
   font-size: 28px;
   font-weight: 600;
   color: #ffffff;
}

.msger-chat {
   display: flex;
   gap: 20px;
   flex-direction: column;
   overflow-y: auto;
   padding: 0 20px;
   max-height: 428px;
   margin-bottom: 30px;
}

.msger-chat::-webkit-scrollbar {
   width: 5px;
}

.msger-chat::-webkit-scrollbar-track {
   background-color: #bcdaff;
   border-radius: 2px;
}

.msger-chat::-webkit-scrollbar-thumb {
   background: var(--primery);
   border-radius: 2px;
}

.time {
   text-align: end;
}

.msger-chat h6 {
   font-size: 14px;
   font-weight: 400;
   color: #252849;
}

.msg {
   display: flex;
}

.msg:last-of-type {
   margin: 0;
}

.msg-img {
   min-width: 32px;
   width: 32px;
   height: 32px;
   margin-right: 10px;
   background-repeat: no-repeat;
   background-position: top center;
   background-size: 100% 100%;
   border-radius: 50%;
}

.msg-bubble {
   display: inline-flex;
   padding: 13px 20px;
   border-radius: 3px 10px 10px 10px;
   background: var(--primery);
   color: #ffffff;
   box-shadow: 0 2px 50px rgba(0, 0, 0, 0.05);
}

.msg-info {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 10px;
}

.msg-info-name {
   margin-right: 10px;
   font-weight: bold;
}

.msg-info-time {
   font-size: 0.85em;
}

.massege {
   display: flex;
   flex-direction: column;
   gap: 5px;
}

.right-msg {
   flex-direction: row-reverse;
}

.timer h6 {
   color: var(--secondary);
   font-size: 12px;
}

.right-msg .msg-bubble {
   background: #ffffff;
   color: var(--secondary);
   border-radius: 10px 3px 10px 10px;
}

.right-msg .msg-img {
   margin: 0 0 0 10px;
}

.msger-inputtext {
   display: flex;
   gap: 10px;
   align-items: center;
   padding: 0 20px 20px;
}

.msger-inputtext .content {
   position: relative;
   z-index: 1;
   width: 100%;
}

.msger-inputtext .content>label {
   position: absolute;
   z-index: 0;
   top: 0;
   right: 15px;
   bottom: 0;
   color: var(--primery);
   margin: auto;
   display: flex;
   align-items: center;
}

.site-input {
   background-color: white;
   height: 48px;
   border: var(--border);
   padding: 12px;
   border-radius: 5px;
   color: var(--secondary);
   width: 100%;
}

.msger-inputtext .site-input {
   padding-right: 40px;
}

.site-input::placeholder {
   color: var(--secondary);
   font-size: 16px;
}

.msger-inputtext .site-btn {
   min-width: unset;
   width: 44px;
   aspect-ratio: 1;
}

.chat-module {
   padding: 20px 0;
}

.text-right {
   text-align: end;
}

.info-fill-flow {
   padding: 25px 20px;
   border-radius: 6px;
   background-color: var(--white);
   border: var(--border);
}

.info-fill-flow .title h1 {
   font-size: 20px;
   font-weight: 500;
   color: var(--primarDark);
}

.info-fill ul {
   list-style-type: none;
   padding-left: 30px;
   display: flex;
   flex-direction: column;
   gap: 20px;
}

.info-fill ul li {
   position: relative;
}

.info-fill ul li a {
   color: var(--secondary);
}

.info-fill ul li.active a {
   color: var(--primery);
   font-weight: 600;
}

.info-fill ul li::before {
   background-image: url(../images/circle.svg);
   content: "";
   background-size: 100%;
   width: 20px;
   height: 20px;
   position: absolute;
   top: 0;
   bottom: 0;
   margin: auto;
   left: -30px;
}

.info-fill ul li.active::before {
   background-image: url(../images/circle-active.svg);
}

.info-fill ul li.done::before {
   background-image: url(../images/circle-done.svg);
}

.radio-card {
   position: relative;
   cursor: pointer;
}

.radio-card label span,
.radio-card label h6 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-size: 12px;
   color: var(--primarDark);
   font-weight: 400;
}

.radio-card label h5 {
   margin: 2px 0 4px;
}

.radio-card label span img {
   max-width: 20px;
   visibility: hidden;
}

.radio-card input {
   visibility: hidden;
   position: absolute;
   top: 0;
   left: 0;
}

.radio-card label {
   padding: 15px;
   border-radius: 6px;
   background-color: var(--white);
   width: 100%;
   border: 1px solid #dadbdd;
   cursor: pointer;
}

.radio-card input:checked+label {
   box-shadow: 0px 24px 30px 0px rgba(0, 0, 0, 0.15);
   border: 1px solid transparent;
   outline: 5px solid white;
   border-radius: 10px;
}

.radio-card input:checked+label span img {
   visibility: visible;
   opacity: 1;
}

.radio-card input:checked+label :is(h6, span) {
   font-weight: 500;
}

/* colors */
.radio-card label.shany-tan {
   background-color: #e1d6a9;
}

.radio-card label.white {
   background-color: #f2f2f2;
}

.radio-card label.f-sunshine {
   background-color: #f6c6ad;
}

.radio-card label.gray {
   background-color: #a6a6a6;
}

.radio-card label.brown {
   background-color: #80350e;
}

.radio-card label.light-blue {
   background-color: #a6caec;
}

.radio-card label.blue {
   background-color: #215f9a;
}

.radio-card label.brown *,
.radio-card label.blue * {
   color: var(--white);
}

.drag-drop-file form {
   border: unset;
   padding: 0;
   min-height: unset;
   display: flex;
   flex-direction: column-reverse;
}

.drag-drop-file form .dz-default {
   display: flex;
   align-items: center;
   justify-content: space-between;
   position: relative;
   z-index: 1;
   flex-direction: row-reverse;
   gap: 10px;
   margin: 0;
}

.drag-drop-file form .site-input {
   text-align: left;
}

.drag-drop-file form .dz-default .site-btn {
   background-color: var(--primery);
   min-width: 100px;
   border-radius: 102px;
   color: #f9f7ff;
   padding: 11.5px;
   border: 1px solid var(--primery);
}

.drag-drop-file form .dz-default .site-btn:hover {
   color: var(--primery);
}

.drag-drop-file :is(.dz-error-mark, .dz-size, .dz-error-message, .dz-success-mark) {
   display: none !important;
}

.drag-drop-file .dz-preview {
   display: flex;
   padding: 0;
   margin: 0 0 20px;
   align-items: center;
   min-height: unset;
   align-items: center;
   justify-content: space-between;
   padding-bottom: 15px;
   border-bottom: 1px solid #dadbdd;
}

.drag-drop-file .dz-preview .dz-details {
   position: static;
   padding: 0;
   min-width: unset;
   width: 100%;
   text-align: start;
   opacity: 1 !important;
}

.drag-drop-file .dz-preview .dz-details .dz-filename span {
   border: unset !important;
   padding: 0 !important;
   font-size: 16px;
   color: var(--secondary);
}

.drag-drop-file .dz-preview .dz-image {
   width: 40px;
   height: 30px;
   border-radius: 4px;
   margin-right: 10px;
   /* background-color: var(--primery); */
}

.drag-drop-file .dz-preview .dz-image img {
   filter: none !important;
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.drag-drop-file .dz-preview .dz-remove {
   white-space: nowrap;
   visibility: hidden;
   width: 20px;
   position: relative;
}

.drag-drop-file .dz-preview .dz-remove::before {
   content: "";
   background-image: url(../images/del-icon.svg);
   background-size: 100% 100%;
   background-repeat: no-repeat;
   width: 20px;
   height: 20px;
   display: flex;
   visibility: visible;
   position: absolute;
   top: 0;
   right: 0;
}

.drag-drop-file .dropzone.dz-started .dz-message {
   display: block;
}

.drag-drop-file form.dz-started .dz-default span::before {
   content: "+ Add More Files";
   visibility: visible;
   color: var(--primery);
   font-weight: 500;
}

.drag-drop-file form.dz-started .dz-default span {
   visibility: hidden;
}

.drag-drop-file form.dz-started .dz-default button.site-btn {
   display: none;
}

.drag-drop-file form.dz-started .dz-default {
   text-align: start !important;
}

.card-field label {
   color: var(--primarDark);
   margin-bottom: 8px;
   font-size: 14px;
}

.card-field input {
   height: 40px;
   color: var(--secondary);
   font-size: 16px;
}

.cust-tabs .tab-content .content {
   display: inline-block;
   position: relative;
   z-index: 1;
}

.cust-tabs .dropzone {
   min-height: 130px;
}

.cust-tabs .dropzone .dz-message {
   margin: 30px 0 20px;
}

.cust-tabs .tab-content .content .sign-area canvas {
   background-color: #e8f2ff;
   color: var(--secondary) !important;
   border-radius: 10px;
}

.sign-texteara,
.uplode-file {
   background-color: #e8f2ff;
   color: var(--secondary) !important;
   border-radius: 10px;
   border: unset;
   padding: 20px;
   width: 100%;
   font-size: 20px;
}

.cust-tabs .nav-tabs {
   margin-bottom: 20px;
   width: 99%;
   border-color: rgba(10, 11, 30, 0.3);
}

.cust-tabs .nav-tabs button {
   width: 100%;
   border: unset;
   color: rgba(10, 11, 30, 0.3);
   font-size: 16px;
   border-bottom: 2px solid transparent;
}

.cust-tabs .nav-tabs button.active {
   font-weight: 600;
   color: var(--primery);
   border-bottom: 2px solid var(--primery);
}

.sign-texteara:focus {
   outline: unset;
}

.reset-canvas {
   position: absolute;
   z-index: 1;
   top: 15px;
   right: 20px;
   background-color: transparent;
   border: unset;
   outline: unset !important;
   background-image: url(../images/cross-ico.svg);
   background-size: 60% 60%;
   background-repeat: no-repeat;
   background-position: center center;
   width: 30px;
   height: 30px;
   display: inline-flex;
   padding: 0;
   font-weight: 600;
   box-shadow: unset !important;
}

/* .thanks page  */

.thanks {
   display: flex;
   justify-content: center;
   align-items: center;
   min-height: 100vh;
   background-color: var(--primery);
   text-align: center;
   position: relative;
   z-index: 1;
}

.thanks h1 {
   font-size: 100px;
   font-weight: 900;
   color: var(--white);
}

header .navbar-toggler {
   padding: 0;
   margin: 0;
   border: unset;
   box-shadow: unset !important;
}

/* two-col-section */

.text-space span {
   color: var(--primery);
   font-size: 20px;
   font-weight: 400;
   margin-bottom: 5px;
   display: inline-flex;
}

.text-space p {
   font-size: 16px;
   max-width: 600px;
   margin: 10px 0 35px;
}

.text-space.small-p p {
   max-width: 542px;
}

.text-space .site-btn {
   min-width: 180px;
}

.two-col-sec .text h4 {
   margin: 6px 0 18px;
}

.two-col-sec .inner-content {
   display: flex;
   flex-direction: column;
   gap: 100px;
}

.two-col-sec .inner-content .row:nth-child(even) {
   flex-direction: row-reverse;
}

.text.prim-style :is(span, h4, p) {
   color: var(--white);
}

.site-btn.prim-style {
   background-color: var(--white);
   color: var(--primery);
   border-color: var(--white);
}

.site-btn.prim-style:hover {
   color: var(--white);
}

.site-btn.prim-style::before {
   background-color: var(--primery);
}


/* faqs section  */

.faqs-section .accordion-button::after {
   background-image: url(../images/plus-icon.svg);
   background-size: 1.5rem;
   width: 1.5rem;
   height: 1.5rem;
}

.faqs-section .accordion-button:not(.collapsed)::after {
   background-image: url(../images/minus.svg);
}

.faqs-section .accordion-item {
   border: unset !important;
   overflow: hidden;
   border-radius: 12px;
   background-color: var(--white);
   box-shadow: var(--cardShadow);
}

.faqs-section .accordion {
   display: flex;
   flex-direction: column;
   gap: 16px;
}

.accordion-button:not(.collapsed) {
   border-radius: unset;
   background-color: #e8f2ff;
   box-shadow: unset;
}

.faqs-section .accordion-item .accordion-button {
   font-size: 20px;
   color: var(--dGray);
   font-weight: 700;
   padding: 20px;
}

.faqs-section .accordion-body {
   background-color: #e8f2ff;
   padding: 0 20px 20px;
}

.faqs-section .accordion-body p {
   color: #656565;
   font-size: 16px;
}

/* footer  */

footer {
   padding: 50px 0 40px;
}

footer .text :is(p, span) {
   font-size: 18px;
}

footer .text p {
   margin: 20px 0 0;
   font-size: 16px;
}

footer .text img {
   max-width: 270px;
}

.social-links {
   display: flex;
   gap: 20px;
}

.social-links a {
   transition: var(--transition);
   font-size: 20px;
}

.social-links a:hover {
   transform: translateY(-2px);
}

.copy-right {
   margin-top: 65px;
   padding-top: 30px;
   border-top: 1px solid #8ebfff;
}

.copy-right a {
   display: flex;
   align-items: center;
   gap: 10px;
   color: var(--white);
}

.copy-right a span {
   border-radius: 50%;
   width: 28px;
   height: 28px;
   display: flex;
   justify-content: center;
   align-items: center;
   background: var(--white);
   color: var(--primery);
}

footer .newsletter h3 {
   font-size: 24px;
   font-weight: 700;
   margin-bottom: 15px;
}

footer .newsletter form {
   display: flex;
   align-items: center;
   gap: 10px;
}

footer .newsletter input {
   border-radius: 35px;
   border: 1px solid #fff !important;
   background-color: #3687f2 !important;
   font-size: 16px;
   color: #fff !important;
   height: 44px;
   padding: 10px 16px;
}

footer .newsletter input::placeholder {
   color: #fff;
}

footer .newsletter button {
   border-radius: 50%;
   min-width: 44px;
   height: 44px;
   display: flex;
   justify-content: center;
   align-items: center;
   background: var(--white);
   color: var(--primery);
   padding: 10px;
}

footer .newsletter button:hover {
   color: var(--white);
}

footer .newsletter button::before {
   background-color: var(--dGray);
}

.contects-assets {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.contects-assets .content {
   display: flex;
   gap: 8px;
}

.contects-assets .content span {
   background-color: var(--white);
   display: inline-flex;
   justify-content: center;
   align-items: center;
   width: 28px;
   border-radius: 50%;
   aspect-ratio: 1;
   color: var(--primery);
}

.contects-assets .content p {
   color: var(--white);
   font-weight: 400;
}

.drop-shadow {
   filter: drop-shadow(-4px 20px 20px rgba(0, 0, 0, 0.09));
}

.bg-light-blue {
   background-color: #e8f2ff;
}

.banner-h1 .title h3 {
   font-size: 20px;
}

header .wrapper>.navbar.navbar-h1 {
   padding: 30px 0;
   border: unset;
}

@media (min-width: 1200px) {
   .custmize-col .col-xl-4 {
      width: 38%;
   }

   .custmize-col .col-xl-7 {
      width: 53%;
   }

   /* .custmize-col-primary .col-xl-6 {
      width: 46%;
   } */
}


.preloader {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: #fff;
   z-index: 9999;
   justify-content: center;
   align-items: center;
}

/* media query  */
@media (max-width: 1199px) {
   .two-col-sec .text h4 {
      font-size: 25px;
   }

   .banner .text h1 {
      font-size: 38px;
   }

   .banner .text h4 {
      font-size: 20px;
   }
}

@media (max-width: 991px) {

   p {
      font-size: 14px;
   }

   h2 {
      font-size: 30px;
   }

   h3 {
      font-size: 22px;
   }

   header .navbar-toggler .navbar-toggler-icon {
      background-image: url(../images/hamburger.svg);
      transition: 0.05s all;
   }

   header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
      background-image: url(../images/closs-icon.svg);
   }

   header.sticky .navbar-toggler .navbar-toggler-icon {
      background-image: url(../images/hamburger-blue.svg);
      transition: 0.05s all;
   }

   header.sticky .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
      background-image: url(../images/closs-icon-blue.svg);
   }

   .navbar-nav {
      margin: 15px auto !important;
      gap: 0;
   }

   .thanks h1 {
      font-weight: 700;
   }

   .light-style span {
      font-size: 16px;
   }

   .two-col-sec .text h4 {
      font-size: 18px;
   }

   .light-style p {
      font-size: 14px;
      max-width: 652px;
   }

   .light-style .site-btn {
      margin-top: 25px;
   }

   .faqs-section .accordion-body p {
      font-size: 14px;
   }

   .brand-logo-icon img {
      max-width: 100px;
   }

   .banner .text span,
   .banner .text h4 {
      font-size: 16px;
   }

   .banner .text h1 {
      font-size: 28px;
   }

   .text-space span,
   .faqs-section .accordion-item .accordion-button {
      font-size: 16px;
   }

   .text-space p {
      font-size: 14px;
      margin-bottom: 25px;
   }

   .ba-vacter {
      max-width: 150px;
   }

   header .wrapper>.navbar.navbar-h1 {
      padding: 20px 0;
   }


}

/* mob  */
@media (max-width: 767px) {

   h2,
   h1 {
      font-size: 30px;
   }

   header {
      background-color: var(--primery);
   }

   .site-btn {
      padding: 10px;
   }

   .navbar-collapse {
      padding-top: 20px;
   }

   header .wrapper>.navbar,
   header .wrapper>.navbar.navbar-h1 {
      padding: 15px 0;
   }

   header .navbar-toggler .navbar-toggler-icon {
      width: 25px;
      height: 24px;
   }


   .navbar-brand img {
      max-width: 180px;
   }

   .banner,
   .banner-h1 {
      padding-top: 95px;
   }

   .before-title span {
      font-size: 25px;
   }

   .main-title h1,
   .main-title span {
      font-size: 40px;
   }



   .text-model {
      padding: 30px 15px;
      gap: 5px;
   }

   .text-model p {
      font-size: 16px;
   }

   .text-model .site-btn {
      margin-top: 15px;
      font-size: 16px;
   }

   .banner-h1 .inner-wrapper {
      padding: 25px 15px;
   }

   .title-h1 {
      flex-direction: column;
      align-items: start !important;
      gap: 13px;
   }

   .title-h1 .text-h1 {
      text-align: start !important;
   }

   .text-h1 h3 {
      margin-top: 5px;
   }

   .msger-chat {
      padding: 0 10px;
   }

   .msger-inputtext {
      padding-inline: 10px;
      gap: 6px;
   }

   .msg-bubble {
      padding: 10px;
   }

   .info-fill ul {
      gap: 10px;
   }

   .info-fill-flow {
      padding: 15px 10px;
   }

   .msg-text {
      font-size: 14px;
   }

   .cust-tabs .nav-tabs button {
      padding: 5px 8px;
   }

   .dropzone .dz-message .dz-button {
      font-size: 14px;
   }

   .sign-texteara {
      font-size: 16px;
   }

   .reset-canvas {
      top: 10px;
      right: 10px;
      width: 20px;
      height: 20px;
   }

   .thanks h1 {
      font-size: 50px;
   }

   .banner .title {
      padding-bottom: 40px;
   }

   .padding-50 {
      padding: 30px 0;
   }

   .two-col-sec .inner-content {
      gap: 50px;
   }

   .two-col-sec .inner-content .row {
      flex-direction: column-reverse;
   }

   .two-col-sec .inner-content .row:nth-child(even) {
      flex-direction: column-reverse;
   }

   /* .add-img {
      margin-bottom: 40px;
   } */

   .col-img {
      width: 90%;
      margin: auto;
   }

   .margin-50 {
      margin: 25px 0;
   }

   .faqs-section .accordion-item .accordion-button {
      font-size: 16px;
      align-items: start;
      gap: 10px;
   }

   .brand-logo-icon img {
      max-width: 80px;
   }


   footer {
      padding: 30px 0;
   }

   footer .text img {
      max-width: 200px;
   }

   .mail-box input {
      max-width: 280px;
   }

   .contects-assets .content p {
      font-size: 14px;
   }

   .site-input {
      height: 44px;
   }

   .banner .text h4 {
      margin-top: 20px;
   }

   .address-box input {
      height: 45px;
   }

   .ba-vacter {
      max-width: 100px;
   }

   .banner {
      padding-bottom: 50px;
   }

   .sec-p {
      padding: 50px 0;
   }

   .two-col-sec .row {
      flex-direction: column-reverse !important;
   }

   .main-title-m {
      margin-bottom: 50px;
   }

   .text-model a:first-of-type {
      font-size: 20px;
   }

   .title-p {
      margin-bottom: 20px;
   }

   .copy-right {
      margin-top: 40px;
      padding-top: 20px;
   }

   .copy-right a {
      font-size: 14px;
      gap: 6px;
   }

   .copy-right a span {
      width: 25px;
      height: 25px;
   }

   footer .newsletter h3 {
      font-size: 20px;
      font-weight: 600;
   }
}

/* loading icon  */

/* .loader {
   width: 50px;
   aspect-ratio: 1;
   display: grid;
   animation: l14 4s infinite;
}

.loader::before,
.loader::after {
   content: "";
   grid-area: 1/1;
   border: 8px solid;
   border-radius: 50%;
   border-color: #1e1e1e #1e1e1e transparent transparent;
   mix-blend-mode: darken;
   animation: l14 1s infinite linear;
}

.loader::after {
   border-color: #3687f2 #3687f2 transparent transparent;
   animation-direction: reverse;
}

@keyframes l14 {
   100% {
      transform: rotate(1turn)
   }
} */