* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
body {
  font-family: "Manrope", serif;
}
.container {
  width: calc(100% - 10rem);
  margin: auto;
}
@media (max-width: 1280px) {
  .container {
    width: calc(100% - 6rem);
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .container {
    width: calc(100% - 4rem);
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .container {
    width: calc(100% - 4rem);
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    width: calc(100% - 2rem);
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .container {
    width: calc(100% - 0rem);
    max-width: 100%;
  }
}
.header {
  padding: 10px 0px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
}
.header img {
  height: 65px;
}
.banner_section {
  padding-top: 85px;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.banner_img img {
  width: 100%;
}
.form_bg {
  visibility: visible;
}
.form_bg img {
  position: absolute;
  top: -10px;
  right: 0px;
  z-index: -1;
  width: 47%;
}
/* Container to center the form */
.form-container {
  max-width: 80%;
  width: 100%;
  height: fit-content;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

/* Heading style */
.form-container h2 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #004e9f;
  font-weight: 600;
  text-align: center;
}

/* Label styling */
label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #212121;
  font-size: 15px;
}

/* Input field styling */
.form-input {
  width: 100%;
  padding: 10px 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
}

/* Submit button styling */
.submit-button {
  width: fit-content;
  padding: 10px 60px;
  margin: auto;
  font-size: 16px;
  background-color: #004e9f;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* Hover effect for the submit button */
.submit-button:hover {
  background-color: #004e9f;
}

/* Banner section start */
.banner_content_section {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  margin: auto;
  height: auto;
}
.banner_content_section .left {
  width: 50%;
  display: flex;
  align-items: center;
}
.banner_listing {
  display: flex;
}
.banner_listing ul:nth-child(1) {
  padding-left: 0px;
}
/* .banner_content_section ul{
  column-count: 2;
} */
.banner_content_section .left .content h2 {
  font-size: 36px;
  font-weight: 500;
}
.banner_content_section .left .content h2 span {
  font-weight: 700;
  color: #0082c8;
}
.banner_content_section .left .content h4 {
  padding: 20px 0px;
  line-height: 1.6;
  font-size: 19px;
  font-weight: 500;
}
.banner_content_section .left .content h4 span {
  font-weight: 700;
}
.banner_content_section .left .content ul li {
  font-size: 17px;
  padding: 5px 0px;
  color: #004e9f;
  font-weight: 600;
  position: relative;
  padding-left: 25px;
  align-items: start;
  display: flex;
}
.banner_content_section .left .content ul li::before {
  content: "";
  background-image: url(./images/check.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 35%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
}
.banner_content_section .right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
/* Banner section end */

.buybtn {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
}
/* Advanced Section Start */
.advanced_section .content {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  margin: auto;
}
.advanced_section .content .box {
  width: 25%;
}
.advanced_section .content .item {
  padding: 40px 30px 40px 30px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #0f0f0f12;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  position: relative;
  text-align: center;
  height: 100%;
}
.advanced_section .content .item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 0%;
  z-index: -1;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s ease-in-out;
  opacity: 1;
  background-color: #004e9f;
}
.advanced_section .content .item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 0%;
  z-index: -1;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s ease-in-out;
  opacity: 1;
  background-color: #004e9f;
}
.advanced_section .content .item:hover:before,
.advanced_section .content .item:hover::after {
  height: 50%;
}
.section {
  padding: 60px 0px;
}
.section_heading {
  text-align: center;
  margin-bottom: 40px;
}
.section_heading p {
  font-size: 22px;
  font-weight: 500;
}
.section_heading h2 {
  font-weight: 700;
  color: #004e9f;
  font-size: 35px;
}
.advanced_section .content .item .box-icon {
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-size: 55px;
  color: var(--convis-primary-color);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}
.advanced_section .content .item .box-icon img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  object-position: center;
}
.advanced_section .content .item .box-title h4 {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin: 10px 0 15px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: #004e9f;
}
.advanced_section .content .item .box-title p {
  margin: 0;
  display: -ms-flexbox;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.advanced_section .content .item:hover .box-title p,
.advanced_section .content .item:hover .box-title h4 {
  color: #fff;
}
.advanced_section .content .item .circle-shape {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 270px;
  height: 270px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  opacity: 0;
  visibility: hidden;
}
.advanced_section .content .item .circle-shape {
  background-color: #ffffff14;
}
.advanced_section .content .item .circle-shape,
.advanced_section .content .item .circle-shape::before,
.advanced_section .content .item .circle-shape::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
}
.advanced_section .content .item .circle-shape::before {
  width: calc(270px - 60px);
  height: calc(270px - 60px);
}
.advanced_section .content .item .circle-shape::after {
  width: calc(270px - 30px);
  height: calc(270px - 30px);
}
/* Advanced Section End */

/* Boast Section Start */
.boast_section {
  background-color: #1a1a1a;
}
.boast_content {
  display: flex;
  width: 100%;
  margin: auto;
  flex-wrap: wrap;
  padding: 60px 0px;
}
.boast_content .box {
  width: 33.33%;
}
.boast_content .box .item {
  padding: 25px 25px 20px;
  background-color: #fff;
  display: flex;
  align-items: center;
  height: 100%;
  border-radius: 4px;
}
.boast_content .box .item .left {
  padding-right: 25px;
}
.boast_content .box .item .left img {
  width: 45px;
  height: 45px;
}
.boast_content .box .item .right h4 {
  font-size: 20px;
  color: #004e9f;
  font-weight: 700;
  border-bottom: 1px solid #bdbdbd;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
/* Boast Section End */

.graphic_section img {
  width: 100%;
}

/* Pricing Section Start */

.pricing-container {
  display: flex;
  width: 100%;
  padding: 20px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.pricing-container .content {
  width: 25%;
  padding: 0px 15px;
}

.pricing-card {
  background-color: #ffffff;
  /* padding: 20px; */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: -115%;
  left: -50%;
  width: 300%;
  height: 300%;
  background: rgba(74, 44, 195, 0.1);
  transition: transform 0.5s ease;
  transform: rotate(45deg) scale(0);
  z-index: -1;
}

.pricing-card:hover::before {
  transform: rotate(45deg) scale(1);
}

.pricing-card h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
  background: #94c7e5;
  padding: 20px;
}
.pricing-container .content:nth-child(1) .pricing-card h3 {
  background: #2daff4;
}
.pricing-container .content:nth-child(2) .pricing-card h3 {
  background: #8a74b9;
}
.pricing-container .content:nth-child(3) .pricing-card h3 {
  background: #4cb992;
}
.pricing-container .content:nth-child(4) .pricing-card h3 {
  background: #f5a623;
}

.price {
  font-size: 48px;
  color: #1d71b7;
  margin: 15px 0;
  font-weight:700;
}


.price span {
  font-size: 0.5em;
  color: #1d71b7;
}

.pricing-container ul {
  list-style: disc;
  padding: 0 15px;
  color: #666;
  text-align: left;
  margin: 0px 15px;
  padding-bottom: 30px;
}

.pricing-container ul li {
  margin: 10px 0;
}

.pricing-container button {
  background-color: #004e9f;
  color: #ffffff;
  border: none;
  padding: 10px 25px;
  border-radius: 15px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 20px;
}

.pricing-container button:hover {
  background-color: #004e9f;
}

/* Pricing Section End */

/* Call Back Section Start */
.callback_section {
  /* background-color: #fff;
  box-shadow: 1px 1px 7px #d1d1d1;
  padding: 30px 0px 20px;
  border-radius: 7px; */
  width: 100%;
  margin: auto;
  padding-top: 60px;
}
.callback_section button {
  border: none;
}
.callback_section button a {
  display: inline-block;
  width: 100%;
  padding: 15px 20px;
  font-size: 1rem;
  color: white;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.callback_section button a.ripple {
  background-color: #004e9f;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.callback_section button a.ripple::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s, opacity 1s;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.callback_section button a.ripple:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
}
/* Call Back Section End */

.footer_section {
  background-color: #0a111a;
  /* margin-top: 70px; */
}
.footer_section .main {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 15px 20px;
  margin-top: 10px;
  border-top: 1px solid gray;
}
.footer_section .main .copiright p,
.footer_section .main a {
  color: #fff;
  margin: 0px;
  text-decoration: none;
}
.footer_section .main .copiright p {
  font-size: 13px;
}

.contact_address {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  align-items: center;
  color: #fff;
}
.contact_address .left {
  display: flex;
  flex-direction: column;
}
.contact_address .left p {
  font-size: 19px;
}
.contact_address .left span {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.contact_address .left img {
  width: 20px;
  margin-right: 5px;
}
.contact_address .left a {
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  transition: 0.3s ease-in-out;
}
.contact_address .left a:hover {
  color: gray;
}
.contact_address .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact_address .right ul {
  display: flex;
}
.contact_address .right .title {
  font-size: 19px;
  font-weight: 400;
  padding-bottom: 7px;
  color: #fff;
}
.contact_address .right ul li {
  list-style: none;
  margin: 10px;
}
.contact_address .right ul li img {
  width: 29px;
  filter: invert(1);
}

.footer_top {
  background: #0a111a;
  margin-top: 50px;
}

.call-icon {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #44bd32;
  z-index: 999;
  border-radius: 50%;
  box-shadow: 0px 0px 10px #44bd32;
}
.call-icon img {
  width: 100%;
  padding: 10px;
}

/* Navigation Call section start */

.call_nav_btn .caller {
  width: 10rem;
  height: 40px;
  padding: 0rem 0 0 0;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  border: 2px solid #004e9f;
  overflow: hidden;
  cursor: pointer;
}
.call_nav_btn .text {
  z-index: 0;
  padding-right: 0.5rem;
}
.call_nav_btn .icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 2rem;
  background: #004e9f;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 2;
  cursor: pointer;
  transition: right 1s 0.2s, transform 1s 0.2s;
}
.call_nav_btn .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}
.call_nav_btn .number {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  position: absolute;
  right: calc(-100% + 2rem);
  padding-left: 1rem;
  box-sizing: border-box;
  top: 0;
  background: #004e9f;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: right 1s 0.2s;
}

.call_nav_btn .text {
  text-decoration: none;
  font-size: 15px;
  color: #004e9f;
  font-weight: 600;
}

.call_nav_btn {
  color: white;
  text-decoration: none;
}

.call_nav_btn .caller:hover .icon {
  right: calc(100% - 2rem);
  transform: rotatez(100deg);
  transition: right 1s, transform 1s;
}

.call_nav_btn .caller:hover .number {
  right: 0;
  transition: right 1s;
}
.nav_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mob_call_btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: #004e9f;
  padding: 16px 0px;
  text-align: center;
}
.mob_call_btn a {
  color: #fff;
  font-size: 19px;
font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.mob_call_btn a img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.mob_call_btn{
  display: none;
}
sup{
  color: red;
  font-size: 16px;
  top: -.2rem;
}
/* Navigation Call section end */

/* thank you section start */

.thank-u-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80vh;
  text-align: center;
}

.thank-u-content h2 {
  font-size: 24px;
  color: #004e9f;
  font-weight: 500;
  margin-bottom: 10px;
}

.thank-u-content .thank-p {
  margin: 0px;
}

.thank-u-content a {
  background-color: #004e9f;
  color: #fff;
  padding: 10px 50px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid #004e9f;
  text-decoration: none;
  transition: background-color, 0.3s ease-in-out;
}

.thank-u-content a:hover {
  background-color: #fff;
  color: #004e9f;
  font-weight: 600;
}
.thank-u-content p{
  font-size: 18px;
}

.currency-font{
    
    font-size: 28px;
}
/* thank you section end */


/* Pricing Tab Ribbon Start */

.ribbon {
  margin: 0;
  background: rebeccapurple;
  color:white;
  padding:0.4em 0;
  position: absolute;
  top:0;
  right:0;
  transform: translateX(30%) translateY(0%) rotate(45deg);
  transform-origin: top left;
  font-size:12px;
}
.ribbon:before,
.ribbon:after {
  content: '';
  position: absolute;
  top:0;
  margin: 0 -1px; /* tweak */
  width: 100%;
  height: 100%;
  background: rebeccapurple;
}
.ribbon:before {
  right:100%;
}

.ribbon:after {
  left:100%;
}

/* Pricing Tab Ribbon end */

.app-title{
    padding:10px 10px;
    font-size:16px;
    font-weight:700;
}

.img-icons{
    padding:10px 15px 20px;
}
.services-img-icons{
    padding:10px 15px 30px;
}

#form_section{
scroll-margin-top: 10rem;
}

/* @media Query Section Start  */
@media only screen and (max-width: 1380px) {
  .form-container {
    max-width: 90%;
  }
}
@media only screen and (max-width: 1280px) {
  .advanced_section .content .box {
    width: 50%;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .form-container {
    max-width: 100%;
  }
  .boast_content .box .item {
    padding: 25px 25px 3px;
    background-color: #fff;
    display: flex;
    align-items: self-start;
    height: 100%;
    border-radius: 4px;
    flex-direction: column;
  }
  .boast_content .box .item .left {
    padding-bottom: 25px;
  }
}
@media only screen and (max-width: 1024px) {
  .pricing-container .content {
    width: 50%;
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 992px) {
  .banner_content_section .right {
    width: 100%;
  }
  .banner_content_section .left {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .banner_content_section {
    height: auto;
  }
  .form_bg img {
    position: absolute;
    right: 0px;
    z-index: -1;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .boast_content .box {
    width: 100%;
    margin-bottom: 20px;
  }
  .pricing-container .content {
    width: 100%;
    padding: 0px 15px;
    margin-bottom: 50px;
  }
  .mob-pb-0 {
    padding-bottom: 0px;
  }
  .form_bg img {
    margin-top: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .advanced_section .content .box {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer_section .main .copiright p,
  .footer_section .main a {
    font-size: 14px;
  }
  .contact_address {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact_address .right {
    align-items: start;
    padding-top: 20px;
  }
  .contact_address .right ul {
    padding: 0px;
    margin: 0px;
  }
  .banner_listing {
    display: flex;
    flex-wrap: wrap;
  }
  .banner_listing ul {
    padding-left: 0px;
  }
  .banner_listing ul:nth-child(1) {
    margin-bottom: 0px;
  }
  .call_nav_btn{
    display: none;
  }
  .mob_call_btn{
    display: block;
  }
}
/* @media Query Section End */
