@font-face {
  font-family: 'Libre Baskerville';
  src: url('../webfonts/LibreBaskerville-Regular.ttf');
  font-weight: 400;
}
@font-face {
  font-family: 'Libre Baskerville';
  src: url('../webfonts/LibreBaskerville-Bold.ttf');
  font-weight: 700;
}
:root {
  --bgc: #ffffff;
  --bgw: #fff;
  --color-primary: #1b75bd;
  --color-success: #29bb9c;
  --color-brown: #f59520;
  --color-dgreen: #314945;
  --color-red: #ff6c6a;
  --color-purp: #423b6c;
  --color-border: #eee;
  --space-5: 5px;
  --space-10: 10px;
  --space-20: 20px;
  --space-30: 30px;
  --font-heading: 'Libre Baskerville', serif;
  --box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  --sec-padding: var(--space-10) var(--space-20);
}
body {
  background-color: var(--bgc);
  font-family: 'Open Sans', sans-serif;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  font-size: 16px;
}
a {
  color: #757575;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.input-group {
  display: flex;
  align-items: center;
}
.mr-10 {
  margin-right: var(--space-10);
}
.mr-20 {
  margin-right: var(--space-20);
}
.mb-30 {
  margin-bottom: var(--space-30);
}
.separator {
  border-bottom: 1px solid var(--color-border);
}
.header-container {
  max-width: 90%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.topbar {
  padding: 5px 0;
}
.topbar ul {
  list-style-type: none;
  margin-bottom: 0;
}
.topbar ul li {
  display: inline;
}
.topbar .fontResize {
  margin-left: 10px;
}
.topbar .text-sizing {
  display: inline-block;
}
.topbar .fa {
  font-size: 12px;
  color: var(--color-primary);
}
.topbar .accessibility--control {
  background-color: var(--color-primary);
  color: var(--bgc);
  border: 1px transparent;
  border-radius: 2px;
}
.headline {
  position: relative;
  padding-left: 20px;
}
.headline::before {
  content: '';
  width: 5px;
  height: 60px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: var(--color-primary);
}
.cslide {
  height: 600px;
}
.carousel-inner {
  position: relative;
}
.top-right {
  position: absolute;
  top: 40px;
  right: 40px;
  color: var(--bgw);
}
.banner-form {
  position: absolute;
  bottom: 120px;
  left: 200px;
  padding: 25px 20px;
  background-color: #97eeff;
  border-radius: 2px;
  max-width: 500px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.custom-btn {
  border: 1px solid transparent;
  background-color: var(--color-primary);
  color: var(--bgw);
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  padding: 5px 10px;
  transition: all 0.3s ease-in-out;
}
.custom-btn:hover {
  background-color: var(--bgw);
  color: var(--color-primary);
}
.green {
  color: #3cb043;
}
.footer {
  background-color: var(--color-primary);
  color: var(--bgc);
  padding-top: 20px;
  padding-bottom: 20px;
}
.step {
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  background-color: cream;
}
.v-stepper {
  position: relative;
  top: 8px;
  /*   visibility: visible; */
}
/* regular step */
.step .circle {
  background-color: white;
  border: 3px solid gray;
  border-radius: 100%;
  width: 20px;
  /* +6 for border */
  height: 20px;
  display: inline-block;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.step .line {
  top: 20px;
  left: 8.5px;
  /*   height: 120px; */
  height: 100%;
  position: absolute;
  border-left: 3px solid gray;
}
.step.completed .circle {
  visibility: visible;
  background-color: #0696d7;
  border-color: #0696d7;
}
.step.completed .line {
  border-left: 3px solid #0696d7;
}
.step.active .circle {
  visibility: visible;
  border-color: #0696d7;
}
.step.empty .circle {
  visibility: hidden;
}
.step.empty .line {
  /*     visibility: hidden; */
  /*   height: 150%; */
  top: 0;
  height: 150%;
}
.step:last-child .line {
  border-left: 3px solid white;
  z-index: -1;
  /* behind the circle to completely hide */
}
.content {
  margin-left: 20px;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 5px 10px;
  border-radius: 4px;
}
