/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #222222;
  text-decoration: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

#homebg {
  height: 80vh;
  padding-top: 200px;
}

#home-btns button {
  background-color: #f58634;
  border-radius: 20px;
}

#home-btns button a {
  font-size: 1rem;
  color: white;
  padding: 10px;
}


#qr-btn button {
  background-color: #ed3c0d;
  border-radius: 20px;
}

#qr-btn button a {
  font-size: 1rem;
  color: white;
  padding: 5px 40px;
}

#s-icons i {
  padding: 15px;
  color: #beaf5f;
}

#head-text {
  color: navy;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 2.5rem;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 3.2rem;
  bottom: 4.5rem;
  z-index: 996;
  background: #beaf5f;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #fc7c1f;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  padding: 0;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  position: relative;
  background-image: url(/assets/img/homebg.jpg);
  background-size: cover;
}

section#hero:before {
  position: absolute;
  inset: 0;
  content: "";
  background-color: #00000091;
}
section#hero {
  justify-content: center !important;
}

/*--------------------------------------------------------------
# Social Links
--------------------------------------------------------------*/

#nav-links li a {
  color: navy !important;
  font-size: 1.3rem;
}

#nav-links li a:hover {
  transition: 0.6s ease-in;
  color: #ed3c0d !important;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 20px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #beaf5f;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #2a2c39;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding-top: 80px;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #ef6603;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #ef6603;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ef6603;
}

.about .content .btn-learn-more:hover {
  background: #ef6603;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 1px solid #d4d6df;
  padding: 15px;
  transition: 0.3s;
  color: #2a2c39;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: #ef6603;
}

.features .nav-link.active {
  background: #ef6603;
  color: #fff;
  border-color: #ef6603;
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #ef6603;
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  /* background: #2a2c39; */
  background-image: url(https://cdn.pixabay.com/photo/2016/04/19/06/57/logo-1338108__340.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

.cta h3 {
  color: navy;
  font-size: 30px;
  font-weight: 700;
}

.cta p {
  color: #ef6603;
  font-weight: bold;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #303244;
}

.cta .cta-btn:hover {
  background: #ef6603;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  background: #0a3755cf;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #beaf5f;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .icon {
  margin: 0 auto 20px auto;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  transition: all 0.3s ease-in-out;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
  font-family: sans-serif;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #3498db;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials {
  background-image: url(/assets/img/testa.jpg);
  background-size: cover;
  background-repeat: no-repeat;

}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-color: white;
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fedac0;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ef6603;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ef6603;
}



.call-buton .cc-calto-action-ripple {
    z-index: 99999;
    position: fixed;
    right: 2.4rem;
    bottom: 14rem;
    background: red;
    width: 60px;
    height: 60px;
    padding: 1rem;
    border-radius: 100%;
    box-sizing: border-box;
    color: #ffffff;
    display: flex;
    justify-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    font-size: 26px;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #beaf5f;
  float: left;
  width: 44px;
  height: 44px;
  background: #0a3755;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2a2c39;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #555974;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}


.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

 button[type=submit] {
  background: #beaf5f;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  margin-top: 70px;
  background: #f7f8f9;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 992px) {
  .breadcrumbs ol {
    margin-top: 10px;
  }
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #404356;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #2D303F;
  padding: 0 0 25px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #3f414c;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 26px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: #fff;
}

#footer .footer-top .footer-info img {
  border-radius: 10px;
  height: 60px;
  margin-bottom: 10px;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: white;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #222636;
  color: #eee;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #f58634;
  color: #31366c;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid #beaf5f;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 5px;
  color: #beaf5f;
  font-size: 18px;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #262c44;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ededed;
  text-decoration: none;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  color: white;
  line-height: 26px;
}

#footer .footer-top .footer-contact a {
  font-style: 1rem;
  color: #fbfbfb;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}

#footer .credits a {
  color: #f58634;
  text-decoration: none;
}

