/* Fonts */
:root {
  --default-font: 'Inter', sans-serif;
  --heading-font: 'Inter', sans-serif;
  --nav-font: 'Inter', sans-serif;
}

body,html{
  font-family: "Inter", sans-serif !important;
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6{
  font-family: "Inter", sans-serif !important;
  font-weight: 600;
}
::placeholder{
  font-family: "Inter", sans-serif !important;
  font-weight: 300;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #32353a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0658a8; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #3a3939;  /* The default color of the main navmenu links */
  --nav-hover-color: #0658a8; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #3a3939; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0658a8; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

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

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

a {
  color: var(--accent-color);
  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 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
/*  background-color: rgb(0 0 0 / 15%);*/
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 70px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: #0658a8;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 7px 28px;
  margin: 5px;
  transition: 0.3s;
  border-radius: 27px;
}

.btn:hover {
  background: #dc3545 !important;
  border-color: #dc3545 !important;
  color: white !important;
}

.header .btn-getstarted:hover {
  background: #dc3545;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .headerbtn {
    order: 2;
  }
}

.scrolled .header {
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
  background-color: #3a3c3d96;
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.5);
  --nav-hover-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #32353a;
  --nav-color: #3a3939;
  --nav-hover-color: #0658a8;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #f3f4ef;
  font-size: 14px;
  padding-bottom: 30px;
  position: relative;
}

.footer .footer-top {
  padding-top: 30px;
}

.footer .footer-about .logo {
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  color: #000;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 25px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #000;
  display: inline-block;
  line-height: 1;
  text-decoration: underline;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .footer-links ul a:hover {
  color: #000;
}

.footer .store-icons img {
    width: 150px;
    margin-bottom: 10px;
}

.footer-icon {
  margin-right: 40px;
  font-size: 2.5rem !important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-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(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  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: #0658a8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  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;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.page-title nav 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);
  background-color: var(--background-color);
  padding: 30px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 64px;
    padding: 20px 0;
  }
}

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

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

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .heroback {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000030;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: white;
} 

.hero-overlay h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
}

.text-theme { color: #0658a8; }

.hero-overlay div {
    color: var(--contrast-color);
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.hero-overlay div a img {
    height: 60px;
}

.hero:before {
  content: "";
/*  background: color-mix(in srgb, var(--background-color), transparent 50%);*/
  position: absolute;
  inset: 0;
  z-index: 2;
}

.main-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000030;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
    color: white;
} 

.main-overlay h1 {
    color: #fff;
    font-size: 4rem;
    font-weight: 700;
}

.main-overlay .btn {
    color: var(--contrast-color);
    background: #0658a8;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 7px 28px;
    margin: 5px;
    transition: 0.3s;
    border-radius: 27px;
}

.main-overlay div {
    color: var(--contrast-color);
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.main-overlay div a img {
    height: 60px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.title-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 25px;
}

.background-title {
    font-size: 6rem;
    color: #00000017; /* Light gray color for background text */
    text-transform: uppercase;
    font-weight: 900;
    position: relative;
    width: 100%;
    z-index: 1;
}

.background-title span {
    color: #0658a82b; /* Blue color for the "Services" text */
}

.foreground-title {
    font-size: 4rem;
    color: black; /* Color for the "Our" text */
    font-weight: 900;
    position: absolute;
    bottom: 11%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-shadow: 2px 2px 4px #0000005c;
    width: auto;
    white-space: nowrap;
}

.foreground-title span {
    color: #0658a8; /* Blue color for the "Services" text */
}

.card-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 10px;
}

.card-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.card-container img {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000030;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    text-align: center;
    color: white;
}

.card-overlay h3 {
    margin-top: auto;
    text-transform: uppercase;
    font-weight: bold;
    z-index: 3;
    color: #fff;
    text-decoration: underline;
}

.card-overlay .btn {
    margin-top: auto;
    color: var(--contrast-color);
    background: #0658a8;
    font-weight: 600;
    padding: 7px 28px;
    transition: 0.3s;
    border-radius: 27px;
}

/*--------------------------------------------------------------
# whyus Section
--------------------------------------------------------------*/
.whyuscard-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 50px;
    border-radius: 25px;
}

.whyuscard-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    object-fit: cover;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.whyuscard-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000030;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    color: white;
}

