
@charset "UTF-8";
/* Fonts */
/* @import "https://fonts.googleapis.com/css?family=Montserrat:200,500,700,800|Gloria+Hallelujah"; */
/* @import "https://fonts.googleapis.com/css2?family=Proxima+Nova"; */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;700&display=swap');

/* New Font */
@font-face {
  font-family: 'proxima_nova_rgregular';
  src: url('https://litmus.com/fonts/Emails/proximanova-regular-webfont.eot');
  src: url('https://litmus.com/fonts/Emails/proximanova-regular-webfont.eot?#iefix') format('embedded-opentype'),
     url('https://litmus.com/fonts/Emails/proximanova-regular-webfont.woff') format('woff'),
     url('https://litmus.com/fonts/Emails/proximanova-regular-webfont.ttf') format('truetype'),
     url('https://litmus.com/fonts/Emails/proximanova-regular-webfont.svg#proxima_nova_rgregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'proxima_nova_rgbold';
  src: url('https://litmus.com/fonts/Emails/proximanova-bold-webfont.eot');
  src: url('https://litmus.com/fonts/Emails/proximanova-bold-webfont.eot?#iefix') format('embedded-opentype'),
     url('https://litmus.com/fonts/Emails/proximanova-bold-webfont.woff') format('woff'),
     url('https://litmus.com/fonts/Emails/proximanova-bold-webfont.ttf') format('truetype'),
     url('https://litmus.com/fonts/Emails/proximanova-bold-webfont.svg#proxima_nova_rgbold') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* Fonts and Plugins */
@import url(../fonts/fontawesome/css/fontawesome.min.css);
@import url(../fonts/fontawesome/css/brands.min.css);
@import url(../fonts/fontawesome/css/solid.min.css);
@import url(../fonts/ionicons/css/ionicons.min.css);
@import url(../js/vegas/vegas.min.css);
@import url(animate.min.css);
@import url(swipebox.css);
/* Base structure */

:root {
  --font-primary: 'proxima_nova_rgregular', sans-serif;
  --font-bold: 'proxima_nova_rgbold', sans-serif;

  --bs-body-font-family: 'proxima_nova_rgregular', sans-serif;

  --theme-primary: #1ea5dd; /* Cyan Blue */
  --theme-secondary: #ffffff; /* White */

  --navbar-height: 90px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: #212121;
  background-color: #fff;
  overflow-x: hidden;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

h3, h4, h5, h6 {
  letter-spacing: -0.4px;
}

.theme-primary {
  color: var(--theme-primary);
}

.theme-secondary {
  color: var(--theme-secondary);
}

/* Preloader */
#preloader {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background-color: #fff;
  z-index: 99999;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* ======================================== NAVIGATION ======================================== */
.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  background-color: transparent !important;
  padding: 15px 20px;
  z-index: 1050; /* Ensures it stays above other content */
  transition: background-color 0.3s ease-in-out;
}

.navbar-brand {
  padding-left: 3.5rem !important; /* 3.5rem left padding */
}

/* Narrow wrapper for fund performance sections */
.fund-performance-narrow {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  overflow-x: auto;
  --name-col: 30%;
  --metric-col: 23.333%;
}

/* Ensure Navbar Stretches Full Width */
.navbar .navbar-brand {
  padding-left: 20px; /* Space from the left */
}

.navbar-collapse {
  justify-content: flex-end; /* Pushes navigation to the right */
  padding-right: 20px; /* Space from the right */
}

/* Navbar List */
.navbar-nav {
  list-style: none;
  display: flex;
  align-items: center;
}

/* Navbar Links */
.navbar-nav .nav-item {
  margin: 0 10px; /* Space between links */
}

.navbar-nav .nav-link {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9) !important;
  letter-spacing: 0.5px;
  transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: rgb(30, 165, 221) !important; /* Matches branding */
  text-shadow: 0 0 10px rgba(188, 235, 255, 0.5);
}

/* Invest Button */
.navbar .btn-primary {
  background: linear-gradient(135deg, #1ea5dd, #1298c8); /* Gradient effect */
  border-color: #1ea5dd;
  border-radius: 8px; /* Slightly more rounded */
  font-size: 1.1rem; /* Slightly larger text */
  font-weight: 800; /* Makes text stand out */
  padding: 12px 20px; /* More padding for a bigger button */
  box-shadow: 0px 4px 8px rgba(30, 165, 221, 0.4); /* Soft glow effect */
  transition: all 0.3s ease-in-out;
}

/* Hover Effect - Makes the Button Pop */
.navbar .btn-primary:hover {
  background: linear-gradient(135deg, #178abf, #0e7fa3); /* Darker gradient on hover */
  border-color: #178abf;
  box-shadow: 0px 6px 12px rgba(23, 138, 191, 0.6); /* Stronger shadow on hover */
  transform: translateY(-2px); /* Slight lift effect */
}

/* Navbar Toggle Button (For Mobile) */
.navbar-toggler {
  border: none;
  margin-right: 20px; /* Space from right */
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* Ensure only the light logo is shown */
.logodark {
  display: none !important;
}

/* Logo Styling */
.navbar-brand img {
  height: 31px;
  width: auto;
  transition: height 0.3s ease-in-out, max-width 0.3s ease-in-out;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.9) !important; /* Light background on scroll */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link {
  color: #212121 !important; /* Darker text after scrolling */
}

.navbar.scrolled .btn-primary {
  background-color: #1ea5dd;
  color: white;
}

/* Mobile Responsive Fix */
@media (max-width: 991px) {
  .navbar {
    padding: 8px 0;
  }

  .navbar-collapse {
    background: white;
    padding: 10px;
  }

  .navbar-nav {
    text-align: center;
    flex-direction: column; /* Stack items in mobile view */
  }

  .navbar-nav .nav-item {
    margin: 10px 0;
  }

  .navbar-brand {
    padding-left: 2rem !important;
  }

  .navbar-brand img {
    height: 25px;
  }
}

.btn-primary {
  background-color: #1ea5dd;
  border-color: #1ea5dd;
  border-radius: 5px;
  font-weight: bold;
}

.btn-primary:hover {
  background-color: #178abf;
  border-color: #178abf;
}

/* Strategy Cards - Theme Blue */
.pc-card-blue {
  background-color: var(--theme-primary) !important;
  color: #fff !important;
  border: none;
}
.pc-card-blue .card-body {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.pc-card-blue .card-text {
  color: #ffffff !important;
}

/* Our Strategy section spacing + vertical alignment */
.pc-strategy-section {
  padding-top: 96px; /* push section down a bit */
  padding-bottom: 96px;
}

/* ======================================== FOOTER ======================================== */
.footer {
  background-color: #1ea5dd; /* Your existing blue background */
  color: white;
  margin-top: auto;
}

.footer-menu h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-menu ul li {
  margin-bottom: 8px;
}

.footer-menu ul li a {
  color: white;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.footer-menu ul li a:hover {
  text-decoration: underline;
  color: #cceeff; /* Lighter blue for hover effect */
}

/* Disclaimer Collapse */
#collapseDisclaimer {
  max-width: 600px;
}

/* Social Media Icons */
.list-inline-item a {
  font-size: 24px;
  color: white;
  transition: color 0.3s ease-in-out;
}

.list-inline-item a:hover {
  color: #cceeff;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .footer-menu {
    text-align: center;
  }

  .footer .row-cols-md-3 {
    text-align: center;
  }
}

#status {
  position: absolute;
  left: 47%;
  top: 50%;
  margin: auto;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  background: #999;
  animation: 1.15s infinite ease-in-out;
  -webkit-animation: 1.15s infinite ease-in-out;
  -moz-animation: 1.15s infinite ease-in-out;
  animation-name: loader;
  -webkit-animation-name: loader;
  -moz-animation-name: loader;
}
#status:before, #status:after {
  animation: 1.15s infinite ease-in-out;
  -webkit-animation: 1.15s infinite ease-in-out;
  -moz-animation: 1.15s infinite ease-in-out;
}
#status:before, #status:after {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes loader {
  from {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 0.5;
  }
}
@-ms-keyframes loader {
  from {
    -ms-transform: scale(0);
    opacity: 1;
  }
  to {
    -ms-transform: scale(1);
    opacity: 0.5;
  }
}
@-webkit-keyframes loader {
  from {
    -webkit-transform: scale(0);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1);
    opacity: 0.5;
  }
}
@-moz-keyframes loader {
  from {
    -moz-transform: scale(0);
    opacity: 1;
  }
  to {
    -moz-transform: scale(1);
    opacity: 0.5;
  }
}
.no-transform {
  text-transform: none;
}

