body {
  background: #ffffff;
  margin: 0;
  padding: 0;
  font-family: "Readex Pro", sans-serif;
  font-weight: 400;
  font-size:14px;
    line-height: 2em;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Readex Pro", sans-serif;
/*  font-weight: 700 !important;*/
  /*margin-bottom: 1.5vw;*/
  margin-bottom: 1em;
}
.templates p {
  font-size: 14px;
}
.line {
  display: flex;
  align-items: center;
  gap: 20px;
}
#contactform_error {
  display: block;
  margin: 15px 0;
  color: red;
}
#customform_error{
    display: block;
  margin: 15px 0;
  color: red;
}
.line:before,
.line:after {
  content: "";
  height: 1px;
  background: #cccccc;
  flex: 1 1;
}

.hero-banner {
    position: relative;
    width: 100%;
    background: url(home-img2.jpg) center center / cover;
    isolation: isolate;
    min-height: 410px;
    display: grid;
    place-content: center;
}
.hero-banner:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    mix-blend-mode: multiply;
    inset: 0px;
    background: #000000;
    z-index:-1;
    opacity: 0.3;
}
.logo {
    max-height: clamp(30px, 5vw, 60px);
/*    margin-block: clamp(10px, 1.5vw, 30px);*/
}
#preloader {
  background: #ffffff url(loading.gif) no-repeat center center;
  background-size: 5%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}
.img-box {
  position: relative;
  font-weight:400;
  padding: clamp(10px, 2vw, 30px);
/*  text-align: center;*/
}
.img-box a {
  color: #ffffff;
  text-decoration: none;
  display: block;
}
.img-box a > img {
aspect-ratio: 16 / 10;
    width: 100%;
  object-fit: cover;
  object-position: top;
  margin-top: 10px;
  border-radius: clamp(10px, 3vw, 20px);
  box-shadow: 0 0 20px rgb(0 0 0 / 20%);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.img-box:hover img {
  margin-top: 0px;
}
.img-box:before {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0 0 100px 0;
    background: #F8F3F4;
  transform: translate3d(0px, 0px, 0);
  filter: blur(0px);
  transition: opacity 0.3s;
  border-radius: clamp(10px, 3vw, 20px);
}

.img-box::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  border-radius: inherit;
}
.img-box ul{min-height: 130px;}

.button-box {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 20px;
margin-bottom: 20px;
}

.modal {
    background: rgb(12 25 40 / 80%);
}
.modal-dialog {
  max-width: 700px;
}
.fancybox-content {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
}
.modal-content {
  border-radius: 30px;
/*
  text-align: center;
  background: url("template-bg.jpg") no-repeat;
  background-size: 100%;
*/
}
.f-modal .modal-content img {

  border-radius: clamp(10px, 3vw, 20px);
  box-shadow: 0 0 16px rgb(0 0 0 / 15%);
  margin-bottom: 20px;
}
.modal-body {
  padding: 4vw;
}

.custom-img {
  max-width: 200px;
  position: relative;
  isolation: isolate;
  padding-left: 30px;
  padding-top: 30px;
}
.custom-img img {
  aspect-ratio: 3/4;
  height: 230px;
  width: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: clamp(10px, 3vw, 20px);
  box-shadow: 0 0 20px rgb(0 0 0 / 20%);
}
.custom-img:before {
  content: "";
  position: absolute;
  inset: 0 clamp(10px, 3vw, 20px) clamp(10px, 3vw, 20px) 0;
  background: linear-gradient(to top left, #f8acff 0%, #696eff 154%);
  border-radius: clamp(10px, 3vw, 20px);
  z-index: -1;
  opacity: 0.5;
}
.btn-close {
  position: absolute;
  right: 15px;
  top: 20px;
  background-size: 40%;
  border: 1px solid #7f7f7f;
  border-radius: 100%;
  padding: 8px;
  z-index: 1;
}
#contactform_success1 {
  display: grid;
  place-content: center;
  padding-top: 40px;
}
#customform_success1 {
  display: grid;
  place-content: center;
  padding-top: 40px;
}
#okButton {
  margin: 21px auto;
}
.btn {
  min-width: 120px;
  border-radius: 100px;
  padding: 10px 20px;
box-shadow: 0 10px 15px rgb(0 0 0 / 10%);
}
.btn-success {
  background: #41c445;
  border-color: #41c445;
}
.btn-success:hover {
  background: #28ad2c;
  border-color: #28ad2c;
}
.btn-primary {
  background: #ffc000;
  border-color: #ffc000;
color: #000000;
  
}
.btn-primary:hover {
    color: #FFFFFF;
  background: #212121;
  border-color: #212121;
}
.btn-danger {
  background: #fd4a36;
  border-color: #fd4a36;
}
.btn-danger:hover {
  background: #e02c38;
  border-color: #e02c38;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  text-transform: capitalize;
}

