/* 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 {
   --primery: #3687f2;
   --secondary: #1e1e1e;
   --gray: #727272;
   --skyBlue: #f3f8fe;
   --black: #000000;
   --offWhite: #f9f7ff;
   --green: #166534;
   --white: #ffffff;
   --transition: 0.3s all ease;
   --border: 1px solid #c7c7c7;
   --box-shadow-prim: 0px 0px 12px 0px rgba(49, 95, 172, 0.12);
   --shadow-card-prim: 0px 42px 34px 0px rgba(54, 135, 242, 0.3);
}

* {
   box-sizing: border-box;
}

body {
   font-family: "Outfit", sans-serif;
   padding: 0;
   margin: 0;
}

html,
body {
   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;
}

h1,
h2 {
   font-size: 44px;
   font-weight: 700;
   color: var(--secondary);
}

h2 {
   font-weight: 600;
}

h3 {
   font-size: 24px;
   font-weight: 500;
   color: var(--secondary);
}

p {
   color: var(--gray);
}

/* comp classes  */

.site-btn {
   background-color: var(--primery);
   display: inline-flex;
   justify-content: center;
   align-items: center;
   min-width: 115px;
   font-size: 16px;
   border-radius: 32px;
   font-weight: 500;
   position: relative;
   z-index: 1;
   color: var(--white);
   overflow: hidden;
   transition: 0.3s all ease;
   padding: 11.5px 30px;
   transition: var(--transition);
   border: 1px solid var(--primery);
}

.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-2 {
   background-color: transparent;
   color: var(--primery);
   border: 1px solid var(--primery);
}

.btn-2:hover {
   color: var(--white);
}

.btn-2::before {
   background-color: var(--primery);
}

.btn-3 {
   background-color: var(--white);
   color: var(--secondary);
}

.btn-3:hover::before {
   background-color: var(--secondary);
}

.btn-3:hover {
   color: var(--white);
}

.btn-4 {
   border: 1px solid var(--white);
}

.btn-4:hover {
   border-color: transparent;
}

.wrapper {
   max-width: 1170px;
   margin: auto;
}

.bg-sblue {
   background-color: rgba(54, 135, 242, 0.04);
}

.buttons {
   gap: 10px;
   display: flex;
}

.padding-100 {
   padding: 100px 0;
}

.margin-50 {
   margin: 50px 0;
}

.static-card {
   border: var(--border);
   padding: 24px;
   border-radius: 20px;
   height: 100%;
   overflow: hidden;
   position: relative;
   z-index: 1;
}

.hover-card::before {
   content: "";
   background-color: var(--primery);
   width: 100%;
   position: absolute;
   z-index: -1;
   bottom: 0;
   left: 0;
   right: 0;
   margin: auto;
   height: 0;
   transition: 0.3s all ease;
}

.hover-card:hover::before {
   height: 100%;
}

.hover-card :is(p, h3, h4) {
   transition: 0.3s all ease;
}

.hover-card:hover :is(p, h3, h4) {
   color: var(--white);
   transition: 0.3s all ease;
}

.static-card h3 {
   margin: 25px 0 8px;
}

.avtar-img {
   border-radius: 50%;
   min-width: 56px;
   aspect-ratio: 1;
   display: inline-flex;
   background-color: #d7e8ff;
   justify-content: center;
   align-items: center;
}

.avtar-img img {
   max-width: 32px;
}

.avtar-img i {
   color: var(--primery);
   font-size: 25px;
}

.title p {
   margin-top: 8px;
}

.chain {
   position: relative;
   z-index: 1;
}

.static-card .icon-content h3 {
   margin: 0;
}

.static-card .icon-content {
   margin-bottom: 30px;
}

.chain::before {
   content: "";
   background-image: url(../images/chain.png);
   background-size: 100% 100%;
   width: 74%;
   height: 1px;
   top: 46px;
   left: 0;
   right: 0;
   margin: auto;
   position: absolute;
   z-index: -1;
}

.static-card.style-2 {
   text-align: center;
   padding: 10px;
   border: unset;
}

.hover-card.style-2:hover .avtar-img {
   background-color: var(--white);
}