/* inline query form  */

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.form-inline label {
  margin: 5px 10px 5px 0;
  color: white;
}

.form-inline input {
  vertical-align: middle;
  margin: 5px 10px 5px 0;
  padding: 5px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
}

.form-inline input::placeholder {
  font-size: 1rem;
  color: navy;
  text-align: center;
}

.form-inline button {
  padding: 5px 20px;
  background-color: navy;
  border: 1px solid #ddd;
  color: white;
  border-radius: 20px;
}

.form-inline button:hover {
  background-color: #EF6603;
}

@media (max-width: 800px) {
  .form-inline input {
    margin: 10px 0;
  }

  .form-inline {
    flex-direction: column;
    align-items: stretch;
  }
}


/* client section  */

#clients {
  padding: 60px 0;

}

#clients .clients-wrap {
  border-top: 1px solid #d6eaff;
  border-left: 1px solid #d6eaff;
  margin-bottom: 30px;
}

#clients .client-logo {
  padding: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #d6eaff;
  border-bottom: 1px solid #d6eaff;
  overflow: hidden;
  background: #fff;
  height: 160px;
}

#clients img {
  transition: all 0.4s ease-in-out;
}


/* INNER PAGE  */

#docs .col-lg-3n {
  background: #beaf5f59;
  border-radius: 20px;
}

#docs .col-lg-3n:hover {
  border-radius: 10px;
  background: #beaf5f;
  transition: 0.6s ease;
}

/* payment button  */

#pay-btn a {
  color: white;
  background-color: #303244;
  padding: 5px 40px;
  border-radius: 20px;
}

#pay-btn a:hover {
  color: white;
  background: #EF6603;
  transition: 0.6s ease-in;
}

/* selection colour  */
::selection {
  background-color: coral;
}

/* contact section  */


.content {
  padding: 7rem 0;
}

h2 {
  font-size: 3.5rem;
  font-weight: 700;
}

h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}


.heading {
  color: #888;
  letter-spacing: .05rem;
  text-transform: uppercase;
  font-weight: 400;
}

.btn {
  color: #fff;
  border: none;
  border-radius: 4px !important;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1) !important;
}

.btn:hover {
  color: #fff;
}

.btn:active,
.btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.box {
  padding: 40px;
  background: #fff;
}

.box h3 {
  font-size: 14px;
  margin-bottom: 30px;
  text-align: center;
}


.submitting {
  text-align: center;
  float: left;
  width: 100%;
  padding: 10px 0;
  display: none;
  font-weight: bold;
  font-size: 12px;
  color: #000;
}


/* asm query  */

#qform {
  height: 90vh;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: right;
  background-image: url(/assets/img/homebg.jpg);
  background-size: cover;

  /* background-position: center; */
}

.form-inner {
  position: absolute;
  height: 98%;
  width: 98%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.content {
  height: 100%;
  width: 100%;
  padding: 25px;
  position: relative;
}

.form-inner h2 {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: black;
  text-align: center;
  padding-top: 35px;
}

.input {
  display: block;
  padding: 12px 15px;
  width: 100%;
  left: 50%;
  border-radius: 10px;
  margin-top: 20px;
  border: 1.5px solid rgb(109, 87, 121);
  outline: none;
  background: seashell;
  color: black;
}

#btn {
  cursor: pointer;
  color: white;
  margin-top: 30px;
  width: 100%;
  padding: 12px;
  outline: none;
  background: rgb(10 55 85);
  border: none;
  font-size: 18px;
  border-radius: 10px;
  transition: 0.4s;
}




.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:8.5rem;
	right:2.5rem;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.my-float{
	margin-top:16px;
}
p.h2.text-dark {
  position: relative;
  color: #fff !important;
}
p.h6.text-dark {
  position: relative;
  color: #fff !important;
}

@media (max-width:320px) {
  #hero{
    height: 100vh;
  }
  #homebg{
    height: 100vh;
  }
  .section-title p {
    font-size: 24px !important;
}
.main.in {
  padding: 20px 10px !important;
}
}