p {
  margin: 0 0 35px;
}

a {
  text-decoration: none;
  color: #000;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

img {
  -webkit-filter: blur(0);
  filter: blur(0);
}

a, img, :focus, input {
  outline: none !important;
}

a:hover, a:focus {
  color: #666;
  text-decoration: none;
}
a img:hover {
  opacity: 0.75;
}

.no-pad {
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
}

.no-pad-btm {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.no-pad-top {
  padding-top: 0 !important;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 9, 21, 0.3); /* Adjust the opacity as needed */
  z-index: 0;
}

.overlay-white {
  background: rgba(255, 255, 255, 0.85);
  color: #555 !important;
  text-shadow: none;
}

.image-overlay {
  padding: 0;
  margin-top: -150px;
  z-index: 999;
  position: relative;
}

@media (max-width: 1199px) {
  .image-overlay {
    margin-top: 0;
  }
}
.breadcrumb {
  background-color: transparent;
  padding: 15px 15px;
}

section, .section {
  position: relative;
  z-index: 992;
  padding-top: 160px;
  padding-bottom: 160px;
  background-color: #fff;
  overflow: hidden;
}

.section-small {
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: auto !important;
}

.section-offcet {
  overflow: inherit;
}

.list-inline > li {
  padding-bottom: 10px;
  vertical-align: bottom;
}

/* input, textarea {
  border-radius: 50px !important;
} */

.dropdown-menu, .panel, .progress, .list-group-item, select {
  border-radius: 6px !important;
}

.label-danger {
  background-color: #c00;
}

.badge {
  line-height: inherit;
  border-radius: 15px !important;
}

.dark-gray {
  color: #999;
}

.gray {
  color: #ccc;
}

.blue {
  color: #5bc0df;
}

.pp-blue {
  color: #1ea5dd;
}
.violet {
  color: #ff4081;
}

.pastel {
  color: #9aa8b1;
}

.text-black {
  color: #212121;
}
.text-upper {
  text-transform: uppercase;
}

.white {
  color: #fff;
}

/* Buttons */
.btn {
  font-size: 12px !important;
  letter-spacing: 0.5px;
  outline: 0;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-shadow: none;
  text-decoration: none;
  padding: 7px 25px;
  /* border-radius: 40px; */
  font-weight: 800;
}
.btn:hover {
  box-shadow: none;
}

.btn-lg {
  /* font-size: 13px !important; */
  padding: 10px 32px;
  font-size: 25px !important;
}

.btn-sm {
  font-size: 10px !important;
}

.btn-xs {
  font-size: 9px !important;
  padding: 4px 10px;
}

.btn-border {
  border: 2px solid #fff;
  color: #fff !important;
  background-color: transparent;
}

.btn-dark-border {
  border: 2px solid #000;
  color: #000;
  background-color: transparent;
}

.btn-white {
  border: 2px solid #fff;
  color: #000 !important;
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  border-radius: 0;
}

.btn-gray {
  border: 2px solid #ccc;
  background-color: #ccc;
  color: #000 !important;
  border-radius: 0;
}

.btn-dark {
  border: 2px solid #18191B;
  background-color: #18191B;
  color: #fff !important;
  border-radius: 0;
}

.btn-Concept {
  border: 2px solid #9aa8b1;
  background-color: #9aa8b1;
  color: #fff !important;
  border-radius: 0;
}

.btn-violet {
  border: 2px solid #ff4081;
  background-color: #ff4081;
  color: #fff !important;
  border-radius: 0;
}

.btn-blue {
  border: 2px solid  #1ea5dd;
  background-color:  #1ea5dd;
  color: #fff !important;
  border-radius: 5px;
}

.btn-border:focus, .btn-dark-border:focus, .btn-gray:focus, .btn-border:focus, .btn-white:focus, .btn-Concept:focus, .btn-violet:focus {
  opacity: 1;
}

.btn:hover {
  opacity: 0.85 !important;
}

.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
  border-radius: 50px;
  margin: 0;
}

.input-group-btn .btn {
  margin-left: -30px !important;
  z-index: 9;
}

