@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700;800;900&amp;display=swap");
:root {
  --container-width: 100%;
  --container-sm: 33.75rem;
  --container-md: 45rem;
  --container-lg: 60rem;
  --container-xl: 71.25rem;
  --container-xxl: 90rem;
  --container-fluid: 100%;
  --gutter-x: 1.875rem;
  --gutter-10: 0.625rem;
  --gutter-15: 0.9375rem;
  --gutter-20: 1.25rem;
  --gutter-25: 1.5625rem;
  --gutter-30: 1.875rem;
  --gutter-35: 2.1875rem;
  --gutter-40: 2.5rem;
  --gutter-45: 2.8125rem;
  --gutter-50: 3.125rem;
  --ff-heebo: "Heebo", sans-serif;
  --fw-100: 100;
  --fw-200: 200;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;
  --fw-900: 900;
  --fs-12: 0.75rem;
  --fs-13: 0.8125rem;
  --fs-14: 0.875rem;
  --fs-15: 0.9375rem;
  --fs-16: 1rem;
  --fs-17: 1.0625rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-21: 1.3125rem;
  --fs-24: 1.5rem;
  --fs-25: 1.5625rem;
  --fs-28: 1.75rem;
  --fs-30: 1.875rem;
  --fs-32: 2rem;
  --fs-35: 2.1875rem;
  --fs-40: 2.5rem;
  --fs-45: 2.8125rem;
  --hr-bg: var(--clr-black);
  --hr-width: 100%;
  --hr-height: 0.3125rem;
  --hr-gutter-y: 1.875rem;
  --hr-gutter-x: 0;
  --hr-padding: 0;
  --hr-radius: 0;
  --m: 0;
  --mt: 0;
  --mr: 0;
  --mb: 0;
  --ml: 0;
  --mx: 0;
  --my: 0;
  --m-auto: auto;
  --my-auto: auto;
  --mx-auto: auto;
  --p: 0;
  --pt: 0;
  --pr: 0;
  --pb: 0;
  --pl: 0;
  --px: 0;
  --py: 0;
  --p-auto: auto;
  --py-auto: auto;
  --px-auto: auto;
  --border-width: 0.0625rem;
  --border-style: solid;
  --border-clr: transparent;
  --border: var(--border-width) var(--border-style) var(--border-clr);
  --border-t: var(--border-width) var(--border-style) var(--border-clr);
  --border-r: var(--border-width) var(--border-style) var(--border-clr);
  --border-b: var(--border-width) var(--border-style) var(--border-clr);
  --border-l: var(--border-width) var(--border-style) var(--border-clr);
  --border-x: var(--border-width) var(--border-style) var(--border-clr);
  --border-y: var(--border-width) var(--border-style) var(--border-clr);
  --radius: 0;
  --radius-t: 0;
  --radius-r: 0;
  --radius-b: 0;
  --radius-l: 0;
  --radius-full: 50%;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.06);
  --btn-bg: transparent;
  --btn-clr: inherit;
  --btn-ff: var(--ff-roboto);
  --btn-fs: var(--fs-15);
  --btn-py: 0.625rem;
  --btn-px: 1.125rem;
  --btn-my: var(--my);
  --btn-mx: var(--mx);
  --clr-black: #000;
  --clr-black-1: #9a9a9a;
  --clr-black-2: #787878;
  --clr-black-3: #a5a5a5;
  --clr-black-4: #bbb;
  --clr-black-5: #1e1e1e;
  --clr-black-6: #616161;
  --clr-white: #fff;
  --clr-blue: #0463FA;
  --clr-blue-1: #C7DCFB;
  --clr-blue-2: #3A4B70;
  --clr-orange: #ff5a46;
  --clr-black-100: #c7c7c7;
  --clr-black-200: #787878;
  --clr-yellow: #FFE132;
  --text-clr: #8D8E92;
  --title-clr: #1B2C51;
}
/* Box sizing rules */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

<style>
		@keyframes pulsar{
			0%{transform: scale(1)
			}
			50%{transform: scale(1.1)
			}
			100%{transform: scale(1)
			}
		}
		.pulsar{
			animation: pulsar;
			animation-duration: 2s;
			animation-fill-mode: both;
			animation-iteration-count: infinite;
			
		}
		
	</style>