/* <----------------new-update after 12 dec  ------------->*/

#home-btns p.h1.text-light {
  text-transform: capitalize;
  font-weight: 600;
}
p.top-cnt {
  color: #fff;
  opacity: 0.8;
}
#qr-btn button a {
  display: inline-block;
}



@media (max-width:767.98px) {
  #homebg {
    height: 100%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#home-btns p.h1.text-light {
  font-size: 22px !important;
}
#hero {
  padding: 0 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-image: url(/assets/img/homebg.jpg);
  background-size: cover;
  background-position: 22% 0%;
}

.content{
  height: 100%;
  width: 100%;
  padding: 0px;
  position: relative;
}

#btn {
  cursor: pointer;
  color: white;
  margin-top: 10px;
  width: 100%;
  padding: 12px;
  outline: none;
}
p#head-text {
  font-size: 28px;
}
canvas.vanta-canvas {
  height: 100% !important;
  width: 100% !important;
}
  
.section-title p {
  font-size: 28px;
}
}






.taxt button {
  box-shadow: 0px 5px 25px -9px rgb(2 62 83 / 67%);
transition: background 0.4s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
margin: -3px 20px 19px 0px;
--e-column-margin-right: 40px;
--e-column-margin-left: 0px;
padding:8px 1%;    font-size: 14px;
border-radius: 10px;
background: #fff;border: 0px;    cursor: pointer;
transition: all ease 0.5s;border: 1px solid #08254f;
}
.in_box input, select, textarea{
color: #000!important;
}
/* <datalist> and <option> styling */
datalist {
position: absolute;
max-height: 20em;
border: 0 none;
overflow-x: hidden;
overflow-y: auto;
box-shadow: 0 0 45px rgb(0 0 0 / 9%);
border-radius: 15px 15px 15px 15px;
}

datalist option {
font-size: 14px;
padding: 11px 1em;
background-color: #fff;
text-align: left;
cursor: pointer;
}

datalist option:hover, datalist option:focus {
color: #fff;
background-color:#164385;
outline: 0 none;
}
input#country {
width: 70%;
padding: 20px;
border-radius: 50px;
border: 2px solid #fff;
background: none;
}
input, select, textarea{
color: #fff  !important;
}
div#myNavbar {
width: 44%;
float: right;
}
img.img1 {
position: absolute;
top: 4%;
}
.multisteps-form {
margin-top: 8%;
}
.content h3 {
margin-top: 4%;
font-size: 19px;
}
.content p {
font-size: 16px;
letter-spacing: 0.3px;
color: gray;
}
.wizard-form-input.position-relative.form-group.has-float-label {
position: relative;
}
.taxt button:hover{
  background:#08254f;
  color: #fff;
  border: 1px solid #fff;
}
.taxt button:hover a{
  color: #fff;
}
button:focus {
outline: 1px dotted;
outline: 0px;
}
.nav-tabs .active a{color: #08254f!important;}
.taxt {
text-align: center;
position: absolute;
width: 80%;
left: 10%;
z-index: 9;  
margin-top: 0 20px;
}
.menubar {
position: absolute;
width: 100%;
height: 80px;
z-index: 9;
}
a.nav-link.disabled {
background: #fff;
border-radius: 5px;
color: #08254f!important;
padding: 4%;
margin-left: 4%;
width: 116%;
text-align: center;
}
input.form-control {
border: 1px solid #cccc!important;
}
.taxt h1 {
   font-family: 'Lato', sans-serif;
color: #fff;
letter-spacing: 1px;
text-align: center;
font-weight: 300;
margin-bottom: 4%;
margin-top: 4%;
text-shadow: 1px 0px 9px #524b4b;
}
input#Search_box {
border: 1px solid #ddd;
padding: 2% 2%;
width: 71%;
margin-top: 3%;
border-radius: 39px;
}
.bg {
  margin-bottom: 5%;
  background-image: linear-gradient(315deg, #08e1ae 0%, #98de5b 74%);
  height: 630px;
  background: #000531;
  background-size: 100% 100%;
  position: relative;
}
.bg:after{
    content: '';
width: 100%;
height: 100px;
position: absolute;
bottom: 0;
left: 0;
background-color: #fff;
clip-path: polygon(71.5% 0, 0% 100%, 100% 100%);
}
a.navbar-brand {
color: #fff!important;
font-size: 36px;
line-height: 1px;
}
a.nav-link {
color: #fff!important;
font-size: 16px;
letter-spacing: 1px;
font-weight: 500;
}

i.fa.fa-search {
  position: absolute;
  right: 20%;
  top: 40%;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}
input#country::placeholder {
  color: #fff;
}
.search_br {
  position: relative;
}
.apy_now {
  width: 14%;
  background: #fff;
  color: #000531;
  padding: 1% 1%;
  margin-top: 2%;
  display: inline-block;
  font-size: 19px;
  font-weight: 600;
  border-radius: 5px;
  width: 15%;
  text-decoration: none!important;
  transition: 0.5s;
  border: 1px solid #08254f;
}