.whyuscard-overlay h1 {
    font-weight: 600;
    z-index: 3;
    color: #fff;
    text-decoration: underline;
}

.whyuscard-overlay a {
    margin-top: 20px;
    color: var(--contrast-color);
    background: #0658a8;
    font-weight: 600;
    padding: 7px 28px;
    transition: 0.3s;
    border-radius: 27px;
}

.owl-carousel {
    position: relative;
    padding-top: 60px; /* Adjust to create space for nav buttons */
}

.owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding: 10px; /* Adjust padding as needed */
    box-sizing: border-box;
}

/* Styling Owl Navigation Buttons with Increased Specificity */
.owl-carousel .owl-nav button.owl-next, 
.owl-carousel .owl-nav button.owl-prev {
    background-color: #333 !important; 
    color: #fff !important;
    border-radius: 50%;
    padding: 5px 13px !important; /* Adjust padding as needed */
    margin-left: 5px !important;
    cursor: pointer !important;
}


/* If you need different styles for the prev button */
.owl-carousel .owl-nav .owl-prev {
  margin-right: 5px !important; /* Adjust spacing if needed */
}

.cureer-card{
  border: unset;
}

.cureer-img {
  position: relative;
  height: 300px;
  border-radius: 30px;
}

.cureer-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: #00000030;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: white;
    border-radius: 30px;
    font-size: 3rem;
}

.cureer-title{
  text-decoration: underline;
  margin-bottom: 20px;
  font-weight: 600;
}

.cureerno-title{
  text-align: center;
  font-size: 2rem;
  color:#dc3545;
}

@media screen and (max-width: 768px) {
  .header .logo img {
      max-height: 40px;
  }
  .hero {
    min-height: 50vh;
  }
  .foreground-title {
    font-size: 2rem;
  }
  .background-title {
    font-size: 2.5rem;
  }
  .card-container {
    border-radius: 10px;
    margin-bottom: 0px;
  }
  .footer-icon {
    margin-right: 10px;
  }
  .hero-overlay h1 {
      color: #fff;
      font-size: 2rem;
      font-weight: 700;
  }

  .hero-overlay div a img {
      margin-bottom: 10px;
      height: 35px;
  }

  .main-overlay div a img {
      margin-bottom: 10px;
      height: 35px;
  }

  .main-overlay h1 {
      font-size: 2rem;
  }

  .title-wrapper {
    margin-bottom: 20px;
  }

  .header .btn-getstarted {
      margin: 0 5px 0 0;
      padding: 6px 12px;
      font-size: 1rem;
  }

  .whyuscard-container {
    height: 250px;
  }

  .whyuscard-container img {
    object-fit: unset;
    width: 100%;
    height: 100%;
  }
}

.faq .accordion-item{
  border:1px solid black !important;
  margin-bottom: 10px;
  border-radius: unset;
}

.faq .accordion-button{
  border-bottom:1px solid black !important;
}

/*travel.html*/

.travel .card {
  border: none;
  border-radius: 35px;
  overflow: hidden;
}

.travel .card img {
  border-radius: 15px;
  object-fit: cover;
  height: 230px;
  width: 100%;
}