a .fa, a .icon {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.iconsmall {
  font-size: 46px;
  float: left;
  line-height: 54px;
  padding-right: 10px;
}

.icon-big {
  font-size: 80px !important;
  display: block !important;
  line-height: 75px !important;
  padding: 15px;
}

.intro-body .icon-big {
  padding: 20px;
}

.classic {
  font-family: "Gloria Hallelujah";
  font-weight: normal !important;
  letter-spacing: 0;
  transform: rotate(-3deg) !important;
  -moz-transform: rotate(-3deg) !important;
  -webkit-transform: rotate(-3deg) !important;
  text-transform: none;
  display: inline-block;
  font-size: 22px;
  padding: 5px;
}

.classic-gradient {
  background: -moz-linear-gradient(#ccc, #000);
  background: -webkit-linear-gradient(#ccc, #000);
  background: linear-gradient(#ccc, #000);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.classic-big {
  font-size: 70px !important;
  line-height: 60px;
  font-weight: normal !important;
  letter-spacing: -1px !important;
  text-transform: none !important;
  padding-bottom: 0;
  display: block;
}

.bg-dark .classic {
  background: transparent;
  color: #fff;
}

.classic2 {
  color: #1ea5dd;
  font-family: 'Dancing Script', cursive;
  font-weight: normal !important;
  text-transform: capitalize;
  letter-spacing: 0;
  margin: 0 0 15px;
  transform: rotate(-3deg) !important;
  -moz-transform: rotate(-3deg) !important;
  -webkit-transform: rotate(-3deg) !important;
  opacity: .8; }

.text-gradient {
  background: linear-gradient(to bottom left, #aee5ff, #005279);
  -webkit-text-fill-color: transparent;
}

.text-gradient-gray {
  background: linear-gradient(to bottom left, #ccc, #000);
  -webkit-text-fill-color: transparent;
}

::-moz-selection, ::selection {
  color: #fff;
  background: #000;
}

ul, ol {
  margin-bottom: 1.5em;
}

a .la {
  opacity: 0.6 !important;
}
a .la:hover {
  opacity: 0.9;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.fa {
  vertical-align: middle;
}

.logoborder {
  border: 1px solid #fff;
  padding: 12px 18px;
  max-height: 48px !important;
  margin-top: -10px;
  font-size: 20px;
}

.logobig {
  font-size: 30px;
}
.logobig .icon-big {
  line-height: 1px;
  margin-top: -25px;
}

.logobig .classic {
  font-size: 36px;
  transform: rotate(0) !important;
  -moz-transform: rotate(0) !important;
  -webkit-transform: rotate(0) !important;
}

.supcircle {
  background-color: #5bc0de;
  color: #fff;
  padding: 4px 8px;
  font-size: 16px;
  position: absolute;
  margin: 14px -15px;
  line-height: 16px;
  border-radius: 50% !important;
  font-weight: bold;
}

.dropdown-menu {
  background-color: rgba(255, 255, 255, 0.95);
  color: #fff;
  min-width: 230px !important;
  right: 0;
  left: auto;
  border: 0;
}
.dropdown-menu > li > a {
  font-size: 11px;
  padding: 11px 18px;
  white-space: nowrap;
}
.dropdown-menu > .active > a {
  color: #333 !important;
  background-color: transparent;
}
.dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
  background-color: transparent;
}

.search-form {
  margin: 5px 10px;
  width: 250px;
  font-size: 14px;
}
.search-form .form-control {
  color: #ccc !important;
}

.search-button {
  width: 42px;
  height: 40px;
  line-height: 38px;
  margin-top: -12px;
  position: absolute;
  top: 50%;
  right: 12px;
  overflow: hidden;
  background: transparent;
  color: #888;
  border: none;
  outline: none;
}

.search-form {
  padding: 10px;
  width: 100%;
  border-bottom: #555;
  margin: 0;
}

.vmenu {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menu-divider {
  width: 1px;
  border-right: 1px solid #b3b3b3;
  line-height: 18px;
  margin: 23px 15px 0;
}

.dropdown-menu strong {
  padding: 20px 0 16px 18px;
  display: block;
  font-size: 13px;
  font-weight: bold;
  line-height: 1px;
  color: #555 !important;
}

.dropdown-menu {
  padding: 10px 0;
}

.dropdown-menu .fa {
  opacity: 0.5 !important;
  line-height: 13px !important;
}

@media (min-width: 991px) {
  .search-form input {
    background: transparent;
    border: 0;
    width: 200px;
  }

  @-webkit-keyframes fadeInUniversal {
    0% {
      opacity: 0;
      transform: translate(0, -40px);
    }
    100% {
      opacity: 1;
      transform: translate(0, 0);
    }
  }
  @keyframes fadeInUniversal {
    0% {
      opacity: 0;
      transform: translate(0, -40px);
    }
    100% {
      opacity: 1;
      transform: translate(0, 0);
    }
  }
  li:hover ul.dropdown-menu {
    opacity: 1;
    -webkit-animation: fadeInUniversal 0.7s;
    animation: fadeInUniversal 0.7s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }

  ul.dropdown-menu.columns-2 {
    left: 0 !important;
    padding: 20px 22px 25px;
  }
  ul.dropdown-menu.columns-3 {
    left: 0 !important;
    padding: 20px 22px 25px;
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
    min-width: 860px !important;
  }
  ul.dropdown-menu.columns-2 {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
    min-width: 380px !important;
  }

  .columns2 .btn-white, .columns3 .btn-white {
    margin-top: 12px;
    display: inline-block;
  }

  .angle-right:after {
    float: right;
    font-family: "Font Awesome 5 Free";
    content: "";
    color: inherit;
    position: absolute;
    right: 20px;
  }
}
@media (max-width: 991px) {
  .dropdown-menu {
    padding: 0;
  }
}
@media (max-width: 990px) {
  p.empty {
    display: none;
  }

  .search-button {
    margin-top: 0;
  }

  .collapse.in {
    display: block !important;
  }
}

.toggle-btn {
  display: block;
  position: fixed;
  z-index: 9999;
  top: 50px;
  right: 50px;
  cursor: pointer;
  transition: all 0.5s;
}

.toggle-btn .bar {
  width: 40px;
  height: 3px;
  margin: 6px auto;
  transition: all 0.3s;
}

.toggle-btn .bar {
  background-color: #fff;
}

.toggle-btn-white .bar {
  background-color: #fff !important;
}

.toggle-btn-black .icon-bar {
  background-color: #000 !important;
}

.toggle-btn .bar:nth-child(2) {
  margin-right: 5px;
}

.toggle-btn .bar:nth-child(2):hover {
  margin-right: 0px;
}

#toggle:checked + label.toggle-btn .bar {
  background-color: #fff;
}

#toggle:checked + label.toggle-btn .bar:nth-child(2) {
  transform: translateX(50px);
  opacity: 0;
}

#toggle:checked + label.toggle-btn .bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

#toggle:checked + label.toggle-btn .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.logolanding {
  max-height: 120px;
  margin: 25px 0;
}

/* Backgrounds and font color */
.bg-gray {
  background-color: #f7f7f7;
}

.bg-gray2 {
  background-color: #f1f1f1;
}

.bg-transparent {
  background-color: transparent;
}

.bg-dark {
  background-color: #18191B;
}

.bg-dark2 {
  background-color: rgba(12, 13, 15, 0.98);
}

.bg-custom-section {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.small-header {
  position: relative;
  z-index: 1;
  padding-top: 142px;
  padding-bottom: 55px;
}
.small-header.bg-dark:before, .small-header.bg-transparent:before, .small-header.bg-img:before, .small-header.bg-img2:before, .small-header.bg-img3:before, .small-header.bg-img4:before, .small-header.bg-img5:before, .small-header.bg-img6:before {
  background: rgba(7, 9, 21, 0.5);
  content: " ";
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -9;
}
.small-header .bg-white h2, .small-header .bg-white h3 {
  color: #789;
}

@media (max-width: 992px) {
  .small-header {
    text-align: center !important;
  }
  .small-header .text-right {
    text-align: center !important;
  }
}
.bg-img-custom-small {
  min-height: 500px;
}

.bg-img-custom, .bg-img-custom-small, .bg-dark, .bg-dark2, .bg-transparent, .bg-img, .bg-img2, .bg-img3, .bg-img4, .bg-img5, .bg-img6 {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.bg-img-custom a {
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.bg-img {
  background: url(../img/main/howitworks.jpg);
}

.bg-img2 {
  background: url(../img/main/teambg.jpg);
}

.bg-img3 {
  background: url(../img/main/2.jpg);
}

.bg-img4 {
  background: url(../img/main/10.jpg);
}

.bg-img5 {
  background: url(../img/main/0.jpg);
}

.bg-img6 {
  background: url(../img/main/40.jpg);
}

.bg-img7 {
  background: url(../img/misc/background.png);
}

.bg-img-custom, .bg-img-custom-static, .bg-img-custom-small, .bg-img, .bg-img2, .bg-img3, .bg-img4, .bg-img5, .bg-img6, .bg-img7 {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  
  /* MAGIC HAPPENS HERE */
  transform: translateZ(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  -webkit-transform: translateZ(0);
}

.bg-img-custom, .bg-img-custom-small, .bg-dark a, .bg-dark2 a, .bg-transparent a, .bg-img a, .bg-img2 a, .bg-img3 a, .bg-img4 a, .bg-img5 a, .bg-img6 a, .bg-primary a {
  color: #fff;
}

.bg-img-custom a:hover, .bg-img-custom-small a:hover, .bg-dark a:hover, .bg-dark2 a:hover, .bg-transparent a:hover, .bg-img a:hover, .bg-img2 a:hover, .bg-img3 a:hover, .bg-img4 a:hover, .bg-img5 a:hover, .bg-img6 a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.bg-white {
  background-color: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  color: #222 !important;
  text-shadow: none !important;
}

.bg-white a {
  color: #555 !important;
}

.bg-blue {
  background-color: #1ea5dd;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  color: #222 !important;
  text-shadow: none !important;
}

.bg-blue a {
  color: #fff !important;
}
/* Intro */
.intro {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.intro a {
  color: #fff;
}
.intro a:hover {
  color: #ccc;
  text-decoration: none;
}

.introhalf {
  height: 50% !important;
}

.intro .intro-body {
  text-align: center;
  padding: 3rem 1rem;
}

.bottom-center {
  vertical-align: bottom;
  position: absolute;
  bottom: 45px;
  width: 100%;
}

@media (max-width: 990px) {
  .bottom .intro-body {
    right: auto;
    width: 100%;
    padding: 40px;
  }
}
.introhalf .intro-body {
  padding: 180px 0 110px;
}

.transparent, transparent a, transparent h1 {
  color: #000 !important;
  text-shadow: none;
}

.transformx:before {
  transform: skewX(7deg);
  transform-origin: top right;
  right: 0;
  left: auto;
  width: 830px;
  content: "";
  top: 0;
  position: fixed;
  height: 100%;
  z-index: -9;
}

.transformx.orange:before {
  background: rgba(255, 100, 0, 0.6);
}

.transformx.black:before {
  background: rgba(0, 0, 0, 0.5);
}

.intro h1 {
  font-size: 100px;
  line-height: 80px;
  letter-spacing: 0;
}
.intro h1.intro-small {
  font-size: 65px;
  line-height: 65px;
}
.intro .small {
  font-size: 50px;
  line-height: 50px;
}
.intro .lead {
  margin: 40px 0 0;
}

.intro-fullscreen {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.intro-fullscreen .small {
  font-size: 85%;
}

@keyframes kenburns {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@media (min-width: 768px) {
  .intro {
    padding: 0;
  }
}


/* Intro solid color */
.solid-color .intro-body:before {
  background: transparent !important;
}

.solid-color.intro {
  text-shadow: none !important;
}

.solid-color {
  background: linear-gradient(45deg, #e91e62 0%, #ff0057de 52%);
}

/* Video background */
.video-controls {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 1;
  opacity: 0.4;
  display: none;
}

.video-controls-visible {
  display: inline;
}

.video-controls .fa {
  color: #fff;
  padding: 5px;
  width: 25px;
}
.video-controls a.fa {
  text-decoration: none;
}

.mbYTP_wrapper {
  z-index: 0 !important;
}

.section-video {
  min-height: 300px;
  padding-top: 60px;
  padding-bottom: 60px;
  top: 0 !important;
  opacity: 1 !important;
}
.section-video .mbYTP_wrapper {
  z-index: -1 !important;
}
.section-video:before {
  background: rgba(7, 9, 21, 0.5);
  content: "";
  left: 0;
  top: 0;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: -9;
}

.bg-video-small {
  text-align: left !important;
  opacity: 1 !important;
  top: 0 !important;
}

/* Forms */
.small-form {
  margin: 0 auto 40px !important;
  max-width: 350px;
}

.help-block li {
  list-style: none;
  color: #990000;
}
.help-block ul {
  padding: 0;
  margin: 0;
}

.form-control {
  border: 1px solid #ddd;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: border-color ease-in-out 0.3s, -webkit-box-shadow ease-in-out 0.3s;
  transition: border-color ease-in-out 0.3s, box-shadow ease-in-out 0.3s;
}
.form-control:focus {
  border-color: #888;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.subscribe-form {
  padding: 0;
}

.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
  margin-left: 0;
}

input[type=checkbox], input[type=radio] {
  margin: 7px 0 0;
}

.checkbox label, .radio label {
  font-weight: normal;
}

.form-signin .form-control {
  position: relative;
}
.form-signin .form-control:focus {
  z-index: 2;
}
.form-signin input {
  margin-bottom: -1px;
}

.dark-form input, .dark-form textarea {
  color: #ccc;
  background-color: rgba(0, 0, 0, 0.45);
  border: 0;
}

/* Countdown */
[id*=clock] {
  padding: 40px 0;
}
[id*=clock] div {
  font-weight: bold;
  display: inline-block;
  font-size: 12px;
  margin: 0 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 60px;
}
[id*=clock] span {
  font-weight: 200;
  display: block;
  font-size: 54px;
  padding: 30px 0;
  width: 68px;
  border-bottom: 1px solid #ccc;
}

@media (max-width: 1170px) {
  [id*=clock] div {
    margin: 0 15px;
  }
  [id*=clock] span {
    font-size: 48px;
    padding: 18px 0;
  }
}
@media (max-width: 768px) {
  [id*=clock] div {
    margin: 0 15px;
  }
  [id*=clock] span {
    font-size: 38px;
    padding: 15px 0;
    width: 40px;
  }
}
@media (max-width: 468px) {
  [id*=clock] div {
    margin: 0 7px;
  }
  [id*=clock] span {
    font-size: 32px;
    padding: 5px 0;
  }
  
}
/* News - Blog etc grid */
#news div[class*=col-] {
  margin-bottom: 60px;
}
#news h5 {
  padding-top: 10px;
  margin-bottom: 25px;
}

#news-wide h3, #news-wide h4, #news-wide h5 {
  margin: 5px 0;
}

.grid-pad img {
  margin-bottom: 25px;
}
.grid-pad div[class*=col-] {
  margin-bottom: 40px;
}

#news-single .carousel {
  padding-bottom: 20px;
}

.row:not(:first-child) {
  padding-top: 40px;
}

.row:not(:first-child) div[class*=col-] {
  margin-bottom: 0;
}

/* Team */
#team [class*=col-] {
  padding: 0 13px 0;
}
#team i {
  color: #777;
}
#team h5 {
  margin-top: -95px;
  position: relative;
  z-index: 1;
  font-size: 18px;
  line-height: 30px;
}
#team .fab {
  font-size: 18px;
}
#team .list-inline {
  margin: -10px;
}
#team .shadow::after {
  display: block;
  position: relative;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #fff 100%);
  margin-top: -200px;
  height: 200px;
  width: 100%;
  content: "";
}

/* Contact */
#contact {
  padding-top: 0;
  padding-bottom: 0;
}
#contact #map {
  height: 420px;
}
#contact div[class*=col-] {
  padding: 30px;
  background: rgba(255, 255, 255, 0.85);
  margin-top: -375px;
  box-shadow: 0 0 57px rgba(0, 0, 0, 0.08);
}

