:root {
  --primary-color: #125050;
  --secondary-color: #247070;
  --dark-background-color:#f0f3f3;
  --text-color: #125050;
}

[data-theme="light"] {
  color-scheme: light;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

.has-vertically-aligned-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

* {
  box-sizing: border-box;
}

html {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
  width: 100%;
  min-height: 100%;
}

.header-wrapper {
  padding-bottom: 30px;
}

.hero {
  background:rgba(255, 255, 255, 1.00);
  color: white;
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.hero .title {
  font-size: 5rem;
  color: white;
}

.hero .subtitle {
  padding: 5px;
}

.hero .profession {
  color: var(--primary-color);
  font-size: 1.7rem;
}

.hero .hero-foot {
  height: 50px;
  background: var(--primary-color);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.082);
}

.hero .hero-foot .hero-foot--wrapper {
  margin: 7px auto;
  height: 50px;
}

.hero .hero-foot .hero-foot--wrapper .hero-menu-desktop {
  line-height: 38px;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 1px;
  font-size: 1rem;
}

.hero .hero-foot .hero-foot--wrapper .hero-menu-desktop ul li {
  display: inline-block;
  padding-right: 15px;
  padding-left: 15px;
}

.hero .hero-foot .hero-foot--wrapper .hero-menu-desktop ul li.is-active a {
  border-bottom: 2px solid var(--primary-color);
}

.hero .hero-foot .hero-foot--wrapper .hero-menu-desktop ul li a {
  color: white;
}

.hero .hero-foot .hero-foot--wrapper .hero-menu-desktop ul li a:hover {
  color: white;
  border-bottom: 2px solid white;
}

.main-content {
  padding-top: 2rem;
  color: var(--primary-color);
  font-family: 'Poppins', sans-serif;
}

.main-content .section-dark {
  background-color: var(--dark-background-color);
  padding: 60px 0px;
}

.main-content .section-light {
  padding: 30px;
}

.main-content .section-light.business {
  padding-bottom: 50px;
}

.main-content .section-light.business .is-larger {
  font-size: 1.2rem;
}

@media (max-width: 599px) {
  .main-content .section-light.business .about-links {
    text-align: center;
  }
}

.main-content .section-light.business .right-image img {
  border-radius: 11px;
  margin: 20px;
  box-shadow: 0 5px 20px rgba(14, 25, 80, 0.3);
}

.main-content ul.business {
  color: var(--primary-color);
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.main-content ul.business .head {
  font-weight: bold;
}

.main-content ul.business .content {
  font-weight: normal;
  padding: 5px;
}

.main-content ul.business a {
  color: var(--secondary-color);
}

.main-content ul.business a:hover {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

@media (max-width: 599px) {
  .main-content .section-light.business .right-image img {
    margin: auto;
  }
}

.main-content .section-title {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 1.8rem;
  letter-spacing: 2px;
  padding-bottom: 30px;
}


.footer {
  bottom: 0;
  width: 100vw;
  padding: 0px;
  text-align: center;
  background: var(--primary-color);
  color: whitesmoke;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.footer a {
  padding: 0rem 1rem 1rem 1rem;
  color: lightgrey;
}

.footer a i {
  font-size: 1.5rem;
  padding: 0px 10px;
}

.footer a .nav-item {
  color: whitesmoke;
}

.fa-download {
  color: #43485c;
}

::-webkit-scrollbar {
  width: 8px;
  background-color: rgba(245, 245, 245, 0);
}

::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #43485c;
}

.white
{color:ghostwhite}