* {
  margin: 0;
  padding: 0;
  outline: 0 !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0.01rem auto 0;
  padding: 0;
  color: #102037;
  font-size: 1.5rem;
  width: 100%;
  font-weight: 400;
  background-color: #fff;
  overflow-x: hidden;
}

.row > *,
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  padding: 0 15px;
}

.row {
  margin: 0 -15px;
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
}

p,
ul li {
  font-size: 16px;
  line-height: 28px;
  color: #102037;
  font-weight: 400;
}

ol,
ul {
  padding-left: 0;
  list-style: none;
}

.modal-backdrop {
    z-index: 9 !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #102037;
  font-weight: 700;
}

a,
button,
input[type=submit] {
  color: #403f99;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

a:focus,
a:hover,
button:focus,
button:hover {
  color: #403f99;
  text-decoration: none;
  outline: 0 !important;
}

.form-control,
.form-select {
  min-height: 48px;
  border: 1px solid #eee;
  font-size: 1.4rem;
  border-radius: 3px;
  padding: 10px 15px;
  background-color: #f9f9f9;
}

.form-control:focus,
.form-select:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  border-color: #2d3985;
}

.form-control.error,
.form-select.error {
  border: 1px solid #f00;
}

.form-group {
  margin-bottom: 28px;
}

label {
  margin: 0 0 5px;
  font-weight: 600;
}

label.error {
  padding: 0;
  margin: 0;
  color: #f00;
  font-size: 14px;
}

.form-group {
  margin-bottom: 25px;
}

.pointer-event-none {
  pointer-events: none;
}

.toast-message {
  font-size: 16px !important;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  font-family: "Quicksand", sans-serif;
}
header .top_bar {
  background-color: #102037;
  padding: 0.5rem 0;
}
header .top_bar ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
header .top_bar ul li a {
  color: #fff;
  font-size: 1.5rem;
  line-height: 2.5rem;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}
header .top_bar ul li a:hover {
  color: #f05b72;
}
header .top_bar .top_bar_contact ul {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
header.menu-fix {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-fill-mode: none;
  animation-fill-mode: none;
  border-bottom: 1px solid #eee;
  background-color: transparent;
  backdrop-filter: blur(10px);
}
header.menu-fix #hamburger .line {
  stroke: #403f99;
}
header.menu-fix .top_bar {
  display: none;
}

.logo-area {
  padding: 0.1rem 0;
}
.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;
  width: 140px;
}
.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;
}

.menu-area {
  padding: 5px 0;
  background: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.08);
  width: 100%;
  position: sticky;
  z-index: 99;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.nav-item {
  margin-left: 32px;
}
.nav-item i {
  font-size: 1.2rem;
}

.nav-link {
  color: #151514;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  padding: 0;
  text-transform: uppercase;
  position: relative;
  padding: 10px 0 !important;
}
.nav-link:hover, .nav-link:focus {
  color: #403f99;
}

.navbar.navbar-expand-xl {
  padding: 0;
}

.menu__block_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.nav-link.nav-btn {
  background-color: #f05b72;
  color: #fff;
  padding: 10px 25px !important;
  border-radius: 30px;
  text-align: center;
  -webkit-box-shadow: 0 5px 25px rgba(75, 132, 255, 0.2);
          box-shadow: 0 5px 25px rgba(75, 132, 255, 0.2);
}
.nav-link.nav-btn:hover {
  background-color: #f05b72;
  color: #fff;
}

.navbar.navbar-expand-lg {
  padding: 0;
}

.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  opacity: 0;
  z-index: 99;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-transform: rotate(-90deg) scale(0) translateX(85px);
          transform: rotate(-90deg) scale(0) translateX(85px);
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #403f99;
  border-radius: 5px;
  padding: 0;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #fff;
  -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  -webkit-animation: jump 4s infinite;
          animation: jump 4s infinite;
}
.scroll-to-top.fade.in {
  opacity: 1;
  -webkit-transform: rotate(0) scale(1) translateX(0);
          transform: rotate(0) scale(1) translateX(0);
}
.scroll-to-top:hover {
  color: #fff;
  background-color: #102037;
}