#contact2 a {
  text-decoration: none;
  color: #555;
}
#contact2 hr {
  margin-top: 40px;
  margin-bottom: 40px;
  border-top: 1px solid #ccc;
}
#contact2 .list-inline {
  padding-top: 10px;
}

@media (max-width: 991px) {
  #contact {
    text-align: center;
  }
}
/* Quote */
blockquote {
  padding: 18px;
  margin: 0 0 20px;
  border-left: none;
}
blockquote:before, blockquote:after {
  color: #ccc;
  font-size: 18px;
  font-family: "Font Awesome 5 Free";
}
blockquote:before {
  content: "";
  padding-right: 15px;
}
blockquote:after {
  content: "";
  padding-left: 10px;
}

.quote {
  font-size: 18px;
}

/* Facts */
@media (max-width: 768px) {
  .facts .col-sm-6 {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
.action-box li {
  float: left;
  margin: 20px 0 0 15px;
}
.action-box span {
  display: none;
}

#tweecool span {
  font-size: 18px;
}

/* Map */
#map {
  width: 100%;
  height: 400px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

#mapdark {
  width: 100%;
  height: 430px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  border: 0 !important;
}

.mapsmall {
  margin-bottom: 30px;
  border: 0 !important;
}

/* Carousel */
.carousel-control {
  width: 8%;
  color: #000;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.9);
}
.carousel-control:focus, .carousel-control:hover {
  color: #000;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.9);
  opacity: 0.5;
}
.carousel-control.left, .carousel-control.right {
  background-image: none;
  filter: none;
}

#Carousel-intro .carousel-control {
  color: #fff;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.9);
}
#Carousel-intro .carousel-control:focus, #Carousel-intro .carousel-control:hover {
  color: #fff;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.9);
  opacity: 0.5;
}

@media (max-width: 991px) {
  .carousel-big .carousel-control {
    display: none;
  }
}
.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
}
.carousel-fade .carousel-inner .active {
  opacity: 1;
}
.carousel-fade .carousel-inner .active.left, .carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-fade .carousel-inner .next.left, .carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-control {
  z-index: 9;
}

.carousel-item {
  display: inline-block;
  vertical-align: middle;
  float: none;
}

.carousel-item-text {
  display: inline-block;
  vertical-align: middle;
  float: none;
  padding: 30px 0 30px 0;
}

