:root {
  --primary: #1e2e5f;
}

* {
  outline: 0 !important;
}

html a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-decoration: none;
}

html a:hover {
  text-decoration: none;
}

svg,
img {
  max-width: 100%;
  height: auto;
  width: auto;
}

html .container {
  max-width: 1175px;
  position: relative;
}

section {
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
  z-index: 1;
}

p {
  line-height: 160%;
  margin-bottom: 0px;
}

p:last-child {
  margin-bottom: 0;
}

#wrapper {
  overflow: hidden;
  max-width: 100%;
}

::selection {
  color: #fff;
  background: #1e2e5f;
}

b,
strong {
  font-weight: 600;
}

/* Custom Styles Close*/
/* Loaded Styles */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader {
  z-index: 9999;
  max-width: 200px;
}

#loader span {
  color: #fff;
  margin: 26px 0 0 0;
  display: none;
  font-size: 26px;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#loader-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  left: 0;
}

#loader-wrapper .loader-section {
  background: #1e2e5f;
  transform: scale(3);
  border-radius: 8000px;
  width: 1000px;
  height: 1000px;
  margin: auto;
  position: absolute;
  left: -1000px;
  top: -1000px;
  right: -1000px;
  bottom: -1000px;
}

.loaded #loader-wrapper .loader-section-wrap .loader-section {
  transform: scale(0);
  -webkit-transition: all 0.2s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.2s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transition: all 0.2s 1s ease-out;
  transition: all 0.2s 1s ease-out;
}

@-webkit-keyframes bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
/* Loaded Styles Close*/
/*-------header-start-----*/
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 89;
  transition: all 0.5s;
  background: transparent;
  padding: 10px 0px;
  transition: 0.6s;
}

.sticky header {
  top: 0px;
  background: #1e2e5f;
  transition: 0.6s;
}

.sticky .logo {
  /* width: 100px;*/
  width: 60px;
  transition: 0.6s;
}

header .logo {
  display: block;
  max-width: 155px;
  transition: all 0.5s;
}

header .navbar {
  padding: 0 0;
  position: relative;
  transition: all 0.5s;
}

.header-right {
  margin-left: auto;
  margin-right: 0;
  display: flex;
  align-items: center;
}

.toggle-menu {
  display: block;
}

@media (min-width: 992px) {
  .toggle-menu {
    display: none !important;
  }
}

header .navbar-nav {
  display: flex;
  flex-direction: row;
}

header .navbar-nav > li {
  transition: all 0.3s;
  position: relative;
}

header .navbar-nav > li > a {
  display: inline-block;
  font-family: "Mukta";
  vertical-align: top;
  padding: 5px 0;
  text-transform: capitalize;
  color: #ffffff;
  font-style: normal;
  font-weight: 400;
  font-size: 16.67px;
  line-height: 28px;
  letter-spacing: 1px;
}

header .navbar-nav > li + li {
  margin-left: 40px;
}

header .navbar-nav > li:hover > a,
header .navbar-nav > li.active > a {
  color: #fff;
}

header .navbar-nav > li > a:before {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  height: 3px;
  background: #fff;
  width: 0%;
  margin: auto;
  transition: all 0.5s;
}

header .navbar-nav > li:hover > a:before,
header .navbar-nav > li.active > a:before {
  width: 100%;
}

.navbar-inner {
  display: flex;
  align-items: center;
}

.header-btn {
  margin-left: 40px;
}

.header-btn a {
  background: var(--primary);
  line-height: 50px;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  padding: 0 24px;
  font-size: 15px;
}

.header-btn a:hover {
  background: var(--dark);
  color: #fff;
}

header .navbar-nav > li.submenu-parent > a:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(45deg);
  margin: -2px 0 0 8px;
}

header .navbar-nav > li ul {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  padding: 10px 0;
  list-style: none;
  margin: 10px 0 0;
  min-width: 180px;
  border-radius: 4px;
  box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s;
}

header .navbar-nav li:hover > ul {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s;
}

header .navbar-nav > li ul ul {
  left: 100%;
  top: 0;
}

header .navbar-nav > li ul li {
  position: relative;
  padding: 6px 20px;
  line-height: 120%;
}

header .navbar-nav > li ul li.submenu-parent:after {
  content: "";
  display: block;
  position: absolute;
  right: 12px;
  top: 11px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #111;
  border-right: 2px solid #111;
  transform: rotate(45deg);
}