img.img5 {
  width: 175px;
}

img.img5 {
  position: absolute;
  right: 25%;
  bottom: -8%;
  z-index: 1;
  -webkit-animation-name: shapeMover;
  animation-name: shapeMover;
  -webkit-animation-duration: 9s;
  animation-duration: 9s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@keyframes shapeMover {

	0%,
	100% {
		transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
	}

	50% {
		transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
	}
}


@media (max-width : 767px ){
  .exit-modal.ouibounce-height-425{
          width: 85%;
  }
  img.whatsup_i {
      width: 17%!important;
  }
  img.imga {
      width: 90%!important;
      margin-top: 13%;
  }
  img.img1 {
      width: 100%;
  }
  .taxt h1 {
      font-size: 23px!important;
  }
  input#country {
      width: 98%;
  }
  div#myNavbar {
      width: 100%;}
  .footer ul {
      margin: 0;
      padding: 0;
  }
  .content {
      padding-bottom: 10%!important;
  }
  a.navbar-brand {
      padding: 7px 15px!important;
  }
  .taxt {
      width: 98%;
      left: 1%;}
  .navbar-toggle .icon-bar {
      background: white;
  }
  a.navbar-brand img {
      width: 62%;
  }
  .taxt {
      margin-top: 16%;}
      .navbar-brand {
      padding: 7px 15px;}
  .taxt button {
     margin: -3px 9px 19px 11px;
      --e-column-margin-right: 40px;
      --e-column-margin-left: 0px;
      padding: 8px 4%;}
  input#Search_box {
      border: 1px solid #ddd;
      padding: 4% 2%;
      width: 100%;}
  i.fa.fa-search {
        position: absolute;
      right: 14%;
      top: 35%;}
  .bg{height: 840px;}
  .iso_text{width: 68%;height: auto;}
  .iso_text h4{    font-size: 20px;}
  .iso_text p{font-size: 15px;
      line-height: 23px;}
  .form_left {
      padding: 0% 5%;
  }
  .form_sec h2{    margin-left: 12px;
      font-size: 27px;
      text-align: left;}
  .form_left h3 {
      margin: 0;
  }
  .menubar {
      z-index: 99999;
  }
  div#myNavbar {
      background: #08254f;
  }
  
  ul.nav.navbar-nav {
      display: inline-block;}
  .call_expert {    background: #ffffff;
      padding: 6px 10px!important;
      border-radius: 5px;
      margin-left: 4%;
      width: 46%;
      text-align: center;
      color: #08254f!important;}
  .wizard-content-form {
      overflow: inherit!important;
  }
  .footer .container {
      width: 100%!important;
      padding: 0%!important;
  }
  .wrapper.clearfix {
      margin-top: 26%;
  }
  .d_box {
      width: 100%!important;
      float: none!important;
      margin-left: 0%!important;
  }
  .multisteps-form__progress {
      display: flex!important;
      align-items: center;
      justify-content: center;
  }
  h1.hed {
      font-size: 33px!important;
  }
  
  .back-to-top {
    bottom: 2.5rem;
    right: 24px;
}
  
  
  .float {
    bottom: 6.5rem;
    right: 16px;
}
  
  .call-buton .cc-calto-action-ripple {
    z-index: 99999;
    position: fixed;
    right: 16px;
    bottom: 11rem;
    background: red;
    width: 60px;
    height: 60px;
    padding: 1rem;
    border-radius: 100%;
    box-sizing: border-box;
    color: #ffffff;
    display: flex;
    justify-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    font-size: 26px;
}
  
  
.bg:after{
  height: 100px;
  }
  .search_br {
    width: 70%;
    margin: auto;
  }
  .apy_now {
    margin-top: 13%;
}
img.img1 {
  width: 92%;
  display: none;
}
.taxt h1 {
  font-size: 24px!important;
}
input#country {
  width: 98%;
  padding: 10px;
}
.taxt {
  margin-top: 4%;
}
.bg {
  height: 560px;
}
    .apy_now {
      width: auto;
      font-size: 16px;
      padding: 6px 20px;
      margin-top: 4%;
  }

  }

  @media  (max-width: 768px){
   i.fa.fa-search {
      top: 43%;}   
  
      img.img5 {
        width: 100px;
    }
  }




  








  