/* FF BUG FIX */
#Carousel-intro .carousel-inner {
  position: absolute !important;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-fade .carousel-inner > .item.next, .carousel-fade .carousel-inner > .item.active.right, .carousel-fade .carousel-inner > .item.prev, .carousel-fade .carousel-inner > .item.active.left {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .carousel-fade .carousel-inner > .item.next.left, .carousel-fade .carousel-inner > .item.prev.right, .carousel-fade .carousel-inner > .item.active {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.carousel-indicators {
  bottom: -60px;
}

.indicators-inside {
  bottom: 7px;
}

#Carousel-intro .carousel-indicators {
  bottom: 30px;
}

.carousel-indicators .active {
  width: 14px;
  height: 14px;
  margin: 0 5px 0;
}
.carousel-indicators li {
  width: 14px;
  height: 14px;
  margin: 0 5px 0;
  background-color: #777;
  border: 0;
}
.carousel-indicators .active {
  background-color: #666;
}

.carousel-control .icon-next, .carousel-control .icon-prev {
  font-size: 90px;
  color: #999;
}

#carousel-light2, #carousel-light3, #carousel-light6, .slider-offset {
  margin-top: -120px;
}
#carousel-light2 .carousel-indicators, #carousel-light3 .carousel-indicators, #carousel-light6 .carousel-indicators, .slider-offset .carousel-indicators {
  bottom: -55px;
}

.carousel, .item, .active, .carousel-inner {
  height: 100%;
}

.fill {
  display: table;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}

#carousel-news img {
  width: 100%;
}

/* Shop thumbnails carousel */
#carousel-example-generic {
  margin: 20px auto;
  width: 400px;
}

#carousel-shop .carousel-indicators {
  margin: 10px 0 0;
  text-align: left;
  width: 100%;
  position: static;
}
#carousel-shop .carousel-indicators img {
  max-width: 104px;
}
#carousel-shop .carousel-indicators li {
  background-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
  display: inline-block;
  height: auto;
  margin: 0 !important;
  width: auto;
}
#carousel-shop .carousel-indicators li img {
  display: block;
  opacity: 0.3;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#carousel-shop .carousel-indicators li.active img {
  opacity: 1;
}
#carousel-shop .carousel-indicators li:hover img {
  opacity: 0.75;
}
#carousel-shop .carousel-outer {
  position: relative;
  padding-bottom: 40px;
}

#carousel-dark {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.27);
}

/* Animated mouse */
.mouse {
  position: relative;
  display: inline-block;
  height: 60px;
  margin-right: 40px;
}
.mouse i {
  font-size: 40px;
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  animation: scroll 3s linear infinite;
}

@keyframes scroll {
  1% {
    opacity: 1;
    top: 30%;
  }
  20% {
    opacity: 1;
    top: 80%;
  }
  60% {
    opacity: 0;
    top: 80%;
  }
  100% {
    opacity: 0;
    top: 30%;
  }
}
@media (max-height: 690px) {
  .scroll-btn {
    display: none;
  }
}
/* Text rotator */
.rotating {
  display: inline-block;
}

/* Number scroller */
.numscroller {
  font-size: 50px;
  line-height: 60px;
  font-weight: 200;
  display: block;
}

.btn .numscroller {
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 2px;
  padding-left: 7px;
  margin-left: 8px;
  border-left: 1px solid #fff;
}

/* Testimonials */
#testimonials .carousel-caption {
  display: block;
  position: unset;
}

/*  Portfolio and Gallery */
.portfolio-sorting, .portfolio-sorting2 {
  text-transform: uppercase;
  padding: 20px 0;
  font-size: 12px;
}
.portfolio-sorting li a, .portfolio-sorting2 li a {
  padding: 5px 15px;
  color: #777;
}
.portfolio-sorting a:hover, .portfolio-sorting a.active, .portfolio-sorting2 a:hover, .portfolio-sorting2 a.active {
  color: #fff;
  background: #999;
  border-radius: 20px;
}

#portfolio .list-inline li {
  display: inline-block;
  padding: 10px 5px 0;
}

.portfolio-item {
  font-size: 14px;
  position: relative;
  overflow: hidden;
  display: block;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.portfolio-items {
  margin-bottom: 0;
}

.portfolio-item a {
  display: inline-block;
  color: #fff !important;
}
.portfolio-item a:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible;
}
.portfolio-item img {
  max-width: none;
  position: relative;
  left: 0;
  width: 100%;
}
.portfolio-item:hover img {
  transform: scale(1.2, 1.2) translate(15px, 15px);
  -ms-transform: scale(1.2, 1.2) translate(15px, 15px);
  -webkit-transform: scale(1.2, 1.2) translate(15px, 15px);
}

.portfolio-overlay {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.6);
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.portfolio-overlay .caption {
  position: absolute;
  bottom: 100px;
  left: 0;
  padding: 0 30px;
  text-align: left;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  opacity: 0;
}

.portfolio-item a:hover .portfolio-overlay .caption {
  bottom: 10%;
  opacity: 1;
}
.portfolio-item a h5 {
  margin-bottom: 5px;
  color: #fff;
}

.portfolio-wide .portfolio-item {
  margin-bottom: 20px;
}

#portfolio .no-pad {
  padding: 2px !important;
}

#news-wide .portfolio-overlay {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.4);
  opacity: 1;
  visibility: visible;
  overflow: hidden;
}
#news-wide .portfolio-overlay:hover {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.6);
}
#news-wide .portfolio-overlay .caption {
  position: absolute;
  bottom: 20px;
  opacity: 1;
  max-width: 400px;
}
#news-wide .portfolio-overlay .caption:hover {
  background: none;
}

#news-wide .portfolio-item a:hover .portfolio-overlay .caption {
  bottom: 30px;
}

#gallery .portfolio-item {
  border: 2.5px solid transparent;
}

/* Pricing */
.panel {
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}
.panel .list-group-item {
  border: 1px solid #dedede;
}

.pricing .number {
  font-size: 60px;
  font-weight: 200;
}
.pricing .panel-heading {
  border: 0;
  background-color: #eee;
  margin: -1px;
}
.pricing .panel-heading h4 {
  margin-bottom: 0;
}

.panel-default {
  border-color: transparent;
  padding: 0 0 20px;
}

.panel-body {
  padding: 35px 20px 35px;
}

.pricing sup, .pricing sub {
  font-weight: 700;
  color: #999;
}
.pricing sup {
  font-size: 16px;
  top: -33px;
}
.pricing sub {
  font-size: 10px;
  top: 0;
}

.bg-dark .panel, .bg-dark .panel-body, .bg-dark .list-group-item {
  background-color: rgba(0, 0, 0, 0.1);
}
.bg-dark .pricing .panel-heading {
  border: 0;
  background-color: #000;
  color: #ccc;
}

section.bg-dark .fa, section.bg-dark2 .fa {
  color: #ccc;
}

.bg-dark .list-group-item, .bg-dark2 .list-group-item {
  border: 1px solid #222;
}

.pricing .panel-heading {
  border: 0;
}
.pricing .list-group-item, .pricing .panel-heading {
  padding: 20px 10px;
}

/* Miscellaneous */

.investment-numbers {
  background-color: #f6f6f7;
  border-radius: 25px;
  padding: 10px;
}

#logo-howitworks {
  position: absolute;
  right: 0;
  bottom: 0;
}

.mr-5 {
  margin-right: 5px;
}

.mt-50 {
  margin-top: 50px;
}

#invest-header {
  padding: 1px;
}
.horizontal-line {
  white-space: pre; 
  text-decoration: line-through; 
  color: #fff; 
  font-size: 2rem; 
  padding: 0px 5px; 
  margin-left: 10px;
}

.main-team-wrap {
  padding-top: 20px;
  padding-bottom: 2px;
  padding-left: 20px;
  padding-right: 20px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-color: #fff;
  /* margin-bottom: 10px; */
}



.vl {
  border-right: 1px solid #fff;
  height: 275px;
}

.overlay3 {
  background: rgba(0, 0, 0, 0.6);
  padding-bottom: 30px;
}