header .navbar-nav > li ul a {
  color: var(--dark);
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  display: inline-block;
  vertical-align: top;
  text-transform: capitalize;
}

header .navbar-nav > li ul a:hover {
  color: #1e2e5f;
}

ul.header-info {
  display: flex;
  align-items: center;
}

ul.header-info li:not(:last-child) {
  padding-right: 14px;
  margin-right: 14px;
  border-right: 1px solid #fff;
}

ul.header-info li svg {
  width: 17px;
  margin-right: 5px;
  max-height: 14px;
}

ul.header-social {
  display: flex;
  flex-wrap: wrap;
}

ul.header-social li + li {
  margin-left: 25px;
}

ul.header-social li a {
  display: flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
}
/*--------------------menu-bar------------*/
.responsive-menu {
  position: fixed;
  display: block;
  right: 0;
  top: 0;
  bottom: 0;
  width: 25%;
  background: #fff;
  z-index: 999999;
  transition: all 0.5s;
  transform: translatex(100%);
  overflow: auto;
  display: flex;
  padding: 0px;
  flex-direction: column;
}

.menu-show .responsive-menu {
  transform: translatex(0);
}

.header-menu-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 98;
  backdrop-filter: blur(7px);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}

.menu-show .header-menu-overlay {
  opacity: 1;
  visibility: visible;
}

.toggle-menu {
  display: block;
  z-index: 99;
  width: 40px;
  height: 40px;
  border: 0;
  background: rgba(0, 0, 0, 0);
  border-radius: 50%;
  margin-left: auto;
  position: relative;
  order: 1;
  margin-left: 0px;
}

.toggle-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffff;
  position: absolute;
  left: 13px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.4s;
  transform-origin: left center;
}

.toggle-menu span:nth-child(1) {
  top: -16px;
}

.toggle-menu span:nth-child(2) {
  width: 18px;
}

.toggle-menu span:nth-child(3) {
  top: 16px;
}

.toggle-menu:hover span:nth-child(2) {
  width: 24px;
}

.menu-show .toggle-menu span:nth-child(2) {
  width: 0;
}

.menu-show .toggle-menu span:nth-child(1) {
  transform: rotate(45deg);
  top: -17px;
  left: 16px;
  background: #1e2e5f;
}

.menu-show .toggle-menu span:nth-child(3) {
  transform: rotate(-45deg);
  top: 17px;
  left: 16px;
  background: #1e2e5f;
}

.responsive-menu .toggle-menu {
  margin-left: auto;
  order: -1;
  top: 20px;
  right: 12px;
}

ul.navbar-nav-responsive {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

ul.navbar-nav-responsive > li {
  cursor: pointer;
  padding: 12px 30px;
}

ul.navbar-nav-responsive > li > button {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.5s;
  position: relative;
  border: 0px;
  background: transparent;
  padding: 0px;
}

ul.navbar-nav-responsive > li:before {
  content: "";
  position: absolute;
  width: 0%;
  left: 30px;
  right: 100%;
  bottom: 5px;
  background: #1e2e5e;
  height: 3px;
  transition: all 0.5s;
}

ul.navbar-nav-responsive > li:hover button {
  color: #1e2e5f;
  letter-spacing: 1px;
}

ul.navbar-nav-responsive > li:hover:before {
  width: 30px;
  right: 0;
}
/* ul.navbar-nav-responsive > li + li {
        margin-top: 25px;
    }*/
/*ul.navbar-nav-responsive > li.active > a{
        color:var(--primary);
    }*/
ul.navbar-nav-responsive > li {
  position: relative;
}

ul.navbar-nav-responsive > li ul {
  display: none;
  background: #fff;
  padding: 8px 0;
  margin-top: 8px;
  border-radius: 5px;
  list-style: none;
}

ul.navbar-nav-responsive > li ul li {
  padding: 8px 15px;
  position: relative;
  line-height: 120%;
}

ul.navbar-nav-responsive li.submenu_active > ul {
  display: block;
}

ul.navbar-nav-responsive > li ul li + li {
  margin-top: 0;
}

ul.navbar-nav-responsive > li ul a {
  color: var(--dark);
  font-size: 15px;
  font-weight: 600;
  line-height: 120%;
  display: inline-block;
  vertical-align: top;
  text-transform: uppercase;
}

ul.navbar-nav-responsive > li ul a:hover {
  color: var(--primary);
}

ul.navbar-nav-responsive li .submenu-toggle {
  width: 28px;
  height: 28px;
  position: absolute;
  right: 0;
  top: -2px;
  color: #fff;
}

ul.navbar-nav-responsive > li ul li .submenu-toggle {
  color: #222;
  margin: 5px;
}

ul.navbar-nav-responsive li .submenu-toggle:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: -5px;
  bottom: 0;
  margin: auto;
  height: 10px;
  width: 10px;
  border-right: 2px solid;
  margin: auto;
  border-bottom: 2px solid;
  transform: rotate(45deg);
  border-color: #000;
}

