/*
Website: Anatrofer
Author:      Ebi Fleck
Author URI:  https://cdp-unit.com
*/



/**************************************
 * Base
 *************************************/

:root {
  --min-font-size: 18px;  /* Set a minimum font size */
  --max-font-size: 23px;  /* Set a maximum font size */
 
} 
  
body {font-size: clamp(var(--min-font-size), 1.5vw, var(--max-font-size)); }
h1 {font-size: clamp(1.6rem, 4vw, 2.8rem);line-height:1.3}
h2 {font-size: clamp(1.6rem, 4vw, 2.0rem);line-height:1.2;margin-bottom:0.5em}
h3 {font-size: clamp(1.3rem, 4vw, 1.4rem);line-height:1.2}
p {margin-bottom: 1.3em}
li {margin-bottom: 0.5em}


/**************************************
 * Navigation
 *************************************/

.nav-highlight {
background-color:#f96f3c;
color:#fff;
padding:10px 35px;    
}

.nav-highlight:hover {
background-color:#afe0e2;
color:#162023;
padding:10px 35px; 
transition:0.5s;    
}

.el-content.uk-button {
line-height:1.4;
padding: 10px 20px  
}

/**************************************
 * Elements
 *************************************/

p.white-box {
  background-color:#fff;
  padding: 2em 3em;
  border:1px solid #dcd7d2;
  border-left:3px solid #f96f3c52;
}