.font-small {
  font-size: 10px;
}
.investment-wrapper {
  border: solid 6px #1ea5dd;
  position: relative;
  border-radius: 5px;
  margin-bottom: 30px
}
.investment-wrapper > img {
  min-height: 300px;
  aspect-ratio: 3/2;
}
.location-text-block {
  position: absolute;
  top: 5px;
  /* right: 187px; */
  background-color: #1ea5dd;
  color: #212121;
  padding-left: 20px;
  padding-right: 20px;
}

.location-marker-block {
  position: absolute;
  top: 5px;
  right: 187px;
  background-color: #1ea5dd;
  color: #212121;
  padding-left: 20px;
  padding-right: 20px;
}

.box-shadow, .box-shadow-dark {
  box-shadow: 0px 5px 25px 0 rgba(0, 0, 0, 0.1);
  /* position: relative; */
  position: absolute;
  z-index: 993;
  background: #fff;
}
.box-shadow [class*=col-], .box-shadow-dark [class*=col-] {
  padding: 35px 45px;
}

.box-shadow-dark {
  background: #222;
}

.box-shadow2 {
  box-shadow: 0px 15px 80px 0px rgba(0, 0, 0, 0.2);
}

.box-shadow3 {
  box-shadow: rgb(0 0 0 / 10%) 0px 10px 15px -3px, rgb(0 0 0 / 5%) 0px 4px 6px -2px;
}

.border {
  border-right: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;
}

.teaser {
  position: relative;
  z-index: 993;
  border-radius: 6px;
  min-height: 280px;
  overflow: hidden;
  display: flex;
  /*   align-items: center; */
  justify-content: center;
  flex-direction: column;
}
.teaser div[class*=col-] {
  min-height: 280px;
}

.teaser-caption {
  padding: 40px;
}

.bg-img-custom-static {
  background-attachment: inherit;
  min-height: 280px;
}

.bg-shadow {
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.25);
}

.bg-pastel {
  background: #9aa8b1;
  color: #fff;
}

.big {
  /* font-size: 120px !important; */
  font-size: 90px !important;
  line-height: 100px !important;
  font-weight: 800 !important;
  letter-spacing: -4px !important;
  text-transform: none !important;
  padding-bottom: 50px;
}

.big-medium {
  font-size: 90px !important;
  line-height: 100px !important;
  font-weight: 800 !important;
  letter-spacing: -4px !important;
  text-transform: none !important;
  padding-bottom: 50px;
}

.bold {
  font-weight: 800 !important;
}

.light {
  font-weight: 500 !important;
  text-transform: none;
}

.indent {
  text-indent: -160px;
}

.topbtn {
  position: fixed;
  bottom: 20px;
  right: 30px;
  display: none;
  z-index: 1000;
  padding: 13px;
  border-radius: 50%;
  color: #999;
  background: rgba(0, 0, 0, 0.1);
  line-height: 1;
}

.topbtn::after {
  display: inline-block;
  content: "";
  font-family: "Font Awesome 5 Free";
  cursor: pointer;
}

@media (max-width: 500px) {
  .topbtn {
    display: none !important;
  }
}
/* Pager */
.pager li > a, .pager li > span {
  padding: 30px 0;
  border: 0;
}
.pager li > a:focus, .pager li > a:hover {
  text-decoration: none;
  background-color: transparent;
}

.pagination > li > a, .pagination > li > span {
  padding: 8px;
  margin-left: 8px;
  border-radius: 50%;
  color: #000;
  width: 40px;
  height: 40px;
  background: #eee;
  border-color: #fff;
}
.pagination > .active > a {
  background-color: #333;
  border-color: #333;
  color: #fff !important;
}
.pagination > .active > a:focus, .pagination > .active > a:hover {
  background-color: #333;
  border-color: #333;
}
.pagination > .active > span {
  background-color: #333;
  border-color: #333;
}
.pagination > .active > span:focus, .pagination > .active > span:hover {
  background-color: #333;
  border-color: #333;
}
.pagination > li:first-child > a, .pagination > li:first-child > span {
  border-radius: 50% !important;
}
.pagination > li:last-child > a, .pagination > li:last-child > span {
  border-radius: 50% !important;
}

/* Bars and charts */
#animate img {
  padding-bottom: 180px;
}

.progress-default {
  font-size: 12px;
}
.progress-default .progress {
  background-color: #ddd;
}
.progress-default .progress-bar {
  background-color: #777;
}

.progress-bar {
  text-align: left;
  text-indent: 20px;
}

.progress-thin .progress {
  margin-top: 10px;
  height: 3px;
  margin-bottom: 5px;
}

.bg-dark .progress-default .progress {
  background-color: #888;
}
.bg-dark .progress-default .progress-bar {
  background-color: #555;
}
.bg-dark .progress-thin .progress-bar {
  color: #ccc;
}

.circle {
  position: relative;
  display: inline-block;
  margin: 0 20px;
  vertical-align: top;
  text-align: center;
  width: 100px;
  padding-top: 38px;
}
.circle span {
  letter-spacing: -1px;
}
.circle canvas {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  margin-bottom: 6px;
}
.circle span:after {
  content: "%";
  margin-left: 0.1em;
}

.agenda {
  padding: 45px 0 40px;
  font-size: 12px;
  text-transform: uppercase;
}

.progress-bar {
  -webkit-transition: width 2.5s ease !important;
  -moz-transition: width 2.5s ease !important;
  transition: width 2.5s ease !important;
}

.shop-item {
  position: relative;
}
.shop-item img {
  border: 1px solid #eee;
}


li .shop-cart {
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
li .shop-cart a:hover {
  background-color: transparent !important;
}

.shop-cart img {
  width: 70px;
  padding-right: 10px;
  float: left;
}

.add-cart {
  position: absolute;
  bottom: 8px;
  left: 20px;
  z-index: 1;
  font-weight: 800;
}
.add-cart:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  padding-right: 10px;
  font-size: 20px;
  opacity: 0.5;
}

.badge.price {
  font-size: 13px;
  font-weight: 800;
  position: absolute;
  bottom: 12px;
  right: 14px;
  width: 110px;
  height: 30px;
  text-align: center;
  z-index: 1;
  background-color: #555;
  color: #fff !important;
  padding: 5px 7px;
  text-transform: uppercase;
}
.badge.price.sale {
  bottom: 45px;
  background-color: #789;
}
.badge.price.trend {
  bottom: 45px;
  background-color: #ff4081;
}
.badge.price.new {
  bottom: 45px;
  background-color: #5bc0de;
}
.badge.price.white {
  bottom: 25px;
  background-color: #fff;
  color: #333 !important;
  left: 40px;
}

.sorting {
  border: 0;
  margin: -9px 0px;
  background: transparent;
}
.sorting > option {
  font-size: 14px;
}

.table.shop-cart {
  margin-bottom: 60px;
}
.table.shop-cart > tbody > tr > td, .table.shop-cart > tbody > tr > th {
  padding: 11px;
  vertical-align: middle;
  border-top: 1px solid #ddd;
}
.table.shop-cart > tfoot > tr > td, .table.shop-cart > tfoot > tr > th {
  padding: 11px;
  vertical-align: middle;
  border-top: 1px solid #ddd;
}
.table.shop-cart > thead > tr > td, .table.shop-cart > thead > tr > th {
  padding: 11px;
  vertical-align: middle;
  border-top: 1px solid #ddd;
}
.table.shop-cart h3, .table.shop-cart h4, .table.shop-cart h5 {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .table.shop-cart > tbody > tr > td, .table.shop-cart > tbody > tr > th {
    padding: 5px;
  }
  .table.shop-cart > tfoot > tr > td, .table.shop-cart > tfoot > tr > th {
    padding: 5px;
  }
  .table.shop-cart > thead > tr > td, .table.shop-cart > thead > tr > th {
    padding: 5px;
  }
}

.showcase .col-lg-6 {
  width: 49%;
}