.travel .card-body {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 21%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.travel .card-body h5 {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.travel .btn {
  border-radius: 50px;
  background-color: #0658a8;
  padding: 5px 30px;
  color: white;
  width: auto;
}

/*business.html*/

.business .card {
  border: none;
  border-radius: 35px;
  overflow: hidden;
}

.business .card img {
  border-radius: 15px;
  object-fit: cover;
  height: 230px;
  width: 100%;
}

.business .card-body {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 21%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.business .card-body h5 {
  font-weight: 700;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.business .btn {
  border-radius: 50px;
  background-color: #0658a8;
  padding: 5px 30px;
  color: white;
  width: auto;
}

.businesscal .leftimg{
  width: 70%;
}

.businesscal .righttext{
  font-size: 3.5rem;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.businesscal .righttext span{
  color: #0658a8;
  font-weight: 700;
}

.businesscal1 .formcard{
  background-color: #efefed;
  padding: 60px 30px;
  border-color: white;
  border-radius: 40px;
}

.businesscal1 hr{
  opacity: 1;
  margin: 2rem 0;
  border-top: 2px solid #bdbaba;
}

.businesscal1 button{
  color: var(--contrast-color);
  background: #0658a8;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 7px 28px;
  margin: 5px;
  transition: 0.3s;
  border-radius: 27px;
} 

@media screen and (max-width: 768px) {
  .businesscal .righttext{
    font-size: 2rem;
    padding-top: 15px;
  }
}

.businesscal3 .btn{
  color: var(--contrast-color);
  background: #0658a8;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 7px 28px;
  margin: 25px 0px;
  transition: 0.3s;
  border-radius: 27px;
} 

.businesscal2 .card{
  background-color: #efefed;
  padding: 20px 10px;
  border-color: white;
  border-radius: 20px;
}

.businesscal3 .card{
  background-color: #efefed;
  padding: 20px 10px;
  border-color: white;
  border-radius: 20px;
}

/*travel1.html*/

.traveldetails .topdiv p{
  font-size: 1.2rem;
  margin-bottom: 0px;
}

.traveldetails .bottomdiv p{
  font-size: 1.2rem;
  margin-bottom: 0px;
  padding-top: 30px;
}

.traveldetails .bottomdiv h3{
  font-weight: 700;
  color: #0658a8;
  padding-top: 30px;
}

.traveldetails .bottomdiv .btn{
  margin-top: 30px;
  color: var(--contrast-color);
  background: #0658a8;
  font-weight: 600;
  padding: 7px 35px;
  font-size: 1.2rem;
  transition: 0.3s;
  border-radius: 27px;
}

.traveldetails .topdiv h3{
  font-weight: 700;
  color: #0658a8;
  padding-top: 30px;
  padding-bottom: 30px;
}

.traveldetails .card{
  background-color: #efefed !important;
  border: unset;
  border-radius: 25px;
}

.traveldetails .card h5{
  min-height: 48px;
  overflow: hidden;
}

.traveldetails .card img{
  padding: 20px 20px 0px 20px;
  width: 60%;
  display: block;
  margin: auto;
}

#businessformModal .btn{
  color: var(--contrast-color);
  background: #0658a8;
  font-weight: 600;
  padding: 7px 35px;
  margin: 5px;
  transition: 0.3s;
  border-radius: 27px;
}
/*founder.html*/

.founder h1{
  font-size: 3rem;
  padding-bottom: 30px;
  font-weight: 700;
}

.founder h1 span{
  color: #0658a8;
}

@media screen and (max-width: 768px) {
  .founder h1{
    font-size: 2rem;
    padding-bottom: 10px;
  }
  .footer .footer-links ul a{
    font-size: 1rem;
  }
}

/* Modal styling for #loginModal and #registerModal */
#loginModal .modal-content, #registerModal .modal-content {
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#loginModal .modal-header, #registerModal .modal-header {
    background: linear-gradient(135deg, #0658a8, #d54746);
    color: #fff;
    padding: 1.5rem;
}

#loginModal .modal-title, #registerModal .modal-title {
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
}

#loginModal .modal-body, #registerModal .modal-body {
    padding: 2rem;
}

#loginModal .form-control, #registerModal .form-control {
    border-radius: 8px;
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
}

#loginModal .form-control:focus, #registerModal .form-control:focus {
    box-shadow: none;
    border-color: #6a11cb;
}

/* Button styling for #loginModal and #registerModal */
#loginModal .btn-primary, #registerModal .btn-primary,
#loginModal .btn-secondary, #registerModal .btn-secondary {
    color: var(--contrast-color);
    background: #0658a8;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 7px 28px;
    margin: 5px;
    transition: 0.3s;
    border-radius: 27px;
}

/* Animations for #loginModal and #registerModal */
#loginModal .fade-down, #registerModal .fade-down {
    animation: fadeDown 0.5s ease-out;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#career-modal .modal-content {
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#career-modal .modal-header {
    background: linear-gradient(135deg, #0658a8, #d54746);
    color: #fff;
    padding: 1.5rem;
}

#career-modal .btn-success {
    color: var(--contrast-color);
    background: #0658a8;
    font-weight: 600;
    padding: 7px 28px;
    margin: 5px;
    transition: 0.3s;
    border-radius: 27px;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}
.fw-bold {
    font-weight: 900 !important;
}