:root {
  --alt-font: "Poppins", sans-serif;
  --primary-font: "Poppins", sans-serif;
}
/* ===================================
02. CSS color variable
====================================== */
:root {
  --base-color: #313f84;
  --base2-color: #1bb5c1;
  --white: #ffffff;
  --black: #000000;
  --red: #dc3131;
  --light-red: #feedec;
  --green: #2ebb79;
  --crusoe-green: #d39121;
  --yellow: #ffea23;
  --dark-gray: #232323;
  --medium-gray: #717580;
  --extra-medium-gray: #e4e4e4;
  --light-gray: #a8a8a8;
  --very-light-gray: #f7f7f7;
  --light-medium-gray: #eaeaeb;
  --charcoal-blue: #202329;
  --slate-blue: #262b35;
  --medium-slate-blue: #374162;
  --extra-medium-slate-blue: #23262d;
  --dark-slate-blue: #1f232c;
  --extra-dark-slate-blue: #121418;
  --extra-very-slate-blue: #161620;
  --tussock-yellow: #BC8947;
  --aluminium-grey:#80858F;
  --solitude-blue:#f0f4fd;
  --golden-yellow:#fd961e;
  --selago:#eaedff;
  --white-ice:#d8f5ef;
  --cornflower-blue:#445fed;
  --jade:#00AF6B;
  --orange: #ef991f;
  --majorelle-blue: #724ade;
  --light-majorelle-blue: #f2edfe;
  --spring-wood: #f9f6f3;
  --tropical-blue: #1ea3b1;
  --camarone: #20642b;
  --seal-brown: #0e0708;
  --Wasabi: #8ea63a;
}
/* ===================================
03. Reset
====================================== */
.alt-font {
  font-family: var(--alt-font);
}
html {
  font-size: 16px;
}
body {
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: var(--medium-gray);
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}
section {
  padding-top: 60px;
  padding-bottom: 60px;
}
img {
  max-width: 100%;
  height: auto;
}
ul li {
  list-style: none;
}
a {
  color: var(--medium-gray);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}
