* {
  margin: 0;
  padding: 0;
  outline: 0 !important;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html,
body {
  overflow-x: clip !important;
}

  .toast-message {
      font-size: 16px !IMPORTANT;
  }

body {
  font-family: "Poppins", sans-serif;
  margin: 0.01rem auto 0;
  padding: 0;
  color: #141414;
  font-size: 1.6rem;
  width: 100%;
  font-weight: 400;
  background-color: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Open Sans", sans-serif;
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 0.8rem;
}

p,
ul li {
  font-size: 1.6rem;
  line-height: 27px;
}

ol,
ul {
  padding-left: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-weight: 700;
}

a,
button,
input[type=submit] {
  color: #82ca0e;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: 0.3s all ease-in-out;
}

a:focus,
a:hover,
button:focus,
button:hover {
  color: #13a3cc;
  text-decoration: none;
  outline: 0 !important;
}

.gold-color {
  color: #82ca0e;
}

.pointer-event-none {
  pointer-events: none;
}

.row > *,
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  padding: 0 15px;
}

.row {
  margin: 0 -15px;
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  border-bottom: 1px solid #e6eff7;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  transition: 0.3s all ease-in-out;
}
header.menu-fix {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  background-color: #fff;
}

.logo-area img {
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
}
.menu-fix .logo-area img {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
}

.navigation-area {
  position: relative;
  width: 100%;
  left: 0;
  background-color: rgb(255, 255, 255);
  padding: 10px 0;
  z-index: 9;
  border-bottom: 1px solid #eee;
}
.menu-fix .navigation-area {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 40%, rgb(255, 255, 255) 110%);
  -webkit-backdrop-filter: grayscale(1) blur(8px);
          backdrop-filter: grayscale(1) blur(8px);
}

.nav-item {
  margin-left: 40px;
}

.sub-head {
  font-size: 2.2rem;
  line-height: 3.2rem;
  margin: 25px 0 10px;
  position: relative;
  padding-left: 12px;
}
.sub-head:after {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 4px;
  height: 26px;
  background-color: #82ca0e;
}

.grey-bg {
  background-color: #f7f8f9;
}

.btn-main {
  background-color: #13a3cc;
  border: 1px solid #13a3cc;
  color: #fff;
  padding: 15px 35px;
  display: inline-block;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
  position: relative;
  top: 0;
  font-size: 14px;
  text-transform: uppercase;
}

.btn-main:focus,
.btn-main:hover {
  color: #fff;
  background-color: #82ca0e;
  border: 1px solid #82ca0e;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  top: -3px;
}

.btn-main.btn-green {
  background-color: #82ca0e;
  border: 1px solid #82ca0e;
}

.btn-main.btn-green:hover,
.btn-main.btn-green:focus {
  background-color: #13a3cc;
  border: 1px solid #13a3cc;
}

.btn-main.btn-bdr {
  background-color: transparent;
  color: #10a0c6;
}
.btn-main.btn-bdr:hover {
  background-color: #10a0c6;
  color: #fff;
}
.btn-main.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: #000000;
}
.btn-main.btn-white:hover {
  background-color: transparent;
  color: #fff;
}


.form-control {
  height: 51px;
  border: 1px solid #eee;
  font-size: 1.4rem;
  border-radius: 5px;
  padding: 10px 15px;
  background-color: #fff;
}

.form-control.error {
  border: 1px solid #f00;
}

label.error {
  padding: 0;
  margin: 0;
  color: #f00;
  font-size: 14px;
}

.form-group {
  margin-bottom: 25px;
}

textarea.form-control {
  min-height: 105px;
}

.heading {
  font-size: 2.8rem;
  line-height: 3.6rem;
  margin: 0 0 30px;
}

.scroll-to-top {
  position: fixed;
  right: 30px;
  bottom: 50px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
  opacity: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 0;
  text-align: center;
  font-size: 2rem;
  color: #f7f8f9;
  background-color: #13a3cc;
}

.scroll-to-top.fade.in {
  opacity: 1;
}

.scroll-to-top:hover {
  color: #82ca0e;
}

@-webkit-keyframes float-icon {
  0% {
    bottom: 30px;
  }
  25% {
    bottom: 20px;
  }
  50% {
    bottom: 30px;
  }
  75% {
    bottom: 20px;
  }
  100% {
    bottom: 30px;
  }
}
@keyframes float-icon {
  0% {
    bottom: 30px;
  }
  25% {
    bottom: 20px;
  }
  50% {
    bottom: 30px;
  }
  75% {
    bottom: 20px;
  }
  100% {
    bottom: 30px;
  }
}
::-moz-selection {
  color: #fff;
  background: #13a3cc;
}

::selection {
  color: #fff;
  background: #13a3cc;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.menu__block_wrap {
  display: flex;
  justify-content: flex-end;
}

.copyright-bg {
  background-color: #222e52;
  padding: 20px 0;
}

.copyright-bg a,
.copyright-bg p {
  color: #fff;
  font-size: 14px;
}

.copyright-bg .copyright-r {
  text-align: right;
}