.frist {
  background: linear-gradient(42deg, #07294dd6, #07294dcc) ,url(../img/page-banner-1.jpg);
  width: 100%;
  height: 100%;
  min-height: 600px;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.main.in {
  box-shadow: 1px 1px 3px 1px;
  padding: 20px 20px !IMPORTANT;
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
}


.isolinks li {
  line-height: 35px;
  width: 50%;
  list-style: none;
}

.isolinks {
  display: flex;
  flex-wrap: wrap;
}
.isolinks li a:hover {
  padding-left: 8px !important;
  color: #d4a93c !important;
}

.isolinks li a {
  font-size: 16px;
  font-weight: 600;
  color: #002665 !important;
  transition: all 0.5s;
}

ul.isolinks  i.fas.fa-arrow-alt-from-right.fa-rotate-180 {
  font-size: 20px;
  padding-left: 5px;
  color: #002665;
  font-weight: 600;
}
.isolinks  button {
  border: 0;
  background: no-repeat;
}

#More-btn button a {
  text-decoration: none;
  color: #000000 !important;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 1px 3px 6px 1px;
  border: 2px solid;
  padding: 8px 20px;
  border-color: #002665;
  transition: all 0.5s;
}

div#More-btn {
  text-align: end !important;
  margin-left: auto;
}

#More-btn button a:hover {
  box-shadow: none;
}

button {
  border: 0;
  background: no-repeat;
}


.mainnew {
  box-shadow: 1px 1px 5px 1px;
  padding: 40px;
  background-color: #ffffff;
  margin-top: 30px;
  width: 75%;
  margin: auto;
}

section.frist {
  display: flex;
  align-items: center;
}

.frist p {
  font-size: 20px;
  font-weight: 400;
}

.frist h1 {
    color: #beaf5f !important;
    font-size: 40px;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
}