@-webkit-keyframes jump {
  0% {
    bottom: 20px;
  }
  50% {
    bottom: 40px;
  }
  100% {
    bottom: 20px;
  }
}

@keyframes jump {
  0% {
    bottom: 20px;
  }
  50% {
    bottom: 40px;
  }
  100% {
    bottom: 20px;
  }
}
@-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: #403f99;
}
::selection {
  color: #fff;
  background: #403f99;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}

.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  height: auto;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-menu {
  width: 250px;
  padding: 0;
  border: none;
  background-color: #eff6fe;
  margin: 0;
  -webkit-box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
  left: 0;
  right: 0;
  margin: 0 auto;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  display: block;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  opacity: 0;
}
.dropdown-menu .dropdown-item {
  padding: 8px 12px;
  display: block;
  color: #102037;
  font-size: 15px;
  background-color: rgba(64, 63, 153, 0.02);
  white-space: unset;
}
.dropdown-menu .dropdown-item:last-child {
  border-bottom: 4px solid #403f99;
}
.dropdown-menu .dropdown-item:hover {
  background-color: #403f99;
  color: #fff;
}

.dropdown-submenu {
  position: relative;
}

.btn-link {
  font-weight: 500;
  color: #403f99;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.btn-link:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0px;
  height: 1px;
  background-color: #f05b72;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.btn-link:hover {
  color: #f05b72;
}
.btn-link:hover:before {
  width: 100%;
}

.btn-main {
  color: #fff;
  background: #403f99;
  background: linear-gradient(63deg, rgb(64, 63, 153) 0%, rgb(88, 54, 150) 25%, rgb(156, 31, 145) 100%);
  padding: 1.1rem 3rem !important;
  display: inline-block;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
.btn-main:hover, .btn-main:focus {
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(64, 63, 153, 0.3);
          box-shadow: 0 8px 25px rgba(64, 63, 153, 0.3);
}
.btn-main:hover::before, .btn-main:focus::before {
  left: 100%;
}

.btn-second {
  color: #403f99;
  background: transparent;
  border-color: #403f99;
}
.btn-second:hover, .btn-second:focus {
  color: #fff;
  background: linear-gradient(63deg, rgb(64, 63, 153) 0%, rgb(88, 54, 150) 25%, rgb(156, 31, 145) 100%);
  border-color: transparent;
}

.btn-white {
  color: #403f99;
  background: #fff;
  border: #fff;
}
.btn-white:hover, .btn-white:focus {
  color: #fff;
  background: linear-gradient(63deg, rgb(64, 63, 153) 0%, rgb(88, 54, 150) 25%, rgb(156, 31, 145) 100%);
  border-color: #403f99;
}

.banner-call .animated-ico {
  position: absolute;
  background-color: #f05b72;
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 9;
}

.banner-call .animated-ico i {
  position: relative;
  z-index: 9;
  color: #fff;
}

.banner-call .animated-ico::before,
.banner-call .animated-ico::after {
  content: "";
  background-color: #f05b72;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-animation-name: ripple;
  animation-name: ripple;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  border-radius: 50%;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.banner-call .animated-ico::before {
  opacity: 0.4;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.banner-call .animated-ico::after {
  opacity: 0.6;
}

.banner-call:hover .animated-ico i {
  -webkit-animation: ring 1s infinite ease-in-out;
  animation: ring 1s infinite ease-in-out;
}

.animated-txt {
  padding-left: 55px;
  color: #102037;
  font-weight: 500;
  font-size: 18px;
}

@-webkit-keyframes ripple {
  0% {
    opacity: 0.25;
  }
  100% {
    border-radius: 50%;
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}
@keyframes ripple {
  0% {
    opacity: 0.25;
  }
  100% {
    border-radius: 50%;
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}
@-webkit-keyframes ring {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes ring {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    transform: rotate(0) scale(1) skew(1deg);
  }
}
.heading {
  font-size: 3rem;
  line-height: 4rem;
  font-weight: 700;
  position: relative;
  color: #403f99;
  margin-bottom: 2rem;
  padding-bottom: 10px;
}
.heading::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  width: 125px;
  height: 1px;
  background-color: #403f99;
}
.heading.text-white::before {
  background-color: #fff;
}
.heading i {
  color: #f05b72;
  font-style: normal;
}

.section-divider {
  margin: 0 0 8rem;
}

.pad-80 {
  padding: 8rem 0;
}

.grey-bg {
  background-color: #fff8f9;
  padding: 8rem 0;
  border-radius: 0 220px 0 0;
}

footer {
  background-color: #18183e;
}
footer a, footer p {
  color: #fff;
}

.footer-bg {
  padding: 60px 0;
}

.copyright-bg {
  padding: 15px 0;
  border-top: 1px solid rgba(228, 228, 228, 0.1);
}

.foot-head {
  font-size: 18px;
  line-height: 28px;
  padding: 0 0 8px;
  margin: 0px 0 20px;
  text-transform: uppercase;
  position: relative;
}
.foot-head::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: auto;
  bottom: 0;
  width: 55px;
  height: 1px;
  left: 0;
  background-color: #fff;
}

.footer-links li {
  list-style-type: none;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.footer-links li i {
  margin-right: 8px;
  color: #f05b72;
}
.footer-links li .ms-left {
  margin-left: 2.4rem;
}
.footer-links li a, .footer-links li p {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.footer-links.useful-links li {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.footer-links.useful-links li::before {
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  color: #f05b72;
  margin-right: 5px;
  font-weight: 400;
}
.footer-links.useful-links li a {
  text-align: left;
}

.get-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.get-social a {
  color: #fff;
  margin-right: 10px;
}
.get-social a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.footer-bg .get-social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0 15px 0 0;
}
.footer-bg .get-social a:hover {
  color: #fff;
}

@media (max-width: 990px) {
  html {
    font-size: 55%;
  }
  .footer-bg .get-social a {
    margin: 0px 6px;
  }
}
@media (max-width: 767px) {
  .copyright-bg,
  .copyright-bg .copyright-r {
    text-align: center;
  }
  .foot-head::after {
    margin: 0 auto;
    right: 0;
  }
  .footer-links li {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .section-divider {
    margin: 0 0 40px;
  }
  .footer-links ul li {
    text-align: center;
  }
  .footer-links li {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-links li a, .footer-links li p {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-links li i {
    margin-right: 0;
    margin-bottom: 5px;
  }
  .footer-head {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 25px;
  }
  .footer-social {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .footer-bg {
    text-align: center;
    padding: 40px 0 20px;
  }
  .footer-links {
    text-align: center;
  }
  .footer-links li {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-links li {
    margin-bottom: 20px;
  }
  .floating-cta {
    z-index: 99;
    bottom: 0;
  }
  .floating-cta a {
    font-size: 15px;
    color: #102037;
    width: 50%;
    text-align: center;
    padding: 8px 10px;
    background-color: #102037;
    color: #fff;
    text-transform: uppercase;
  }
  .floating-cta a:first-child {
    border-right: 1px solid #fff;
    color: #fff;
    background-color: #403f99;
  }
  .copyright-bg {
    padding-bottom: 60px;
  }
  .scroll-to-top {
    bottom: 53px;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-collapse {
    display: block;
  }
  .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .drp-arrow.submenu-arrow {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
  }
  .dropdown:hover > .dropdown-menu,
  .dropdown-submenu:hover > .dropdown-menu {
    right: 0;
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    visibility: visible;
  }
  .dropdown.second-level .dropdown-menu {
    right: -100%;
    left: auto;
    top: 0;
  }
  .dropdown.second-level > .dropdown-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .offcanvas-start {
    width: 100%;
  }
}
.active .nav-link {
  color: #f05b72;
}

@media (max-width: 1199px) {
  header .menu-box {
    padding: 0;
  }
  .nav-item i {
    font-size: 1.8rem;
  }
  .dropdown.second-level.show-drop .dropdown-menu {
    max-height: 700px;
    background-color: #fff8f9;
  }
  .dropdown.second-level .drp-arrow {
    width: 38px;
    height: 29px;
    background-color: #0c0c0c;
    color: #fff;
  }
  .dropdown.second-level .dropdown-toggle i {
    -webkit-transform: rotate(0deg) !important;
            transform: rotate(0deg) !important;
  }
  .dropdown.second-level.show-drop .dropdown-toggle i {
    -webkit-transform: rotate(45deg) !important;
            transform: rotate(45deg) !important;
  }
  .dropdown.second-level .dropdown-menu .dropdown-item {
    border-bottom: 1px solid #1b1b1b;
  }
  .nav-link {
    padding: 12px 0 !important;
    color: #fff;
  }
  .nav-link.nav-btn {
    margin-top: 15px;
  }
  .drp-arrow {
    display: block;
    position: absolute;
    top: 3px;
    right: 3px;
    width: 43px;
    height: 39px;
    background-color: #403f99;
    color: #fff;
    text-align: center;
    font-size: 1.6rem;
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .nav-open {
    position: relative;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  .dropdown-item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    white-space: pre-line;
  }
  .dropdown-item:focus, .dropdown-item:hover {
    background-color: transparent;
  }
  .dropdown-submenu .dropdown-menu {
    background-color: #fff8f9;
    padding: 0 10px;
  }
  .dropdown .drp-arrow i {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    display: inline-block;
  }
  .dropdown > .drp-arrow.show i {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .offcanvas-start {
    width: 260px;
    border-right: none;
    background-color: #102037;
    overflow-y: scroll;
    height: 100vh;
  }
  .nav-item {
    display: block;
    width: 100%;
    padding: 0 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0;
  }
  .nav-item.dropdown.show .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
  }
  .nav-item:last-child {
    border: none;
  }
  .navbar-nav .dropdown-menu {
    width: 100%;
    -webkit-transform: none;
            transform: none;
    padding: 0;
  }
  .drpdown-img {
    display: none !important;
  }
  #hamburger {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  #hamburger .line {
    fill: none;
    stroke: #403f99;
    stroke-width: 6;
    -webkit-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  #hamburger .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  #hamburger .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
  }
  #hamburger .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  #hamburger.open .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  #hamburger.open .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
  }
  #hamburger.open .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    display: block;
    min-width: 10px;
    padding: 0 7px;
    border-radius: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.03) inset;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.03) inset;
  }
  .dropdown-menu.show {
    max-height: 700px;
    overflow: visible;
    visibility: visible;
    opacity: 1;
  }
  .dropdown-menu.dropdown-item {
    color: #102037;
    background-color: transparent;
    border-bottom: 1px solid #eee;
  }
  .nav-item.dropdown.show .dropdown-toggle i {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .dropdown-submenu.show .drp-submenu {
    max-height: 500px;
    overflow: visible;
    background-color: #dbe8fb;
  }
  .dropdown-submenu.show .drp-arrow i {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .head-links {
    text-align: center;
  }
  .start-cta .btn-main {
    padding: 1.1rem 3rem !important;
    margin-top: 1.1rem;
  }
}
.home-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

@media (max-width: 1024px) {
  html {
    font-size: 60%;
  }
  .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;
    width: 220px;
  }
  .section-divider {
    margin: 0 0 5rem;
  }
  .grey-bg {
    padding: 5rem 0;
  }
  .pad-80 {
    padding: 5rem 0;
  }
}
@media (max-width: 990px) {
  html {
    font-size: 55%;
  }
  .copyright-bg p,
  .copyright-bg a {
    text-align: center;
  }
  .logo-area img {
    width: 160px;
  }
  .grey-bg {
    border-radius: 0 150px 0 0;
  }
  footer .top-footer .footer-nav {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  header .top_bar ul {
    gap: 1rem;
  }
  .section-divider {
    margin: 0 0 4rem;
  }
  .grey-bg {
    padding: 4rem 0;
    border-radius: 0 100px 0 0;
  }
  .pad-80 {
    padding: 4rem 0;
  }
  .btn-main {
    padding: 10px 20px 10px;
  }
  .logo-area img {
    max-width: 130px;
  }
  .header-tp-block .header-tp-block-r a i {
    margin-right: 0px;
  }
  .header-tp-block .header-tp-block-r a {
    margin-left: 20px;
  }
  footer .top-footer {
    text-align: center;
  }
  footer .top-footer .footer-nav {
    gap: 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 3rem;
  }
  footer .last-footer p {
    text-align: center;
  }
  footer .last-footer .powered-by {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/********************************* 17 Jan 2023 **********************************************/
.floating {
  position: fixed;
  overflow: hidden;
  font-size: 18px;
  line-height: 28px;
  padding: 11px 30px;
  border-radius: 30px;
  bottom: 90px;
  right: 20px;
  background: #403f99;
  background: linear-gradient(63deg, rgb(64, 63, 153) 0%, rgb(88, 54, 150) 25%, rgb(156, 31, 145) 100%) !important;
  color: #fff;
  text-align: center;
  z-index: 999;
}

.floating:hover,
.floating:focus {
  color: #fff;
}

#floating-modal .modal-header {
  border: none;
  padding: 0;
}

#floating-modal .modal-content {
  border-radius: 20px;
}

#floating-modal .modal-body {
  position: relative;
  padding: 20px;
}

#floating-modal .modal-body:before {
  content: "";
  position: absolute;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  width: 50%;
  top: 0;
  left: 0;
  border-radius: 20px 0 0 20px;
  background-image: url(../images/fyne-teams.webp);
}

#floating-modal .btn-close {
  width: 35px;
  height: 35px;
  background-color: #403f99;
  display: inline-block;
  text-align: center;
  color: #fff;
  position: absolute;
  border-radius: 0 20px 0 0;
  background-image: none;
  font-size: 2rem;
  line-height: 3rem;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  z-index: 99;
}

@media (max-width: 990px) {
  #floating-modal .modal-body::before {
    content: none;
  }
}
@media (max-width: 767px) {
  .floating {
    bottom: 4px;
    right: 0;
    padding: 7px 25px;
    font-size: 16px;
    line-height: 26px;
  }
  .scroll-to-top {
    -webkit-animation: none;
    animation: none;
    bottom: 50px;
  }
}
#floating-modal .appoinment-form {
  padding: 10px 10px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.rounded {
  border-radius: 10px;
  border-radius: 0 10px 0 0;
}

.repu-badge {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0 10px;
  border-radius: 0 25px 0 0;
}

/**************/
.dna-shape-mockup {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.dna-design {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.dna-design span {
  width: 80px;
  height: 4px;
  background: #f05b72;
  margin: 6px;
  position: relative;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-animation: dnaShapeAnimation 2.5s linear infinite;
          animation: dnaShapeAnimation 2.5s linear infinite;
}
.dna-design span:before, .dna-design span:after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f05b72;
  position: absolute;
  top: calc(50% - 5px);
}
.dna-design span:after {
  right: -8px;
}
.dna-design span:before {
  left: -8px;
}
.dna-design span:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.dna-design span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.dna-design span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.dna-design span:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.dna-design span:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.dna-design span:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.dna-design span:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.dna-design span:nth-child(8) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.dna-design span:nth-child(9) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.dna-design span:nth-child(10) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.dna-design span:nth-child(11) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.dna-design span:nth-child(12) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.dna-design span:nth-child(13) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.dna-design span:nth-child(14) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.dna-design span:nth-child(15) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.dna-design span:nth-child(16) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.dna-design span:nth-child(17) {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}
.dna-design span:nth-child(18) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

@-webkit-keyframes dnarotate {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(359deg);
            transform: rotateZ(359deg);
  }
}

@keyframes dnarotate {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(359deg);
            transform: rotateZ(359deg);
  }
}
@-webkit-keyframes dnaShapeAnimation {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(359deg);
            transform: rotateY(359deg);
  }
}
@keyframes dnaShapeAnimation {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(359deg);
            transform: rotateY(359deg);
  }
}
input.wpcf7-form-control.wpcf7-submit {
    color: #fff;
}
.grecaptcha-badge {
    visibility: hidden !important;
}