.home-slider .carousel-caption {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 1;
  text-align: left;
  margin: 200px 0;
  padding: 40px 30px 50px;
  opacity: 0;
  color: #000;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.5);
}
.home-slider .carousel-caption h1 {
  font-size: 4.2rem;
  line-height: 5rem;
  margin: 0 0 10px;
}
.home-slider .carousel-caption h4 {
  font-size: 2.4rem;
  line-height: 3.4rem;
  font-weight: 300;
  color: #000;
  margin: 0 0 0px;
}
.home-slider .carousel-caption .home-cta {
  margin: 30px 0 0;
}
.home-slider .mob-banner {
  background-size: 0;
}
.home-slider .container {
  position: relative;
  z-index: 9;
}
.home-slider .carousel-item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: unset;
  display: table;
  -webkit-animation: animatedBackground 20s linear infinite;
          animation: animatedBackground 20s linear infinite;
  transition: 0.3s all;
}
.home-slider .carousel-item.active .carousel-caption {
  opacity: 1;
}
.home-slider .carousel-item.active .carousel-caption h1, .home-slider .carousel-item.active .carousel-caption h4, .home-slider .carousel-item.active .carousel-caption p, .home-slider .carousel-item.active .carousel-caption .home-cta a {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

.flex-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.flex-btn a:last-child {
  margin-left: 15px;
}

.custom-wow {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
.custom-wow.animated {
  visibility: visible;
  opacity: 1;
}

.custom-wow.animated.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}
.custom-wow.animated.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}
.custom-wow.animated.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}
.custom-wow.animated.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.animated.delay-1s {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.animated.delay-1-2s {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.animated.delay-1-3s {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.animated.delay-1-4s {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.animated.delay-1-6s {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.pad-60 {
  padding: 60px 0;
}

.service-single {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
  margin: 30px 0 0;
}
.service-single:hover img {
  transform: scale(1.1);
}
.service-single img {
  transition: 0.5s all ease-in-out;
}
.service-single h3 {
  position: relative;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  background-color: #fff;
  color: #000;
  text-transform: capitalize;
  padding: 10px 15px;
  font-size: 1.6rem;
  line-height: 2.8rem;
  font-weight: 600;
}

.img-block {
  border-radius: 10px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

.solution-single {
  margin: 30px 0 0;
}

.meet-bg {
  background-color: #13a3cc;
}

.home-contact-bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: unset;
}

.home-contact-form {
  background-color: #f7f8f9;
  padding: 30px;
  border-radius: 10px;
}

.gallery_img img {
  margin-bottom: 30px;
}

/*===== CTA Block =====*/
.cta_block {
  background-color: #13a3cc;
}
.cta_block .cta_text_btn {
  padding: 50px;
  display: block;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.cta_block .cta_text_btn .cta_text {
  max-width: 100%;
  color: #fff;
}
.cta_block .cta_text_btn .cta_text h2 {
  font-size: 2.4rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #fff;
}
.cta_block .cta_text_btn .cta_text a {
  color: #fff;
  font-weight: 400;
}

/*===== CTA Block Ends =====*/
/*===== Testimonial Block Ends=====*/
.testimonial_block {
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.testimonial_block .testimonial_each {
  background-color: #fff;
  padding: 60px 30px 30px;
  position: relative;
}
.testimonial_block .testimonial_each .star_rating {
  text-align: center;
}
.testimonial_block .testimonial_each .star_rating i {
  color: #ffae00;
}
.testimonial_block .testimonial_each .testimonial_content {
  overflow: auto;
  text-align: center;
  padding: 0 8px 0 0;
  min-height: 160px;
}
.testimonial_block .testimonial_each .testimonial_content::-webkit-scrollbar {
  width: 4px;
}
.testimonial_block .testimonial_each .testimonial_content::-webkit-scrollbar-track {
  background: transparent;
}
.testimonial_block .testimonial_each .testimonial_content::-webkit-scrollbar-thumb {
  background: #888;
}
.testimonial_block .testimonial_each .testimonial_content::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.testimonial_block .testimonial_each .testimonial_content p {
  font-size: 15px;
  line-height: 25px;
}
.testimonial_block .testimonial_each::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Pro";
  font-size: 8rem;
  font-weight: 400;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0.06;
  text-align: center;
}
.testimonial_block .testimonial_each h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  text-align: center;
  font-weight: 800;
}

/*===== Testimonial Block Ends=====*/
.team_each {
  background-color: #fff;
  box-shadow: 0px 1px 10px #dfdfdf;
  padding: 0;
  margin: 10px 2px;
}
.team_each .team_detail {
  padding: 10px;
  text-align: center;
}
.team_each .team_detail h3 {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}
.team_each .team_detail p {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

@media (max-width: 1024px) {
  html {
    font-size: 60%;
  }
  .service-single h3 {
    bottom: 0px;
  }
}
@media (max-width: 990px) {
  html {
    font-size: 55%;
  }
  .dev-slider .dev-carousel {
    padding: 48px 75px 70px;
  }
  .home-slider .carousel-caption {
    margin: 180px 0 100px;
  }
}
@media (max-width: 767px) {
  .sub-head:after {
    height: 25px;
  }
  .section-divider {
    margin: 0 0 40px;
  }
  .btn-main {
    padding: 10px 20px 10px;
  }
  .copyright-bg,
.copyright-bg .copyright-r {
    text-align: center;
  }
  .home-slider .carousel-caption {
    margin: 120px 0 60px;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .home-slider .carousel-item {
    background-size: 0;
  }
  .home-slider .mob-banner {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: unset;
  }
  .pad-60 {
    padding: 40px 0;
  }
  .insurance-single {
    padding: 10px;
  }
  .footer-bg .time-table {
    text-align: left;
  }
  .cta_block .cta_text_btn {
    padding: 40px 10px;
  }
  .service-single h3 {
    font-size: 2rem;
  }
}


.footer-links li {
    list-style: none;
    box-sizing: border-box;
    padding: 5px 4px 5px 0;
}

.footer-links li a {
    color: #10a0c6;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.footer-links li a:hover {
    color: #000;
}
.footer-links li a span {
    margin-left: 5px;
}