.hover-card.style-2:hover .avtar-img img {
   filter: drop-shadow(0px 0px 3px #3687f2);
}

.static-card.style-2 .avtar-img {
   background-color: var(--primery);
   width: 70px;
   transition: 0.3s all ease;
}

.static-card.style-2 .avtar-img img {
   max-width: 40px;
   transition: 0.3s all ease;
}

.static-card.style-2 p {
   max-width: 343px;
   margin: auto;
}

.bg-primery {
   background-color: var(--primery);
}

.bg-primery-before {
   position: relative;
   z-index: 1;
}

.bg-primery-before::before {
   content: "";
   position: absolute;
   z-index: -1;
   bottom: 0;
   left: 0;
   width: 100%;
   height: calc(100% - 14%);
   background-color: var(--primery);
}

.large-btn {
   padding: 16px 20px;
   border-radius: 12px;
   display: flex;
   gap: 10px;
   align-items: center;
   background-color: var(--white);
   width: auto;
}

.img-white-bg {
   padding: 12px 12px 15px;
   border-radius: 23px;
   background-color: var(--white);
   box-shadow: 0px 5.76px 48.92px 0px rgba(0, 0, 0, 0.12);
   max-width: 220px;
   margin-left: auto;
}

.choices {
   display: flex;
   gap: 20px;
}

.choices button {
   width: 100%;
   border-radius: 12px;
   padding: 22px 10px;
   border: unset;
   font-size: 24px;
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 10px;
}

.green {
   color: #166534;
   background-color: #bdfcd3;
}

.red {
   background-color: #fed2d2;
   color: #991b1b;
}

.gray {
   background-color: #dedede;
   color: #1e1e1e;
}

.choices button i {
   font-size: 35px;
}

.hov-top {
   transition: var(--transition);
}

.hov-top:hover {
   transform: translateY(-4px);
}

.progress-wrapper {
   background-color: var(--white);
   border-radius: 12px;
   padding: 16px;
}

.persentage:not(:last-child) {
   margin-bottom: 20px;
}

.persentage span,
.persentage p {
   color: #727272;
   font-size: 20px;
}

.persentage .progress {
   height: 20px;
   border-radius: 20px;
   overflow: hidden;
   position: relative;
   z-index: 1;
}

.persentage .progress span {
   display: block;
}

.persentage .progress span.gray {
   background-color: var(--secondary);
}

.persentage .progress span.green {
   background-color: #166534;
}

.persentage .progress span.red {
   background-color: #991b1b;
}

.flat-input {
   width: 20px;
   padding: 0;
   margin-left: 3px;
   outline: unset !important;
   height: unset;
   border: unset;
   color: var(--gray);
   font-size: 20px;
   background-color: transparent;
}

.total p {
   font-size: 20px;
}

.yellow {
   color: #facc15;
}

.static-card.reviews {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.static-card.reviews .text-card p {
   font-size: 19px;
   margin: 10px 4px 15px;
}

.user-profile {
   display: flex;
   gap: 10px;
   align-items: center;
}

.user-profile img {
   width: 70px;
   aspect-ratio: 1;
}

.user-profile h4 {
   color: var(--secondary);
   font-size: 20px;
   margin-bottom: 4px;
}

.user-profile p {
   font-size: 18px;
   line-height: 1.3;
}

.stars i {
   font-size: 18px;
}

.m-top {
   margin-top: 13%;
}

.bottom-content .text p {
   margin-top: 16px;
   font-size: 20px;
}

.bottom-content .text h2 {
   font-size: 32px;
   font-weight: 500;
}

.inner-buttns button {
   min-width: 230px;
}

.check-list ul {
   padding: 0;
}

.check-list ul li {
   display: flex;
   align-items: start;
   gap: 10px;
   margin-bottom: 25px;
}

/* .check-list ul li p {
   font-size: 15px;
} */

@media (min-width: 1200px) {
   .custmize-col .col-xl-5 {
      width: 44%;
   }

   .banner .col-xl-4 {
      width: 37%;
   }
}

.check-list h4 {
   color: var(--secondary);
}

.check-list ul li::before {
   content: "";
   display: flex;
   align-items: start;
   min-width: 22px;
   aspect-ratio: 1;
   background-image: url(../images/check-icon.svg);
   background-size: 100% 100%;
   margin-top: 6px;
}

.chain {
   position: relative;
   z-index: 1;
}

.chain::before {
   content: "";
   background-image: url(../images/chain.png);
   background-size: 100% 100%;
   width: 74%;
   height: 1px;
   top: 46px;
   left: 0;
   right: 0;
   margin: auto;
   position: absolute;
   z-index: -1;
}

.static-card.style-2 {
   text-align: center;
   padding: 10px;
   border: unset;
   transition: var(--transition);
}

.static-card.style-2 .avtar-img {
   background-color: var(--primery);
   width: 70px;
}

.static-card.style-2 .avtar-img img {
   max-width: 40px;
}

.static-card.style-2 .avtar-img span {
   font-size: 30px;
   line-height: 1;
   display: flex;
   justify-content: center;
   align-items: center;
   font-weight: 500;
   color: var(--white);
}

.static-card.style-2 p {
   max-width: 343px;
   margin: auto;
}

.flex-between {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.flex-center {
   display: flex;
   justify-content: center;
   align-items: center;
}

.price-card {
   background-color: var(--white);
   padding: 30px;
   border-radius: 20px;
   border: 1px solid #cccccc;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   height: 100%;
   transition: var(--transition);
   cursor: pointer;
}

.price-card h3 {
   font-weight: 600;
   margin-bottom: 8px;
   color: var(--primery);
}

.price-card .head-card {
   margin-bottom: 25px;
}

.price-card h2 {
   font-size: 36px;
   font-weight: 700;
}

.price-card h2 span {
   font-size: 17px;
   font-weight: 500;
   color: var(--gray);
}

.price-card p {
   font-size: 16px;
   font-weight: 500;
}

.list-cust ul {
   list-style: none;
}

.list-cust ul li {
   display: flex;
   align-items: start;
   gap: 10px;
   margin-bottom: 14px;
   color: var(--secondary);
}

.list-cust ul li i {
   font-size: 19px;
   margin-top: 3px;
   display: inline-flex;
   color: #23b26d;
}

.mb-6 {
   margin-bottom: 60px;
}

.small-wrapper {
   max-width: 960px;
   margin: auto;
}

.prim-card :is(ul li i, ul li, p, h3, h2, span) {
   color: var(--white);
}

.prim-card {
   background-color: var(--primery);
   border-color: var(--primery);
   box-shadow: var(--shadow-card-prim);
}

.price-card .head-card h3 {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.price-card .head-card h3 span {
   font-size: 14px;
   color: var(--white);
   background-color: var(--primery);
   border-radius: 10px;
   padding: 1px 10px 2px;
   display: inline-flex;
   justify-content: center;
   align-items: center;
}

.price-card.prim-card .head-card h3 span {
   color: var(--primery);
   background-color: var(--white);
}


.prim-card .site-btn {
   background-color: white;
   color: var(--primery);
}

.prim-card .site-btn:hover {
   color: var(--white);
}

.prim-card .site-btn::before {
   background-color: var(--secondary);
}

.select-btns {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
}

.input-radio label {
   border-radius: 60px;
   padding: 10px 14px;
   border: 1px solid #c7c7c7;
   display: inline-flex;
   align-items: center;
   gap: 12px;
   font-size: 20px;
   color: var(--secondary);
   font-weight: 500;
   cursor: pointer;
}

.input-radio input:checked+label {
   background-color: var(--primery);
   border-color: var(--primery);
   color: var(--white);
}

.input-radio input:checked+label .cust-icon {
   background-image: url(../images/check-circle-icon.svg);
}

.cust-icon {
   border-radius: 50%;
   min-width: 30px;
   aspect-ratio: 1;
   display: inline-flex;
   background-image: url(../images/circle-blue.svg);
   background-size: 100% 100%;
   background-position: center center;
}

.bg-card-2 {
   background-color: var(--white);
   border-radius: 16px;
   box-shadow: 0px 4.88px 24.4px 0px rgba(54, 135, 242, 0.1);
   padding: 28px;
   border: 1px solid rgba(54, 135, 242, 0.2);
}

.atm-card .title h4 {
   color: rgba(19, 79, 201, 0.8);
   font-size: 27px;
   font-weight: 600;
}

.atm-card .card-chip {
   margin: 35px 0;
}

.atm-card .card-chip img {
   width: 55px;
}

.atm-card .inner-text span.sub-text {
   display: flex;
   flex-direction: column;
}

.atm-card .inner-text span.sub-text b {
   font-weight: 400;
   font-size: 12px;
}

.atm-card .inner-text {
   margin-bottom: 30px;
}

.valids span {
   color: rgba(19, 79, 201, 0.8);
   font-size: 15px;
   font-weight: 600;
}

.valids span strong {
   color: rgba(19, 79, 201, 0.8);
   font-size: 8px;
   font-weight: 400;
   margin-right: 8px;
   line-height: 1.1;
}

.atm-card .inner-text span {
   color: rgba(19, 79, 201, 0.8);
   font-weight: 700;
   font-size: 20px;
}

.payment-form {
   padding: 50px 0;
}

.payment-form :is(h1, h2) {
   font-size: 32px;
   font-weight: 600;
   margin-bottom: 35px;
}

.cust-input-group {
   border: var(--border);
   border-radius: 30px;
   padding: 0 20px;
}

.cust-input-group .input-group-text {
   border: 0;
   background-color: transparent;
   color: var(--primery);
   font-size: 20px;
   padding: 0 10px 0 0;
}

.cust-input-group .form-control {
   height: 50px;
   box-shadow: unset !important;
   padding: 0;
   border: unset;
}

.payment-form .cust-input-group {
   margin-bottom: 30px;
}

.form-control:disabled {
   background-color: #ecf1fb;
   border-radius: 4px;
   border: unset;
   height: 50px;
}

.atm-card .inner-text>label,
.atm-card .inner-text>label span {
   color: rgba(19, 79, 201, 0.8);
   font-size: 16px;
   font-weight: 600;
}

.payment-method .nav-pills .nav-link {
   border-radius: 32px;
   background-color: transparent;
   border: var(--border);
   color: var(--secondary);
   font-size: 20px;
   font-weight: 500;
   display: inline-flex;
   justify-content: center;
   gap: 10px;
   align-items: center;
   padding: 11px 20px;
}

.payment-method .nav-pills .nav-link i {
   font-size: 23px;
}

.payment-method .nav-pills .nav-link.active {
   background-color: #d7e8ff;
   border-color: #d7e8ff;
}

.payment-method .nav-pills .nav-link.active i {
   color: var(--primery);
}

.field-form label {
   color: var(--secondary);
   font-size: 20px;
   font-weight: 500;
}

/* header  */

header {
   padding: 25px 0;
   position: fixed;
   z-index: 1050;
   top: 0;
   left: 0;
   width: 100%;
   background-color: var(--primery);
}

.dropdown-menu.show {
   z-index: 1051;
}

.header-shadow {
   box-shadow: -6px 5px 30px -9px rgba(54, 135, 242, 0.4);
   background-color: var(--white);
}

.navbar-nav {
   gap: 22px;
}

header .nav-item .nav-link {
   color: var(--lightBlack);
   font-size: 14px;
}

header .navbar-toggler {
   padding: 0;
   margin: 0;
   border: unset;
   box-shadow: unset !important;
}

header .navbar-toggler .navbar-toggler-icon {
   background-image: url(../images/hamburger.svg);
   background-size: 100% 100%;
   transition: 0.15s all;
}

header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
   background-image: url(../images/closs-icon.svg);
}

.logo-img {
   background-image: url(../images/logo.svg);
   background-size: 100% 100%;
   background-repeat: no-repeat;
   min-width: 190px;
   height: 42px;
}

header.header-shadow .logo-img {
   background-image: url(../images/logo-blue.svg);
}

header.header-shadow .btn-3 {
   border: 1px solid var(--secondary);
}

header .site-btn {
   text-transform: capitalize;
}

/* banner  */
.banner {
   padding: 160px 0 100px;
}

.white-text :is(h1, h2, h3, h4, h5, h6, p, span, li) {
   color: var(--white);
}

.banner h4 {
   margin-bottom: 10px;
}

.banner .text p {
   margin: 20px 0 40px;
}

.banner .text {
   max-width: 528px;
}

.pay-discription span {
   display: flex;
   align-items: center;
   gap: 6px;
}

.pay-discription {
   flex-wrap: wrap;
}

.banner .cust-input {
   padding-right: 130px;
}

/* com-web-sec */
.mail-box {
   position: relative;
}

.cust-input {
   border-radius: 50px;
   height: 50px;
   padding-left: 20px;
   border-color: #d2d2d2;
   color: var(--gray);
}

.cust-input::placeholder {
   color: var(--gray);
}

.cust-input.v2 {
   height: 44px;
   padding: 5px 16px;
   border-radius: 8px;
}

.cust-textarea {
   border-radius: 12px;
   height: unset;
   padding: 16px 20px;
   border-color: #d2d2d2;
   color: var(--gray);
}

.mail-box label {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   position: absolute;
   top: 0;
   bottom: 0;
   right: 5px;
   margin: auto;
   cursor: pointer;
}

.mail-box label .site-btn {
   padding: 8px 10px;
}

.img-card {
   box-shadow: 0px 0px 20px 0px rgba(30, 30, 30, 0.06);
   border-radius: 16px;
   background-color: var(--white);
   padding: 40px;
}

.img-card img {
   max-width: 220px;
   margin: auto;
}

.img-card h5 {
   font-size: 20px;
   color: var(--secondary);
   font-weight: 500;
   margin-top: 25px;
}

.static-cont-card {
   padding: 20px 24px;
   border-radius: 16px;
}

.static-cont-card h4 {
   margin: 15px 0 10px;
}

.static-cont-card h5 {
   font-weight: normal;
}

.find-card .card-head .text {
   margin: 20px 0;
}

.find-card .body-card {
   box-shadow: 0px 0px 20px 0px rgba(30, 30, 30, 0.06);
   border-radius: 16px;
   padding: 24px;
   margin-bottom: 30px;
}

.find-card .body-card p {
   font-size: 15px;
}

.find-card .body-card h3 {
   margin-bottom: 10px;
}

.find-card .body-card a {
   margin: 5px 0;
   display: inline-flex;
}

.find-card a {
   text-decoration: underline;
   font-weight: 500;
   color: var(--primery);
}

/* three-col-sec */
.static-card-v2 {
   text-align: center;
   box-shadow: var(--box-shadow-prim);
   border: unset;
   background-color: var(--white);
   height: 100%;
}

/* static-content-sec */
.static-content-sec .inner-btns {
   max-width: 260px;
}

.static-content-sec p {
   margin-top: 20px;
}

/* faqs-section */
.faqs-section .accordion-button::after {
   background-image: url(../images/plus-icon.svg);
   background-size: 1.2rem;
   width: 1.2rem;
   height: 1.2rem;
}

.faqs-section .accordion-button:not(.collapsed)::after {
   background-image: url(../images/minus-icon.svg);
}

.faqs-section .accordion-item {
   border: unset !important;
   border-radius: 12px;
   box-shadow: 0px 0px 20px 0px rgba(30, 30, 30, 0.06);
}

.faqs-section .accordion {
   display: flex;
   flex-direction: column;
   gap: 20px;
}

.accordion-button[aria-expanded="true"] {
   background-color: #e8f2ff !important;
}

.accordion-button:not(.collapsed) {
   border-radius: 12px 12px 0 0 !important;
   background-color: transparent;
   box-shadow: unset;
   padding-bottom: 10px !important;
}

.faqs-section .accordion-item .accordion-header .accordion-button {
   border-radius: 12px;
   font-size: 20px;
   font-weight: 700;
   color: #303030;
}

.faqs-section .accordion-item :is(.accordion-body, .accordion-button) {
   padding: 20px;
}

.accordion-item :is(.accordion-body, .accordion-button):focus {
   box-shadow: unset;
}

.faqs-section .accordion-body {
   padding: 0 20px 20px !important;
   margin-top: -1px;
   background-color: #e8f2ff;
   border-radius: 0 0 12px 12px;
}

.faqs-section .accordion-body p {
   padding-top: 0;
   color: #656565;
}

/* footer  */

footer {
   padding: 50px 0 40px;
}

footer .text :is(p, span) {
   font-size: 18px;
}

footer .text p {
   margin-top: 10px;
   font-weight: 400;
}

footer .logo img {
   max-width: 240px;
}

.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;
   background: #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: var(--secondary);
}

/* @mediaQuery  */
@media (max-width: 1199px) {

   h1,
   h2 {
      font-size: 40px;
   }

   p br,
   h2 br {
      display: none;
   }

   .static-card {
      padding: 18px;
   }

   .static-card h3 {
      font-size: 18px;
   }

   .static-card p {
      font-size: 14px;
   }

   .static-card.reviews .text-card p {
      font-size: 16px;
   }

   .user-profile img {
      width: 60px;
   }

   .user-profile h4 {
      font-size: 18px;
   }

   .pay-discription span {
      font-size: 14px;
   }
}

@media (max-width: 991px) {

   h1,
   h2 {
      font-size: 30px !important;
   }

   p {
      font-size: 14px;
   }

   header {
      padding: 18px 0;
   }

   .chain::before {
      display: none;
   }

   .static-card.reviews .text-card p {
      font-size: 14px;
   }

   .bottom-content .text p {
      font-size: 14px;
   }

   footer .text :is(p, span) {
      font-size: 14px;
   }

   footer p br {
      display: none;
   }

   .check-list ul li {
      margin-bottom: 10px;
   }

   .check-list ul li h4 {
      font-size: 20px;
   }

   .static-content-sec .inner-btns {
      width: 100%;
      max-width: 100%;
      display: flex;
      align-items: center;
      gap: 20px;
   }

   .static-content-sec .inner-btns .site-btn {
      margin: 0 !important;
   }

   .static-content-sec {
      text-align: center;
   }
}

@media (max-width: 767px) {
   p br {
      display: none;
   }

   .banner {
      padding: 100px 0 50px;
   }

   header {
      background-color: var(--white);
      padding: 10px 0;
   }

   .logo-img {
      background-image: url(../images/logo-blue.svg) !important;
   }

   header .navbar-toggler .navbar-toggler-icon {
      width: 20px;
      height: 20px;
   }

   header .btn-3 {
      border-color: var(--secondary);
   }

   .navbar-collapse {
      padding: 10px 16px;
      background-color: var(--white);
      position: absolute;
      z-index: 1050;
      top: 60px;
      width: 100%;
      left: 0;
   }

   .navbar {
      position: unset;
   }

   .site-btn {
      padding: 9px 15px;
      font-size: 14px;
   }

   .banner .text p {
      margin: 10px 0 20px;
   }

   .static-card h3 {
      margin: 14px 0 6px;
   }

   .static-card.style-2 .avtar-img {
      width: 60px;
   }

   .static-card.style-2 .avtar-img img {
      max-width: 30px;
   }

   .img-white-bg {
      margin: auto;
   }

   .qr-section .text p {
      margin: 12px 0 20px;
   }

   .vot-section h2 {
      font-size: 25px !important;
   }

   .choices {
      flex-direction: column;
   }

   .choices button {
      padding: 10px;
   }

   .bottom-content {
      flex-direction: column;
      text-align: center;
   }

   .m-top {
      margin: 0;
   }

   .bg-primery-before::before {
      height: 100%;
   }

   footer {
      padding: 50px 0 20px;
   }

   footer .text-1 {
      gap: 3px;
   }

   footer .text-1 h3 {
      margin-bottom: 5px;
   }

   footer .text :is(p, span) {
      font-size: 16px;
   }

   .padding-100 {
      padding: 50px 0;
   }

   .navbar-collapse .btns {
      flex-direction: column;
      align-items: start;
   }

   .large-btn {
      padding: 12px 18px;
   }

   .choices button i {
      font-size: 22px;
   }

   .choices button,
   .total p {
      font-size: 16px;
   }

   .persentage span {
      font-size: 16px;
   }

   .bg-style-white {
      padding: 12px;
   }

   .logo-img {
      min-width: 150px;
   }

   /* faq section  */
   .faqs-section .accordion-item .accordion-header .accordion-button {
      font-size: 14px;
      gap: 10px;
      align-items: start;
   }

   footer .newsletter {
      margin-top: 10px;
   }

   footer .logo img {
      max-width: 200px;
   }

   .copy-right {
      margin-top: 40px;
   }

   .copy-right a span {
      width: 25px;
      height: 25px;
   }

   .copy-right a {
      font-size: 14px;
   }

   .find-card .body-card p {
      font-size: 14px;
   }

   .find-card .body-card {
      padding: 15px;
   }

   .static-card .icon-content {
      margin-bottom: 15px;
   }

   .mb-6 {
      margin-bottom: 30px;
   }

   .copy-right a {
      text-align: start;
   }

   .payment-form {
      padding: 20px 0;
   }

   .bg-card-2 {
      padding: 15px;
      border-radius: 8px;
   }

   .select-btns .input-radio {
      width: 48%;
   }

   .input-radio label {
      font-size: 14px;
      width: 100%;
   }

   .cust-icon {
      min-width: 25px;
   }

   .atm-card .title h4 {
      font-size: 20px;
   }

   .atm-card .inner-text span {
      font-size: 16px;
   }

   .atm-card .card-chip {
      margin: 18px 0;
   }

   .atm-card .inner-text {
      margin-bottom: 30px;
   }

   .form-control:disabled,
   .cust-input,
   .cust-input-group .form-control {
      height: 40px;
   }

   .payment-form :is(h1, h2) {
      font-size: 25px !important;
      margin-bottom: 20px;
   }

   .payment-method .nav-pills .nav-link,
   .field-form label {
      font-size: 16px;
   }

   .field-form label {
      margin-bottom: 5px;
   }

   .payment-method .nav-pills .nav-link i {
      font-size: 16px;
   }

   .payment-method .nav-pills .nav-link {
      padding: 8px 20px;
   }
}