@import url("https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap");

/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

:root {
  --primary-color: #121428;
  --primary-color-accent: #0e2033;
  /* 18, 20, 40 */
  --secondary-color: #eb5160;
  --secondary-light: #628395;
  --primary-light: #dfe0e2;
  --primary-accent: #5c6d70;
  --border-color: rgba(223, 224, 226, 0.1);
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  font-family: var(--default-font);
}

.alex-brush-regular {
  font-family: "Alex Brush", cursive;
  font-weight: 500;
  font-style: normal;
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.circled {
  background: url(../img/svg/hand_drawn_circle.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.min-text {
  font-size: 1rem;
  line-height: -2;
}

.dark-background {
  color: var(--primary-light);
}

.light-background {
  color: var(--primary-color);
}

a {
  color: var(--primary-accent);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

h1 {
  font-size: 4rem;
}

/* Misc */

.bg-1 {
  background-color: var(--primary-color);
}

.bg-2 {
  background-color: var(--secondary-color);
}

.bg-3 {
  background-color: var(--secondary-light);
}

.bg-4 {
  background-color: var(--primary-light);
}

.bg-5 {
  background-color: var(--primary-color-accent);
}

.uppercase {
  text-transform: uppercase;
}

.shadow-x {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.border-x-light {
  position: relative;
  z-index: 9999 !important;
}

.border-x-light::before,
.border-x-light::after {
  content: "";
  position: absolute;
  top: 10px; /* Adjust as needed */
  bottom: 10px; /* Adjust as needed */
  width: 1px;
  background-color: rgba(223, 224, 226, 0.1);
}

.border-x-light::before {
  left: -1px; /* Adjust to position on the left */
}

.border-x-light::after {
  right: -1px; /* Adjust to position on the right */
}

/* Fancy Span left/right lines */

.fancy {
  line-height: 0.5;
  text-align: center;
}
.fancy span {
  display: inline-block;
  position: relative;
}

.fancy span:before,
.fancy span:after {
  content: "";
  position: absolute;
  height: 5px;
  border-bottom: 1px solid var(--primary-color);
  border-top: 1px solid var(--primary-color);
  top: 4px;
  width: 30px;
  opacity: 0.25;
  transform: scaleX(0);
}

.fancy span:before {
  right: 100%;
  margin-right: 5px;
  transform-origin: right center;
  transition: transform 0.6s ease;
}

.fancy span:after {
  left: 100%;
  margin-left: 5px;
  transform-origin: left center;
  transition: transform 0.6s ease;
}

.z-index {
  z-index: 9999;
}

/* Containers */

.container {
  /* padding-left: 60px;
  padding-right: 60px; */
}

/* Lists */

/* Header */

.header {
  color: var(--default-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  z-index: 997;
  min-width: 200px;
}

@media (max-width: 1199px) {
  .header {
    background-color: var(--background-color);
    border-right: 1px solid
      color-mix(in srgb, var(--default-color), transparent 90%);
    width: 300px;
    left: -100%;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .header .main {
    margin-left: 160px;
  }

  .header .main .hero {
    margin-left: -160px;
    width: 100vw;
  }
}

.header.header-show {
  left: 0;
}

.header .header-toggle {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  transition: background-color 0.3s;
}

.header .header-toggle:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.navbar {
  background: transparent;
  position: absolute;
  z-index: 9999;
  width: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease-in-out;
  opacity: 1;
}

.navbar.fixed-top {
  position: fixed;
  background: var(--primary-color);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; /* Adjust z-index as needed */
  transform: translateY(-100%);
  animation: slideInNavbar 1s forwards;
  opacity: 0;
}

@keyframes slideInNavbar {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .navbar.fixed-top {
    display: none;
  }
}

.navbar.fixed-top .container-fluid {
  width: auto;
}

.navbar.fixed-top .nav-logo {
  width: 40px;
}

.navbar .nav-logo {
  width: 55px;
}

.navbar-brand,
.navbar-nav .nav-link {
  color: #ffffff; /* White text */
}

.navbar-nav .nav-link {
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link.active {
  position: relative;
}

.navbar-nav .nav-link.active::after {
  background: var(--secondary-color);
  content: "";
  position: absolute;
  display: block;
  width: calc(100% - 16px);
  height: 1px;
  left: 0;
  right: 0;
  bottom: 5px;
  margin: auto;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navmenu {
  padding: 0;
  z-index: 9997;
}

.navmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
  width: 140px;
}

.navmenu a,
.navmenu a:focus {
  color: var(--default-color);
  font-family: var(--nav-font);
  display: flex;
  align-items: center;
  padding: 10px 18px;
  margin-bottom: 8px;
  font-size: 15px;
  border-radius: 50px;
  background: var(--accent-color);
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 20px;
}

.navmenu a span,
.navmenu a:focus span {
  padding: 0 5px 0 7px;
}

@media (min-width: 992px) {
  .navmenu a,
  .navmenu a:focus {
    max-width: 56px;
  }

  .navmenu a span,
  .navmenu a:focus span {
    display: none;
  }
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus,
.navmenu li:hover > a {
  color: var(--contrast-color);
  background: var(--nav-hover-color);
}

.navmenu a:hover,
.navmenu li:hover > a {
  max-width: 100%;
  color: var(--contrast-color);
}

.navmenu a:hover span,
.navmenu li:hover > a span {
  display: block;
}

/* Footer */

.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--primary-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--secondary-color) transparent var(--secondary-color)
    transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

#preloader-logo {
  position: fixed;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  width: 30px;
  height: 30px;
  z-index: 1000000;
  opacity: 0.75;
  animation: animate-preloader-img 6s linear infinite;
}

#preloader-logo img {
  max-width: 100%;
  max-height: 100%;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes animate-preloader-img {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  padding-top: 164px;
  padding-bottom: 164px;
  /* background-color: var(--primary-color); */
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

.offset-top {
  margin-top: -25px;
  height: calc(100% + 25px) !important;
}

/* Buttons */

button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}
button.learn-more {
  width: 12rem;
  height: auto;
}
button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #282936;
  border-radius: 1.625rem;
}
button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}
button:hover .circle {
  width: 100%;
}
button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
button:hover .button-text {
  color: #fff;
}

button.submit {
  width: 12rem;
  height: auto;
}

button.submit .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 100%;
  height: 3rem;
  background: #282936;
  border-radius: 1.625rem;
}
button.submit .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
button.submit .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
button.submit .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
button.submit .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

button.submit:hover .circle {
  background: var(--primary-color-accent);
}

button.submit:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
button.submit:hover .button-text {
  color: #fff;
  margin: 0 0 0 1.85rem;
}

/* ANCHOR START CUSTOM*/

.home {
  padding: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 75vh;
  position: relative;
  background-image: url("../img/hero-bg-bl-1920x1080.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top top;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: end;
}

.hero .hero-img-col img {
  position: relative;
  z-index: 2;
}

.hero .hero-content-container {
  position: relative;
  display: flex;
  align-items: end;
}

.hero-content-container .overlay.primary-gradient {
  display: flex;
  min-height: 100%;
  width: auto;
  background: linear-gradient(to bottom, rgba(18, 20, 40, 0) 70%, #121428 100%);
}

.hero .hero-text-col {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero .hero-text-col .wrapper {
  position: relative;
  background: var(--secondary-color);
  margin-left: -300px;
  padding-left: 300px;
  padding-bottom: 64px;
  padding-top: 32px;
  width: calc(100% + 300px);
  right: 0;
  z-index: 1;
}

.hero .hero-title {
  font-size: 5rem;
  position: relative;
  text-align: center;
  /* position: absolute;
  top: 100px; */
}

.hero .hero-text-col span {
  position: relative;
}

.hero .hero-text-col span i {
  color: var(--primary-color-accent);
}

.hero .hero-text-col span::after {
  content: "";
  position: absolute;
  display: block;
  width: 200px;
  height: 6px;
  background: var(--secondary-color);
  left: 35px;
  top: 9px;
  clip-path: polygon(0% 30%, 100% 0%, 100% 100%, 0% 70%);
  border-bottom: 2px solid rgba(14, 32, 51, 0.3);
}

.hero .hero-text-col span::before {
  content: "";
  position: absolute;
  display: block;
  width: 200px;
  height: 6px;
  background: var(--secondary-color);
  right: 35px;
  top: 9px;
  clip-path: polygon(0% 1%, 100% 30%, 100% 70%, 0% 100%);
  border-bottom: 2px solid rgba(14, 32, 51, 0.3);
}

.hero .hero-sub-title {
  /* position: absolute;
  top: 380px;
  right: 0;
  left: 0; */
  text-align: center;
  /* margin-top: -20px; */
}

/* .hero .hero-sub-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 200px;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
  left: 0;
  right: 0;
  bottom: -5px;
  margin: auto;
} */

.hero .hero-slogan {
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: 150px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  line-height: 1.2;
  /* background: var(--primary-color-accent); */
  z-index: 2;
}

.sub-hero {
  width: 100%;
  height: 25vh;
  text-align: center;
}

.sub-hero .container {
  max-width: 100%;
}

.sub-hero .col {
  position: relative;
}

.sub-hero a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sub-hero .container,
.sub-hero .row,
.sub-hero .row .col {
  height: 100%;
  z-index: 2;
  color: #fff;
}

.sub-hero .row {
  overflow: hidden;
}

.sub-hero .col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* border: 1px solid var(--primary-color); */
  position: relative;
  overflow: hidden;
}

.sub-hero .col .teaser-title {
  width: 100%;
  padding: 24px 0;
  /* border-top: 1px solid hsla(0, 0%, 100%, 0.05); */
}

.sub-hero .col:hover {
  background: var(--secondary-color);
  cursor: pointer;
}

.sub-hero .col:hover .fancy span::before,
.sub-hero .col:hover .fancy span::after {
  transform: scaleX(1);
}

.sub-hero .col:hover button .circle {
  width: 100%;
}

.sub-hero .col:hover button .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

.sub-hero .col:hover button .button-text {
  color: #fff;
}

.sub-hero .col button:hover::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  opacity: 0.3;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary-color),
    var(--primary-color),
    transparent
  );
  left: 0;
  right: 0;
  bottom: -15px;
  margin: auto;
  border-radius: 2px;
}

.sub-hero .icon-bg {
  position: absolute;
  font-size: 200px;
  line-height: 120px;
  bottom: 0;
  right: -40px;
  color: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
}

.sub-hero a {
  color: #fff;
}

.swiper {
  width: 100%;
  min-height: 100vh;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(50%, #fff),
    color-stop(0, rgba(39, 39, 39, 0.08))
  );
  background-image: linear-gradient(90deg, #fff 50%, rgba(39, 39, 39, 0.08) 0);
}

.about .img-col {
  display: flex;
  justify-content: flex-end;
  padding-left: 60px;
}

/*--------------------------------------------------------------
# Plans Section
--------------------------------------------------------------*/

.plans {
  background: var(--secondary-color);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.plans .section-title-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: auto;
}

/* .plans .content-col .wrapper:first-child {
  background: var(--primary-color);
  margin-left: -25px;
  margin-top: -25px;
  padding-left: 25px;
  padding-top: 25px;
  padding-right: 12.5px;
}

.plans .content-col .wrapper:nth-child(2) {
  background: var(--primary-color-accent);
  margin-left: -25px;
  margin-top: -25px;
  margin-bottom: -25px;
  padding-left: 25px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-right: 12.5px;
} */

@media (min-width: 1200px) {
  .plans {
    height: 750px;
  }
}

.plans .accordion-col {
  position: relative;
}

.plans .accordion-col .svg-img {
  position: absolute;
  right: -220px;
  width: 100%;
  bottom: -200px;
  opacity: 0.25;
}

.timeline-wrapper {
  position: relative;
}

.timeline-wrapper .svg-img {
  position: absolute;
  width: 200px;
  height: auto;
  bottom: 0;
  /* opacity: .5; */
  right: 30px;
}

.timeline {
  width: 75%;
  display: flex;
  transition: all 0.3s;
  /* justify-content: center; */
  padding-bottom: 30px;
  border-bottom: 3.8px solid var(--primary-color-accent);
}
.timeline .event {
  height: 85px;
  background: #caecfd;
  padding: 1em;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 0 5px #ccc;
  color: var(--primary-color);
  text-align: center;
  vertical-align: bottom;
  display: flex;
  flex-direction: column;
}

.timeline .event:first-child {
  margin-right: 8px;
}

.timeline .event:not(:first-child) {
  margin: 0 8px;
}

.timeline .event h2 {
  position: relative;
  padding: 0;
  margin: 0;
  z-index: 1;
  font-size: 1.5rem;
}
/* .timeline .event h2::before {
  content: "";
  display: block;
  position: absolute;
  top: 60px;
  left: calc(50% - 15px);
  font-size: 30px;
  font-family: "FontAwesome";
  color: var(--primary-color);
  opacity: 0.1;
  z-index: 0;
} */

.timeline .event p {
  color: var(--primary-color-accent);
  margin-bottom: 0;
}

.timeline .event:hover {
  box-shadow: 0px 0px 10px var(--primary-color);
  transform-origin: 100px 0px;
  transform: translateY(3px);
  z-index: 2;
}

.timeline .event:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: calc(50% - 10px);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #caecfd;
}

.timeline .event::after {
  margin: auto;
  position: absolute;
  bottom: -42px;
  left: 42px;
  content: "";
  border-radius: 15px;
  height: 20px;
  width: 20px;
  box-sizing: border-box;
  box-shadow: 0 0 1px #046291;
  background: #fff;
  border: 5px solid var(--primary-color-accent);
  transition: all 0.25s;
  z-index: 2;
}

.timeline .event:hover::after {
  border-color: var(--primary-color);
  z-index: 2;
}

.plans-outro {
  text-align: center;
  background-image: url(../img/Dallas_County_Courthouse_Iowa.jpg);
  background-repeat: no-repeat;
}

.plans-outro .col {
  position: relative;
}

.plans-outro h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1.5px;
  background: linear-gradient(
    to right,
    transparent,
    var(--secondary-color),
    transparent
  );
  left: 0;
  right: 0;
  bottom: -5px;
  margin: auto;
}

.panel-group .panel {
  background-color: #fff;
  border: none;
  box-shadow: none;
  border-radius: 10px;
  margin-bottom: 11px;
  border-radius: 0px 15px 0px 0px;
}
.panel .panel-heading {
  background-color: #fff;
  position: relative;
  padding: 0;
  border-radius: 10px;
  border: none;
}
.panel-heading a {
  color: var(--primary-color) !important;
  display: block;
  border: none;
  padding: 20px 35px 20px;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  color: #fff;
  box-shadow: none;
  transition: all 0.1s ease 0;
}
.panel-heading a:after,
.panel-heading a.collapsed:after {
  content: "\f068";
  font-family: fontawesome;
  text-align: center;
  position: absolute;
  left: -20px;
  top: 10px;
  color: #fff;
  background-color: var(--primary-color);
  border: 5px solid #fff;
  font-size: 15px;
  width: 40px;
  height: 40px;
  line-height: 30px;
  border-radius: 50%;
  transition: all 0.3s ease 0s;
}
.panel-heading:hover a:after,
.panel-heading:hover a.collapsed:after {
  transform: rotate(360deg);
}
.panel-heading a.collapsed:after {
  content: "\f067";
}
#accordion .panel-body {
  background-color: #fff;
  color: #8c8c8c;
  line-height: 25px;
  padding: 10px 25px 20px 35px;
  border-top: none;
  font-size: 14px;
  position: relative;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact {
  background-color: var(--primary-light);
}

.contact .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.contact .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  /* border-radius: 15px; */
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.contact .portfolio-filters li:hover,
.contact .portfolio-filters li.filter-active {
  color: #fff;
  background-color: var(--secondary-color);
  border-radius: 0;
}

.contact .portfolio-filters li:first-child {
  margin-left: 0;
}

.contact .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .contact .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.contact .portfolio-item {
  position: relative;
  overflow: hidden;
}

.contact .portfolio-item .logo {
  width: 30px;
}

.contact .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--primary-color), transparent 10%);
  padding: 15px;
}