a:hover {
  color: var(--base-color);
  text-decoration: none;
}
p {
  margin-bottom: 25px;
}
.last-paragraph-no-margin p:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .video-wrapper{
    height: 500px;
  }
}
video {
  background-size: cover;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  object-fit: cover;
}
video{
  border-radius: 25px;
}
:focus-visible {
  outline: none;
}
[class*=bi-], [class*=feather] {
  display: inline-block;
}
.form-control {
  background-position: right 20px center !important;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row > * {
  padding-right: 15px;
  padding-left: 15px;
}
.row.g-0 {
  margin-right: 0;
  margin-left: 0;
}
.row.g-0 > * {
  padding-right: 0;
  padding-left: 0;
}
/* ===================================
04. Typography
====================================== */
/* Heading */
h1, h2, h3, h6 {
  margin-bottom: 30px;
  font-weight: inherit;
}
h1 {
  font-size: 4.375rem;
  line-height: 4.375rem;
}
h2 {
  font-size: 36px;
  line-height: 1.4;
}
h3 {
  font-size: 2.813rem;
  line-height: 3.125rem;
}
h6 {
  font-size: 1.75rem;
  line-height: 1.95rem;
}
/* Font custom */
/* Font size */
.fs-14 {
  font-size: 14px;
}
.fs-15 {
  font-size: 15px;
}
.fs-16 {
  font-size: 16px;
}
.fs-18 {
  font-size: 18px;
}
.fs-19 {
  font-size: 19px;
}
.fs-20 {
  font-size: 20px;
}
.fs-22 {
  font-size: 22px;
}
.fs-24 {
  font-size: 24px;
  line-height: 32px;
}
.fs-32 {
  font-size: 2rem;
  line-height: 2.5rem;
}
.fs-42 {
  font-size: 42px;
  line-height: 1.3;
}
.fs-46 {
  font-size: 46px;
  line-height: 1.3;
}
/* Line height */
.lh-0px {
  line-height: 0px;
}
.lh-20 {
  line-height: 20px;
}
.lh-24 {
  line-height: 24px;
}
.lh-26 {
  line-height: 26px;
}
.lh-36 {
  line-height: 2.25rem;
}
/* Text color */
.text-white {
  color: var(--white);
}
.text-base-color {
  color: var(--base-color);
}
.text-base-color-2 {
  color: var(--base2-color);
}
.text-dark-gray {
  color: var(--dark-gray);
}
/* Text gradient color */
/* Text shadow */
/* Text bottom line */
.text-decoration-line-bottom {
  border-bottom: 1px solid;
}
/* Text outline*/
/* Text stroke width */
/* Text stroke color */
/* Letter spacing */
.ls-0px {
  letter-spacing: 0px !important;
}
/* Icon size */
.icon-medium {
  font-size: 34px;
}
.icon-very-medium {
  font-size: 28px;
}
.icon-extra-medium {
  font-size: 24px;
}
.icon-small {
  font-size: 18px;
}
/* ===================================
05. General
====================================== */
/* Separator line */
/* Separator vertical line */
/* Separator line size */
/* Opacity */
/* Position */
/* Vertical title center */
/* Skrollr */
.skrollr-parallax {
  position: relative !important;
  background-size: cover !important;
  background-attachment: fixed !important;
  transition-timing-function: none;
  -webkit-transition-timing-function: none;
  transition-duration: 0s;
  -webkit-transition-duration: 0s;
}
/* Transform */
/* Transition */
.transition-inner-all * {
  -webkit-transition: all 400ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 400ms cubic-bezier(0.37, 0, 0.63, 1);
}
/* Pointer events */
/* Sticky column */
/* Overflow */
.overflow-visible {
  overflow: visible !important;
}
/* Overlap section */
.overlap-height {
  transition: 0.3s height;
}
/* Outside box */
.outside-box-right-15 {
  margin-right: -15vw;
}
/* CSS filter */
/* Box shadow */
.box-shadow-medium {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}
.box-shadow-large {
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}
.box-shadow-double-large {
  -webkit-box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}
/* Input */
input, textarea, .form-control {
  padding: 12px 25px;
  width: 100%;
  max-width: 100%;
  resize: none;
  outline: none;
  font-size: 16px;
  border: 1px solid #e4e4e4;
  color: var(--medium-gray);
  line-height: inherit;
  word-break: normal;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
input:focus, textarea:focus, .form-control:focus {
  border: 1px solid #c2c2c2;
  box-shadow: none !important;
  color: var(--medium-gray);
}
::-webkit-input-placeholder {
  color: var(--medium-gray) !important;
  text-overflow: ellipsis;
}
::-moz-placeholder {
  color: var(--medium-gray) !important;
  text-overflow: ellipsis;
  opacity: 1;
}
:-ms-input-placeholder {
  color: var(--medium-gray) !important;
  text-overflow: ellipsis;
  opacity: 1;
}
/* Select */
/* Date icon */
/* Mozilla firefox */
@-moz-document url-prefix() {
}
/* Time icon */
/* Input size */
/* Box overlay */
/* Swiper slider pagination */
/* Swiper pagination style 02 */
/* Swiper pagination style 03 */
/* Swiper pagination style 04 */
/* Custom image pagination */
/* Swiper number pagination style 01 */
/* Swiper number pagination style 02 */
/* Swiper line pagination style 01 */
/* Swiper number line pagination style */
/* Swiper number navigation style */
/* Swiper pagination progress style */
/* Swiper pagination progress style */
/* Swiper pagination bottom */
/* Swiper navigation */
.swiper-button-prev, .swiper-button-next {
  outline: none;
  cursor: pointer;
  height: 45px;
  width: 45px;
  margin-top: 0;
  text-align: center;
  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;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  opacity: 0.8;
}
.swiper-button-next {
  left: inherit;
}
/* Swiper navigation style 01 */
/* Swiper navigation style 02 */
/* Swiper navigation style 03 */
/* Swiper navigation style 04 */
.slider-navigation-style-04 {
  height: 56px;
  width: 56px;
  border-radius: 100%;
  position: relative;
  bottom: inherit;
  left: 0;
  top: inherit;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slider-navigation-style-04 i {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.testimonial-section .slider-navigation-style-04 i{
  color: #fff;
}
.slider-navigation-style-04:hover i {
  opacity: 0.5;
}
.slider-navigation-style-04.swiper-button-prev {
  margin-right: 5px;
}
.slider-navigation-style-04.swiper-button-next {
  margin-left: 5px;
}
/* Swiper navigation style 05 */
/* Swiper navigation style 06 */
/* Swiper navigation style 07 */
/* Swiper navigation style 08 */
/* Slider custom text */
/* Swiper width auto */
/* Slider shadow */
.slider-shadow-right {
  mask-image: linear-gradient(to right, transparent 0%, #000000 0%, #000000 50%, transparent 80%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000000 0%, #000000 50%, transparent 80%);
}
/* Highlight separator */

@media (min-width: 768px) {
  .full-screen {
    height: 100vh;
  } 
  header .navbar {
    /* position: absolute; */
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
  }
}
/* Video icons */
/* HTML video play */
/* Will change */
/* Float animation */
.animation-float {
  animation: float 2000ms linear 500ms infinite alternate both;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(30px);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(10px);
  }
}
/* Zoom animation */
/* Box shadow animation  */
/* Parallax liquid  */
/* Masked image animation */
/* Shape image animation */
/* Magic cursor */
/* Anime animation */
[data-anime] {
  opacity: 0;
  transition: none;
}
[data-anime].appear {
  opacity: 1;
}
[data-anime].btn {
  transition: none;
}
[data-anime].btn.anime-complete {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
/* Atropos box */
.atropos-shadow {
  background-color: transparent !important;
  filter: inherit;
}
.atropos-highlight {
  background-image: inherit !important;
}
/* Only for safari browser */
@media not all and (min-resolution: 0.001dpcm) {
  [data-anime] [class*=text-shadow-] {
    text-shadow: none;
  }
  [data-anime][class*=text-shadow-] {
    text-shadow: none;
  }
  [data-fancy-text] [class*=text-shadow-] {
    text-shadow: none;
  }
  [data-fancy-text][class*=text-shadow-] {
    text-shadow: none;
  }
  /* font awesome icon gradient color */
  .review-star-icon i {
    display: inline;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* color issue */
}
/* Data top bottom transition animation */
[data-top-bottom] {
  transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}
/* Custom cursor */
/* Stack box */
/* Scrolling text */
/* Marquee slide */
.marquee-slide {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}
/* Father shadow */
.feather-shadow {
  mask-image: linear-gradient(to right, transparent 0%, #000000 20%, #000000 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000000 20%, #000000 80%, transparent 100%);
}
/* ===================================
 Background and border
====================================== */
/* Background color */
.bg-very-light-gray {
  background-color: var(--very-light-gray);
}
.bg-yellow {
  background-color: var(--yellow);
}
/* Gradient background color */
/* Transparent background color */
.bg-transparent {
  background-color: transparent;
}
.bg-light {
  background-color: rgba(255, 255, 255, 0.05) !important;
}
.bg-gradient-white-dark-transparent {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, #ffffff), to(transparent));
  background: linear-gradient(to top, #ffffff 30%, rgba(255, 255, 255, 0) 70%);
}
/* Background image */
.cover-background {
  background-repeat: no-repeat !important;
  background-size: cover;
  overflow: hidden;
  position: relative;
  background-position: center center !important;
}
.background-position-right-top {
  background-position: right top !important;
}
.background-no-repeat {
  background-repeat: no-repeat;
}
.background-position-center {
  background-position: center !important;
}
/* Border color */
.border-color-extra-medium-gray {
  border-color: var(--extra-medium-gray) !important;
}
/* Gradient border color */
/* Border radius */
.border-radius-0px {
  border-radius: 0 !important;
}
.border-radius-4px {
  border-radius: 4px !important;
}
.border-radius-6px {
  border-radius: 6px !important;
}
.border-radius-30px {
  border-radius: 30px !important;
}
/* Parallax background */
/* ===================================
 Width
====================================== */
.w-65px {
  width: 65px !important;
}
.w-50 {
  width: 50% !important;
}
.w-80 {
  width: 80% !important;
}
.w-100 {
  width: 100% !important;
}
/* ===================================
 Height
====================================== */
.h-40px {
  height: 40px !important;
}
.h-65px {
  height: 65px !important;
}
/* Screen height */
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}
/* ===================================
 Loop - Padding, margin, position, font weight, min height, opacity and z-index
====================================== */
/* Padding and margin */
.p-35px {
  padding: 35px !important;
}
.p-45px {
  padding: 45px !important;
}
.p-13 {
  padding: 13% !important;
}
.pt-20px {
  padding-top: 20px !important;
}
.pt-25px {
  padding-top: 25px !important;
}
.pt-30px {
  padding-top: 30px !important;
}
.pt-5 {
  padding-top: 5% !important;
}
.pe-15px {
  padding-right: 15px !important;
}
.pe-15 {
  padding-right: 15% !important;
}
.pb-20px {
  padding-bottom: 20px !important;
}
.pb-25px {
  padding-bottom: 25px !important;
}
.pb-30px {
  padding-bottom: 30px !important;
}
.pb-2 {
  padding-bottom: 2% !important;
}
.pb-3 {
  padding-bottom: 3% !important;
}
.pb-5 {
  padding-bottom: 5% !important;
}
.ps-5px {
  padding-left: 5px !important;
}
.ps-15px {
  padding-left: 15px !important;
}
.ps-25px {
  padding-left: 25px !important;
}
.ps-30px {
  padding-left: 30px !important;
}
.ps-15 {
  padding-left: 15% !important;
}
.mt-15px {
  margin-top: 15px !important;
}
.mt-20px {
  margin-top: 20px !important;
}
.mt-30px {
  margin-top: 30px !important;
}
.mt-5 {
  margin-top: 5% !important;
}
.mt-6 {
  margin-top: 6% !important;
}
.me-5px {
  margin-right: 5px !important;
}
.me-10px {
  margin-right: 10px !important;
}
.me-25px {
  margin-right: 25px !important;
}
.mb-5px {
  margin-bottom: 5px !important;
}
.mb-10px {
  margin-bottom: 10px !important;
}
.mb-15px {
  margin-bottom: 15px !important;
}
.mb-20px {
  margin-bottom: 20px !important;
}
.mb-25px {
  margin-bottom: 25px !important;
}
.mb-30px {
  margin-bottom: 30px !important;
}
.mb-40px {
  margin-bottom: 40px !important;
}
.mb-50px {
  margin-bottom: 50px !important;
}
.mb-2 {
  margin-bottom: 2% !important;
}
.mb-3 {
  margin-bottom: 3% !important;
}
.mb-5 {
  margin-bottom: 5% !important;
}
/* Position */
.bottom-50px {
  bottom: 50px;
}
.right-minus-50px {
  right: -50px;
}
.left-minus-50px {
  left: -50px;
}
/* Font weight */
.fw-400 {
  font-weight: 400 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-700 {
  font-weight: 700 !important;
}
/* Min height */
/* Opacity */
/* Z-index */
.z-index-0 {
  z-index: 0;
}
.z-index-1 {
  z-index: 1;
}
.z-index-2 {
  z-index: 2;
}
/* ===================================
10. Header
====================================== */

header .navbar [class*=col-] {
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
header .navbar [class*=col-].text-end {
  justify-content: flex-end !important;
}


header .navbar {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .navbar-brand {
  margin-right: 0;
  vertical-align: middle;
  padding: 10px 0;
  display: inline-block;
  font-size: 0;
}
header .navbar-brand .default-logo {
  visibility: visible;
  opacity: 1;
  width: auto;
}
header .navbar-brand img {
  max-height: 100px;
}
/* Navbar */
.navbar {
  padding: 0;
}
/* Header icon */
.header-icon {
  display: flex;
  align-items: center;
}
button:focus {
  outline: none;
}
/* Sidebar */
/* Grid */
.grid {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* Grid column and gutter spacing */
.grid li img {
  width: 100%;
}
.grid.gutter-extra-large li {
  padding: 8px;
}

/* Alert box */
.alert .close:not(:disabled) {
  opacity: 1;
}
/* Button */
.btn-box-shadow {
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s cubic-bezier(0.2, 0, 0.3, 1);
  transition: all 0.3s cubic-bezier(0.2, 0, 0.3, 1);
}
.btn-box-shadow:hover {
  -webkit-box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
  -webkit-transform: translate3d(0, -2px, 0);
  transform: translate3d(0, -2px, 0);
}
.btn:first-child:active, :not(.btn-check) + .btn:active {
  border-color: initial;
  color: initial;
}
.btn {
  display: inline-block;
  border: 2px solid transparent;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: auto;
  font-family: var(--alt-font);
  font-weight: 500;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn:hover {
  background-color: inherit;
}
.btn i {
  position: relative;
  margin-left: 6px;
}
.btn.btn-large {
  font-size: 16px;
  padding: 18px 34px;
}
.btn.btn-medium {
  font-size: 16px;
  padding: 16px 30px;
}
.btn.btn-rounded.btn-large {
  padding: 14px 36px;
}
.btn.btn-rounded.btn-rounded {
  -webkit-border-radius: 50px;
  border-radius: 50px;
}
.btn.btn-round-edge {
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.btn.btn-link:focus-visible {
  box-shadow: none;
}
.btn.btn-white {
  background-color: var(--white);
  color: var(--dark-gray);
}
.btn.btn-white:hover, .btn.btn-white:active {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}
/* Button icon position */
/* Gradient button */
[class*=btn-gradient-] {
  background-color: transparent;
  border-color: transparent;
}
[class*=btn-gradient-]:active {
  background-color: transparent;
  border-color: transparent !important;
  color: var(--white) !important;
}
[class*=btn-gradient-]:hover {
  background-position: right center;
  color: var(--white);
}
.contact-form-style-03 input, .contact-form-style-03 textarea {
  outline: none;
  border: none;
  border-bottom: 1px solid;
  background: transparent;
  color: #000;
}
.contact-form-style-03 input:focus, .contact-form-style-03 textarea:focus, .contact-form-style-03 .form-control:focus {
  border: 0;
  border-bottom: 1px solid #c2c2c2;
}
.contact-form-style-03 textarea {
  resize: none;
}
.contact-form-style-03 .form-group .form-icon {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.contact-form-style-03 .form-group.form-textarea .form-icon {
  top: 10px;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.contact-form-style-03 .form-control {
  background-position: right 35px center !important;
}
/* Contact form style 06 */
/* Contact form style 07 */
.swiper-button-next, .swiper-button-prev {
  color: var(--dark-gray);
}
.swiper-button-next:after, .swiper-button-prev:after {
  display: none;
  content: "";
}
/* Vertical counter */
.vertical-counter-number {
  overflow: hidden;
  width: 100%;
  height: auto;
}
.vertical-counter-number ul {
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none;
  will-change: transform;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/* Feature box style */
.feature-box {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 1;
}
.feature-box .feature-box-icon i:not([class*=text-gradient-]) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.feature-box.feature-box-left-icon-middle {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
}
.feature-box.feature-box-left-icon-middle .feature-box-icon {
  margin-right: 30px;
}
.feature-box.feature-box-left-icon-middle .feature-box-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.feature-box.feature-box-left-icon-middle {
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-align: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  text-align: left;
}
/* Icon with text style 03 */
/* Icon with text style 05 */
/* Icon with text style 07 */
/* Icon with text style 10 */
/* Icon with text style 11 */
/* Image gallery style 01 */
/* Image gallery style 02 */
/* Image gallery style 03 */
/* Image gallery style 04 */
/* Image gallery style 05 */
/* Image gallery style 06 */
/* Instagram */
/* Interactive banner style 01 */
/* Interactive banner style 02 */
/* Interactive banner style 03 */
/* Interactive banner style 04 */
/* Interactive banner style 05 */
/* Interactive banner style 06 */
/* Interactive banner style 07 */
/* Interactive banner style 08 */
/* Interactive banner style 09 */
/* List style 01 */
/* List style 02 */
/* List style 03 */
/* List style 04 */
/* List style 05 */
/* HTML video */
/* Background video */
/* Modal popup */
/* Zoom animation */
/* Fade animation */
/* Slide up animation */
/* Images gallery */
/* Modal popup */
/* Auto newsletter popup */
/* Parallax background */
[data-parallax-background-ratio] {
  position: relative !important;
  background-size: cover !important;
  overflow: hidden;
  background-attachment: fixed !important;
  transition-duration: 0s;
  -webkit-transition-duration: 0s;
}
.pricing-table-style-09 .row {
  -webkit-transition: all 400ms cubic-bezier(0.61, 1, 0.88, 1);
  transition: all 400ms cubic-bezier(0.61, 1, 0.88, 1);
}
.pricing-table-style-09 .row:hover {
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.process-step-style-05:hover .process-step-icon{
  background: linear-gradient(90deg, #313f84 0%, #1bb5c1 107.36%);
}
.process-step-style-05:hover .process-step-icon i{
  color: #fff;
}
.process-step-style-05 .process-step-item {
  display: flex;
  position: relative;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: flex-start;
  text-align: left;
}
.process-step-style-05 .process-content {
  overflow: hidden;
  flex: 1;
  max-width: 100%;
}
.process-step-style-05 .process-step-icon {
  will-change: transform;
  -webkit-transition: all 350ms cubic-bezier(0.165, 0.84, 0.44, 1.7);
  transition: all 350ms cubic-bezier(0.165, 0.84, 0.44, 1.7);
}
.process-step-style-05:hover .process-step-icon {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.team-style-08{
  border: 1px solid #313f84;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, .17);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.team-style-08 figure {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.5s cubic-bezier(0.2, 0, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.2, 0, 0.3, 1);
  height: 384px;
}
.team-style-08 figure figcaption {
  position: absolute;
  bottom: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.team-style-08 figure figcaption .team-member-name {
  -webkit-transform: translate3d(0, 15px, 0);
  transform: translate3d(0, 15px, 0);
  -webkit-transition: all 0.5s cubic-bezier(0.2, 0, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.2, 0, 0.3, 1);
}
.team-style-08 figure figcaption .member-designation {
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
  -webkit-transition: all 0.7s cubic-bezier(0.2, 0, 0.3, 1);
  transition: all 0.7s cubic-bezier(0.2, 0, 0.3, 1);
}
.team-style-08:hover figure {
  -webkit-transform: translate3d(0, -8px, 0);
  transform: translate3d(0, -8px, 0);
}
.team-style-08:hover figure figcaption .team-member-name {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.team-style-08:hover figure figcaption .member-designation {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/* ===================================
Portfolio
====================================== */
/* Portfolio grid */
.grid-item .portfolio-image img {
  width: 100%;
}
.portfolio-box {
  overflow: hidden;
  will-change: transform;
}
.portfolio-box .portfolio-image {
  position: relative;
  overflow: hidden;
}

/* ===================================
Footer
====================================== */
footer {
  padding-top: 110px;
  padding-bottom: 110px;
}

@media (max-width: 768px) {
  .hero-images {
    margin-top: 30px;
  }
}

.hero-image-box {
  width: 100%;
  position: relative;
  /* display: flex;
  flex-wrap: wrap;
  gap: 30px; */
}
.hero-image-box img{
  border-radius: 25px;
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.hero-section {
  background: url(../images/resources/section-bg-shape.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: auto;
}

@media (min-width: 1199px) {
  .hero-section{
    margin: 60px 0;
  }
}
.insurance_partners .swiper-slide img{
  height: 55px;
}
.bg-grad {
  background: linear-gradient(90deg, #313f84 0%, #1bb5c1 107.36%);
}
@media (max-width: 575px) {
  .hero-section {
    padding-top: 20px !important;
  }
  .slider-navigation-style-04{
    width: 40px !important; 
    height: 40px !important;
  }
  h2 {
    font-size: 22px !important;
    line-height: 32px !important;
  }
  .xs-right-minus-15px{
    right: -15px !important;  
  }
  .xs-left-minus-15px{
    left: -15px !important;  
  }
}
.hero-section .feature-box-icon{
  background: linear-gradient(90deg, #313f84 0%, #1bb5c1 107.36%);
  position: relative;
  /* background-color: var(--dark-divider-color); */
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: all 0.4s ease-in-out;
}

.hero-section .feature-box-icon img{
  width: 30px;
}

.counter-style-02{
  padding: 35px 0;
}
.counter-style-02 span{
  color: #fff;
}

.vertical-counter {
  position: relative;
}

.vertical-counter::after {
  content: "+";
  position: absolute;
  right: -27px; 
  top: 0;
  font-size: inherit;
  color: inherit;
}

.contact-container {
  position: fixed;
  right: 0;
  bottom: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1000;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.call-us, .whatsapp-us {
  background-color: white;
  border: 1px solid #eee;
  border-radius: 18px 0 0 18px;
  max-width: 56px;
  margin-bottom: 10px;
  text-align: center;
  padding: 8px 10px;
  transition: max-width 0.5s ease-in-out, opacity 0.5s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
}

.call-us a, .whatsapp-us a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #707070;
}

.whatsapp-us img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.call-us:hover, .whatsapp-us:hover {
  max-width: 255px;
}

.chat-with-us p {
  margin-bottom: 0;
  line-height: 20px;
}

@media (max-width: 575px) {
  .call-us:hover, .whatsapp-us:hover{
    max-width: 50px !important;
  }
}

.call-us .icons i{
  font-size: 32px;
  color: var(--dark-gray);
}


.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  background-color: rgb(0 0 0 / .4);
}

.popup-content {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
  background-color: #f4f4f4;
  /* padding: 25px; */
}

@media(min-width:768px) and (max-width:1200px) {
  .popup-content {
    width: 450px
  }
}

@media(min-width:1200px) {
  .popup-content {
    width: 40%;
  }
}

@media(max-width:547px) {
  .popup-content {
    width: 95%;
  }
  .popup-content h3{
    font-size: 20px !important;
    line-height: 30px !important;
  }
}

.form-trigger {
  cursor: pointer
}
.close {
  color: #191919;
  z-index: 9;
  float: right;
  font-size: 35px;
  font-weight: 400;
  cursor: pointer;
  position: absolute;
  cursor: pointer;
  top: 10px;
  right: 20px;
}
.close:hover{
  color: #000;
}
.error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.iti{
  width: 100%;
}
.w-20{
  width: 20px !important;
}


@media (min-width: 1199px) {
  .swiper-slide.review-style-06 > div {
    height: 342px !important;
  }
}





.card-style-one img{
  width: 60px !important;
}

@media (max-width: 768px) {
  .card-style-one.arrow:after{
    display: none;
  }
}
.card-style-one.arrow:after {
  content: url(../images/resources/icon_10.svg);
  position: absolute;
  top: 88px;
  left: -90px;
}
.card-style-one.arrow:after {
  left: auto;
  right: -72px;
}

.card-style-one {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}

.working-process__icon{
  width: 150px;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 500px;
  border: 1px dashed rgba(8, 10, 11, 0.3);
  -webkit-filter: drop-shadow(0px 0px 60px rgba(21, 24, 27, 0.1));
  filter: drop-shadow(0px 0px 60px rgba(21, 24, 27, 0.1));
}

.working-process__icon:hover {
  background-color: #fff;
}
.working-process__icon:hover .number {
  background: #000;
  color: #fff;
}

.working-process__icon .number {
  font-size: 16px;
  font-weight: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 500px;
  font-family: var(--rr-ff-heading);
  background: #fff;
  border: 1px dashed rgba(8, 10, 11, 0.3);
}

#subscribe-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Auto newsletter popup */
.subscribe-popup .mfp-close,
.subscribe-popup .mfp-close:active {
  background-color: transparent;
  font-size: 13px;
  line-height: 30px;
  top: 20px;
  right: 20px;
}
.subscribe-popup .mfp-close.mfp-close-btn {
  bottom: 0;
  top: inherit;
  position: relative;
  width: auto;
  right: 0;
  height: auto;
  font-size: 14px;
}
.subscribe-popup .mfp-close.mfp-close-btn:before {
  display: none;
}
.subscribe-popup .mfp-close:before {
  color: var(--dark-gray);
}
.subscribe-popup .newsletter-style-02 input {
  padding-right: 70px;
}
.subscribe-popup .newsletter-style-02 .btn {
  padding: 6px 25px 9px 25px;
}
.newsletter-popup label {
  cursor: pointer;
}

button.mfp-close:active:before, button.mfp-close:before{
    content: "\f00d";
    color: var(--black);
    font-family: "Font Awesome 6 Free";
    font-size: 20px;
    font-weight: 900;
}

button.mfp-close, button.mfp-close:active {
  height: 40px;
  width: 40px;
  position: absolute;
  right: 20px;
  top: 20px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  border: 0;
}


@media (max-width: 991px) {
  .md-h-400px {
    height: 400px !important;
  }
  .popup-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .call-box {
    display: flex;
  }
}

@media (max-width: 575px) {
  .xs-h-400px {
    height: 400px !important;
  }
}

@media (min-width: 991px) {
  .popup-background{
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
  }
  .call-box {
    display: none;
  }
}