/* .secondSub {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    var('/Users/webdeveloper2/Desktop/bennewtemplate/assets/bg.jpg') center
      center;
  background-size: cover cover;
  color: red;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  background-blend-mode: screen multiply;
} */

/* * {
  border: 1px solid red;
} */

:root {
  --primary: #3f61ab;
  --secondary: #494d5b;
  /* --third: #878787;
  --four: #1d1d1b;
  --five: #c7a56d; */
}

@font-face {
  font-family:'Lato';
  src: url('../fonts/Lato-Regular.woff') format("woff");
  font-weight: normal;
}

@font-face {
  font-family:'Lato Light';
  src: url('../fonts/Lato-Light.woff') format("woff");
  font-weight: normal;
}

html {
  scroll-padding-top: var(--navbar-height);
}

.apply-font {
  font-family: 'Lato';
}

.extra-shadow {
  text-shadow: -1px -1px 0 #e3e3e330, 1px -1px 0 #e3e3e330, 1px 1px 0 #e3e3e330, 1px 1px 0 #e3e3e330;
}

.extra-light-shadow {
  text-shadow: -1px -1px 0 #d2d2d275, 1px -1px 0 #d2d2d275, 1px 1px 0 #d2d2d275, 1px 1px 0 #d2d2d275;
}

.dark-shadow {
  text-shadow: -1px -1px 0 #919191, 1px -1px 0 #919191, 1px 1px 0 #919191, 1px 1px 0 #919191;
}

.dark-medium-shadow {
  text-shadow: -1px -1px 0 #555, 1px -1px 0 #555, 1px 1px 0 #555, 1px 1px 0 #555;
}

.darker-shadow {
  text-shadow: -1px -1px 0 #212529, 1px -1px 0 #212529, 1px 1px 0 #212529, 1px 1px 0 #212529;
}

.table-col-first {
  background-color: rgb(221, 233, 246) !important;
  box-shadow: none !important;
}

.table-col-second {
  background-color: rgb(181, 210, 237) !important;
  box-shadow: none !important;
}

.list-spacing li {
  padding: 5px;
}

.chart {
  width: 50%;
  float: left;
  display: grid;
  gap: 1em;
  grid-template-rows: min-content minmax(0, 1fr) min-content;
  grid-template-columns: 1fr minmax(0, 3fr);
  grid-template-areas:
    'a h'
    'a c'
    'a f';
  height: calc(100vh - 2em);
  /*width: calc(100vw - 2em);  not necessary, but just to be explicit */
  height: 400px;
  margin: 1em;
  max-width: 950px;
  border: 1px solid #134369;
  border-radius: 10px;
  margin: 2%;
}

.chart div {
  grid-column: 1/4;
  grid-row: 2/3;
}
.chart h3 {
  background: var(--color-1);
  color: #000;
  line-height: 1.3;
  padding: 0.2em;
  text-align: center;
  grid-row: 1/2;
  grid-column: 1/4;
  text-align: center;
}

.preicons {
  display: block;
  text-align: right;
  margin-top: -25px;
}

.prephoneemail {
  margin-top: 15px;
}

.flex-wrapper {
  display: flex;
  flex-flow: row nowrap;
}

.single-chart {
  width: 33%;
  justify-content: space-around;
}

.single-chart2 {
  width: 33%;
  justify-content: space-between;
}

.circular-chart {
  display: block;
  margin: 10px auto;
  max-width: 80%;
  max-height: 150px;
}

.circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 3.8;
}

.circle {
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  animation: progress 1s ease-out forwards;
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

.circular-chart.orange .circle {
  stroke: #ff9f00;
}

.circular-chart.green .circle {
  stroke: #4cc790;
}

.circular-chart.blue .circle {
  stroke: #3c9ee5;
}

.percentage {
  fill: #666;
  font-family: sans-serif;
  font-size: 0.5em;
  text-anchor: middle;
}

.herostats {
  /* margin-left: 450px; */
  /* background-color: rgba(0, 0, 0, 0.5); */
  background-color: rgba(78, 106, 195, 0.75);
  padding: 30px;
  border: solid rgb(55, 92, 158) 2px;
}

.bizName {
  color: white;
}

.bizName-border {
  border: 3px solid black;
  padding: 0.75rem;
}

td{
  border-right: black solid 2px;
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  top:12.5% !important;
  margin-top:0 !important;
}

@media all and (max-width: 991px) and (min-width: 600px) {
  button.close {
    font-size:3rem !important;
  }
  .top-img-size {
    max-width:250px !important;
    /* margin-top:-25%; */
  }
}

@media all and (max-width: 599px) {
  button.close {
    font-size:2.5rem !important;
  }
  .top-img-size {
    max-width:200px !important;
    /* margin-top:-20%; */
  }
  .bizName-border {
    border:none;
  }
}

@media all and (max-width: 330px) {
  .herostats {
    padding:15px;
  }
  .two-pic-btn {
    width: 200px !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .bizName {
    font-size: 2rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .bizName {
    font-size: 1.5rem;
  }
}