ul.navbar-nav-responsive li.submenu_active > .submenu-toggle:before {
  top: 5px;
  transform: rotate(225deg);
}

/*-------header-end-----*/
.jarallax {
  position: relative;
  z-index: 0;
}

.jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  font-family: "object-fit: cover;";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.banner-box[data-duration="200"] {
  animation-delay: 0.2s;
}

.banner-box[data-duration="400"] {
  animation-delay: 0.4s;
}

.banner-box[data-duration="600"] {
  animation-delay: 0.6s;
}

.banner-box[data-duration="800"] {
  animation-delay: 0.8s;
}
/*------------------------footer-css----------------------------*/
.footer-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #203061;
  padding-top: 70px;
}

.footer-section:before {
  content: "";
  position: absolute;
  background-image: url(../images/testimonials.svg);
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  mix-blend-mode: color-dodge;
  animation: 3s bganimation infinite alternate;
  border-radius: 20px;
}

@keyframes bganimation {
  0% {
    opacity: 0.2;
  }

  30% {
    opacity: 0.4;
  }

  60% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

.footer-section .fooret-text {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 28px;
}

.footer-section .fooret-title {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}

.foot-links {
  list-style: none;
  padding-left: 0px;
}

.foot-links li a {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 230%;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.5s;
  display: inline-block;
}

.foot-links li a:hover {
  transform: translate(10px);
  color: rgba(255, 255, 255, 1);
}

.socialicon-block {
  list-style: none;
  padding-left: 0px;
}

.socialicon-block li a {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 230%;
  color: #ffffff;
  transition: all 0.5s;
}

.socialicon-block li:hover {
  transform: translateX(10px);
}

.socialicon-block li a img {
  margin-right: 15px;
}

.socialicon-block li + li {
  margin-top: 5px;
}

.footer-bottom-link {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding: 26px 0px 20px 0px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-link p {
  font-style: normal;
  font-weight: 400;
  font-size: 16.67px;
  line-height: 28px;
  margin: 0px;
  color: #ffffff;
}

.footer-bottom-icons {
  display: flex;
  align-items: center;
}

.footer-bottom-icons a + a {
  margin-left: 29px;
  transition: all 0.5s;
  display: inline-block;
}

.footer-bottom-icons a:hover {
  transform: scale(1.2);
}

.animate {
  opacity: 0;
  transition: all 0.5s;
}

[data-animation="fadeInUp"],
[data-animation="fadeInDown"],
[data-animation="fadeInLeft"],
[data-animation="fadeInRight"],
[data-animation="backInDown"],
[data-animation="zoomIn"] {
  opacity: 0;
  transition: all 0.5s;
}

.animated[data-animation="fadeInUp"],
.animated[data-animation="fadeInDown"],
.animated[data-animation="fadeInLeft"],
.animated[data-animation="fadeInRight"],
.animated[data-animation="zoomIn"] {
  opacity: 1;
}

.animated {
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  opacity: 1;
}

[data-animation-delay="0.1s"] {
  animation-delay: 0.1s;
}

[data-animation-delay="0.2s"] {
  animation-delay: 0.2s;
}

[data-animation-delay="0.3s"] {
  animation-delay: 0.3s;
}

[data-animation-delay="0.4s"] {
  animation-delay: 0.4s;
}

[data-animation-delay="0.5s"] {
  animation-delay: 0.5s;
}

[data-animation-delay="0.6s"] {
  animation-delay: 0.6s;
}

[data-animation-delay="0.7s"] {
  animation-delay: 0.7s;
}

[data-animation-delay="0.8s"] {
  animation-delay: 0.8s;
}

[data-animation-delay="0.9s"] {
  animation-delay: 0.9s;
}

[data-animation-delay="0.10s"] {
  animation-delay: 0.1s;
}

[data-animation-delay="1s"] {
  animation-delay: 2s;
}

[data-animation-delay="2s"] {
  animation-delay: 2s;
}

[data-animation-delay="3s"] {
  animation-delay: 3s;
}

[data-animation-delay="4s"] {
  animation-delay: 4s;
}

[data-animation-delay="5s"] {
  animation-delay: 5s;
}

div#fullpage {
  overflow-x: hidden;
  overflow-y: hidden;
}

.fp-section-conetnt-bottom .fp-tableCell {
  vertical-align: bottom;
}

.career-bg-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: -1;
}