.offcet {
  /* margin: -65px auto 30px; */
  margin: -65px auto 30px;
  left: 0;
  right: 0;
}

.offcet2 {
  margin: 0 auto -20px;
}

.offcet3 {
  /* margin: -65px auto 30px; */
  margin: -430px auto 30px;
  left: 0;
  right: 0;
}

.offcet-art-main div[class*=col-] {
  padding: 0;
}

.offcet-art, .offcet-art-right, .offcet-art-dark {
  box-shadow: 0px 0 20px 0px rgba(0, 0, 0, 0.08);
  background: #fff;
  position: absolute;
  top: auto;
  left: -195px;
  bottom: 20px;
  color: #000;
  padding: 45px 55px;
  width: 60%;
  text-align: left;
  border-radius: 4px;
}
.offcet-art .text-right, .offcet-art-right .text-right, .offcet-art-dark .text-right {
  display: block;
}

.offcet-art-right {
  right: -195px;
  left: auto;
}

.offcet-art-dark {
  background: #000;
  color: #fff;
}

.row.v-center {
  margin-right: -25px;
  margin-left: -25px;
}

.v-center > [class*=col] {
  display: inline-block;
  float: none;
  vertical-align: middle;
  padding: 0 50px;
}

.v-center-simple {
  display: flex;
  align-items: center;
}

/* Magic background */
.magic, .magic2 {
  position: absolute;
  width: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}

/* Footer */
.footer {
  line-height: 27px;
}
.footer .footer-menu a {
  line-height: 30px;
}
.footer .counter {
  line-height: 44px;
}
.footer a {
  text-decoration: none;
  opacity: 0.55;
}
.footer a:hover {
  text-decoration: none;
  opacity: 1;
}
.footer a.btn {
  color: #000 !important;
}

@media (max-width: 991px) {
  .footer {
    text-align: center;
  }
  .footer .text-right {
    text-align: center !important;
  }
}
/* Stop animation on mobile devices */
@media (max-width: 991px) {
  .wow {
    animation-name: none !important;
    visibility: visible !important;
  }
}
/* Media Queries */
@media (max-width: 480px) {
  .intro h1 {
    font-size: 30px !important;
    line-height: 40px !important;
  }

  .horizontal-line {
    font-size: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }
  
}

@media (max-width: 768px) {
  body {
    letter-spacing: 0;
  }

  .h1, h1 {
    font-size: 24px;
  }

  .h2, h2 {
    font-size: 24px;
  }

  .h3, h3 {
    font-size: 20px;
  }

  .h4, h4 {
    font-size: 16px;
  }

  .intro h1 {
    font-size: 38px !important;
    line-height: 38px !important;
  }
  .intro h1.classic {
    font-size: 60px;
    line-height: 60px;
    margin: 50px 0 50px;
  }

  section, .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-small {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .portfolio-sorting li a {
    margin: 0;
    letter-spacing: 0;
  }

  .shop-item img {
    width: 100%;
  }

  #portfolio .list-inline li {
    width: 100%;
    padding: 10px 5px 15px;
    text-align: center;
  }

  .carousel-control {
    display: none;
  }
}
@media (max-width: 991px) {
  .action .btn {
    float: none;
    margin-top: 30px;
    text-align: center;
  }

  .header-overlay {
    background: rgba(255, 255, 255, 0.75);
    padding: 36px;
    width: 90%;
    border-radius: 6px;
    position: unset;
  }

  .action, #subscribe {
    text-align: center;
  }
  .action .text-right, #subscribe .text-right {
    text-align: center;
  }
  .action .subscribe-form, #subscribe .subscribe-form {
    padding: 0;
  }

  .grid-pad div[class*=col-] {
    margin-bottom: 40px !important;
  }

  .row.v-center {
    margin-right: 0px;
    margin-left: 0px;
    text-align: center;
  }

  .indent {
    text-indent: unset;
  }

  .big {
    font-size: 80px !important;
    line-height: 60px !important;
  }

  .intro .intro-body {
    padding: 150px 20px 70px;
    text-align: center;
  }
  .intro .intro-body .row {
    text-align: center;
  }

  .pull-left, .pull-right {
    float: none !important;
  }

  .btn {
    margin: 10px;
  }

  .footer .text-right {
    text-align: left;
  }
  .footer .footer-menu {
    padding-bottom: 20px;
  }

  section {
    background-attachment: scroll !important;
    background-position: 50% 50% !important;
    text-align: center;
  }

  .search-button {
    margin-top: 5px;
  }

  .dropdown-menu .search-button .fa {
    opacity: 1 !important;
  }
}
@media (max-width: 1199px) {
  #about, #about2, #about-slider, #action-slider, #action-slider2, #action-slider3 {
    text-align: center;
  }

  #carousel-light2, #carousel-light3, #carousel-light4, #carousel-dark, #carousel-transparent {
    margin: 45px 0;
  }

  .offcet-art, .offcet-art-right, .offcet-art-dark {
    left: 0;
    width: 100%;
    position: inherit;
    text-align: center;
  }

  .showcase {
    text-align: center;
  }
  .showcase [class*=col] {
    width: 100%;
  }

  .footer div[class*=col-] {
    text-align: center;
    min-height: 30px;
  }

  .v-center > [class*=col] {
    padding: 40px;
  }
}

@media (min-width: 768px) and (max-width: 1196px) {
  .vl {
    border-right: 1px solid #fff;
    height: 200px;
  }
}

@media (min-width: 360px) and (max-width: 992px) {
  .box-shadow {
    position: relative;
  }
  .offcet {
    margin: auto;
    left: 0;
    right: 0;
  }

  .offcet3 {
    margin: auto;
    left: 0;
    right: 0;
  }
}

@media (max-width: 468px) {
  #logo-howitworks {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
  }

  #h2-howitworks {
    margin-top: 0;
  }

  .main-team-wrap {
    margin-bottom: 10px;
  }

  .investment-wrapper {
    margin-bottom: 10px;
  }

  .investment-wrapper > img {
    aspect-ratio: 3/2;
    min-height: auto;
  }

}

.investment-wrapper .row.d-flex.justify-content-center.flex-wrap.text-center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.feature-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ============================== CUSTOM FORM ============================== */
.form-container {
  display: flex;
  flex-direction: column;
  gap: 12px; /* Same gap between inputs */
  max-width: 100%;
  border-radius: 20px;
  position: relative;
}

#customForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
  padding: 20px;
  border-radius: 20px;
  position: relative;
}

#customForm .title {
  font-size: 40px;
  color: #1ea5dd;
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 45px;
  margin-bottom: 0px;
}

#customForm .title::before, #customForm .title::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 10px;
  background-color: #1ea5dd;
}

#customForm .title::before {
  width: 18px;
  height: 18px;
  background-color: #1ea5dd;
}

#customForm .title::after {
  width: 18px;
  height: 18px;
  animation: pulse 1s linear infinite;
}

#customForm .message {
  color: rgba(88, 87, 87, 0.822);
  font-size: 18px;
  margin-bottom: 10px;
}

#customForm .custom-flex {
  display: flex;
  width: 100%;
  gap: 6px;
}

#customForm label {
  position: relative;
  width: 100%;
}

#customForm .input {
  width: 100%;
  padding: 10px 10px 20px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
}

#customForm .input + span {
  position: absolute;
  left: 10px;
  top: 15px;
  color: grey;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
}

#customForm .input:placeholder-shown + span {
  top: 15px;
  font-size: 0.9em;
}

#customForm .input:focus + span,
#customForm .input:not(:placeholder-shown) + span {
  top: 32px;
  font-size: 0.7em;
  font-weight: 600;
}

#customForm .input:valid + span,
#customForm .input:focus:valid + span {
  color: green;
}

#customForm .input:focus:invalid + span,
#customForm .input:invalid + span,
#customForm .input:not(:placeholder-shown):invalid + span {
  color: grey;
}