.text-danger {
  color: #fd4a36 !important;
}
.text-success {
  color: #52c453 !important;
}
.text-anim {
  color: #696eff;
  -webkit-animation: changeColor 80s ease-in infinite;
  animation: changeColor 5s ease-in infinite;
}
@-webkit-keyframes changeColor {
  0% {
    color: #696eff;
  }
  50% {
    color: #f8acff;
  }
  100% {
    color: #696eff;
  }
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  border: 1px solid #000000;
  -webkit-text-fill-color: #000000;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}
/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
.form-check{line-height: 1.5em;    font-size: 16px;}
.form-floating{line-height: normal;}
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3rem + 2px);
}
.form-floating > label {
  padding: 1rem 0.75rem;
}
.form-floating > .form-select {
  padding-top: 1rem;
  padding-bottom: 0;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
}
.form-floating > label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

input#phone+label:after, input#name+label:after, input#email_id+label:after,input#card_number+label:after, input#expire_date+label:after, input#cvv+label:after {
    content: "*";
    color: red;
    font-size: 1.3em;
    vertical-align: middle;
    margin-left: 3px;
}

.card {
  border-radius: clamp(20px, 3vw, 40px);
  border: 0;
}
/* .card p{margin-bottom:0;} */
.card .card-body {
  padding: 5vw;
}

.cards-img{
    position: relative;
}
.cards-img .cards{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    gap: 5px;
}