.contact .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
  color: white;
}

.contact .portfolio-item .portfolio-info p {
  color: white;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.contact .portfolio-item .portfolio-info .preview-link {
  position: absolute;
  right: 25px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: var(--secondary-color);
  transition: 0.3s;
  line-height: 0;
}

.contact .portfolio-item .portfolio-info .preview-link:hover {
  color: var(--primary-accent);
}

.contact .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

@media (max-width: 1400px) {
  .hero .hero-title {
    font-size: 5rem;
    text-align: center;
  }

  .hero .hero-sub-title {
    top: 330px;
    font-size: 20px;
  }

  .hero .hero-slogan {
    bottom: 100px;
  }

  .timeline-wrapper .svg-img {
    right: -60px;
  }
}

@media (max-width: 1200px) {
  .hero .hero-title {
    font-size: 5rem;
  }

  .hero .hero-sub-title {
    top: 280px;
    font-size: 20px;
  }

  .hero .hero-slogan {
    font-size: 2rem;
    bottom: 70px;
  }

  .timeline {
    width: 100% !important;
  }

  .timeline-wrapper {
    display: flex;
    justify-content: center;
  }

  .timeline-wrapper .svg-img {
    display: none;
  }

  .timeline .event:last-child {
    margin-right: 0;
  }

  .timeline .event::before {
    bottom: -7px;
  }

  .timeline .event::after {
    left: 43px;
  }
}

@media (max-width: 992px) {

  .navbar {
    background: var(--primary-color);
    position: fixed;
  }

  .navbar-toggler, .navbar-toggler:focus, .navbar-toggler:active {
    border: none;
    box-shadow: none;
  }

  .navbar-collapse {
    background: var(--primary-color);
    margin: 0 -12px;
    text-align: right;
    color: #fff;
  }

  .hero-wrap {
    min-height: 100vh;
  }

  .hero .hero-title {
    font-size: 4rem;
  }

  .hero .hero-text-col {
    padding-top: 128px;
    padding-bottom: 0 !important;
  }

  .hero .hero-text-col span i {
    color: white;
  }

  .hero .hero-text-col span::after {
    width: 150px;
  }

  .hero .hero-text-col span::before {
    width: 150px;
  }

  .hero .hero-sub-title {
    top: 160px;
    font-size: 16px;
  }

  .hero .hero-slogan {
    font-size: 2rem;
    bottom: 30px;
  }

  .hero .hero-sub-title::after {
    width: 75px;
  }

  .about {
    background-image: none;
    background: #fff;
  }

  .about .img-col {
    justify-content: center;
    padding-left: 12px;
    padding-right: 12px;
  }

  .plans .wrapper:nth-child(2) {
    display: flex;
    justify-content: center;
    width: 75%;
    margin: auto;
  }

  .plans .accordion-col {
    margin-top: 32px;
    margin-left: 20px !important;
    margin-right: 0 !important;
  }

  .contact .row {
    flex-direction: column;
  }

  .contact .col:nth-child(2) {
    margin-top: 4rem;
  }
}

@media (max-width: 776px) {
  section,
  .section {
    color: var(--default-color);
    padding-top: 82px;
    padding-bottom: 82px;
    text-align: center;
    /* background-color: var(--primary-color); */
  }

  section h1,
  .section h1 {
    font-size: 3rem;
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 20px;
  }

  .navbar .nav-logo {
    width: 45px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero .hero-text-col {
    padding-bottom: 64px;
  }

  .hero .hero-title {
    position: relative;
    top: 0;
  }

  .hero .hero-sub-title span.min-text {
    display: none;
  }

  .hero .hero-sub-title {
    top: 85px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .hero .hero-sub-title::after {
    width: 75px;
    height: 1px;
  }

  .hero .hero-slogan-m {
    text-align: center;
    justify-content: center;
    width: 100%;
    background: var(--primary-color);
  }

  .hero .hero-slogan-m .hero-text {
    font-size: 1.3rem;
    margin-top: 8px;
  }

  .hero .hero-slogan-m .hero-text span.min-text {
    font-size: 1.3rem;
  }

  .sub-hero {
    display: none;
  }

  .plans {
    color: #fff;
  }

  .plans .timeline-wrapper .svg-img {
    display: none;
  }

  .timeline {
    display: flex;
    justify-content: center;
  }

  .timeline .event h2 {
    font-size: 1.25rem;
  }

  .timeline .event::before {
    bottom: -8px;
  }

  .timeline .event::after {
    left: 38px;
  }

  .plans-outro {
    background-size: contain;
  }

  .plans-outro h2 {
    font-size: 16px;
  }

  .plans-outro h2::after {
    height: 1px;
    width: 50px;
  }
}

@media (max-width: 576px) {
  section h1,
  .section h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .timeline .event {
    height: auto;
  }

  .timeline .event h2 {
    font-size: 1rem;
  }

  .timeline .event p {
    font-size: 0.8rem;
  }

  .timeline .event::after {
    left: 30px;
  }
}

@media (max-width: 400px) {
  section,
  .section {
    padding-top: 41px;
    padding-bottom: 41px;
  }

  section h1,
  .section h1 {
    font-size: 1.5rem;
  }

  .hero .hero-title {
    font-size: 2rem;
  }

  .hero .hero-text-col {
    padding-top: 64px;
    padding-bottom: 32px;
  }

  .hero .hero-text-col span::after,
  .hero .hero-text-col span::before {
    width: 100px;
  }

  .timeline .event {
    padding: .4rem;
  }

  .timeline .event:after {
    left: 25px;
    height: 12px;
    width: 12px;
    border: 3px solid #000;
    bottom: -38.5px;
  }

  .panel-heading a {
    font-size: 18px;
  }
}