#customForm .submit {
  border: none;
  outline: none;
  background-color: rgb(30, 165, 221);
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  transition: 0.3s ease;
}

#customForm .submit:hover {
  background-color: rgb(0, 179, 255);
}

#customForm .select-label {
  position: relative;
  width: 100%;
}

#customForm .select-label select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  width: 100%;
  padding: 10px 10px 20px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
  cursor: pointer;
}

#customForm .select-label .select-label-text {
  position: absolute;
  left: 10px;
  top: 15px;
  color: grey;
  font-size: 0.9em;
  pointer-events: none;
  transition: 0.3s ease;
}

#customForm .select-label select:focus + .select-label-text,
#customForm .select-label select:valid + .select-label-text {
  top: 32px;
  font-size: 0.7em;
  font-weight: 600;
  color: grey;
}

#customForm .select-label select:valid + .select-label-text {
  color: green;
}

/* INPUT-OPTIONAL CLASS */
#customForm .input-optional {
  width: 100%;
  padding: 10px 10px 20px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
}

#customForm .input-optional + span {
  position: absolute;
  left: 10px;
  top: 15px;
  color: grey;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
}

#customForm .input-optional:placeholder-shown + span {
  top: 15px;
  font-size: 0.9em;
}

#customForm .input-optional:focus + span,
#customForm .input-optional:not(:placeholder-shown) + span {
  top: 32px;
  font-size: 0.7em;
  font-weight: 600;
}

#customForm .input-optional:focus + span,
#customForm .input-optional:not(:placeholder-shown) + span {
  top: 32px;
  font-size: 0.7em;
  font-weight: 600;
  color: grey;
}

#customForm .input-optional:focus:valid + span {
  color: green;
}

#customForm .input-optional:valid + span {
  color: green; /* Apply when input is valid, regardless of focus */
}

/* Highlight border on focus for all inputs */
#customForm .input:focus,
#customForm .input-optional:focus,
#customForm .select-label select:focus {
  border-color: rgb(30, 165, 221); /* Change this to your preferred color */
  box-shadow: 0 0 5px rgba(30, 165, 221, 0.5); /* Optional: Adds a subtle shadow to emphasize focus */
  transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition effect */
}

/* Ensure label and span styling works with focus effects */
#customForm .input:focus + span,
#customForm .input-optional:focus + span,
#customForm .select-label select:focus + .select-label-text {
  color: rgb(30, 165, 221); /* Change label color on focus */
}

/* Update select elements for consistency */
#customForm .select-label select:focus {
  border-color: rgb(30, 165, 221);
  box-shadow: 0 0 5px rgba(30, 165, 221, 0.5);
}

.terms_and_conditions {
  font-weight: 100;
  font-size: 13px;
}


@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }

  to {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Custom Flexbox Container for Mobile */
@media (max-width: 767px) {
  #customForm .custom-flex {
    display: flex;
    flex-direction: column; /* Stack elements vertically on mobile */
    width: 100%;
    gap: 10px;
    margin-bottom: 0px; /* Reset margin to prevent extra space */
    padding-bottom: 0; /* Reset padding to prevent extra space */
  }

  /* Individual select label styles */
  #customForm .custom-flex .select-label {
    margin-bottom: 0px; /* Ensure no margin between elements */
    padding-bottom: 0; /* Ensure no padding between elements */
  }

  /* Specific fix for last element */
  #customForm .custom-flex .select-label:last-child {
    margin-bottom: 0; /* Ensure no extra space below the last element */
  }

  #customForm label {
    margin-bottom: 0px;
  }

  #customForm h4 {
    text-align: left;
  }

  .title {
    text-align: left;
  }
  
  #customForm .terms_and_conditions {
    text-align: left;
    font-size: 11px;
  }
}

@media (min-width: 992px) {
  #header-pp-logo {
      width: 100% !important;
  }
}

.submit:hover {
  background-color: rgb(0, 179, 255);
}

#completedProjects .card-img-top {
  height: 400px; /* or any preferred fixed height */
  object-fit: cover;
}

.carousel-cell {
  width: 690px;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 10px;
  box-sizing: border-box; 
}

@media screen and (max-width: 768px) {
  .carousel-cell {
      width: 100%; /* Full width on smaller screens */
      height: 60vw; /* Dynamically scale height based on screen width */
      max-height: 500px; /* Prevent extreme height */
  }
}

/* Medium Screens (Tablets & 1280px Displays) */
@media screen and (min-width: 768px) and (max-width: 1366px) {
  .carousel-cell {
      width: 50%; /* Keep consistent width */
      height: 55vh; /* Adjust height dynamically based on viewport height */
      max-height: 700px; /* Ensures images don’t stretch too much */
  }
}

/* Larger Screens */
@media screen and (min-width: 1366px) {
  .carousel-cell {
      width: 50%;
      height: 584px; /* Ensures uniform height */
  }
}
@media screen and (min-width: 2220px) {
  .carousel-cell {
      width: 40%;
      height: 626px;
  }
}

.overlay-fade {
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.card:hover .overlay-fade {
  opacity: 1;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  vertical-align: middle;
  border-top: 5px solid white; /* or black depending on background */
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.ratio-custom {
  aspect-ratio: 6 / 4;
}

@media (min-width: 1700px) {
  .col-1700-2 {
    flex: 0 0 auto;
    width: 16.6666667%; /* 6 columns */
  }
  .d-1700-flex {
    display: flex !important;
  }
  .d-1700-block {
    display: block !important;
  }
  .d-1700-none {
    display: none !important;
  }
}

.who-we-are-animation-wrapper {
  position: relative;
  width: 650px;
  height: 500px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .who-we-are-animation-wrapper {
    width: 100%;
    height: 350px;
  }

  .who-we-are-animation-wrapper dotlottie-wc {
    transform: translate(-50%, -50%) scale(1.3) !important;
  }
}

@media (max-width: 575px) {
  .who-we-are-animation-wrapper {
    height: 300px;
  }

  .who-we-are-animation-wrapper dotlottie-wc {
    transform: translate(-50%, -50%) scale(1.1) !important;
  }
}

.service-card {
  border-radius: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

/* Muted Gradient Themes */
.bg-muted-blue {
  background: linear-gradient(135deg, #d4e9f6, #b3d5ea);
}
.bg-muted-gray {
  background: linear-gradient(135deg, #e0e0e0, #cfcfcf);
}
.bg-muted-steel {
  background: linear-gradient(135deg, #dbe3ea, #b0bec5);
}
.bg-muted-navy {
  background: linear-gradient(135deg, #a5bcd8, #78909c);
}
.bg-muted-silver {
  background: linear-gradient(135deg, #f5f5f5, #e8eaf6);
}
.bg-muted-charcoal {
  background: linear-gradient(135deg, #c5c5c5, #a6a6a6);
}

.service-card h5 {
  font-size: 1.1rem;
  letter-spacing: 0.4px;
  color: #111 !important;
}

.service-card p {
  color: #333 !important;
  line-height: 1.6;
  font-size: 0.95rem;
  font-weight: 500;
}

.wave-transition-wrapper {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  z-index: 2;
  line-height: 0;
  background: transparent;
}

.wave-transition-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

.wave-transition-wrapper path {
  animation: waveMorph 8s ease-in-out infinite alternate;
  transform-origin: center;
}

/* Subtle wave morph animation */
@keyframes waveMorph {
  0% {
    d: path("M0,80 C360,120 1080,0 1440,60 L1440,150 L0,150 Z");
  }
  50% {
    d: path("M0,70 C300,130 1140,10 1440,50 L1440,150 L0,150 Z");
  }
  100% {
    d: path("M0,60 C420,100 1020,20 1440,70 L1440,150 L0,150 Z");
  }
}

.wave-transition-wrapper path {
  animation: waveFloat 8s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes waveFloat {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.03) translateY(-5px);
  }
  100% {
    transform: scaleY(1);
  }
}

[data-aos] {
  opacity: 1 !important;
}
