:root {
  --alt-font: "Titillium Web", serif;
  --primary-font: "Montserrat", serif;
}
/* ===================================
02. CSS color variable
====================================== */
:root {
  --base-color: #2946f3;
  --white: #ffffff;
  --black: #000000;
  --red: #dc3131;
  --light-red: #feedec;
  --green: #2ebb79;
  --crusoe-green: #d39121;
  --yellow: #ffea23;
  --dark-gray: #232323;
  --medium-gray: #717580;
  --extra-medium-gray: #e4e4e4;
  --light-gray: #a8a8a8;
  --very-light-gray: #f7f7f7;
  --light-medium-gray: #eaeaeb;
  --charcoal-blue: #202329;
  --slate-blue: #262b35;
  --medium-slate-blue: #374162;
  --extra-medium-slate-blue: #23262d;
  --dark-slate-blue: #1f232c;
  --extra-dark-slate-blue: #121418;
  --extra-very-slate-blue: #161620;
  --tussock-yellow: #BC8947;
  --aluminium-grey:#80858F;
  --solitude-blue:#f0f4fd;
  --golden-yellow:#fd961e;
  --selago:#eaedff;
  --white-ice:#d8f5ef;
  --cornflower-blue:#445fed;
  --jade:#00AF6B;
  --orange: #ef991f;
  --majorelle-blue: #724ade;
  --light-majorelle-blue: #f2edfe;
  --spring-wood: #f9f6f3;
  --tropical-blue: #1ea3b1;
  --camarone: #20642b;
  --seal-brown: #0e0708;
  --Wasabi: #8ea63a;
}
/* ===================================
03. Reset
====================================== */
.alt-font {
  font-family: var(--alt-font);
}
.primary-font {
  font-family: var(--primary-font) !important;
}
html {
  font-size: 16px;
}
body {
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: var(--medium-gray);
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}
section {
  padding-top: 60px;
  padding-bottom: 60px;
}
img {
  max-width: 100%;
  height: auto;
}
ul li {
  list-style: none;
}
a {
  color: var(--medium-gray);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  cursor: pointer !important;
}
a:hover {
  color: var(--base-color);
  text-decoration: none;
}
p {
  margin-bottom: 25px;
}
.last-paragraph-no-margin p:last-of-type {
  margin-bottom: 0;
}
:focus-visible {
  outline: none;
}
[class*=bi-], [class*=feather] {
  display: inline-block;
}
.form-control {
  background-position: right 20px center !important;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row > * {
  padding-right: 15px;
  padding-left: 15px;
}
/* ===================================
04. Typography
====================================== */
/* Heading */
h1, h2, h3, h5 {
  margin-bottom: 30px;
  letter-spacing: -0.5px;
  font-weight: inherit;
}
h1 {
  font-size: 4.375rem;
  line-height: 4.375rem;
}
h2 {
  font-size: 3.438rem;
  line-height: 3.438rem;
}
h3 {
  font-size: 2.813rem;
  line-height: 3.125rem;
}
h5 {
  font-size: 2rem;
  line-height: 2.2rem;
}
/* Font custom */
/* Font size */
.fs-14 {
  font-size: 14px;
}
.fs-15 {
  font-size: 15px;
}
.fs-16 {
  font-size: 16px;
}
.fs-18 {
  font-size: 18px;
}
.fs-19 {
  font-size: 19px;
}
.fs-20 {
  font-size: 20px;
}
.fs-22 {
  font-size: 22px;
  line-height: 32px;
}
.fs-24 {
  font-size: 24px;
  line-height: 32px;
}
.fs-26 {
  font-size: 26px;
  line-height: 38px;
}
.fs-28 {
  font-size: 1.75rem;
  line-height: 2.6rem;
}
.fs-30 {
  font-size: 1.875rem;
  line-height: 2.8rem;
}
.fs-36 {
  font-size: 36px;
  line-height: 46px;
}
.fs-50 {
  font-size: 50px;
  line-height: 60px;
}
/* Line height */
.lh-20 {
  line-height: 20px;
}
.lh-22 {
  line-height: 22px;
}
.lh-24 {
  line-height: 24px;
}
.lh-28 {
  line-height: 28px;
}
.lh-36 {
  line-height: 2.25rem;
}
.lh-normal {
  line-height: normal;
}
/* Text color */
.text-white, a.text-white-hover:hover {
  color: var(--white);
}
.text-base-color {
  color: var(--base-color);
}
.text-dark-gray {
  color: var(--dark-gray);
}
.text-green {
  color: var(--green);
}
.text-golden-yellow {
  color: var(--golden-yellow);
}
/* Letter spacing */
.ls-1px {
  letter-spacing: 1px !important;
}
/* Icon size */
.icon-medium {
  font-size: 34px;
}
.icon-extra-medium {
  font-size: 24px;
}

/* Transition */
.transition-inner-all * {
  -webkit-transition: all 400ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 400ms cubic-bezier(0.37, 0, 0.63, 1);
}
/* Overflow */
.overflow-visible {
  overflow: visible !important;
}
/* Overlap section */
.overlap-height {
  transition: 0.3s height;
}
/* Outside box */
.outside-box-right-5 {
  margin-right: -5vw;
}
/* CSS filter */
/* Box shadow */
.box-shadow-medium {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}
.box-shadow-extra-large, .box-shadow-extra-large-hover:hover {
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}
.box-shadow-quadruple-large {
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}
.box-shadow-extra-large-hover:hover {
  -webkit-transform: translate3d(0, -3px, 0);
  transform: translate3d(0, -3px, 0);
}
/* Input */
input, select, .form-control, .form-select {
  padding: 12px 15px 12px 0;
  width: 100%;
  max-width: 100%;
  resize: none;
  outline: none;
  font-size: 16px;
  border: 1px solid #e4e4e4;
  color: var(--medium-gray);
  line-height: inherit;
  word-break: normal;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 0 !important;
}
.form-select {
  color: var(--medium-gray);
}
.form-select:focus {
  border-color: #dfdfdf;
}
input:focus, select:focus, .form-control:focus {
  border: 1px solid #c2c2c2;
  box-shadow: none !important;
  color: var(--medium-gray);
}
::-webkit-input-placeholder {
  color: var(--medium-gray) !important;
  text-overflow: ellipsis;
}
::-moz-placeholder {
  color: var(--medium-gray) !important;
  text-overflow: ellipsis;
  opacity: 1;
}
:-ms-input-placeholder {
  color: var(--medium-gray) !important;
  text-overflow: ellipsis;
  opacity: 1;
}
/* Select */
select {
  height: 54px !important;
}
/* Mozilla firefox */
@-moz-document url-prefix() {
}
/* Swiper navigation */
.swiper-button-prev, .swiper-button-next {
  outline: none;
  cursor: pointer;
  height: 45px;
  width: 45px;
  margin-top: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  opacity: 0.8;
}
.swiper-button-next {
  left: inherit;
}
/* Full screen */
@media (min-width: 992px) {
  .full-screen {
    height: 850px;
  }
}

/* Box shadow animation  */
[data-shadow-animation] {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}
[data-shadow-animation].shadow-in {
  box-shadow: 0 20px 100px rgba(0, 0, 0, 0.1);
}

/* Anime animation */
[data-anime] {
  opacity: 0;
  transition: none;
}
[data-anime].appear {
  opacity: 1;
}
/* Atropos box */
/* Only for safari browser */
@media not all and (min-resolution: 0.001dpcm) {
  /* font awesome icon gradient color */
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* color issue */
}
/* Data top bottom transition animation */
[data-top-bottom] {
  transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}
/* Custom cursor */
/* Stack box */
/* Scrolling text */
/* Marquee slide */
.marquee-slide {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}
/* Father shadow */
.feather-shadow {
  mask-image: linear-gradient(to right, transparent 0%, #000000 20%, #000000 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000000 20%, #000000 80%, transparent 100%);
}
/* Text sliding line */
/* Sliding line */
/* Feature box slider */
/* Page loader */
/* Cookie message */
/* Scroll progress */
/* for buy and demo button */
/* Move it (define the animation) */
/* ===================================
06. Background and border
====================================== */
/* Background color */
.bg-base-color {
  background-color: var(--base-color);
}
.bg-base2-color {
  background-color: var(--base2-color);
}
.bg-very-light-gray {
  background-color: var(--very-light-gray);
}
.bg-charcoal-blue {
  background-color: var(--charcoal-blue);
}
/* Gradient background color */
/* Transparent background color */
/* Background image */
.cover-background {
  background-repeat: no-repeat !important;
  background-size: cover;
  overflow: hidden;
  position: relative;
  background-position: center top !important;
}
.background-position-left-top {
  background-position: left top !important;
}
.background-no-repeat {
  background-repeat: no-repeat;
}
/* Background size */
/* Border width */
/* Border style */
/* Border color */
.border-color-extra-medium-gray {
  border-color: #333 !important;
}
/* Gradient border color */
/* Border radius */
.border-radius-6px {
  border-radius: 6px !important;
}
.border-radius-8px {
  border-radius: 8px !important;
}
.border-radius-30px {
  border-radius: 30px !important;
}
/* Parallax background */
/* ===================================
07. Width
====================================== */
.w-40px {
  width: 40px !important;
}
.w-50px {
  width: 50px !important;
}
.w-150px {
  width: 150px !important;
}
.w-180px {
  width: 180px !important;
}
.w-85 {
  width: 85% !important;
}
.w-100 {
  width: 100% !important;
}
/* ===================================
08. Height
====================================== */
.h-10px {
  height: 10px !important;
}
.h-25px {
  height: 25px !important;
}
.h-30px {
  height: 30px !important;
}
.h-40px {
  height: 40px !important;
}
.h-45px {
  height: 45px !important;
}
.h-50px {
  height: 50px !important;
}
.h-60px {
  height: 60px !important;
}
.h-70px {
  height: 70px !important;
}
.h-80px {
  height: 80px !important;
}
.h-100px {
  height: 100px !important;
}
.h-120px {
  height: 120px !important;
}
.h-130px {
  height: 130px !important;
}
.h-180px {
  height: 180px !important;
}
/* Screen height */
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}
/* ===================================
09. Loop - Padding, margin, position, font weight, min height, opacity and z-index
====================================== */
/* Padding and margin */
.p-40px {
  padding: 40px !important;
}
.p-45px {
  padding: 45px !important;
}
.p-6 {
  padding: 6% !important;
}
.pt-10px {
  padding-top: 10px !important;
}
.pt-20px {
  padding-top: 20px !important;
}
.pt-40px {
  padding-top: 40px !important;
}
.pt-6 {
  padding-top: 6% !important;
}
.pe-50px {
  padding-right: 50px !important;
}
.pe-10 {
  padding-right: 10% !important;
}
.pb-10px {
  padding-bottom: 10px !important;
}
.pb-20px {
  padding-bottom: 20px !important;
}
.pb-40px {
  padding-bottom: 40px !important;
}
.pb-6 {
  padding-bottom: 6% !important;
}
.ps-25px {
  padding-left: 25px !important;
}
.ps-50px {
  padding-left: 50px !important;
}
.ps-10 {
  padding-left: 10% !important;
}
.mt-15px {
  margin-top: 15px !important;
}
.mt-20px {
  margin-top: 20px !important;
}
.me-10px {
  margin-right: 10px !important;
}
.me-15px {
  margin-right: 15px !important;
}
.me-20px {
  margin-right: 20px !important;
}
.mb-5px {
  margin-bottom: 5px !important;
}
.mb-15px {
  margin-bottom: 15px !important;
}
.mb-20px {
  margin-bottom: 20px !important;
}
.mb-25px {
  margin-bottom: 25px !important;
}
.mb-30px {
  margin-bottom: 30px !important;
}
.mb-40px {
  margin-bottom: 40px !important;
}
.mb-3 {
  margin-bottom: 3% !important;
}
.mb-4 {
  margin-bottom: 4% !important;
}
.mb-6 {
  margin-bottom: 6% !important;
}
/* Position */
.right-0px {
  right: 0px;
}
.bottom-1px {
  bottom: 1px;
}
.bottom-10px {
  bottom: 10px;
}
.bottom-minus-90px {
  bottom: -90px;
}
/* Font weight */
.fw-400 {
  font-weight: 400 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-700 {
  font-weight: 700 !important;
}
.fw-800 {
  font-weight: 800 !important;
}
/* Min height */
/* Opacity */
.opacity-3 {
  opacity: .3;
}
/* Z-index */
.z-index-1 {
  z-index: 1;
}
.z-index-9 {
  z-index: 9;
}
.z-index-minus-1 {
  z-index: -1;
}
/* ===================================
10. Header
====================================== */
header .navbar [class*=col-] {
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
header .navbar [class*=col-].text-end {
  justify-content: flex-end !important;
}
header .navbar {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  width: 100%;
  z-index: 2;
}
header .navbar-brand {
  margin-right: 0;
  vertical-align: middle;
  padding: 15px 0;
  display: inline-block;
  font-size: 0;
}
header .navbar-brand .default-logo {
  visibility: visible;
  opacity: 1;
  width: auto;
}
header .navbar-brand img {
  max-height: 46px;
}
/* Navbar */
.navbar {
  padding: 0;
}
/* Header light */
.header-light .widget-text {
  color: var(--dark-gray);
  font-size: 20px;
  font-weight: 500;
}
/* Header icon */
.header-icon {
  display: flex;
  align-items: center;
  /* max-width: 45px; */
}
.header-icon img{
  width: 25px;
  margin-right: 4px;
}

/* Header widget */
.widget-text {
  color: var(--white);
}
header a.widget-text:hover {
  opacity: 0.6;
}

/* Custom slide animation */
button:focus {
  outline: none;
}

/* Alert box */
.alert .close:not(:disabled) {
  opacity: 1;
}
/* Button */
.btn-box-shadow {
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s cubic-bezier(0.2, 0, 0.3, 1);
  transition: all 0.3s cubic-bezier(0.2, 0, 0.3, 1);
}
.btn-box-shadow:hover {
  -webkit-box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
  -webkit-transform: translate3d(0, -2px, 0);
  transform: translate3d(0, -2px, 0);
}
.btn:first-child:active, :not(.btn-check) + .btn:active {
  border-color: initial;
  color: initial;
}
.btn {
  display: inline-block;
  border: 2px solid transparent;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: auto;
  font-family: var(--alt-font);
  font-weight: 500;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn:hover {
  background-color: inherit;
}
.btn.btn-extra-large {
  font-size: 16px;
  padding: 24px 46px;
}
.btn.btn-large {
  font-size: 18px;
  padding: 18px 34px;
}
.btn.btn-round-edge {
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.btn.btn-link:focus-visible {
  box-shadow: none;
}
.btn.btn-base-color {
  background-color: var(--base-color);
  color: var(--white);
}
.btn.btn-base-color:hover, 
.btn.btn-base-color:active {
  background-color: transparent;
  border-color: var(--base-color);
  color: var(--base-color);
}
.btn.btn-box-shadow.btn-base-color:hover, .btn.btn-box-shadow.btn-base-color:active {
  background: var(--base-color);
  color: var(--white);
}
/* Button icon position */
.left-icon i {
  margin-right: 6px;
  margin-left: 0;
}
/* Gradient button */
[class*=btn-gradient-] {
  background-color: transparent;
  border-color: transparent;
}
[class*=btn-gradient-]:active {
  background-color: transparent;
  border-color: transparent !important;
  color: var(--white) !important;
}
[class*=btn-gradient-]:hover {
  background-position: right center;
  color: var(--white);
}

/* Contact form style 03 */
.contact-form-style-03 input {
  outline: none;
  border: none;
  border-bottom: 1px solid;
  background: transparent;
  border-radius: 0 !important;
}
.contact-form-style-03 select {
  outline: none;
  border: none;
  border-bottom: 1px solid;
}
.contact-form-style-03 input:focus, .contact-form-style-03 select:focus, .contact-form-style-03 .form-control:focus {
  border: 0;
  border-bottom: 1px solid #c2c2c2;
}
.contact-form-style-03 .form-group .form-icon {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.contact-form-style-03 .form-control {
  background-position: right 35px center !important;
}
/* Contact form style 06 */
/* Contact form style 07 */
.swiper-button-next, .swiper-button-prev {
  color: var(--dark-gray);
}
.swiper-button-next:after, .swiper-button-prev:after {
  display: none;
  content: "";
}
/* Text slider 02 */
/* Text slider 03 */
/* Text slider 05 */
/* Countdown style 01 */
/* Countdown style 02 */
/* Countdown style 03 */
/* Countdown style 04 */
/* Counter style 03 */
/* Counter style 04 */
/* Counter style 06 */
/* Counter style 07 */
/* Counter style 07 */
.counter-style-07 .vertical-counter-number {
  z-index: 1;
}
/* Vertical counter */
.vertical-counter-number {
  overflow: hidden;
  width: 100%;
  height: auto;
}
.vertical-counter-number ul {
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none;
  will-change: transform;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/* Text highlight */
.text-highlight {
  position: relative;
  z-index: 1;
}
.text-highlight span {
  display: inline-block;
  left: -3px;
  position: absolute;
  z-index: -1;
  width: calc(100% + 6px);
}
/* Separator animation */
.separator-animation {
  width: 0 !important;
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.shadow-in .separator-animation {
  width: calc(100% + 6px) !important;
}
/* Feature box style */
.feature-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 1;
}

.services .feature-box-content{
  margin-bottom: 25px;
}

@media(min-width: 992px){
  .services .feature-box-content{
    height: 154px;
  }
}

.feature-box .feature-box-icon i:not([class*=text-gradient-]) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.feature-box.feature-box-left-icon-middle {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
}
.feature-box.feature-box-left-icon-middle .feature-box-icon {
  margin-right: 30px;
}
.feature-box.feature-box-left-icon-middle .feature-box-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.feature-box.feature-box-left-icon-middle {
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-align: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  text-align: left;
}

/* ===================================
17. Footer
====================================== */
footer {
  padding-top: 15px;
  padding-bottom: 15px;
}
/* Footer dark  */
/* Footer light */
/* Footer navbar */
/* Footer sticky */
/* Landing page footer */
.location-map iframe {
  width: 100%;
  height: 220px;
}
.contact-form-style-03 select {
  outline: none;
  border: none;
  border-bottom: 1px solid;
  background-color: transparent;
  padding-left: 0;
  /* padding-bottom: 21px; */
}

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

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

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

.whatsapp-us img {
  width: 45px;
  height: 45px;
  margin-right: 10px;
}
.call-us svg{
  width: 40px;
  margin-right: 15px;
  color: var(--tp-theme-primary);
}

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

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

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

.call-us .icons i{
  font-size: 40px;
  color: var(--base-color);
} */

/* Right-side container */
.contact-container-right {
  position: fixed;
  right: 0;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1000;
  transition: opacity 0.5s ease-in-out;
}

/* Left-side container */
.contact-container-left {
  position: fixed;
  left: 0;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align content to the left */
  z-index: 1000;
  transition: opacity 0.5s ease-in-out;
}

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

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

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

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

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

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

.call-us .icons i {
  font-size: 40px;
  color: var(--base-color);
}

/* Adjust border-radius for the left-side container */
.contact-container-left .whatsapp-us {
  border-radius: 0 18px 18px 0; /* Rounded on the right side */
}


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

.popup-content {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
}

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

@media(min-width:1200px) {
  .popup-content {
    width: 750px
  }
}

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

.form-trigger {
  cursor: pointer
}
.close {
  color: #333;
  z-index: 9;
  float: right;
  font-size: 35px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  cursor: pointer;
  top: 0;
  right: 0;
}
.close:hover{
  color: #161921;
}

.popup-content{
  background-color: #f7f7f7;
  padding: 25px;
}
.header-icon i{
  font-size: 20px;
  color: var(--base2-color);
}

@media (max-width: 575px) {
  /* .hero_section{
    margin-top: 30px;
  } */
  /* .hero_section .col-lg-4{
    margin-bottom: 50px;
  } */
  .review_section{
    padding-bottom: 0;
  }
}
@media (max-width: 992px) {
  .hero_section{
    padding-top: 110px;
  }
}

.hero_section ul li{
  align-items: center;
}
.hero_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #000 -150%, #fff0 100%);
  /* background-color: #000;
  opacity: .5; */
  z-index: 1;
  pointer-events: none;
}
.hero_section .feather.icon-feather-check{
  background-color: var(--base-color);
  padding: 6px;
  border-radius: 100px;
  font-weight: 800;
}

.feather.icon-feather-check{
  padding: 6px;
  border-radius: 100px;
  font-weight: 800;
}

.price_value{
  font-size: 32px;
}

.tabby-wrapper .tabby-logo{
  width: 90px;
}

.tabby-wrapper{
  background-color: #3dffbe;
  border-radius: 50px;
  padding: 15px 0;
  text-align: center;
  position: relative;
  z-index: 99;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2)
}

.google_testi_img{
  position: absolute;
  top: 55px;
  right: 30px;
}
.google_testi_img img{
  width: 30px !important;
}
.google-logo{
  margin: 0 auto;
  display: block;
}

.services .feature-box-icon{
  position: relative;
  /* top: -94px; */
  background: var(--base-color);
  padding: 20px;
  border-radius: 50px;
}

.feature-box-icon img{
  width: 50px;
}

.testi_review i{
  color: var(--golden-yellow)
}


.row-eq-height{
  display: flex;
  flex-wrap: wrap;
}
.package_list li{
  align-items: center;
}

/*owl carousel*/

/* .iti.iti--allow-dropdown.iti--separate-dial-code{
  width: 100% !important;
} */

.form-group {
  display: flex;
  align-items: center;
}

.code-input {
  width: 30%;
  background-color: rgba(0, 0, 0, 0.05) !important; 
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  /* padding: 12px 15px !important; */
  margin-right: 10px;
}

@media (max-width: 575px) {
  .code-input{
    font-size: 12px !important;
  }
  .popup-content .contact-form-style-03 p{
    margin-bottom: 0;
  }
  
  .popup-content .contact-form-style-03 .form-group{
    margin-bottom: 5px !important;
  }
}

.phone-input {
  width: 70%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.form-control {
  border-radius: 5px;
}

#selected-country {
  display: none !important;
  font-weight: bold;
  margin-left: 10px; /* Adds space between the dropdown and the name */
}

.form-control, 
.form-control:focus{
  background-color: unset !important;
}

/* .iti,
.phone-input {
  width: 100% !important;
} */

.mainform{
  /* background: -webkit-linear-gradient(303.52deg, rgba(255, 255, 255, 0.2) 1.3%, rgba(0, 0, 0, 0.1) 117.69%); */
  /* backdrop-filter: blur(15px); */
  background-color: #fff;
}

/* .contact-form-style-03 .mainform input,
.contact-form-style-03 .mainform .form-icon,
.contact-form-style-03 .mainform select{
  color: #fff !important;
  border-bottom-color: rgba(255, 255, 255, 0.6) !important;
} */
/* 
.contact-form-style-03 .mainform ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 1) !important;
}
.contact-form-style-03 .mainform ::-moz-placeholder {
  color: rgba(255, 255, 255, 1) !important;
}
.contact-form-style-03 .mainform :-ms-input-placeholder {
  color: rgba(255, 255, 255, 1) !important;
} */

.btn.btn-whatsapp{
  border-radius: 100px;
  background-color: #64b161;
  margin-top: 15px;
  text-align: start;
  display: flex;
  font-size: 18px;
  align-items: center;
  gap: 12px;
}

.btn.btn-whatsapp img{
  width: 42px;
  background-color: #fff; 
  border-radius: 100px;
  padding: 5px;
}
.btn.btn-whatsapp:hover{
  background-color: #fff !important;
  color: #64b161 !important;
  border-color: #64b161 !important;
}
.banner__info {
  max-width: 240px;
  border-radius: 8px;
  padding: 15px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow);
  top: 15px;
  position: relative;
  z-index: 9;
}

.fw-500 {
  font-weight: 500 !important;
}

.fs-16 {
  font-size: 16px !important;
}
.fs-14 {
  font-size: 14px !important;
}
.banner__info i {
  color: #ffa41b;
}
.pb-100{
  padding-bottom: 100px !important;
}

#video-container img{
  border-radius: 4px !important;
}

.decorative-underline u:after {
  height: 100%;
  left: 0;
  position: absolute;
  right: .25rem;
  transform-origin: center;
  width: 100%;
  z-index: -1;
  --tw-translate-y: 55%;
  background-image: url(https://www.involve.me/build/assets/line-one.584943fc.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}