@media (max-width: 767px) { 


  .req .box {
      margin-top: 20px;
  }

  .heading h2 {
      font-size: 28px;
  }

  .heading {
      padding: 0 !IMPORTANT;
  }

  .mainnew {
      margin-top: 0px;
      width: 100% !important;
      margin-bottom: 20px;
      padding: 20px;
  }

  .any .main img {
      height: 200px;
      width: 100%;
      object-fit: cover;
  }

  .frist p {
      font-size: 16px;
      font-weight: 400;
  }

  .frist h1 {
      font-size: 28px;
  }

  .content input#btn {
      width: 100% !important;
  }

  .btnh  input.form-control {
      line-height: 30px !IMPORTANT;
      width: 100%;
  }

  .main.cnt {
      box-shadow: 1px 1px 5px 1px;
      padding: 20px;
  }

  .about h4 {
      font-size: 28px;
  }

  .quality  li a {
      text-decoration: none !important;
      color: #000000c9 !important;
      font-weight: 400;
      transition: all 0.5s;
      font-size: 14px !important;
  }

  /* #onboarding-section ul {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: url(../img/procedure-graph.svg) no-repeat;
      width: 652px;
      margin: 0px -70%;
      padding: 10px 50px;
      transform: rotate(90deg);
      height: 650px;
      background-position: 0% 45%;
      overflow: hidden !important;
  } */


  #onboarding-section ul {
      list-style: none;
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      background: none;
      width: 100%;
      padding: 10px 0;
      overflow: hidden !important;
      flex-wrap: wrap;
      text-align: center;
  }
  #onboarding-section ul li {
      width: 50%;
      margin: 10px 0;
  }
  
#onboarding-section ul li:nth-child(4) a {
  left: 0;
}

#onboarding-section ul li:nth-child(3) a {
  left: 0;
  top: 0;
}

#onboarding-section ul li:nth-child(2) a {
  top: 0px;
  left: 0px;
}




#onboarding-section ul li:nth-child(2) h5 {
  position: static;
  text-align: center;
  width: 100%;
} 

#onboarding-section ul li:nth-child(4) h5 {
  position: static;
  text-align: center;
}




  #onboarding-section ul li span.icon img {
      position: relative;
      z-index: 1;
  }



  ul.isolinks  i.fas.fa-arrow-alt-from-right.fa-rotate-180 {
      font-size: 18px;
      padding-left: 5px;
      color: #002665;
      font-weight: 600;
  }

  .isolinks li a {
      font-size: 12px;
      font-weight: 600;
      color: #002665 !important;
      transition: all 0.5s;
  }

  ul.d-flex.top-ul.p-0 {
      flex-wrap: wrap !important;
      margin-top: 4px;
  }

  section#onboarding-section {
      overflow: hidden !IMPORTANT;
  }

  h2.heading.h4.color-theme-1 {
      color: #10346f !important;
      font-size: 22px;
      font-weight: 600;
      font-family: 'Quicksand', sans-serif !important;
      text-align: center !important;
  }

  h2.heading.h4.color-theme-1 span {
      color: #d4a93c !important;
      font-size: 22px;
      font-weight: 600;
      font-family: 'Quicksand', sans-serif !important;
      text-align: center !important;
  }

  p.fs-5.fw-normal.text-justify {
      font-size: 16px !important;
  }


  .frist h1 {
    color: #beaf5f !important;
    font-size: 22px;
    font-weight: 600;
    font-family: math !important;
    text-align: center !important;
}

  p#head-text {
    font-size: 24px;
}

input.form-control.mb-3 {
    margin-bottom: 10px !important;
}

textarea.form-control.mb-3 {
    margin-bottom: 10px !important;
}

.row {
  margin: 0;
}
}

#docs .col-lg-3n:hover>p.h4 {
  color: #fff !important;
}


div#s-icons {
  display: flex;
}

.img-bx 
{margin-right: 10px;
}

.img-bx img {
  width: 30px;
}
section , .container.p-3.shadow {
  overflow: hidden;
}
@media (max-width:374px) {
  #homebg{
    height: 100vh;
  }
  .section-title p {
    font-size: 24px !important;
}
.main.in {
  padding: 20px 10px !important;
}
.frist h1 {
  font-size: 20px;
}
.col-md-6.form-group {
  padding: 0;
  margin-top: 5px !important;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
  margin-top: 0 !important;
}
}