.bg-dark{
    background: #0c1928!important;
}
.pattern {
  --s: 60px; /* control the size */
    --c: #0c1928;
    --_g: conic-gradient(#0c1928 25%, #0000 0) 0 0;
    background: var(--_g) / calc(2 * var(--s)) calc(var(--s) / 9.5), var(--_g) / calc(var(--s) / 9.5) calc(2 * var(--s)), repeating-conic-gradient(#0000 0 25%, #0c1928 0 50%) var(--s) 0 / calc(2 * var(--s)) calc(2 * var(--s)), radial-gradient(50% 50%, #122233 98%, #0c1928) 0 0 / var(--s) var(--s);
}

.thankyou-box {
  max-width: 600px;
  width: 100%;
  position: relative;
  margin: 0 auto 2rem;
  background: url(template-bg.jpg) no-repeat;
  background-size: cover;
  display: none;
  z-index: 2;
}

.list{
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: normal;
    display: inline-block;
}
.list li {
    display: flex;
    column-gap: 10px;
	 margin-bottom:10px;
 /*   font-weight: 700; */
}
.list li:before{
    font-family: 'Line Awesome Free';
    content: '\f00c';
    font-weight: 700;
}
.list h6{font-weight:700;margin-bottom: 0; font-size: 14px;}

.custom-list {
    list-style-type: none;
    counter-reset: custom-counter;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    text-align: left;
}

.custom-list li {
    counter-increment: custom-counter;
    padding: clamp(30px, 4vw, 50px);
    border-radius: 15px;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
/*
.custom-list li:nth-child(1), .custom-list li:nth-child(1):after{
    background: #ebeeff;
}
.custom-list li:nth-child(2), .custom-list li:nth-child(2):after{
    background: #faebff;
}
.custom-list li:nth-child(3), .custom-list li:nth-child(3):after{
    background: #ffc7f2;
}
.custom-list li:nth-child(4), .custom-list li:nth-child(4):after{
    background: #d1cbff;
}
*/
.custom-list li:nth-child(1), .custom-list li:nth-child(1):after{
    background: #e9f2ff;
}
.custom-list li:nth-child(2), .custom-list li:nth-child(2):after{
    background: #cfe3ff;
}
.custom-list li:nth-child(3), .custom-list li:nth-child(3):after{
    background: #96c1f8;
}
.custom-list li:nth-child(4), .custom-list li:nth-child(4):after{
    background: #4780cc;
}
.custom-list li::before {
    content: counter(custom-counter);
    font-size: 3.5em;
    line-height: 50px;
}
.custom-list li::after {
    content: '\f30b';
    font-family: 'Line Awesome Free';
    font-weight: 700;
    font-size: 1.5em;
    position: absolute;
    top: 50%;
    transform: translate(50%, -50%);
    right: 0;
    aspect-ratio: 1;
    padding: 10px;
    display: grid;
    place-content: center;
    line-height: normal;
    border-radius: 50%;
    z-index: 1;
}
.custom-list li:last-child::after {display: none;}

@media (max-width: 991.98px) {
    #preloader {background-size: 15%;}
    .custom-list {grid-template-columns: 1fr 1fr; gap:15px;}
    .custom-list li:nth-child(2)::after {display: none;}
}

/* Google Calls pricing cards */
.google-calls-pricing {
  max-width: 1070px;
  margin-inline: auto;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  line-height: 1.5;
}

.pricing-card .card-body {
  padding: clamp(20px, 4vw, 30px);
  display: flex;
  flex-direction: column;
  /*flex: 1 1 auto;*/
  flex: 0;
}

.pricing-card .card-footer {
  background: transparent;
  border-top: 1px solid #e5e5e5;
  padding: clamp(20px, 3vw, 28px) clamp(20px, 4vw, 30px);
}

.pricing-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.pricing-card__title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.pricing-card__badge {
  flex-shrink: 0;
  display: grid;
  place-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #00e5ff;
  color: #000000;
  font-size: 1.1rem;
}

.pricing-card__desc {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pricing-card__features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1 1 auto;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.pricing-card__features li:last-child {
  margin-bottom: 0;
}

.pricing-card__features li::before {
  font-family: "Line Awesome Free";
  content: "\f00c";
  font-weight: 700;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-content: center;
  font-size: 11px;
  border-radius: 50%;
  margin-top: 1px;
}

.pricing-card__feature-content {
  flex: 1;
  min-width: 0;
}

.pricing-card__sub-features {
  list-style-type: disc;
  margin: 6px 0 0;
  padding-left: 1.25rem;
}

.pricing-card__sub-features li {
  display: list-item;
  margin-bottom: 4px;
  font-size: 14px;
}

.pricing-card__sub-features li:last-child {
  margin-bottom: 0;
}

.pricing-card__sub-features li::before,
.pricing-card--light .pricing-card__features .pricing-card__sub-features li::before,
.pricing-card--pro .pricing-card__features .pricing-card__sub-features li::before {
  content: none;
  display: none;
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
}

.pricing-card__price {
  margin: 0;
  padding-top: 0.5rem;
}

.pricing-card__amount {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
}

.pricing-card__period {
  font-size: 1rem;
  font-weight: 400;
  color: #9ca3af;
  margin-left: 4px;
}

.pricing-card--light {
  background: #ffffff;
  color: #000000;
}

.pricing-card--light .pricing-card__features li::before {
  border: 2px solid #000000;
  color: #000000;
  background: transparent;
}

.pricing-card--pro {
  background: linear-gradient(180deg, #000000 0%, #0c1928 55%, #163a5c 100%);
  color: #ffffff;
}

.pricing-card--pro .pricing-card__desc {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-card--pro .pricing-card__features li::before {
  background: #00e5ff;
  color: #000000;
  border: 0;
}

.pricing-card--pro .pricing-card__period {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card--pro .card-footer {
  border-top-color: #00e5ff;
}

.pricing-card__footer--pro {
  background: linear-gradient(90deg, #00e5ff 0%, #00b4d8 100%);
}

.pricing-card__preview {
  margin-top: 1rem;
}

.pricing-card__preview img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: clamp(10px, 3vw, 20px);
  box-shadow: 0 0 20px rgb(0 0 0 / 20%);
}

.pricing-card__select {
  padding-top: clamp(16px, 2.5vw, 24px);
  padding-bottom: clamp(20px, 3vw, 28px);
}

.pricing-card__package-option {
  width: 100%;
}

.pricing-card__package-children {
  padding: 0 0 1rem 1.5rem;
}


.pricing-card--light .pricing-card__package-children .form-check-label {
  color: #1f2937;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.pricing-card--pro .pricing-card__footer {
  border-top-color: rgba(0, 229, 255, 0.45);
}

.pricing-card__footer--pro {
  background: rgba(0, 0, 0, 0.3);
}

.pricing-card--light:has(.package-plan-radio:checked) {
  box-shadow: 0 0 0 2px #000000, 0 0.5rem 1.5rem rgb(0 0 0 / 12%);
}

.pricing-card--pro:has(.package-plan-radio:checked) {
  box-shadow: 0 0 0 2px #00e5ff, 0 0.5rem 1.5rem rgb(0 229 255 / 15%);
}

.pricing-card--pro .pricing-card__package-children .form-check-label {
  color: #cbcfd4;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.pricing-card__package-children .form-check {
  margin-bottom: 0.75rem;
  padding-left: 0.15rem;
}

.pricing-card__package-children .form-check:last-child {
  margin-bottom: 0;
}

.pricing-card__cta {
  display: inline-block;
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.55rem 1rem;
  border: 1px solid #000000;
  border-radius: 100px;
  background: transparent;
  color: #000000;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pricing-card__cta:hover,
.pricing-card__cta:focus {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
  outline: none;
}

.pricing-card__cta--pro {
  border-color: #00e5ff;
  color: #00e5ff;
}

.pricing-card__cta--pro:hover,
.pricing-card__cta--pro:focus {
  background: #00e5ff;
  border-color: #00e5ff;
  color: #000000;
}