.circle-line-wrap {
  position: absolute;
  left: -150px;
  bottom: -200px;
  z-index: -1;
  width: 780px;
  height: 780px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  transform: rotate(40deg);
}

.circle-line-wrap svg {
  width: 100%;
  height: 100%;
}

svg .svg-linecircle-1 {
  stroke-dashoffset: 3049.344873982099px;
  stroke-dasharray: 3049.344873982099px;
  -webkit-transition: stroke-dashoffset 2.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  transition: stroke-dashoffset 2.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
}

svg .svg-linecircle-2 {
  stroke-dashoffset: 2923.6811678385075px;
  stroke-dasharray: 2923.6811678385075px;
  -webkit-transition: stroke-dashoffset 2.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
  transition: stroke-dashoffset 2.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
}

.active .circle-line-wrap svg .svg-linecircle-1,
.active .circle-line-wrap svg .svg-linecircle-2 {
  stroke-dashoffset: 0;
}

.twoline-animation {
  position: absolute;
  right: -120px;
  bottom: -100px;
  z-index: -1;
  width: 520px;
  background: #edf0f0;
  padding-top: 85px;
  padding-left: 90px;
  box-shadow: -55px 0px 0 0 #edf0f0;
}

.twoline-animation-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  transform: rotate(180deg);
  width: 455px;
}

svg .svg-twolines-1 {
  stroke-dashoffset: 603.2215576171875px;
  stroke-dasharray: 603.2215576171875px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
}

svg .svg-twolines-2 {
  stroke-dashoffset: 603.2215576171875px;
  stroke-dasharray: 603.2215576171875px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
}

.active .twoline-animation svg .svg-twolines-1,
.active .twoline-animation svg .svg-twolines-2 {
  stroke-dashoffset: 0;
  stroke-dashoffset: 0;
}

.nopad {
  padding: unset;
}

.justify-content-left {
  justify-content: unset !important;
}

.slider-text .f-18 {
  font-size: 18px !important;
}

.hight-fit-content {
  height: fit-content !important;
}

.w-20p {
  width: 20px !important;
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 94px;
  right: 10px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 999;
}

@media (max-width: 767px) {
  .float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 94px;
    right: 10px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 999;
    top: 500px;
  }

  .video-size {
    width: -webkit-fill-available !important;
    height: auto !important;
  }

  .mb-50 {
    margin-bottom: auto !important;
  }

  .h-500 {
    height: auto !important;
  }

  .h-450 {
    height: auto !important;
  }

  .h-475 {
    height: auto !important;
  }

  .features-tab-section .nav-tabs:before {
    content: "";
    position: absolute;
    background: none !important;
    /* width: 520px;*/
    width: auto;
    height: 3px;
    right: 0;
    left: 0;
    bottom: 0;
  }

  .features-tab-section .nav-tabs .nav-link:before {
    background: transparent !important;
  }

  #vad-tab .nav-link.active {
    color: #ffffff !important;
    background-color: #1e2e5f !important;
  }

  .features-tab-section .nav-tabs .nav-link {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 33px;
    color: none !important;
    padding: 5px 10px 5px 10px !important;
    border: 0;
    position: inherit !important;
  }

  .nav-item {
    margin-left: 0px !important;
    margin-right: auto;
  }

  .features-tab-section .nav-tabs .nav-item + .nav-item {
    margin-left: 0px !important;
    margin-right: auto;
  }

  .nav-tabs .nav-link {
    margin-bottom: 0 !important;
    background: 0 0;
    border: 0 !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
}

.my-float {
  margin-top: 16px;
}

.pl-0 {
  padding-left: 0px !important;
}

#quicksupport_checkAcknowledge {
  width: 30px !important;
}

.text-justify {
  text-align: justify !important;
}

