/* Start Servify Care Calculator styles */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}

body {
  background: #FFFFFF;
}

body {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #1f2937;
}

h1 {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 700;
}
h2 + p {
  margin-top: 1rem;
}

p {
  color: #6b7280;
}
p:not(:last-of-type) {
  margin-bottom: 1em;
}
p + h1, p + h2, p + h3, p + h4, p + h5, p + h6 {
  margin-top: 1.5em;
}

nav {
  margin: 0 auto;
  padding: 0.5rem 1rem;
  max-width: 1110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
@media screen and (max-width: 991px) {
  nav {
    flex-direction: column;
    text-align: center;
  }
}
nav h1 {
  font-size: 1.25rem;
  margin: 0;
}
nav img {
  width: 180px;
}

header {
  background-color: #0047BB;
  min-height: 25rem;
  height: initial;
  display: flex;
  align-items: center;
  background-image: url("../images/broadband-funding-kit-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.6;
  background-color: #003da2;
  opacity: 0.8;
}

.header-container {
  color: #FFFFFF;
  width: 100%;
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
  padding: 3.75rem 1rem;
  isolation: isolate;
}
.header-container h1 {
  font-size: 2.5rem;
}
.header-container p {
  color: #FFFFFF;
}
.header-container p:first-of-type {
  font-size: 1.5rem;
}

.layout {
  width: 100%;
  max-width: 1110px;
  margin: 3.75rem auto 0;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 3.75rem;
  display: grid;
  grid-template-areas: "intro intro" "sidebar content";
  grid-template-rows: auto 1fr;
  grid-template-columns: 2fr 4fr;
  grid-template-columns: 1fr 2fr;
  grid-template-columns: 2fr 3fr;
  grid-gap: 2rem;
}
@media screen and (max-width: 900px) {
  .layout {
    grid-template-areas: "intro" "sidebar" "content";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.intro {
  grid-area: intro;
  text-align: center;
  margin-bottom: 1.75rem;
}
.intro img {
  display: inline-block;
  width: 180px;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 901px) {
  .intro h1 {
    padding-left: 15%;
    padding-right: 15%;
  }
  .intro p {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.sidebar {
  grid-area: sidebar;
}
.sidebar .sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 1.5rem;
}
.sidebar p strong {
  color: #1f2937;
}
.sidebar .result-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #FFFFFF;
  background-color: #0047BB;
  border: 1px solid #0047BB;
  border-radius: 0.375rem;
  padding: 1rem;
  margin-bottom: 1rem;
}
.sidebar .result-container:first-of-type {
  margin-top: 1.5rem;
}
.sidebar .result-container:last-of-type {
  margin-bottom: 1.5rem;
}
.sidebar .result-container .result-intro {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.25;
}
.sidebar .result-container .result-numbers {
  display: flex;
  justify-content: space-between;
}
.sidebar .result-container .result-numbers span {
  display: block;
}
.sidebar .result-container .result-numbers span:first-child {
  font-size: 0.875rem;
  font-weight: 600;
  position: relative;
}
.sidebar .result-container .result-numbers span:first-child.icon:before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='icon icon-tabler icon-tabler-corner-down-right' width='36' height='36' viewBox='0 0 24 24' stroke-width='2' stroke='%234BD800' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cdesc%3EDownload more icon variants from https://tabler-icons.io/i/corner-down-right%3C/desc%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'%3E%3C/path%3E%3Cpath d='M6 6v6a3 3 0 0 0 3 3h10l-4 -4m0 8l4 -4'%3E%3C/path%3E%3C/svg%3E");
  position: absolute;
  left: auto;
  bottom: 0;
  -webkit-transform: translate(-100%, 20%);
          transform: translate(-100%, 20%);
}
.sidebar .result-container .result-numbers span:first-child svg {
  position: absolute;
  bottom: 0;
  color: #00B140;
  left: 0;
  bottom: 0;
  -webkit-transform: translate(-100%, 20%);
          transform: translate(-100%, 20%);
}
.sidebar .result-container .result-numbers span:nth-child(2) {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 700;
}
.sidebar .result-container .result-numbers .result-numbers-first {
  text-align: left;
  width: 50%;
}
.sidebar .result-container .result-numbers .result-numbers-second {
  text-align: right;
  width: 50%;
}
.sidebar .result-container .small-price {
  font-weight: 600;
}

.content {
  grid-area: content;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-template-columns: 1fr;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 1rem;
}
.content h3 {
  grid-column: 1/span all;
  grid-column: 1/-1;
  font-size: 1.25rem;
  font-weight: 700;
}
.content h3:not(:first-child) {
  margin-top: 1rem;
}
.content a.item {
  text-decoration: none;
  color: inherit;
  border: 1px solid #d8dadf;
  transition: border-color 0.15s ease;
}
.content a.item:hover {
  border-color: #0047BB;
}
.content .item {
  border: 1px solid #0047BB;
  border-radius: 0.375rem;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
}
.content .item .item-content {
  display: inherit;
  flex-direction: inherit;
  align-items: inherit;
  gap: 0.5rem;
  padding: 1rem 1rem 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.content .item .item-img {
  padding: 0.5rem;
  width: 40px;
  border-radius: 0.25rem;
  background-color: #f4f5f6;
  flex-shrink: 0;
}
.content .item .item-img svg {
  fill: #6b7280;
}
.content .item .item-img.word svg {
  fill: #2B579A;
}
.content .item .item-img.pdf svg {
  fill: #EC1C24;
}
.content .item .item-title {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 600;
}
.content .item .item-description {
  font-size: 0.875rem;
  color: #6b7280;
}
.content .item .item-footer {
  padding: 0 1rem 1rem;
  width: 100%;
  text-align: right;
}
.content .item .item-footer span {
  color: #0047BB;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.15s ease;
  padding: 0.25em 0.5em;
  border-radius: 0.25em;
}
.content .item .item-footer span:hover {
  background-color: #f4f5f6;
}
.content .item .item-counter {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 0.5rem 0.5rem;
}
.content .item .item-counter span {
  font-size: 1.5rem;
  line-height: 1rem;
  cursor: default;
}
.content .item .item-counter .btn {
  font-size: 1.5rem;
  line-height: 1;
  border: 1px solid transparent;
  background-color: transparent;
  background-image: none;
  cursor: pointer;
  width: 25%;
}

button.reset-btn {
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid #00B140;
  border-radius: 0.375rem;
  padding: 0.375rem 1.75rem;
  background: #00B140;
  color: #1f2937;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  margin-top: 0.75rem;
}
button.reset-btn:hover, button.reset-btn:active, button.reset-btn:focus {
  background: #0047BB;
  border: 1px solid #0047BB;
  color: #FFFFFF;
}

.d-none {
  display: none !important;
}

/*# sourceMappingURL=styles.css.map */