:root {
    --primaryColor: #199385;
    --primaryColorLight: #d5f3d9; /* 68f1e0; 30c7b5;*/
    --secondaryColor:black;
    --bodyTextColorWhite: #f3f6f3;
    --bodyTextColor: darkblue;
    --bodyTextColorDark: #1a1a1a;
    --sectionPadding: 20px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden!important;
}
body, html {
    font-family: Poppins, sans-serif;
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--secondaryColor);
/*    background: linear-gradient(0deg,var(--primaryColor) 0,var(--bodyTextColor) 35%);*/
}

img {
    max-width: 100%;
    height: auto;
}

p {
    line-height: 1.7em;
    font-size: 1.1em;
}

a,li,p,span {
    color: #e8e8e8;
    margin: 0;
}
.link-button {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    width: 11.25rem;
    text-decoration: none;
    font-weight: 700;
    margin: 5px 0;
    color: #fff;
    border-radius: 20px;
    background-color: var(--primaryColor);
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 0;
    text-align: center;
}
.link-button:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 0%;
    border-radius: 20px;
    background: #fba72f;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
}
.link-button:hover:before {
    width: 100%;
}

.cs-title {
    max-width:500px;
    padding-bottom: 20px;
    color: var(--primaryColorLight);
}
.cs-title-dark {
    max-width:500px;
    padding-bottom: 20px;
    color: var(--primaryColor);
}

.cs-title h1{
    font-weight: 800;
    font-size: 2.3em;
    line-height: 1.3em;
    color: var(--bodyTextColor);
    max-width: 100%;
    margin-bottom: 20px;
}

.cs-title h2{
    font-weight: 300;
    font-size: .9em;
    max-width: 94%;
    line-height: 1.3em;
    color: var(--primaryColor);
    max-width: 100%;
    margin-bottom: 50px;
}

.top-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.logo-container {
    position: absolute;
    left: 20px;
    transform: translateY(-10%);
}

.logo {
    width: 150px;
    height: auto;
    border-radius:10px;
}

main {
  padding: 20px;
}

.container {
    max-width: 100%;
    display: flex;
    flex-grow: 1;
    padding: 20px;
}

.main-panel {
    flex-grow: 1;
}

/* Override layout for smaller screens (vertical stacking) */
@media (max-width: 768px) {
    .container {
/*	min-width: 389px;
	max-width: 380px;*/
	display: block;
  }

  .main-panel {
    flex: 1;
    margin-bottom: 20px;
  }
}

footer {
  background-color: #f0f0f0;
  color: var(--primaryColor);
  padding: 20px;
  text-align: center;
}

footer p, a, li{
    color: var(--primaryColor);
}
.footer-info {
    display: flex;
    justify-content: space-around;
}

.footer-aside {
    text-align: left;
}

i {
    color: var(--primaryColor);
}