.ht-fitcontent {
  height: fit-content;
}

.h-450 {
  height: 450px;
}

.f-17 {
  font-size: 17px !important;
}

.video-size {
  width: 500px;
  height: 300px;
  background-color: #000;
}

.mb-50 {
  margin-bottom: -50px;
}

.h-500 {
  height: 500px;
}

.h-475 {
  height: 475px;
}

/*------------------quick-support-section-----------------*/
.quick-support-section {
  width: 100%;
  position: relative;
  background: #e9eaef;
}

.quick-support-section .quick-main-title span {
  margin-bottom: 15px;
  color: #1e2e5f;
  display: inline-block;
}

.quick-support-section .quick-main-title p {
  margin: 20px 0px 37px 0px;
  padding-right: 80px;
}

.quick-support-section .call-us h6 {
  font-family: "Teko";
  font-style: normal;
  font-weight: 600;
  font-size: 25px;
  line-height: 36px;
  color: #030509;
  margin-bottom: 20px;
}

.quick-support-section .call-us h5 {
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 43px;
  margin-bottom: 0px;
  color: #030509;
}

.quick-support-section .call-us .call-round {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e2e5f;
  margin-right: 20px;
  box-shadow: 3px 4px 9px rgb(0 0 0 / 20%);
  border-radius: 100%;
  position: relative;
}

.quick-support-section .call-us .call-round img {
  animation: 2s quickimg infinite alternate;
  z-index: 2;
}

@keyframes quickimg {
  0% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(10deg);
  }

  40% {
    transform: rotate(0deg);
  }

  60% {
    transform: rotate(10deg);
  }

  80% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(10deg);
  }
}

.quick-support-section .call-us .call-round:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  right: 0;
  top: 0;
  z-index: 1;
  border-radius: 100%;
  animation: 2s quickbefore infinite;
}

@keyframes quickbefore {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}
/*-----quick-input---*/
.quick-right-input .box {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}

.quick-right-input .box input,
.quick-right-input .box textarea {
  position: relative;
  border: none;
  outline: none;
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  padding: 8px 0;
  line-height: 27px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  z-index: 2;
  transition: 0.5s;
  color: #000;
}

.quick-right-input .box textarea {
  padding-top: 10px !important;
}

.quick-right-input .box input:focus,
.quick-right-input .box textarea:focus {
  border-color: #1e2e5f;
}

.quick-right-input .box span {
  display: inline-block;
  position: absolute;
  left: 0;
  color: #5d5e60;
  font-size: 22px;
  font-weight: 400;
  z-index: 1;
  transition: 0.5s;
}

.quick-right-input .box input + span {
  top: 0%;
}

.quick-right-input .box input:focus + span,
.quick-right-input .box input:valid + span {
  color: #1e2e5f;
  top: -22%;
  font-size: 14px;
  font-weight: 600;
}

.quick-right-input .box textarea + span {
  top: 0%;
}

.quick-right-input .box textarea:focus + span,
.quick-right-input .box textarea:valid + span {
  color: #1e2e5f;
  font-size: 14px;
  font-weight: 600;
  top: -11px;
  background: #e9eaef;
  z-index: 99;
}

.quick-right-input .box span .span {
  color: red;
}

.quick-button .button {
  border-radius: 6px;
  margin-top: 60px;
}
/*-------check-box-----*/
.quick-right-input .checkbox-input input[type="checkbox"] + label {
  display: block;
  cursor: pointer;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  color: #5d5e60;
}

.quick-right-input .checkbox-input input[type="checkbox"] + label a {
  text-decoration: underline;
}

.quick-right-input .checkbox-input input[type="checkbox"] {
  display: none;
}

.quick-right-input .checkbox-input input[type="checkbox"] + label:before {
  content: "\2714";
  border: 0.1em solid #000;
  border-radius: 0.2em;
  display: inline-block;
  width: 22px;
  height: 22px;
  padding-left: 0.2em;
  padding-bottom: 0.3em;
  margin-right: 19px;
  vertical-align: bottom;
  color: transparent;
  transition: 0.2s;
  margin-bottom: 3px;
}

.quick-right-input .checkbox-input input[type="checkbox"] + label:active:before {
  transform: scale(0);
}

.quick-right-input .checkbox-input input[type="checkbox"]:checked + label:before {
  background-color: #1e2e5f;
  border-color: #1e2e5f;
  color: #fff;
}

/* ---------------- */