/* Remove default margin */
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list], ol[role=list] {
  list-style: none;
}
/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}
/* Set core body defaults */
body {
  font-family: var(--ff-heebo);
  font-weight: 400;
  font-size: var(--fs-16);
  line-height: 1.5625rem;
  text-rendering: optimizeSpeed;
  color: var(--text-clr);
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}
/* Make images easier to work with */
img, picture {
  max-width: 100%;
  display: block;
}
/* Inherit fonts for inputs and buttons */
input, button, textarea, select {
  font: inherit;
}
button {
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
}
.hr {
  background: var(--clr-black-200);
  width: 100%;
  height: 1px;
  margin: 50px 0;
  padding: 0;
  border: none;
  border-radius: 0;
  opacity: 1;
}
.col {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.fill-current {
  fill: currentColor;
}
/* Efecto de fade en la animación de cargando */
.loaded .animation-preloader {
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
/* Efecto de cortina */
.loaded .loader-section.section-left {
  -webkit-transform: translateX(-101%);
  transform: translateX(-101%);
  -webkit-transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}
.loaded .loader-section.section-right {
  -webkit-transform: translateX(101%);
  transform: translateX(101%);
  -webkit-transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}
/* Animación del preloader */
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
/* Animación de las letras cargando del preloader */
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@-webkit-keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(-73px, 1px) rotate(-36deg);
    transform: translate(-73px, 1px) rotate(-36deg);
  }
  40% {
    -webkit-transform: translate(-141px, -72px) rotate(-72deg);
    transform: translate(-141px, -72px) rotate(-72deg);
  }
  60% {
    -webkit-transform: translate(-83px, -122px) rotate(-108deg);
    transform: translate(-83px, -122px) rotate(-108deg);
  }
  80% {
    -webkit-transform: translate(40px, -72px) rotate(-144deg);
    transform: translate(40px, -72px) rotate(-144deg);
  }
  to {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
}
@keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(-73px, 1px) rotate(-36deg);
    transform: translate(-73px, 1px) rotate(-36deg);
  }
  40% {
    -webkit-transform: translate(-141px, -72px) rotate(-72deg);
    transform: translate(-141px, -72px) rotate(-72deg);
  }
  60% {
    -webkit-transform: translate(-83px, -122px) rotate(-108deg);
    transform: translate(-83px, -122px) rotate(-108deg);
  }
  80% {
    -webkit-transform: translate(40px, -72px) rotate(-144deg);
    transform: translate(40px, -72px) rotate(-144deg);
  }
  to {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
}
/* Tamaño de portatil hacia atras (portatil, tablet, celular) */
@media screen and (max-width: 767px) {
  /* Preloader */
  /* Spinner cargando */
  .ctn-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
  /* Texto cargando */
  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 3.5em "Montserrat", sans-serif;
  }
}
@media screen and (max-width: 500px) {
  /* Prelaoder */
  /* Spinner cargando */
  .ctn-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  /* Texto cargando */
  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 2em "Montserrat", sans-serif;
  }
}
::-webkit-input-placeholder {
  color: inherit;
}
::-moz-placeholder {
  color: inherit;
}
.data-background {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heebo);
  color: var(--title-clr);
  line-height: 1.4;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
}
h1 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.375rem;
}
h4 {
  font-size: 1rem;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
hr {
  background: #c2cfff;
  width: 50px;
  height: 3px;
  margin: 35px 0;
  padding: 0;
  border: none;
}
p {
  margin: 0;
}
label {
  color: var(--clr-black);
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}
.section-title .subtitle {
  font-size: var(--fs-16);
  font-weight: var(--fw-700);
  line-height: 1;
  margin-bottom: var(--gutter-20);
  color: var(--title-clr);
  background: var(--clr-white);
  display: inline-block;
  border: 1px solid var(--clr-blue-1);
  padding: 0.375rem 1.5rem;
  border-radius: 1rem;
}
.section-title .title {
  font-weight: var(--fw-700);
}
.section-title h3 {
  font-weight: var(--fw-700);
}
.section-padding {
  padding: 3.125rem 0;
}
/*--------------------------------------
	- Color
----------------------------------------*/
.color {
  color: var(--clr-black);
}
.text-black {
  color: var(--clr-black) !important;
}
.bg-black {
  background: var(--clr-black);
}
.text-white {
  color: var(--clr-white) !important;
}
.bg-white {
  background: var(--clr-white);
}
/*--
    - Font Famaly 
-----------------------------------------*/
/*--
    - Font weight
-----------------------------------------*/
.font-regular {
  font-weight: var(--fw-400);
}
.font-medium {
  font-weight: var(--fw-500);
}
.font-semi-bold {
  font-weight: var(--fw-600);
}
.font-bold {
  font-weight: var(--fw-700);
}
.font-black {
  font-weight: var(--fw-900);
}
/*--
    - Margin
-------------------------------------------*/
.mt-n3 {
  margin-top: -0.4375rem;
}
.mt-n4 {
  margin-top: -0.75rem;
}
.m-auto {
  margin: auto;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mt-0 {
  margin-top: 0;
}
.mt-9 {
  margin-top: 2.5rem;
}
.mt-73 {
  margin-top: 4.5625rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mt-40 {
  margin-top: 40px;
}
/*----------------------------------------*/
/*  Component CSS
/*----------------------------------------*/
/* Loader Styles start here */
.loader-wrapper {
  --line-width: 5px;
  --curtain-color: #fff;
  --outer-line-color: #3A4B70;
  --middle-line-color: #0463FA;
  --inner-line-color: #2ac28e;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.loader {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  /*   transform: translate(-50%, -50%); */
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--outer-line-color);
  border-radius: 100%;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 1001;
}
.loader:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--inner-line-color);
  border-radius: 100%;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
.loader:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--middle-line-color);
  border-radius: 100%;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  background: var(--curtain-color);
  width: 51%;
  height: 100%;
  z-index: 1000;
}
.loader-wrapper .loader-section.section-left {
  left: 0;
}
.loader-wrapper .loader-section.section-right {
  right: 0;
}
/* Loaded Styles */
.loaded .loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded .loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded .loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.loaded .loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}
/*--------------------------------------
	- Button
----------------------------------------*/
.btn {
  --btn-fs: var(--fs-16);
  --btn-ff: var(--ff-heebo);
  --btn-fw: var(--fw-700);
  --btn-py: 0.5rem;
  --btn-px: 1.875rem;
  position: relative;
  font-family: var(--btn-ff);
  font-size: var(--btn-fs);
  font-weight: var(--btn-fw, var(--fw-400));
  line-height: 1.5;
  background: var(--btn-bg);
  color: var(--btn-clr);
  border: var(--btn-bw, var(--border-width)) var(--btn-bs, var(--border-style)) var(--btn-bc, var(--btn-bg));
  text-transform: capitalize;
  text-decoration: none;
  border-radius: var(--btn-radius, var(--radius));
  padding: var(--btn-py) var(--btn-px);
  margin: var(--btn-mx) var(--btn-mx);
  display: inline-block;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  color: var(--btn-clr);
}
.btn:hover {
  color: var(--btn-clr);
}
.btn-sm {
  --btn-py: 0.3125rem;
}
.btn-lg {
  --btn-py: 0.625rem;
}
.btn-xl {
  --btn-py: 1rem;
}
.btn-none {
  --btn-radius: 0;
}
.btn-round {
  --btn-radius: 0.375rem;
}
.btn-rounded {
  --btn-radius: 1.875rem;
}
.btn-round-full {
  --btn-radius: 50%;
}
.btn-disabled {
  pointer-events: none;
  opacity: 0.65;
}
.btn-black {
  --btn-bg: var(--clr-black);
  --btn-clr: var(--clr-white);
  --btn-bc: var(--clr-black);
}
.btn-black:hover {
  --btn-clr: var(--clr-black);
  --btn-bg: transparent;
  --btn-bc: var(--clr-black);
}
.btn-black:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.4rem rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 0.4rem rgba(0, 0, 0, 0.5);
}
.btn-outline-black {
  --btn-clr: var(--clr-black);
  --btn-bc: var(--clr-black);
}
.btn-outline-black:hover {
  --btn-clr: var(--clr-white);
  --btn-bg: var(--clr-black);
  --btn-bc: var(--clr-black);
}
.btn-outline-black:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.4rem rgba(var(--clr-black), 0.5);
  box-shadow: 0 0 0 0.4rem rgba(var(--clr-black), 0.5);
}
.btn-outline-blue {
  --btn-clr: #4141E6;
  --btn-bc: #4141E6;
}
.btn-outline-blue:hover {
  --btn-clr: var(--clr-white);
  --btn-bg: #4141E6;
  --btn-bc: #4141E6;
}
.btn-outline-blue:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.4rem rgba(65, 65, 230, 0.5);
  box-shadow: 0 0 0 0.4rem rgba(65, 65, 230, 0.5);
}
.btn-white {
  --btn-bg: var(--clr-white);
  --btn-clr: var(--clr-white);
  --btn-bc: var(--clr-white);
}
.btn-white:hover {
  --btn-clr: var(--clr-white);
  --btn-bg: transparent;
  --btn-bc: var(--clr-white);
}
.btn-white:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.4rem rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0.4rem rgba(255, 255, 255, 0.5);
}
.btn-outline-white {
  --btn-clr: #1b2c51;
  --btn-bc: #1b2c51;
}
.btn-outline-white:hover {
  --btn-clr: #fff;
  --btn-bg: #1b2c51;
  --btn-bc: #1b2c51;
}
.btn-outline-white:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.4rem rgba(var(--clr-white), 0.5);
  box-shadow: 0 0 0 0.4rem rgba(var(--clr-white), 0.5);
}
.btn-blue {
  --btn-bg: var(--clr-blue);
  --btn-clr: var(--clr-white);
  --btn-bc: var(--clr-blue);
}
.btn-blue:hover {
  --btn-clr: var(--clr-blue);
  --btn-bg: transparent;
  --btn-bc: var(--clr-blue);
}
.btn-blue:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.4rem rgba(4, 99, 250, 0.5);
  box-shadow: 0 0 0 0.4rem rgba(4, 99, 250, 0.5);
}
.menu-dropdown {
  position: relative;
}
.menu-dropdown .nav-link {
  position: relative;
}
.form-control {
  padding: 1.125rem 1.5rem;
  color: var(--text-clr);
  font-size: var(--fs-14);
  border: 1px solid var(--clr-blue-1);
  border-radius: 0.375rem;
  margin-top: var(--gutter-20);
}
.form-control::-webkit-input-placeholder {
  color: var(--text-clr);
}
.form-control::-moz-placeholder {
  color: var(--text-clr);
}
.form-control:-ms-input-placeholder {
  color: var(--text-clr);
}
.form-control::-ms-input-placeholder {
  color: var(--text-clr);
}
.form-control::placeholder {
  color: var(--text-clr);
}
textarea.form-control {
  display: inline-block;
}
.select-control {
  width: 100%;
  padding: 0 1.5rem;
  height: 3.75rem;
  line-height: 3.75rem;
  margin-top: var(--gutter-20);
  border-color: var(--clr-blue-1);
  color: var(--text-clr);
}
.select-control::after {
  width: 8px;
  height: 8px;
  right: 1.5rem;
  border-color: var(--text-clr);
}
.select-control .list {
  width: 100%;
}
.hamburger-menu {
  cursor: pointer;
}
/* header-extra-info */
.extra-info {
  background: #152136 none repeat scroll 0 0;
  height: 100%;
  padding: 30px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
  width: 340px;
  z-index: 9999;
  overflow-y: scroll;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.extra-info.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  z-index: 99999;
}
.close-icon {
  margin-top: -16px;
  text-align: right;
}
.close-icon > button {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 0 none;
  color: var(--clr-black);
  cursor: pointer;
  font-size: 20px;
  padding: 0;
}
.side-info {
  border-top: 1px solid #344159;
  padding-top: 25px;
}
.contact-list h4 {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}
.contact-list p {
  color: #fff;
  margin: 0;
  margin-bottom: 5px;
  line-height: 28px;
  font-size: 14px;
}
.contact-list p i {
  float: left;
  margin-top: 6px;
  width: 25px;
}
.contact-list p span {
  display: block;
  overflow: hidden;
}
.offcanvas-overly {
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.offcanvas-overly.active {
  opacity: 0.5;
  visibility: visible;
}
.swiper-pagination {
  position: unset;
  text-align: center !important;
  padding: 35px 0 0;
}
.swiper-pagination-bullet {
  width: 23px;
  height: 7px;
  display: inline-block;
  border-radius: 8px;
  background: var(--clr-blue-1);
  opacity: 1;
  margin: 0 4px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--clr-blue);
  width: 60px;
}
.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 70px;
  height: 70px;
  border: 1px solid var(--lp-btn-link-bg);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 50%;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 50px;
  right: auto;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 50px;
  left: auto;
}
.swiper-button-next:after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  height: 36px;
  min-width: 36px;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  border-radius: 50%;
  font-size: 17px;
  text-align: center;
  line-height: 36px;
  color: var(--clr-black-10);
  opacity: 0.9;
}
.swiper-button-prev:after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  font-size: 17px;
  text-align: center;
  line-height: 36px;
  color: #f88808;
  opacity: 0.9;
}
/*  scrollup*/
.gx-30 {
  --bs-gutter-x: 30px;
}
/*----------------------------------------*/
/*  02. Header Area
/*----------------------------------------*/
.header-area {
  background: #fff;
  padding: var(--gutter-30) 0;
  position: relative;
  z-index: 99;
}
.header-navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header-nav .header-contact-number {
  text-align: center;
  font-size: var(--fs-16);
  font-weight: var(--fw-500);
  color: #1b2c51;
  border-bottom: 1px solid #1b2c51;
  padding-bottom: var(--gutter-20);
}
.header-nav .header-contact-number a {
  text-decoration: none;
  color: #1b2c51;
  font-weight: var(--fw-400);
}
.header-nav .nav-list {
  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;
  padding: var(--gutter-10) var(--gutter-20) 0;
}
.header-nav .nav-list .nav-link {
  color: #1b2c51;
  text-decoration: none;
  font-size: var(--fs-16);
  font-weight: var(--fw-700);
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.header-nav .nav-list .nav-link::after {
  content: "";
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 0;
  height: 3px;
  background-color: var(--clr-white);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.header-nav .nav-list .nav-link:hover::after {
  left: auto;
  width: 100%;
}
.header-nav .nav-list .menu-dropdown .nav-link::after {
  content: none;
}
/*----------------------------------------*/
/* Sidebar Area
/*----------------------------------------*/
.sidebar-widget {
  border-radius: 5px;
}
.sidebar-widget.border {
  border: 1px solid var(--clr-blue-1) !important;
}
.sidebar-widget .sidebar-title {
  font-weight: var(--fw-700);
  color: var(--clr-white);
  background: var(--clr-blue);
  border-radius: 5px 5px 0 0;
  padding: var(--gutter-20) var(--gutter-30);
}
.sidebar-widget :is(.list-group, .contact-list) {
  padding: var(--gutter-20) var(--gutter-10);
}
.sidebar-widget .list-group-item {
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.sidebar-widget .list-group-item a {
  color: var(--title-clr);
  text-decoration: none;
}
.sidebar-widget .list-group-item i {
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  border-radius: 50%;
  text-align: center;
  line-height: 1.4375rem;
  color: var(--clr-blue);
  border: 1px solid var(--clr-blue);
  font-size: var(--fs-12);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.sidebar-widget .list-group-item.holiday:last-child {
  background: #2AC28E;
  color: var(--clr-white);
  font-weight: 700;
  display: inline-block;
  padding: 16px 34px;
  border-radius: 4px;
  max-width: 192px;
  margin: 25px auto -44px;
  overflow: visible;
}
.sidebar-widget .list-group-item.holiday .list-icon {
  top: 0.625rem;
  left: 0.625rem;
  position: absolute;
  z-index: -1;
}
.sidebar-widget .list-group-item:hover a {
  color: var(--clr-blue);
}
.sidebar-widget .list-group-item:hover i {
  background: var(--clr-blue);
  color: var(--clr-white);
  border-color: transparent;
}
.sidebar-widget .contact-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: var(--gutter-15);
  padding: var(--gutter-10) var(--gutter-20);
}
.sidebar-widget .contact-list-item .contact-list-icon {
  width: 2.25rem;
  height: 2.25rem;
  line-height: 2.25rem;
  border-radius: 50%;
  text-align: center;
  background: #DDEAFE;
  color: var(--clr-blue);
  font-size: var(--fs-12);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.sidebar-widget .contact-list-item .contact-list-text {
  color: var(--title-clr);
}
.sidebar-widget .contact-list-item .contact-list-text span {
  display: block;
}
/*----------------------------------------*/
/*  15. Footer Area
/*----------------------------------------*/
.footer-area {
  background: #0E2A47;
  padding-top: 3.125rem;
  position: relative;
  z-index: 1;
}
.footer-area .shape {
  bottom: 3.125rem;
  left: 0;
  position: absolute;
  z-index: -1;
}
.footer-area .shape2 {
  top: 35%;
  right: 0;
  position: absolute;
  z-index: -1;
}
.footer-area .footer-padding {
  padding-top: var(--gutter-40);
}
.client-logo-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.client-logo-list li {
  padding: 0 var(--gutter-35);
}
.client-logo-list li:first-child {
  padding-left: 0;
}
.client-logo-list li:last-child {
  padding-right: 0;
}
.client-logo-list li + li {
  border-left: 1px solid var(--clr-blue-2);
}
.footer-top .footer-logo {
  margin-bottom: var(--gutter-40);
}
.footer-contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: var(--gutter-15);
  margin-top: var(--gutter-20);
}
.footer-contact-info .icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  line-height: 2.25rem;
  background: var(--clr-blue-2);
  text-align: center;
  color: var(--clr-white);
}
.footer-contact-info span {
  color: var(--clr-white);
}
.footer-title {
  color: var(--clr-white);
  font-weight: var(--fw-700);
  margin-bottom: var(--gutter-20);
  margin-top: 0.5rem;
}
.footer-links a {
  color: var(--clr-white);
  text-decoration: none;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  line-height: 2.1;
}
.footer-links a:hover {
  color: var(--clr-blue);
}
.footer-info li {
  color: var(--clr-white);
  line-height: 1.9;
}
.off-day {
  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;
  gap: var(--gutter-20);
  margin-top: var(--gutter-20);
}
.footer-bottom {
  padding-bottom: var(--gutter-40);
}
.footer-bottom .footer-copyright {
  color: var(--clr-white);
}
.footer-social {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: var(--gutter-20);
  padding: 20px 30px 15px;
  background: var(--clr-blue);
  border-radius: 0.375rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.footer-social li {
  color: var(--clr-white);
}
.footer-social li a {
  color: var(--clr-white);
}
.footer-bottom-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-bottom-left hr {
  background: #5F79B1;
  width: 100%;
  height: 1px 0;
  margin: 50px 0;
  padding: 0;
  border: none;
  border-radius: 0;
  opacity: 1;
}
/*----------------------------------------*/
/*  03. Banner Area
/*----------------------------------------*/
.banner-area {
  position: relative;
  height: 990px;
  margin-top: -9.875rem;
  z-index: 1;
  background-color: var(--clr-blue);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.banner-area .shape {
  position: absolute;
}
.banner-area .shape1 {
  top: 47%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
.banner-left-content {
  padding-top: 3.125rem;
}
.banner-left-content h1 {
  color: var(--clr-white);
  line-height: 1.2;
}
.banner-left-content p {
  color: var(--clr-white);
  margin-top: var(--gutter-25);
}
.banner-left-content .btn {
  margin-top: var(--gutter-30);
}
.banner-right-content {
  position: relative;
  margin-top: 12.1875rem;
}
.banner-right-content .shape2 {
  top: 0;
  left: 0;
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
  -webkit-animation-name: animationFramesTwo;
  animation-name: animationFramesTwo;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.banner-right-content .shape3 {
  top: -2.1875rem;
  right: 1.875rem;
  -webkit-animation: spinner 20s linear infinite;
  animation: spinner 20s linear infinite;
}
.banner-img {
  position: relative;
}
.banner-img img {
  margin-left: auto;
}
.banner-img .play-box {
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 212px 0 0 0;
  right: 1.25rem;
  bottom: -1.875rem;
  position: absolute;
  background: #2AC28E;
}
.banner-img .play-box a {
  color: var(--clr-white);
  font-size: var(--fs-30);
}
.banner-img .play-box i {
  right: 0.75rem;
  bottom: 0.9375rem;
  position: absolute;
}
.banner-img .banner-shape {
  bottom: 0.9375rem;
  left: -2.1875rem;
  position: absolute;
}
.banner-img .text-box-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--clr-white);
  border-radius: 2.1875rem;
  padding: 0.8125rem 1.5rem 0.8125rem 0.875rem;
  gap: 0.75rem;
  bottom: 0.9375rem;
  left: 0;
  position: absolute;
  -webkit-animation: float-bob-x 3s ease infinite;
  animation: float-bob-x 3s ease infinite;
}
.banner-img .text-box-wrapper .dr-image {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.banner-img .text-box-wrapper .dr-info {
  line-height: 1;
}
.banner-img .text-box-wrapper h5 {
  font-size: var(--fs-12);
  font-weight: var(--fw-700);
  margin-bottom: 0;
}
.banner-img .text-box-wrapper span {
  font-size: var(--fs-12);
  line-height: 1;
}
.banner-area.inner-banner {
  height: 25rem;
  padding-top: 11.25rem;
}
.inner-banner .breadcrumbs {
  text-align: center;
}
.inner-banner .breadcrumb {
  margin-top: var(--gutter-10);
}
.inner-banner .breadcrumb-item {
  color: var(--clr-white);
}
.inner-banner .breadcrumb-item a {
  color: var(--clr-white);
  text-decoration: none;
}
.inner-banner .breadcrumb-item + .breadcrumb-item::before {
  color: var(--clr-white);
}
/*----------------------------------------*/
/*  04. Counter Area
/*----------------------------------------*/
.counter-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: var(--gutter-45);
}
.counter-item {
  --counter-number-clr: var(--clr-white);
  --counter-title-clr: var(--clr-white);
  padding: 0 var(--gutter-30);
}
.counter-item + .counter-item {
  border-left: 1px solid var(--clr-white);
}
.counter-item:first-child {
  padding-left: 0;
}
.counter-item .counter-number {
  color: var(--counter-number-clr);
  font-weight: var(--fw-700);
}
.counter-item .counter-text {
  color: var(--counter-title-clr);
}
.counter-wrapper-2 {
  background: var(--clr-white);
  border-radius: 0.375rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  padding: var(--gutter-35) 0;
  margin-top: -4.375rem;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.counter-wrapper-2 .counter-item {
  --counter-number-clr: var(--title-clr);
  --counter-title-clr: var(--text-clr);
  padding: var(--gutter-10) var(--gutter-20);
  text-align: center;
}
/*----------------------------------------*/
/*  05. Service Area
/*----------------------------------------*/
.service-area {
  margin-top: 50px;
  position: relative;
  z-index: 9;
}
.service-wrapper {
  background: var(--clr-white);
  border-radius: 0.3125rem;
  -webkit-box-shadow: 0 18px 40px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0 18px 40px 0px rgba(0, 0, 0, 0.05);
  padding: var(--gutter-20) var(--gutter-15);
}
.service-item {
  padding: var(--gutter-30) var(--gutter-20);
  border-radius: 0.3125rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.service-item .service-icon i {
  width: 2.75rem;
  height: 2.75rem;
  line-height: 2.75rem;
  background: #DDEAFE;
  border-radius: 50%;
  text-align: center;
  color: var(--clr-blue);
  font-size: 1rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  display: block;
}
.service-item .service-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: var(--gutter-10);
}
.service-item p {
  line-height: 1.5;
  color: #1b1b1b;
  margin-top: var(--gutter-20);
}
.service-item:hover {
  -webkit-box-shadow: 0 18px 40px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0 18px 40px 0px rgba(0, 0, 0, 0.05);
}
.service-item:hover .service-icon i {
  background: var(--clr-blue);
  color: var(--clr-white);
  -webkit-transform: rotate(360deg) scale(1.1);
  transform: rotate(360deg) scale(1.1);
}
.service-area-2 {
  margin-top: 0;
  background-color: rgba(4, 99, 250, 0.06);
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(4, 99, 250, 0.06)), to(rgba(221, 234, 254, 0)));
  background-image: linear-gradient(to top, rgba(4, 99, 250, 0.06) 0%, rgba(221, 234, 254, 0) 100%);
}
.service-area-2 .section-title {
  margin-bottom: var(--gutter-20);
}
.service-left-content .service-btn {
  margin-top: var(--gutter-40);
  text-align: center;
}
.service-item-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: var(--gutter-30);
  background-color: var(--clr-white);
  border-radius: 0.3125rem;
  border: 1px solid #C7DCFB;
  margin-top: var(--gutter-20);
  padding: var(--gutter-30) var(--gutter-30);
}
.service-item-2 .service-icon i {
  width: 4.625rem;
  height: 4.625rem;
  line-height: 4.625rem;
  font-size: var(--fs-30);
}
.service-item-2 .service-text {
  text-align: center;
}
.service-item-2:hover {
  border-color: var(--clr-blue);
}
.service-item-2:hover .service-icon i {
  background: #DDEAFE;
  color: var(--clr-blue);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.service-item-2 .service-btn {
  margin-top: var(--gutter-40);
}
.service-right-content {
  margin-top: var(--gutter-50);
  position: relative;
}
.service-right-content .service-image {
  position: relative;
}
.service-right-content .service-image img {
  width: 100%;
}
.service-right-content .service-group-btn {
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.service-right-content .service-group-btn a {
  color: var(--clr-white);
  padding: var(--gutter-20) var(--gutter-10);
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  gap: var(--gutter-10);
  width: 100%;
}
.service-right-content .service-group-btn a.btn-green {
  background: #2AC28E;
}
.service-right-content .service-group-btn a.btn-green i {
  font-size: 24px;
}
.service-right-content .service-group-btn a.btn-blue {
  background: var(--clr-blue);
  padding: var(--gutter-20) var(--gutter-10);
  font-weight: var(--fw-700);
}
.service-right-content .shape {
  top: -38px;
  right: 0;
  position: absolute;
}
.service-item-3 {
  margin-top: var(--gutter-30);
  padding: var(--gutter-40) var(--gutter-40);
  border: 1px solid var(--clr-blue-1);
  border-radius: 0.3125rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  position: relative;
  overflow: hidden;
}
.service-item-3 .service-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: var(--gutter-20);
}
.service-item-3 .service-icon i {
  width: 4.625rem;
  height: 4.625rem;
  line-height: 4.625rem;
  border-radius: 50%;
  text-align: center;
  background: #DDEAFE;
  border-radius: 50%;
  text-align: center;
  color: var(--clr-blue);
  font-size: 1.625rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  display: block;
}
.service-item-3 .service-icon h3 {
  color: rgba(221, 234, 254, 0.56);
  font-size: 4.1875rem;
  line-height: 4.1875rem;
  font-weight: var(--fw-700);
  opacity: 1;
}
.service-item-3 figure {
  -webkit-mask-image: url(../img/service/image-mask.svg);
  mask-image: url(../img/service/image-mask.svg);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  top: -115px;
  right: -90px;
  position: absolute;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  width: 56%;
  visibility: hidden;
  opacity: 0;
}
.service-item-3 img {
  width: 100%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.service-item-3 .service-title {
  padding-bottom: var(--gutter-20);
}
.service-item-3 .service-title h3 {
  font-weight: var(--fw-700);
}
.service-item-3 .service-title a {
  text-decoration: none;
}
.service-item-3 .service-button {
  padding-top: var(--gutter-20);
}
.service-item-3 .service-button a {
  color: var(--title-clr);
  text-decoration: none;
  font-weight: var(--fw-700);
  line-height: 1.5rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.service-item-3 .service-button a i {
  margin-left: 0.1875rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.service-item-3 .service-button a:hover {
  color: var(--clr-blue);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.service-item-3 .service-button a:hover i {
  margin-left: 0.5rem;
}
.service-item-3:hover {
  border: 1px solid var(--clr-blue);
  -webkit-box-shadow: 0 10px 35px 0px rgba(4, 99, 250, 0.12);
  box-shadow: 0 10px 35px 0px rgba(4, 99, 250, 0.12);
}
.service-item-3:hover .service-icon h3 {
  opacity: 0;
}
.service-item-3:hover figure {
  top: -75px;
  right: -50px;
  visibility: visible;
  opacity: 1;
}
/*----------------------------------------*/
/*  06. About Area
/*----------------------------------------*/
.about-left-content {
  position: relative;
}
.about-left-content .about-image {
  position: relative;
  z-index: 1;
}
.about-left-content .about-image img {
  margin: auto;
}
.about-left-content .about-image .circle {
  top: 1.25rem;
  position: absolute;
  z-index: -1;
}
.about-left-content .about-image .circle.circle1 {
  left: var(--gutter-10);
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
  -webkit-animation-name: animationFramesTwo;
  animation-name: animationFramesTwo;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.about-left-content .about-image .circle.circle2 {
  right: 0;
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
  -webkit-animation-name: animationFramesTwo;
  animation-name: animationFramesTwo;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.about-left-content .about-image .shape3 {
  bottom: -2.1875rem;
  position: absolute;
  -webkit-animation: spinner 20s linear infinite;
  animation: spinner 20s linear infinite;
}
.about-left-content .about-service-list {
  background-color: var(--clr-blue);
}
.about-left-content .about-service-list ul {
  margin: 0;
  padding: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-column-gap: var(--gutter-30);
  -moz-column-gap: var(--gutter-30);
  column-gap: var(--gutter-30);
  row-gap: var(--gutter-10);
}
.about-left-content .about-service-list ul li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  list-style: none;
  padding-left: 1.125rem;
  position: relative;
  color: var(--clr-white);
  font-weight: var(--fw-500);
}
.about-left-content .about-service-list ul li::before {
  content: "";
  top: 6px;
  left: 0;
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--clr-white);
}
.about-right-content {
  margin-top: var(--gutter-50);
}
.about-right-content .section-title {
  margin-bottom: var(--gutter-20);
}
.about-right-content p {
  margin-bottom: 1.5rem;
}
.about-right-content .btn {
  margin-top: 1rem;
}
.about-area-2 .about-left-content .about-image img {
  margin-left: auto;
}
.about-area-2 .about-left-content .about-image .circle1 {
  left: 5.625rem;
}
.about-area-2 .about-left-content .about-image .circle2 {
  right: var(--gutter-15);
}
.about-area-2 .about-left-content .about-image .shape3 {
  left: auto;
  right: var(--gutter-10);
}
.about-area-2 .about-left-content .about-service-list {
  margin-right: 0;
}
/*----------------------------------------*/
/*  07. FAQ Area
/*----------------------------------------*/
.faq-left-content .faq-img {
  position: relative;
  z-index: 1;
}
.faq-left-content .faq-img .shape {
  top: -2.5rem;
  left: 1.875rem;
  position: absolute;
}
.faq-left-content .faq-img .shape2 {
  bottom: -1.875rem;
  left: 25%;
  position: absolute;
}
.faq-right-content {
  margin-top: var(--gutter-50);
}
.faq-right-content .accordion-item {
  margin-top: var(--gutter-20);
  border: 1px solid #C7DCFB;
  border-radius: 0.325rem;
}
.faq-right-content .accordion-item .accordion-button {
  border-radius: 0.325rem;
  padding: 1.5rem 1.3rem 1.5rem 1.4375rem;
}
.faq-right-content .accordion-item .accordion-button::after {
}
.faq-right-content .accordion-item .accordion-button:not(.collapsed) {
  color: var(--clr-white);
  background: var(--clr-blue);
}
.faq-right-content .accordion-item .accordion-button:not(.collapsed)::after {
  color: #fff;
}
.faq-right-content .accordion-item .accordion-body {
  font-size: var(--fs-14);
  padding: var(--gutter-25);
}
.faq-area-2 .faq-img::before {
  content: none;
}
.faq-area-3 .section-title .subtitle {
  padding: 0.375rem 3.688rem;
}
.faq-area-3 .title {
  line-height: 2.75rem;
}
.faq-area-3 p {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.faq-area-3 .faq-right-content {
  margin-left: var(--gutter-0);
  margin-top: var(--gutter-40);
}
.faq-area-3 .faq-right-content .accordion-button::after {
  color: #1b2c51;
}
.faq-area-3 .faq-right-content .accordion-button:not(.collapsed)::after {
  color: var(--clr-white);
}
.faq-area-3 .faq-left-content {
  margin-top: var(--gutter-40);
}
.faq-area-3 .accordion-button {
  color: #1B2C51;
  font-weight: var(--fw-400);
  line-height: 1.75rem;
}
/*----------------------------------------*/
/*  08. Booking Area
/*----------------------------------------*/
.overlay {
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.overlay-blue::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  background: var(--clr-blue);
  z-index: -1;
}
.overlay-opacity-70::before {
  opacity: 0.7;
}
.booking-area {
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--clr-blue);
}
.booking-area::before {
  content: "";
  inset: 0;
  position: absolute;
}
.booking-area .circle3 {
  right: 6.75rem;
  bottom: 5rem;
  position: absolute;
  z-index: -1;
}
.booking-area .shape8 {
  right: 4.375rem;
  bottom: 8.125rem;
  position: absolute;
  z-index: -1;
  display: none;
}
.booking-area .shape6 {
  top: 7.8125rem;
  left: 16%;
  position: absolute;
  z-index: 1;
  display: none;
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
  -webkit-animation-name: animationFramesTwo;
  animation-name: animationFramesTwo;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.booking-area .shape7 {
  top: 5.4375rem;
  left: 17%;
  position: absolute;
  display: none;
  -webkit-animation: spinner 20s linear infinite;
  animation: spinner 20s linear infinite;
  z-index: -1;
}
.booking-wrapper {
  background: var(--clr-white);
  border-radius: 0.3125rem;
  padding: var(--gutter-35) var(--gutter-25);
}
.booking-wrapper .section-title {
  margin-bottom: var(--gutter-35);
}
.booking-right-content {
  padding-top: var(--gutter-50);
}
.booking-right-content .section-title p {
  margin-top: 25px;
}
.booking-info-box {
  margin-top: var(--gutter-20);
  background: var(--clr-white);
  border-radius: 0.3125rem;
  padding: var(--gutter-30) var(--gutter-20);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: var(--gutter-15);
}
.booking-info-box .booking-icon {
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  border-radius: 50%;
  text-align: center;
  background: var(--clr-blue-1);
  color: var(--clr-blue);
}
.booking-info-box .booking-text span {
  display: block;
  font-size: var(--fs-14);
  color: var(--title-clr);
}
.booking-info-box .booking-text a {
  font-size: var(--fs-16);
  font-weight: var(--fw-700);
  color: var(--title-clr);
  margin-top: var(--gutter-10);
  text-decoration: none;
}
.subscribe-news-wrapper {
  margin-top: var(--gutter-40);
}
.subscribe-news-wrapper .subscribe-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: var(--gutter-10);
}
.subscribe-news-wrapper .subscribe-text i {
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  border-radius: 50%;
  text-align: center;
  background: transparent;
  color: var(--clr-white);
  border: 1px solid var(--clr-white);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.subscribe-news-wrapper .subscribe-text h3 {
  color: var(--clr-white);
}
.subscribe-news-wrapper p {
  color: var(--clr-white);
  margin-top: var(--gutter-20);
}
.subscribe-news-wrapper form {
  position: relative;
  margin-top: var(--gutter-35);
}
.subscribe-news-wrapper form .form-control {
  background: transparent;
  color: var(--clr-white);
  padding: 1.75rem;
}
.subscribe-news-wrapper form .form-control::-webkit-input-placeholder {
  color: var(--clr-white);
}
.subscribe-news-wrapper form .form-control::-moz-placeholder {
  color: var(--clr-white);
}
.subscribe-news-wrapper form .form-control:-ms-input-placeholder {
  color: var(--clr-white);
}
.subscribe-news-wrapper form .form-control::-ms-input-placeholder {
  color: var(--clr-white);
}
.subscribe-news-wrapper form .form-control::placeholder {
  color: var(--clr-white);
}
.subscribe-news-wrapper form .btn-white {
  --btn-clr: var(--clr-blue);
  --btn-py: 14px;
  top: 7px;
  right: 7px;
  position: absolute;
}
.subscribe-news-wrapper form .btn-white:hover {
  --btn-bg: var(--clr-blue);
  --btn-clr: var(--clr-white);
  --btn-bc: var(--clr-blue);
}
.subscribe-news-wrapper form .btn-blue {
  top: 10px;
  right: 7px;
  position: absolute;
}
.booking-list-area {
  position: relative;
}
.booking-list-area .shape1 {
  position: absolute;
  bottom: 27%;
  right: 1%;
}
.booking-list-area .shape2 {
  position: absolute;
  bottom: 22%;
  right: 3%;
}
.doctor-booking-list {
  position: relative;
  border: 1px solid #C7DCFB;
  border-radius: 0.3125rem;
  -webkit-box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.06);
  padding: 3.125rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.doctor-booking-list .doctor-details {
  max-width: 100%;
  text-align: center;
  margin: 0 0.9375rem;
}
.doctor-booking-list .doctor-details-img {
  border-radius: 0.3125rem;
}
.doctor-booking-list .doctor-details-img img {
  margin: auto;
}
.doctor-booking-list .doctor-details-content h3 {
  font-weight: var(--fw-700);
  line-height: 2.1875rem;
  padding-top: 1.125rem;
}
.doctor-booking-list .doctor-details-content span {
  color: var(--clr-blue);
  line-height: 1.5rem;
}
.doctor-booking-list .doctor-details-content p {
  padding-top: 0.9375rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
}
.doctor-booking-list .doctor-details-content .booking-details-icon {
  max-width: 12.75rem;
  border-radius: 0.3125rem;
  background: var(--clr-blue);
  margin-top: 1.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.doctor-booking-list .doctor-details-content .booking-details-icon li {
  font-size: 1.0625rem;
  color: var(--clr-white);
  padding-right: 1.25rem;
  line-height: 3.4375rem;
}
.doctor-booking-list .doctor-details-content .booking-details-icon li:last-child {
  padding-right: 0;
}
.doctor-details-content .footer-social {
  margin-top: var(--gutter-30);
}
.booking-table {
  margin-top: var(--gutter-50);
}
.booking-table table {
  width: 830px;
}
.booking-table :is(tbody, td, tfoot, th, thead, tr) {
  border-color: var(--clr-blue-1);
}
.booking-table :is(tbody, td, tfoot, th, thead, tr):first-child {
  border-top-color: transparent;
}
.booking-table tbody tr:last-child {
  border-bottom-color: transparent;
}
.booking-table .table-width:nth-child(1) {
  width: 178px;
}
.booking-table .table-width:nth-child(2) {
  width: 78px;
}
.booking-table .table-width:nth-child(3) {
  width: 244px;
}
.booking-table .table-width:nth-child(4) {
  width: 147px;
}
.booking-table .table-width:nth-child(5) {
  width: 182px;
}
.booking-table thead th {
  color: var(--title-clr);
  font-size: var(--fs-18);
  font-weight: var(--fw-700);
  text-align: center;
  padding: 0 var(--gutter-10) var(--gutter-25);
}
.booking-table tbody td {
  text-align: center;
  padding: var(--gutter-25) var(--gutter-10);
}
.booking-table tbody td h5 {
  color: var(--title-clr);
  font-size: var(--fs-16);
  font-weight: var(--fw-500);
  margin-bottom: 0;
}
.booking-table tbody td span, .booking-table tbody td p {
  font-size: var(--fs-14);
  color: var(--text-clr);
}
.booking-table tbody td p {
  text-align: left;
}
/*----------------------------------------*/
/*  09. Testimonial Area
/*----------------------------------------*/
.testimonial-area {
  position: relative;
  z-index: 1;
  background-color: rgba(4, 99, 250, 0.06);
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(4, 99, 250, 0.06)), to(rgba(4, 99, 250, 0)));
  background-image: linear-gradient(to top, rgba(4, 99, 250, 0.06) 0%, rgba(4, 99, 250, 0) 100%);
}
.testimonial-area.bg-blue-gr {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(51%, rgba(4, 99, 250, 0.06)), to(white));
  background: linear-gradient(to bottom, rgba(4, 99, 250, 0.06) 51%, white 100%);
}
.testimonial-area .shape {
  right: 0;
  bottom: 4.6875rem;
  position: absolute;
  z-index: -1;
}
.testimonial-area .swiper-slide .testimonial-item {
  background-image: url("../img/shape/image-masking.png");
  background-repeat: no-repeat;
  padding-top: 2.8125rem;
  max-height: 369px;
}
.testimonial-area .swiper-slide .testimonial-quote {
  margin-bottom: var(--gutter-10);
  margin-top: var(--gutter-25);
}
.testimonial-area .swiper-slide.swiper-slide-next .testimonial-item {
  background-image: url("../img/shape/image-masking2.png");
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
  max-height: 385px;
}
.testimonial-area .swiper-slide.swiper-slide-next .testimonial-quote {
  margin-bottom: var(--gutter-30);
}
.testimonial-area .swiper-slide.swiper-slide-active .testimonial-item {
  background-image: url("../img/shape/image-masking3.png");
  background-size: cover;
}
.testimonial-area .swiper-slide.swiper-slide-active .testimonial-quote {
  margin-bottom: var(--gutter-15);
}
.testimonial-item {
  padding: var(--gutter-40) var(--gutter-30) var(--gutter-30);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  margin-top: var(--gutter-30);
}
.testimonial-item .testimonial-quote {
  text-align: right;
  font-size: var(--fs-30);
  color: var(--clr-blue-1);
  margin-bottom: var(--gutter-50);
}
.testimonial-item .testimonial-review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: var(--gutter-10);
  font-size: var(--fs-20);
  color: var(--clr-blue);
  margin-bottom: var(--gutter-20);
}
.testimonial-item p {
  color: var(--title-clr);
}
.testimonial-item .testimonial-footer {
  margin-top: var(--gutter-30);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.testimonial-item .author-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: var(--gutter-10);
  margin-bottom: var(--gutter-15);
}
.testimonial-item .author-info .author-img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
}
.testimonial-item .author-info h4 {
  line-height: 1;
}
.testimonial-item span {
  font-size: var(--fs-14);
}
/*----------------------------------------*/
/*  10. Blog Area
/*----------------------------------------*/
.blog-area-2 {
  padding: 3.4375rem 0 3.75rem 0;
}
.blog-area-2 .blog-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: var(--gutter-30);
}
.blog-area-2 .blog-wrapper .blog-left-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}
.blog-area-2 .blog-wrapper .blog-right-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  margin-left: auto;
}
.blog-item {
  margin-top: var(--gutter-30);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.blog-item .blog-img {
  max-height: 315px;
  border-radius: 0.375rem;
  overflow: hidden;
}
.blog-item .blog-img img {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  width: 100%;
}
.blog-item .blog-meta {
  margin: 0;
  padding: 0;
  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;
  max-width: 321px;
  border-radius: 0.375rem;
  background: var(--clr-white);
  -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.06);
  font-size: var(--fs-14);
  color: var(--title-clr);
  padding: var(--gutter-20) 0;
  position: relative;
  z-index: 1;
  margin: -1.875rem auto 0;
}
.blog-item .blog-meta li {
  position: relative;
  padding: 0 var(--gutter-20);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.375rem;
}
.blog-item .blog-meta li + li::before {
  content: "";
  top: 50%;
  left: 0;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background: var(--clr-blue-1);
}
.blog-item .blog-meta li a {
  text-decoration: none;
  color: var(--title-clr);
}
.blog-item .blog-content h3 {
  margin-top: var(--gutter-25);
}
.blog-item .blog-content h3 a {
  text-decoration: none;
  font-weight: var(--fw-700);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.blog-item .blog-content p {
  margin-top: var(--gutter-20);
}
.blog-item .blog-content hr {
  background: var(--clr-blue-1);
  width: 100%;
  height: 1px;
  margin: var(--gutter-25) 0;
  padding: 0;
  border: none;
  border-radius: 0;
  opacity: 1;
}
.blog-item .blog-content .blog-link {
  text-decoration: none;
  color: var(--title-clr);
  font-weight: var(--fw-700);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.blog-item .blog-content .blog-link i {
  margin-left: 0.3125rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.blog-item .blog-content .blog-link:hover i {
  margin-left: 0.75rem;
}
.blog-item:hover .blog-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/*----------------------------------------*/
/*  11. Contact Area
/*----------------------------------------*/
.contact-area .section-title {
  padding-bottom: 1.25rem;
}
.contact-area .title {
  font-size: 1.5rem;
  line-height: 2.125rem;
}
.contact-area p {
  font-size: 1.125rem;
  line-height: 1.5rem;
}
.contact-area .contact-item {
  padding: var(--gutter-30) var(--gutter-20);
  border-radius: 0.3125rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.contact-area .contact-item .contact-icon i {
  width: 2.75rem;
  height: 2.75rem;
  line-height: 2.75rem;
  background: #DDEAFE;
  border-radius: 50%;
  text-align: center;
  color: var(--clr-blue);
  font-size: 1rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  display: block;
}
.contact-area .contact-item .contact-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: var(--gutter-10);
}
.contact-area .contact-item p {
  line-height: 1.625rem;
  font-size: 1rem;
  color: var(--text-clr);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.contact-area .contact-item:hover {
  -webkit-box-shadow: 0 18px 40px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0 18px 40px 0px rgba(0, 0, 0, 0.05);
  background: var(--clr-blue);
}
.contact-area .contact-item-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: var(--gutter-20);
  background-color: var(--clr-white);
  border-radius: 0.3125rem;
  border: 1px solid #C7DCFB;
  margin-top: var(--gutter-20);
  padding: var(--gutter-30) var(--gutter-30);
  -webkit-box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.06);
}
.contact-area .contact-item-2 .contact-icon i {
  width: 3.75rem;
  height: 3.75rem;
  line-height: 3.75rem;
  font-size: var(--fs-18);
}
.contact-area .contact-item-2 .contact-text {
  text-align: center;
}
.contact-area .contact-item-2 .contact-text h3 {
  font-size: 1.125rem;
  font-weight: var(--fw-700);
  line-height: 0.875rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.contact-area .contact-item-2 hr {
  width: 1px;
  height: 30px;
  background: #C7DCFB;
  margin: 0 0.625rem;
}
.contact-area .contact-item-2:hover {
  border-color: var(--clr-blue);
}
.contact-area .contact-item-2:hover .contact-icon i {
  background: #448CFF;
  color: var(--clr-white);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.contact-area .contact-item-2:hover p {
  color: var(--clr-white);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.contact-area .contact-item-2:hover h3 {
  color: var(--clr-white);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.contact-area .contact-item-2:hover hr {
  background: var(--clr-white);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.contact-area .booking-wrapper {
  border: 1px solid var(--clr-blue-1);
  -webkit-box-shadow: var(--shadow-sm);
  box-shadow: var(--shadow-sm);
  margin-top: var(--gutter-20);
}
/*----------------------------------------*/
/*  12. Error Area
/*----------------------------------------*/
.error-area {
  position: relative;
}
.error-area .error-img img {
  margin: auto;
}
.error-area .error-button {
  text-align: center;
  padding-top: 3.75rem;
}
.error-area a {
  padding: 20px 33px;
  line-height: 1.375rem;
}
.error-area .shape1 {
  position: absolute;
  bottom: 27%;
  left: 18%;
}
.error-area .shape2 {
  position: absolute;
  bottom: 22%;
  left: 10%;
}
.error-area .shape3 {
  position: absolute;
  bottom: 69%;
  right: 10%;
}
/*----------------------------------------*/
/*  13. Login Area
/*----------------------------------------*/
.login-area {
  position: relative;
  z-index: 1;
}
.login-wrapper {
  position: relative;
  z-index: 1;
  max-width: 588px;
  margin: auto;
  background: var(--clr-white);
  padding: 50px 30px;
  border-radius: 0.3125rem;
  -webkit-box-shadow: 0 18px 40px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 40px 0px rgba(0, 0, 0, 0.06);
}
.login-wrapper .subtitle {
  border: 1px solid #C3D6F6;
  padding: 0.375rem 1.2rem;
  border-radius: 0.9375rem;
}
.login-wrapper .title {
  font-size: 1.5rem;
  line-height: 2.125rem;
}
.login-wrapper .social-button {
  padding-bottom: 1.125rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.login-wrapper .social-button a {
  font-size: 0.875rem;
  font-weight: var(--fw-500);
  line-height: 1rem;
  margin-top: 2.5rem;
}
.login-wrapper .social-button a i {
  width: 26px;
  height: 26px;
  line-height: 1.625rem;
  background: #648FE4;
  color: var(--clr-white);
  border-radius: 50%;
  text-align: center;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  font-size: 0.75rem;
  margin-right: 10px;
}
.login-wrapper .social-button .facebook {
  padding: 16px 17px;
  background: #3F6DC7;
  border: 1px solid #3F6DC7;
}
.login-wrapper .social-button .facebook:hover {
  background: transparent;
}
.login-wrapper .social-button .twitter {
  padding: 16px 25px;
  background: #009DED;
  border: 1px solid #009DED;
}
.login-wrapper .social-button .twitter:hover {
  background: transparent;
}
.login-wrapper .social-button .twitter i {
  background: #4DC0FB;
}
.login-wrapper span {
  text-align: center;
  display: block;
}
.login-wrapper .login-remember-forget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 0.8125rem;
}
.login-wrapper .login-remember-forget a {
  padding: 0;
  color: #1b2c51;
  font-size: 0.875rem;
  font-weight: var(--fw-500);
  line-height: 1rem;
}
.login-wrapper .login-button {
  padding-top: 1.75rem;
}
.login-wrapper .login-button a {
  display: block;
  line-height: 1.625rem;
}
.login-wrapper label {
  color: #1b2c51;
  font-size: 1rem;
  font-weight: var(--fw-500);
}
.login-wrapper .form-control {
  color: #8D8E92;
  font-size: var(--fs-14);
  font-weight: var(--fw-400);
  line-height: 0.875rem;
}
.login-wrapper .shape1 {
  display: none;
}
.login-wrapper .shape2 {
  display: none;
}
.login-wrapper .shape3 {
  display: none;
  z-index: -1;
}
.login-wrapper .shape4 {
  display: none;
}
.login-or {
  position: relative;
}
.login-or hr {
  background: var(--clr-blue-1);
  width: 100%;
  height: 1px;
  margin: var(--gutter-25) 0;
  padding: 0;
  border: none;
  border-radius: 0;
  opacity: 1;
}
.login-or span {
  top: 50%;
  right: 0;
  left: 0;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border-radius: 50%;
  text-align: center;
  background: var(--clr-white);
  color: var(--title-clr);
  font-size: var(--fs-14);
  margin: auto;
}
/*----------------------------------------*/
/*  14. Doctor Area
/*----------------------------------------*/
.doctor-item {
  background-color: var(--clr-white);
  border-radius: 0.3125rem;
  padding: var(--gutter-20);
  -webkit-box-shadow: var(--shadow-sm);
  box-shadow: var(--shadow-sm);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  text-align: center;
  margin-top: var(--gutter-50);
}
.doctor-item:hover .doctor-img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.doctor-item:hover .doctor-img::before {
  bottom: -52%;
}
.doctor-item:hover .social-link {
  bottom: 1.25rem;
  overflow: visible;
  opacity: 1;
}
.doctor-thumb {
  position: relative;
}
.doctor-thumb .doctor-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 0.3125rem;
}
.doctor-thumb .doctor-img img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.doctor-thumb .doctor-img::before {
  content: "";
  right: 0;
  bottom: -100%;
  left: 0;
  position: absolute;
  width: 15.0625rem;
  height: 15.0625rem;
  line-height: 15.0625rem;
  border-radius: 50%;
  text-align: center;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  background: var(--clr-blue);
  z-index: 1;
  margin: auto;
}
.doctor-thumb .social-link {
  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;
  margin: 0;
  padding: 0;
  gap: var(--gutter-15);
  right: 0;
  bottom: -1.25rem;
  left: 0;
  position: absolute;
  z-index: 1;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  overflow: hidden;
  opacity: 0;
}
.doctor-thumb .social-link a {
  font-size: var(--fs-16);
  color: var(--clr-white);
}
.doctor-content {
  position: relative;
  z-index: 1;
  padding-top: var(--gutter-25);
  padding-bottom: var(--gutter-25);
}
.doctor-content a {
  text-decoration: none;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.doctor-content .title {
  font-weight: var(--fw-700);
}
.doctor-content span {
  color: var(--title-clr);
  display: block;
}
.doctor-content P {
  padding-top: var(--gutter-10);
}
.doctor-content .doctor-link {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border-radius: 50%;
  text-align: center;
  background-color: var(--clr-blue);
  color: var(--clr-white);
  display: block;
  -webkit-box-shadow: 0 8px 10px rgba(4, 99, 250, 0.3);
  box-shadow: 0 8px 10px rgba(4, 99, 250, 0.3);
  right: 0;
  bottom: -2.5rem;
  left: 0;
  position: absolute;
  margin: 0 auto;
}
.doctor-content .doctor-shape {
  top: 50%;
  left: -1.25rem;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
/*----------------------------------------*/
/*  12. Service Details Page
/*----------------------------------------*/
.service-details-content {
  padding-top: 3.125rem;
}
.service-details-content h3 {
  font-size: 34px;
  line-height: 1;
  font-weight: var(--fw-700);
}
.service-details-content p {
  padding-top: var(--gutter-30);
  font-size: 18px;
  line-height: 1.6;
}
.service-details-content .content-list {
  padding-top: var(--gutter-15);
}
.service-details-content .content-list li {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: var(--gutter-15);
  margin-top: var(--gutter-15);
}
.service-details-content .content-list i {
  color: var(--title-clr);
  top: 3px;
  position: relative;
}
.service-details-content a {
  text-decoration: underline;
  color: var(--clr-blue);
  cursor: pointer;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.service-details-content a:hover {
  text-decoration: underline;
  cursor: pointer;
}
/*----------------------------------------*/
/*  12. Doctor Details Page
/*----------------------------------------*/
.doctor-details-page .details-left-content .doctor-image {
  border-radius: 0.3125rem;
  overflow: hidden;
}
.doctor-details-page .details-left-content .doctor-image img {
  width: 100%;
}
.doctor-details-page .details-left-content .footer-social {
  margin-top: var(--gutter-30);
}
.doctor-details-page .doctor-info {
  padding: var(--gutter-40) 0;
  border-bottom: 1px solid var(--clr-blue-1);
}
.doctor-details-page .doctor-name {
  font-weight: var(--fw-700);
}
.doctor-details-page .details-right-content {
  margin-top: var(--gutter-30);
}
.doctor-details-page .details-right-content h3 {
  font-weight: var(--fw-700);
}
.doctor-details-page .details-right-content p {
  margin-top: var(--gutter-20);
  margin-bottom: var(--gutter-20);
  font-size: var(--fs-18);
  line-height: 1.5;
}
.doctor-details-page .doctor-details-position li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid var(--clr-blue-1);
  padding: var(--gutter-20) 0;
}
.doctor-details-page .doctor-details-position li h4 {
  font-size: var(--fs-20);
  font-weight: var(--fw-700);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 37%;
}
.doctor-details-page .doctor-details-position li span {
  font-size: var(--fs-18);
}
.doctor-details-page .doctor-details-list li {
  position: relative;
  padding: 0.5rem var(--gutter-15);
  font-size: var(--fs-18);
}
.doctor-details-page .doctor-details-list li::before {
  content: "";
  top: 10px;
  left: 0;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: var(--fs-14);
  color: var(--title-clr);
}
.doctor-details-page .booking-wrapper {
  border: 1px solid var(--clr-blue-1);
  padding: var(--gutter-30) var(--gutter-15);
  margin-top: var(--gutter-40);
}
.pseudo-icon {
  position: relative;
}
.pseudo-icon::before {
  content: "";
  top: 50%;
  left: 18px;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  color: var(--text-clr);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.pseudo-icon.icon-user::before {
  content: "";
}
.pseudo-icon.icon-envelope::before {
  content: "";
}
.pseudo-icon.icon-phone::before {
  content: "";
  font-weight: 700;
}
.pseudo-icon.icon-list::before {
  content: "";
  font-weight: 900;
}
.pseudo-icon.icon-date::before {
  content: "";
  font-weight: 900;
}
.pseudo-icon.icon-history::before {
  content: "";
  font-weight: 900;
}
.pseudo-icon.icon-doctor::before {
  content: "";
  font-weight: 900;
}
.pseudo-icon.icon-lock::before {
  content: "";
  font-weight: 900;
}
.pseudo-icon .form-control {
  padding-left: var(--gutter-40);
}
.pseudo-icon.select-control {
  padding-left: var(--gutter-40);
}
/*----------------------------------------*/
/*  12. Appointment Page
/*----------------------------------------*/
.appointment-page .booking-wrapper {
  border: 1px solid var(--clr-blue-1);
  -webkit-box-shadow: var(--shadow-sm);
  box-shadow: var(--shadow-sm);
}
.appointment-page .booking-info-box {
  border: 1px solid var(--clr-blue-1);
  -webkit-box-shadow: 10px 3px 40px rgba(0, 0, 0, 0.05);
  box-shadow: 10px 3px 40px rgba(0, 0, 0, 0.05);
}
.appointment-page .booking-info-box .booking-icon {
  background: #DDEAFE;
  font-size: var(--fs-14);
}
.appointment-page .booking-right-content p {
  margin-bottom: var(--gutter-40);
}
.appointment-page .subscribe-news-wrapper .subscribe-text i {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border-radius: 50%;
  text-align: center;
  background: #DDEAFE;
  color: var(--clr-blue);
  font-size: var(--fs-14);
}
.appointment-page .subscribe-news-wrapper .subscribe-text h3 {
  color: var(--title-clr);
  font-weight: var(--fw-700);
}
.appointment-page .subscribe-news-wrapper P {
  color: var(--title-clr);
}
.appointment-page .subscribe-news-wrapper .form-control {
  color: var(--title-clr);
}
.appointment-page .subscribe-news-wrapper .form-control::-webkit-input-placeholder {
  color: var(--text-clr);
}
.appointment-page .subscribe-news-wrapper .form-control::-moz-placeholder {
  color: var(--text-clr);
}
.appointment-page .subscribe-news-wrapper .form-control:-ms-input-placeholder {
  color: var(--text-clr);
}
.appointment-page .subscribe-news-wrapper .form-control::-ms-input-placeholder {
  color: var(--text-clr);
}
.appointment-page .subscribe-news-wrapper .form-control::placeholder {
  color: var(--text-clr);
}
.blog-left-content .blog-img {
  max-height: 100%;
  border-radius: 0.3125rem;
}
.blog-left-content .blog-meta {
  margin-top: -4.6875rem;
  margin-left: 0.75rem;
}
.blog-left-content .blog-content a {
  text-decoration: none;
}
.blog-left-content .blog-content h3 {
  margin-top: var(--gutter-50);
  font-weight: var(--fw-700);
}
.blog-left-content .blog-content p {
  margin-top: var(--gutter-20);
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.blog-left-content .blog-content hr {
  margin: var(--gutter-30) 0;
}
.blog-left-content .blog-content .blog-link {
  color: var(--clr-blue);
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.blog-left-content .blog-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.blog-left-content .blog-btn i {
  margin-right: 0.5rem;
}
.blog-left-content .comment .share {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.blog-left-content .comment {
  margin-right: 1.5625rem;
}
.blog-right-content {
  margin-top: 2.6875rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.blog-right-content .post {
  margin-top: 1.875rem;
  padding: 0;
}
.blog-right-content .post-item {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0 var(--gutter-30) var(--gutter-30) var(--gutter-20);
}
.blog-right-content .sidebar-search-form {
  background: var(--clr-white);
  border-radius: 0.3125rem;
  -webkit-box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.15);
  padding: 2.5rem 1.875rem;
  position: relative;
  border: 1px solid #C7DCFB;
}
.blog-right-content .sidebar-search-form i {
  position: absolute;
  right: 60px;
  top: 47%;
  font-size: 0.875rem;
  color: #898799;
}
.blog-right-content .sidebar-search-form input {
  width: 100%;
  padding: 1.0625rem 5rem 1.0625rem 1.5625rem;
  background-color: var(--clr-white);
  border: 1px solid #C7DCFB;
  color: #8D8E92;
  font-size: 0.875rem;
  border-radius: 0.3125rem;
}
.blog-right-content .sidebar-search-form .shape1 {
  position: absolute;
  top: 0;
  right: 20px;
}
.blog-right-content .sidebar-search-form .shape2 {
  position: absolute;
  bottom: 0;
  left: 30px;
}
.blog-right-content .list-group-item:hover .list-number {
  background: var(--clr-blue);
  color: var(--clr-white);
  border-color: transparent;
}
.blog-right-content .list-group-item .list-group-img {
  margin-right: 0.9375rem;
  border-radius: 0.3125rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 104px;
}
.blog-right-content .list-group-item .list-group-img img {
  width: 100%;
}
.blog-right-content .list-group-item .list-group-content .list-group-title {
  font-size: 0.875rem;
  font-weight: var(--fw-700);
  line-height: 1.1875rem;
}
.blog-right-content .list-group-item .list-group-content .list-group-title a {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.blog-right-content .list-group-item .list-group-date {
  color: #8D8E92;
  font-weight: var(--fw-400);
  font-size: 0.875rem;
  line-height: 1.5rem;
}
.blog-right-content .list-group-item .list-group-date i {
  color: #8D8E92;
  border: none;
  font-size: var(--fs-14);
  width: 0;
  height: 0;
  margin-right: 0.9375rem;
}
.blog-right-content .list-number {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  text-align: center;
  line-height: 1.4375rem;
  color: #8D8E92;
  border: 1px solid #8D8E92;
  font-size: var(--fs-12);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.blog-right-content .sidebar-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.5rem;
}
.blog-right-content .sidebar-button li {
  padding: 0.25rem 0.9375rem;
  font-size: 0.875rem;
  font-weight: var(--fw-400);
  border-radius: 3px;
  border: 1px solid #C7DCFB !important;
}
.blog-right-content .sidebar-button li:hover {
  color: var(--clr-white);
  background: var(--clr-blue);
  border-color: transparent !important;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.blog-right-content .sidebar-category {
  padding: var(--gutter-20) var(--gutter-30);
}
.blog-right-content .sidebar-category li {
  padding: var(--gutter-15) 0;
}
.blog-right-content .sidebar-category li + li {
  border-top: 1px solid #C7DCFB;
}
.blog-details-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: var(--gutter-30);
}
.blog-details-wrapper .blog-left-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.blog-details-wrapper .blog-right-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-left: auto;
}
.blog-details-wrapper .blog-meta-comment {
  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;
  margin-top: 2.5rem;
}
.blog-details-wrapper .blog-meta {
  margin: 0;
}
.blog-details-wrapper .blog-comment-share i {
  margin-right: 0.5rem;
}
.blog-details-wrapper .blog-content h3 {
  margin-top: var(--gutter-40);
}
.blog-details-wrapper .doctor-say {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid #C7DCFB;
  padding: 1.875rem;
  border-radius: 0.3125rem;
  max-width: 783px;
  -webkit-box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.05);
}
.blog-details-wrapper .doctor-say h3 {
  margin-top: 0;
  font-size: 1.125rem;
  font-weight: var(--fw-500);
  line-height: 1.875rem;
}
.blog-details-wrapper .doctor-say-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: var(--gutter-20);
}
.blog-details-wrapper .doctor-say-img {
  margin-right: 0.625rem;
  border-radius: 50%;
}
.blog-details-wrapper .doctor-say-content h5 {
  font-size: 1rem;
  line-height: 1.875rem;
  margin-bottom: -0.5rem;
}
.blog-details-wrapper .doctor-say-content span {
  font-size: 0.75rem;
  line-height: 1.875rem;
}
.blog-details-wrapper .blog-details-button-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: var(--gutter-20);
}
.blog-details-wrapper .blog-details-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.blog-details-wrapper .blog-details-button span {
  padding: 0.4375rem 0.9375rem;
  font-size: 0.875rem;
  font-weight: var(--fw-400);
  line-height: 1rem;
  border: 1px solid #C7DCFB !important;
  border-radius: 3px;
}
.blog-details-wrapper .blog-details-button span:hover {
  color: var(--clr-white);
  background: var(--clr-blue);
  border-color: transparent !important;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.blog-details-wrapper .blog-reply-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2.1875rem;
}
.blog-details-wrapper .reply-item {
  margin-left: 4.5rem;
}
.blog-details-wrapper .blog-reply-img {
  margin-right: 0.9375rem;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.blog-details-wrapper .blog-reply-img img {
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 50%;
  text-align: center;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog-details-wrapper .blog-reply-content h5 {
  font-size: 1.5rem;
  font-weight: var(--fw-700);
  line-height: 1.75rem;
}
.blog-details-wrapper .blog-reply-meta {
  margin-top: 0.9375rem;
}
.blog-details-wrapper .blog-reply-meta span {
  font-size: 0.875rem;
  line-height: 0.875rem;
}
.blog-details-wrapper .reply-meta-date {
  margin-right: 4.6875rem;
}
.blog-details-wrapper .reply-meta-like span {
  margin-right: 1.25rem;
}
.blog-details-wrapper .booking-wrapper {
  max-width: 608px;
  border: 1px solid #C7DCFB;
  margin-top: 2.5rem;
  -webkit-box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.05);
}
/** -------------------------------------
 *  Responsive CSS
 *  --------------------------------------
 **/
/** Mobile Device **/
@media screen and (min-width: 320px) {
  h1 {
    font-size: calc(2.5rem + 1.25 * ((100vw - 20rem) / 55));
  }
  h3 {
    font-size: calc(1.375rem + 0.125 * ((100vw - 20rem) / 55));
  }
  h4 {
    font-size: calc(1rem + 0.125 * ((100vw - 20rem) / 55));
  }
}
/** Small Device **/
@media screen and (min-width: 576px) {
  .banner-area {
    height: 1040px;
  }
  .login-wrapper .social-button {
    -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;
  }
}
/** Media Device **/
@media screen and (min-width: 768px) {
  hr {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .mt-md-n4 {
    margin-top: -0.75rem;
  }
  .mobile-menu {
    right: 42px;
  }
  .footer-area {
    padding-top: 5rem;
  }
  .footer-title {
    margin-bottom: var(--gutter-30);
  }
  .footer-bottom .footer-copyright {
    text-align: right;
  }
  .banner-area {
    height: 950px;
  }
  .banner-left-content {
    padding-top: 6.25rem;
  }
  .banner-left-content h1 {
    line-height: 1.4;
  }
  .banner-right-content {
    margin-top: 0;
  }
  .banner-img .play-box {
    width: 9rem;
    height: 9rem;
    bottom: -2.8125rem;
    right: 3.125rem;
  }
  .banner-img .play-box a {
    font-size: 2.75rem;
  }
  .banner-img .play-box i {
    bottom: 1.875rem;
    right: 2.375rem;
  }
  .counter-item {
    padding: 0 var(--gutter-10);
  }
  .counter-wrapper-2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .counter-wrapper-2 .counter-item {
    padding: 0 var(--gutter-40);
  }
  .counter-wrapper-2 .counter-item + .counter-item {
    border-left: 1px solid #C8DBF9;
  }
  .service-area {
    margin-top: -180px;
  }
  .service-area-2 {
    margin-top: 0;
  }
  .service-left-content .service-btn {
    text-align: left;
  }
  .service-item-2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .service-item-2 .service-text {
    text-align: left;
  }
  .service-right-content .service-group-btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .service-right-content .service-group-btn a {
    width: auto;
    padding: var(--gutter-30) var(--gutter-50);
  }
  .service-right-content .service-group-btn a.btn-blue {
    padding: 2.625rem var(--gutter-50);
    height: 6.875rem;
  }
  .about-left-content .about-image .circle {
    top: 3.75rem;
  }
  .about-left-content .about-image .circle.circle2 {
    right: 4.375rem;
  }
  .about-left-content .about-service-list {
    border-radius: 0 12.5rem 12.5rem 0;
    margin-right: var(--gutter-10);
  }
  .about-left-content .about-service-list ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .about-left-content .about-service-list ul li {
    width: 30%;
  }
  .about-area-2 .about-left-content .about-service-list {
    border-radius: 12.5rem 0 0 12.5rem;
    margin-left: var(--gutter-15);
  }
  .faq-left-content {
    margin-top: 1.25rem;
  }
  .faq-right-content {
    margin-top: var(--gutter-20);
  }
  .faq-area-2 .faq-left-content {
    padding-bottom: 0;
  }
  .faq-area-3 .faq-left-content {
    margin-left: var(--gutter-50);
  }
  .booking-area .shape8 {
    display: block;
  }
  .booking-right-content {
    padding-top: 0;
  }
  .subscribe-news-wrapper form .form-control {
    padding: 1.75rem 2.25rem;
  }
  .subscribe-news-wrapper form .btn-white {
    --btn-py: 20px;
  }
  .doctor-booking-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .doctor-booking-list .doctor-details {
    max-width: 244px;
    margin: 0 3.125rem;
    text-align: left;
  }
  .booking-table {
    margin-top: 0;
  }
  .testimonial-item .testimonial-footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .testimonial-item .author-info {
    margin-bottom: 0;
  }
  .contact-area .contact-item-2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: var(--gutter-30);
  }
  .contact-area .contact-item-2 .contact-text {
    text-align: left;
  }
  .login-wrapper .shape1 {
    display: block;
    top: 30px;
    right: -40px;
    position: absolute;
  }
  .login-wrapper .shape2 {
    display: block;
    top: 74px;
    right: -74px;
    position: absolute;
  }
  .doctor-details-page .details-left-content .footer-social {
    margin-top: 0;
  }
  .doctor-details-page .doctor-details-position li h4 {
    width: 23%;
  }
  .blog-right-content {
    margin-top: 0;
  }
  .blog-details-wrapper .blog-details-button-social {
    -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;
  }
}
/** Large Device **/
@media screen and (min-width: 992px) {
  .section-padding {
    padding: 6.25rem 0;
  }
  .menu-dropdown .nav-link::before {
    content: "";
    top: 50%;
    right: 0;
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: var(--fs-16);
    color: var(--clr-white);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 1;
  }
  .menu-dropdown .sub-menu {
    top: 100%;
    right: 0;
    left: 0;
    position: absolute;
    z-index: 9;
    border-radius: 5px;
    border: none;
    display: block;
    padding: 18px 0;
    min-width: 230px;
    background: #ffffff;
    -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    margin: 0;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    opacity: 0;
    visibility: hidden;
  }
  .menu-dropdown .sub-menu li {
    margin-left: 0;
    text-align: left;
  }
  .menu-dropdown .sub-menu li a {
    padding: var(--gutter-10) var(--gutter-10) var(--gutter-10) var(--gutter-25);
    font-weight: 600;
    color: #777777;
    text-transform: capitalize;
    display: block;
    text-decoration: none;
    position: relative;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  .menu-dropdown .sub-menu li a::before {
    content: "";
    top: 1.375rem;
    left: 1.25rem;
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--clr-blue);
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  .menu-dropdown .sub-menu li a:hover {
    padding-left: var(--gutter-50);
    color: var(--clr-blue);
  }
  .menu-dropdown .sub-menu li a:hover::before {
    width: 1rem;
  }
  .menu-dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .header-navbar {
    gap: var(--gutter-20);
  }
  .header-nav {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 70%;
  }
  .footer-area .shape {
    bottom: 6.25rem;
    left: 7.5rem;
  }
  .footer-area .shape2 {
    right: 5.3125rem;
  }
  .footer-area .footer-padding {
    padding-top: 0;
  }
  .off-day {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: var(--gutter-20);
  }
  .banner-area {
    padding-top: 200px;
    height: 1040px;
  }
  .banner-left-content {
    padding-top: 0;
  }
  .counter-item {
    padding: 0 var(--gutter-30);
  }
  .service-right-content {
    margin-top: var(--gutter-20);
  }
  .service-right-content .service-image img {
    width: auto;
  }
  .service-right-content .service-group-btn a {
    padding: var(--gutter-30) var(--gutter-40);
  }
  .about-left-content .about-image img {
    margin-left: 0;
  }
  .about-left-content .about-service-list {
    margin-right: 0;
  }
  .about-left-content .about-service-list ul li {
    width: 45%;
  }
  .about-right-content {
    margin-top: 0;
  }
  .about-area-2 .about-left-content .about-image img {
    margin-right: 0;
  }
  .faq-right-content .accordion-item .accordion-button {
    padding: 1.5rem 2.5rem 1.5rem 1.4375rem;
  }
  .blog-area-2 .blog-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .blog-area-2 .blog-wrapper .blog-left-content {
    width: 58%;
  }
  .blog-area-2 .blog-wrapper .blog-right-content {
    width: 38%;
  }
  .contact-area .contact-item-2 {
    gap: var(--gutter-10);
    padding: var(--gutter-30) var(--gutter-20);
  }
  .contact-area .contact-item-2 hr {
    height: 77px;
  }
  .login-wrapper {
    padding: 80px 70px;
  }
  .login-wrapper .shape3 {
    display: block;
    right: 0;
    bottom: 40px;
    position: absolute;
  }
  .login-wrapper .shape4 {
    display: block;
    right: 0;
    bottom: 0;
    position: absolute;
  }
  .doctor-details-page .details-right-content {
    margin-top: 0;
    margin-left: var(--gutter-10);
  }
  .doctor-details-page .booking-wrapper {
    padding: var(--gutter-30) var(--gutter-50) var(--gutter-50);
  }
  .blog-details-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .blog-details-wrapper .blog-left-content {
    width: 58%;
  }
  .blog-details-wrapper .blog-right-content {
    width: 38%;
  }
}
/** Extra Large Device **/
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 3.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.125rem;
  }
  .section-title .title {
    font-size: 2.125rem;
  }
  .header-nav {
    width: 60%;
  }
  .header-nav .nav-list .nav-item {
    margin-left: var(--gutter-10);
  }
  .sidebar-widget {
    max-width: 19.625rem;
    margin-left: auto;
  }
  .container, .container-md {
    max-width: 1200px;
  }
  .banner-area {
    padding-top: 265px;
  }
  .service-wrapper {
    padding: var(--gutter-30) var(--gutter-40);
  }
  .service-right-content .service-image {
    margin-left: 1.625rem;
  }
  .about-left-content .about-service-list {
    margin-right: var(--gutter-10);
  }
  .about-left-content .about-service-list ul li {
    width: 35%;
  }
  .about-right-content {
    margin-left: var(--gutter-15);
  }
  .about-right-content .section-title .title {
    width: 80%;
  }
  .faq-left-content {
    margin-top: 4.375rem;
    padding-bottom: 2.5rem;
  }
  .faq-left-content .faq-img::before {
    content: "";
    top: -2.5rem;
    right: -1.375rem;
    position: absolute;
    width: 14.375rem;
    height: 27.5rem;
    background: var(--clr-blue);
    z-index: -1;
  }
  .faq-left-content .faq-img::before {
    height: 32.625rem;
  }
  .faq-right-content {
    margin-left: var(--gutter-50);
    margin-top: var(--gutter-30);
  }
  .faq-area-2 .faq-left-content {
    margin-top: var(--gutter-30);
  }
  .booking-area .shape6 {
    display: block;
  }
  .booking-area .shape7 {
    display: block;
  }
  .booking-wrapper {
    padding: var(--gutter-50) 4.25rem;
  }
  .booking-wrapper .section-title h3 {
    width: 90%;
  }
  .booking-right-content {
    padding-left: var(--gutter-30);
  }
  .booking-right-content .section-title p {
    width: 85%;
  }
  .booking-info-box {
    padding: var(--gutter-50) 3.75rem;
  }
  .subscribe-news-wrapper p {
    width: 85%;
  }
  .blog-area-2 .blog-wrapper {
    gap: var(--gutter-50);
  }
  .blog-area-2 .blog-wrapper .blog-left-content {
    width: 70%;
  }
  .blog-area-2 .blog-wrapper .blog-right-content {
    width: 27%;
  }
  .blog-item .blog-meta {
    padding: var(--gutter-20) var(--gutter-15);
  }
  .login-wrapper .shape3 {
    right: -290px;
  }
  .login-wrapper .shape4 {
    right: -322px;
  }
  .doctor-details-page .details-left-content {
    margin-right: var(--gutter-10);
  }
  .blog-right-content .post-item {
    padding-right: var(--gutter-10);
  }
  .blog-details-wrapper {
    gap: var(--gutter-50);
  }
  .blog-details-wrapper .blog-left-content {
    width: 70%;
  }
  .blog-details-wrapper .blog-right-content {
    width: 27%;
  }
}
@media screen and (min-width: 1441px) {
  .header-nav .nav-list {
    padding: var(--gutter-10) var(--gutter-20) 0;
  }
  .footer-booking-hour {
    padding-left: 2.8125rem;;
  }
  .banner-img {
    right: -1.875rem;
  }
  .service-right-content .shape {
    right: -38px;
  }
}
@media (max-width: 767.98px) {
  .banner-img img {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .header-logo {
    width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .header-nav {
    width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
.img-card {
      margin-left: 330px;
    margin-top: 55px;
}
.cta {
  border-radius: 20px;
  padding: 40px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1000%26quot%3b)' fill='none'%3e%3crect width='1440' height='560' x='0' y='0' fill='%230e2a47'%3e%3c/rect%3e%3cpath d='M236.62 0C262.2 41.46 211.31 80.8 226.38 140C233 165.98 253.46 170.36 280 170.36C304.98 170.36 322.02 164.95 329.41 140C347.26 79.77 302.86 42.7 330.49 0C348.15 -27.3 375.25 0 420 0C490 0 490 0 560 0C630 0 630 0 700 0C770 0 770 0 840 0C910 0 910 0 980 0C1050 0 1050 0 1120 0C1190 0 1190 0 1260 0C1330 0 1330 0 1400 0C1470 0 1505 -35 1540 0C1575 35 1540 70 1540 140C1540 180 1556.91 188.07 1540 220C1519.85 258.07 1465.88 255.36 1465.88 280C1465.88 300.73 1524.31 281.09 1540 310.73C1561.37 351.09 1540 365.37 1540 420C1540 474.63 1550.77 479.02 1540 529.27C1535.77 549.02 1529.66 555.69 1510 560C1459.66 571.05 1455 560 1400 560C1330 560 1330 560 1260 560C1190 560 1190 560 1120 560C1050 560 1050 560 980 560C911.92 560 843.84 587.4 843.84 560C843.84 522.01 903.5 449.05 980 429.21C1041.58 413.24 1058.88 491.32 1120 488.37C1154.23 486.72 1170.69 449.77 1170.69 420C1170.69 398.69 1142.98 406.06 1120 386.21C1061.97 336.06 1063.62 333.81 1008.67 280C993.62 265.25 997.44 249.09 980 249.09C949.1 249.09 939.53 256.23 912 280C869.53 316.68 872.55 322.81 840 370C824.27 392.81 816.07 393.16 815.44 420C813.85 488.16 865.03 524.26 835.56 560C807.31 594.26 767.78 560 700 560C630 560 630 560 560 560C490 560 490 560 420 560C350 560 350 560 280 560C280 560 280 560 280 560C224.24 490 209.91 496.97 168.47 420C139.91 366.97 155.76 300 140 300C124.03 300 115.99 358.79 105 420C92.65 488.79 124.87 517.94 93.33 560C72.37 587.94 18.67 588 0 560C-28 518 0 490 0 420C0 351.89 -17.37 335.87 0 283.78C5.97 265.87 46.67 281.97 46.67 280C46.67 278.02 5.98 293.83 0 275.88C-17.35 223.83 0 207.94 0 140C0 70 -35 35 0 0C35 -35 70 0 140 0C188.31 0 219.01 -28.54 236.62 0' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M1400 360C1385.35 360 1365.71 394.29 1365.71 420C1365.71 435.06 1384 441.54 1400 441.54C1412.2 441.54 1422.11 433.27 1422.11 420C1422.11 392.5 1413.55 360 1400 360' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M187.32 0C191.81 52.72 172.21 71.05 151.91 140C148.55 151.42 151.05 158.34 140 160.74C75.09 174.81 56.71 181.34 0 172.94C-13.29 170.97 0 156.47 0 140C0 70 -35 35 0 0C35 -35 70 0 140 0C163.66 0 185.85 -17.28 187.32 0' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M398.04 140C425.18 86.52 378.94 56.96 387.87 0C389.92 -13.04 403.93 0 420 0C490 0 490 0 560 0C604.55 0 615.64 -19.82 649.09 0C685.64 21.66 677.69 82.96 700 82.96C720.64 82.96 702.68 19.15 735 0C772.68 -22.33 787.5 0 840 0C910 0 910 0 980 0C1050 0 1050 0 1120 0C1190 0 1190 0 1260 0C1330 0 1330 0 1400 0C1436.13 0 1451.98 -22.82 1472.26 0C1514.2 47.18 1543.04 87 1524.44 140C1506.91 189.94 1452.74 162.73 1400 205.88C1367.19 232.73 1372.66 240.85 1353.33 280C1319.8 347.91 1281.48 363.34 1294.29 420C1304.82 466.55 1351.77 447.62 1400 486.41C1438.79 517.62 1468.33 538.1 1468.33 560C1468.33 574.9 1434.16 560 1400 560C1330 560 1330 560 1260 560C1194.89 560 1136 590.08 1129.77 560C1121.51 520.08 1233.79 480.38 1231.03 420C1228.9 373.37 1172.49 386.77 1120 345.98C1082.4 316.77 1084.34 314.06 1050.84 280C1014.34 242.89 1024.97 219.72 980 203.64C919.55 182.03 890.98 180.06 840 204.62C811.74 218.24 835.83 244.13 821.51 280C792.85 351.82 764.87 346.94 754.04 420C744.12 486.94 797.3 515.18 780 560C770.28 585.18 740 560 700 560C630 560 630 560 560 560C490 560 490 560 420 560C373.65 560 363.17 579.08 327.3 560C293.17 541.84 305.52 521.43 280 485.53C255.77 451.43 244.1 457.68 227.8 420C199.65 354.91 176.37 338.57 191.11 280C202.47 234.84 233.84 243.76 280 212.53C337.31 173.76 371.25 192.78 398.04 140' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M1260 91.54C1228.78 91.54 1200 116.04 1200 140C1200 163.61 1228.84 186.67 1260 186.67C1295.9 186.67 1334.12 163.65 1334.12 140C1334.12 116.09 1295.84 91.54 1260 91.54' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M0 378.38C8.95 378.38 28.71 395.24 32.08 420C41.07 486.05 38.35 500.49 24.71 560C22.31 570.49 1.85 570.5 0 560C-10.5 500.5 0 490 0 420C0 399.19 -7.09 378.38 0 378.38' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M1468.16 420C1468.16 386.71 1518.62 353.41 1540 353.41C1554.54 353.41 1540 386.71 1540 420C1540 453.29 1554.54 486.59 1540 486.59C1518.62 486.59 1468.16 453.29 1468.16 420' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M891.78 560C891.78 535.38 931.8 475.26 980 475.26C1041.62 475.26 1111.43 536.98 1111.43 560C1111.43 579.35 1045.72 560 980 560C935.89 560 891.78 577.75 891.78 560' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M130.67 0C130.67 16.64 45.51 63.23 0 63.23C-19.82 63.23 -21.31 10.31 0 0C44.03 -21.31 130.67 -14.98 130.67 0' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M560 15C547.08 15 530 3.96 530 0C530 -3.54 545 0 560 0C564.78 0 569.55 -2.62 569.55 0C569.55 4.88 566.85 15 560 15' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M840 76.67C811.99 76.67 789.69 24.75 789.69 0C789.69 -13.58 814.85 0 840 0C874.26 0 908.51 -15.33 908.51 0C908.51 23.01 871.4 76.67 840 76.67' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M931.72 140C931.72 123.63 954.71 98.82 980 98.82C1009.29 98.82 1040.87 124.08 1040.87 140C1040.87 153.76 1010.12 158.18 980 158.18C955.54 158.18 931.72 153.31 931.72 140' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M1120 60.87C1094.62 60.87 1078.82 19.51 1078.82 0C1078.82 -10.93 1099.41 0 1120 0C1158.89 0 1197.78 -13.41 1197.78 0C1197.78 17.03 1154.1 60.87 1120 60.87' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M246.67 280C246.67 261.8 261.13 254.7 280 254.7C318.18 254.7 323.75 260.97 360.77 280C393.75 296.95 387.86 326.67 420 326.67C465.6 326.67 468.42 303.91 516.25 280C538.42 268.91 537.47 266.97 560 256.67C629.34 224.97 641.11 188.97 700 196C738.85 200.64 755.47 235.8 755.47 280C755.47 339.05 742.57 359.77 700 402.5C672.84 429.77 658 411.25 616 420C588 425.83 577.41 411.84 560 431.67C515.93 481.84 539.56 517.35 493.04 560C469.56 581.52 456.52 560 420 560C397.29 560 388.2 575.46 374.59 560C326.6 505.46 336.9 489.24 296.8 420C289.6 407.57 284.8 410.08 280 396.67C259.74 340.08 246.67 332.78 246.67 280' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M1093.01 280C1093.01 244.63 1095.31 202.76 1120 202.76C1157.5 202.76 1217.39 251.56 1217.39 280C1217.39 303.05 1165.38 305.75 1120 305.75C1103.19 305.75 1093.01 296.13 1093.01 280' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M1514.21 420C1514.21 408.05 1532.32 396.1 1540 396.1C1545.22 396.1 1540 408.05 1540 420C1540 431.95 1545.22 443.9 1540 443.9C1532.32 443.9 1514.21 431.95 1514.21 420' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M653.33 560C653.33 520.45 681.7 450 700 450C717.26 450 724.44 514.8 724.44 560C724.44 569.8 712.22 560 700 560C676.66 560 653.33 575.45 653.33 560' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M939.73 560C939.73 548.76 958 521.32 980 521.32C1008.13 521.32 1040 549.49 1040 560C1040 568.83 1010 560 980 560C959.87 560 939.73 568.1 939.73 560' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M1211.16 560C1211.16 535.74 1224.34 490.42 1260 485C1318.76 476.06 1334.16 501.65 1400 531.28C1417.5 539.15 1426.67 551.45 1426.67 560C1426.67 565.81 1413.34 560 1400 560C1330 560 1330 560 1260 560C1235.58 560 1211.16 573.24 1211.16 560' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1000'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
}
.btn-cta {
  border-radius: 20px;
  background-color: #0090DA;
  padding: 15px;
  margin: 10px;
  border: 1px solid #FFF;
  color: #fff;
}
.cardy {
  border-radius: 20px;
  margin: 10px;
  padding: 20px;
  border: 3px solid #fff;
  height: 240px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.1px);
  -webkit-backdrop-filter: blur(6.1px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 700px) {
  .esconder-mobile {
    display: none !important;
  }
  .sem-blur {
    backdrop-filter: none;
  }
  .padding-cta {
    padding: 134px 0px;
  }
  .cta {
    position: absolute;
    top: -53px;
    width: 356px;
    margin-top: 30px
  }
  .btn-cta {
           border-radius: 20px;
        background-color: #0090DA;
        padding: 1rem;
        margin: 5px;
        border: 1px solid #FFF;
        color: #fff !important;
        font-size: 16px;
        text-decoration: none;
  }
  .font-cta {
    font-size: 16px;
  }
  .cardy {
    height: 280px
  }
  .mob-center {
    text-align: center;
    justify-content: center;
  }
  .footer-bottom {
    margin-top: -100px;
  }
}
@media (min-width: 700px) {
  .esconder-desktop {
   display: none !important;
  }
  .cta {
    position: absolute;
    top: -53px;
    width: 1187px;
  }
  .font-cta {
    font-size: 22px;
  }
  .btn-cta {
    border-radius: 20px;
    background-color: #0090DA;
    padding: 15px;
    margin: 10px;
    border: 1px solid #FFF;
    color: #fff;
  }
  .esconder {
    display: none !important;
  }
}



.rs-process .rs-addon-number .number-text .number-area {
  display: block;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4;
  color: #03228f;
}
.rs-process .rs-addon-number .number-text .number-title .title {
  font-size: 33px;
    line-height: 34px;
    font-weight: 600;
    color: #03228f;
    margin-bottom: 10px;
}
.rs-process .rs-addon-number .number-text .number-txt {
  margin: 0;
  padding-right: 34px;
}
.rs-process.modify1 {
  background-image: linear-gradient(140deg, #03228f 62%, #0e73e4 100%);
  border-radius: 270px 0px 0px 0px;
}
.rs-process.modify1 .rs-addon-number .number-text {
  margin: 0px 25px 0px 30px;
  padding: 0px 48px 11px 48px;
  background-color: #182AEE45;
  border-radius: 10px 10px 50px 10px;
  position: relative;
}
.rs-process.modify1 .rs-addon-number .number-text .number-area {
  font-size: 41px;
  font-weight: 600;
  line-height: 62px;
  position: relative;
  color: #ffffff;
  display: inline-block;
  width: 70px;
  height: 70px;
  left: -70px;
  top: -30px;
  text-align: center;
  background: #06D3E5;
  transition: all 0.3s ease 0s;
  border-radius: 50%;
}
.rs-process.modify1 .rs-addon-number .number-text .number-area.green-bg {
  background: #3BCD4C;
}
.rs-process.modify1 .rs-addon-number .number-text .number-area.plum-bg {
  background: #9439E9;
}
.rs-process.modify1 .rs-addon-number .number-text .number-area.pink-bg {
  background: #f30876;
}
.rs-process.modify1 .rs-addon-number .number-text .number-title .title {
  color: #ffffff;
  margin-bottom: 15px;
}
.rs-process.modify1 .rs-addon-number .number-text .number-txt {
  color: #ffffff;
  margin-bottom: 40px;
  padding-right: 0;
}
.rs-process.style2 .addon-process .process-wrap .process-img {
  padding: 10px 10px 10px 10px;
}
.rs-process.style2 .addon-process .process-wrap .process-img img {
  width: 100%;
  height: auto;
}
.rs-process.style2 .addon-process .process-wrap .process-text {
  text-align: center;
  padding: 15px 0 0;
}
.rs-process.style2 .addon-process .process-wrap .process-text .title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0;
}
.rs-process.style2 .addon-process .process-wrap .process-text .title:hover {
  color: #061340;
}
.rs-process.style3 .rs-addon-number {
  margin: 0px -10px 0px 0px;
  padding: 37px 30px 37px 38px;
  background-color: #FFFFFF;
  border-bottom: 7px solid #095fd0;
}
.rs-process.style4 .rs-addon-number {
  margin: 0px -10px 0px 0px;
  padding: unset;
  background-color: unset;
}
.rs-process.style4 .rs-addon-number .number-text .number-area {
  display: inline-block;
  width: 50px;
  line-height: 50px;
  z-index: 1;
  position: relative;
  transition: all 0.3s ease 0s;
  text-align: center;
  width: 64px;
  height: 54px;
  top: -20px;
}
.rs-process.style4 .rs-addon-number .number-text .number-area:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -15px;
  left: 0;
  z-index: -1;
  transform: rotate(45deg);
  transition: all 0.3s ease 0s;
  border-radius: 50px 50px 50px 50px;
  background: #A0B3F8;
}
.rs-process.style5 .rs-addon-number .number-text .number-area {
  color: #ffffff;
}
.rs-process.style5 .rs-addon-number .number-text .number-title .title {
  color: #ffffff;
}
.rs-process.style5 .rs-addon-number .number-text .number-txt {
  color: #ffffff;
}
.rs-process.style6 .tab-area .nav {
  border-bottom: unset;
}
.rs-process.style6 .tab-area .nav li .tab-item {
  padding: 20px 30px;
  display: block;
  position: relative;
  transition: all ease .6s;
}
.rs-process.style6 .tab-area .nav li .tab-item h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  color: #102b3e;
  margin-bottom: 8px;
  text-decoration: underline;
}
.rs-process.style6 .tab-area .nav li .tab-item p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #101010;
  height: 0;
  opacity: 0;
  margin: 0;
  transition: all ease .4s;
}
.rs-process.style6 .tab-area .nav li .tab-item.active {
  background: #f8f6ff;
}
.rs-process.style6 .tab-area .nav li .tab-item.active h3 {
  color: #f2541b;
}
.rs-process.style6 .tab-area .nav li .tab-item.active p {
  height: auto;
  opacity: 1;
  transition: all ease .8s;
}
.rs-process .shape-animation {
  position: relative;
}
.rs-process .shape-animation .shape-process {
  position: absolute;
  left: 180px;
  top: 50px;
}

.rs-step {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px 10px 10px 10px;
  padding: 258px 0;
}

.media-icon {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.media-icon .popup-videos {
  position: absolute;
  top: -20px;
    left: -22px;
  transform: translate(-50%, -50%);
  color: #ffffff;
  background: #106eea;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  text-align: center;
	margin-top: 60px;
}
.media-icon .popup-videos:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  transition: 0.3s ease all;
}
.media-icon .popup-videos i:before {
  font-size: 30px;
  line-height: 70px;
  transition: 0.3s ease all;
}
.media-icon.video-item {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slider-video .popup-videos {
  display: inline-block;
  position: relative;
  height: 70px;
  width: 70px;
  line-height: 70px;
  border-radius: 100%;
  text-align: center;
  background: #106eea;
}
.slider-video .popup-videos i {
  text-align: center;
  color: #ffffff;
  border-radius: 100%;
  font-size: 25px;
  position: relative;
  line-height: 70px;
  z-index: 9;
  width: 100%;
  vertical-align: middle;
  margin-left: 0;
  height: auto;
}
.slider-video .popup-videos:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  animation: pulse-border 3000ms ease-out infinite;
  background: #106eea;
}
.address-item .address-icon {
  display: inline-block;
  position: relative;
  height: 70px;
  width: 70px;
  line-height: 70px;
  border-radius: 100%;
  text-align: center;
  background: #ffffff;
}
.address-item .address-icon i {
  text-align: center;
  color: #106eea;
  border-radius: 100%;
  font-size: 25px;
  position: relative;
  line-height: 70px;
  z-index: 9;
  width: 100%;
  vertical-align: middle;
  margin-left: 0;
  height: auto;
}
.address-item .address-icon:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  background: #ffffff;
}
.tab-videos .popup-videos {
  color: #de5022;
  display: flex;
  overflow: hidden;
}
.tab-videos .popup-videos i {
  width: 35px;
  height: 35px;
  line-height: 32px;
  border: 2px solid #de5022;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  float: left;
  margin-right: 18px;
}
.tab-videos .popup-videos:hover {
  color: #de5022;
}
.tab-videos .popup-videos .title {
  font-size: 22px;
  line-height: 34px;
  font-weight: 600;
  color: #102b3e;
}
.tab-videos .popup-videos .title:hover {
  color: #f2541b;
}
.rs-videos .animate-border .popup-border {
  background-image: linear-gradient(180deg, #03228f 0%, #0b70e1 100%);
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.rs-videos .animate-border .popup-border i {
  font-size: 20px;
  line-height: 80px;
  display: block;
  color: #ffffff;
}
.rs-videos .animate-border .popup-border:before {
  content: "";
  border: 2px solid #106eea;
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  animation: zoomBig 3.25s linear infinite;
  -webkit-animation-delay: .75s;
  animation-delay: .75s;
}
.rs-videos .animate-border .popup-border:after {
  content: "";
  border: 2px solid #106eea;
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  animation: zoomBig 3.25s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.rs-videos .animate-border.main-home .popup-border {
  left: 8%;
}
.rs-videos .animate-border.main-home.style2 .popup-border {
  left: 50%;
}
.rs-videos .animate-border.white-color .popup-border {
  background: #ffffff;
  bottom: -14px;
  left: 44%;
}
.rs-videos .animate-border.white-color .popup-border i {
  color: #03228f;
}
.rs-videos .animate-border.white-color .popup-border:before {
  border: 2px solid #ffffff;
}
.rs-videos .animate-border.white-color .popup-border:after {
  border: 2px solid #ffffff;
}
.rs-videos .animate-border.white-color.style3 .popup-border {
  bottom: 362px;
  left: 10%;
}

@media (max-width: 700px)
{
   .esconder-mobile{
       display: none !important;
   }
}

@media (min-width: 700px)
{
   .esconder-desktop{
       display: none !important;
   }
}

