:root {
  --clr_accent: #1BBCF0;
  --clr_accent_2: #003399;
  --clr_hover: #fcab64;
  --clr_active: #ffffff;
  --clr_font_dark: #000000;
  --clr_background_bright: #ffffff;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .mobile_navbar_container {
    display: block;
  }

  .desktop_navbar_container {
    display: none;
  }

  .desktop_header {
    display: none;
  }

  .section {
    padding: 1rem 5% 5rem 5%;
  }

  .flex_container>div {
    margin: 0;
    min-width: 300px;
  }

  .logo {
    height: 130px;
    opacity: 1;
  }

  .header_main {
    font-family: IBM Plex Serif;
    font-size: 150%;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--clr_active);
    line-height: .85;
  }

  .header_main_sub {
    font-family: IBM Plex Serif;
    font-size: 200%;
    font-weight: 900;
    margin-top: 0;
    padding-top: 0;
    color: var(--clr_active);
    line-height: .85;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .mobile_navbar_container {
    display: block;
  }

  .desktop_header {
    display: none;
  }

  .desktop_navbar_container {
    display: none;
  }

  .section {
    padding: 1rem 7.5% 5rem 7.5%;
  }

  .flex_container>div {
    margin: 1rem;
    min-width: 300px;
  }

  .logo {
    height: 130px;
    opacity: 1;
  }

  .header_main {
    font-family: IBM Plex Serif;
    font-size: 150%;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--clr_active);
    line-height: .85;
  }

  .header_main_sub {
    font-family: IBM Plex Serif;
    font-size: 200%;
    font-weight: 900;
    margin-top: 0;
    padding-top: 0;
    color: var(--clr_active);
    line-height: .85;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .mobile_navbar_container {
    display: block;
  }

  .desktop_header {
    display: none;
  }

  .desktop_navbar_container {
    display: none;
  }

  .section {
    padding: 1rem 10% 5rem 10%;
  }

  .flex_container>div {
    margin: 1rem;
    min-width: 300px;
  }

  .logo {
    height: 130px;
    opacity: 1;
  }

  .header_main {
    font-family: IBM Plex Serif;
    font-size: 150%;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--clr_active);
    line-height: .85;
  }

  .header_main_sub {
    font-family: IBM Plex Serif;
    font-size: 200%;
    font-weight: 900;
    margin-top: 0;
    padding-top: 0;
    color: var(--clr_active);
    line-height: .85;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .mobile_navbar_container {
    display: none;
  }

  .mobile_header {
    display: none;
  }

  .desktop_header {
    display: block;
  }

  .desktop_navbar_container {
    display: block;
  }

  .section {
    padding: 1rem 12.5% 5rem 12.5%;
  }

  .flex_container>div {
    margin: 1rem;
    min-width: 200px;
  }

  .logo {
    height: 180px;
    opacity: 1;
  }

  .header_main {
    font-family: IBM Plex Serif;
    font-size: 200%;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--clr_active);
    line-height: .85;
  }

  .header_main_sub {
    font-family: IBM Plex Serif;
    font-size: 300%;
    font-weight: 900;
    margin-top: 0;
    padding-top: 0;
    color: var(--clr_active);
    line-height: .85;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .mobile_navbar_container {
    display: none;
  }

  .mobile_header {
    display: none;
  }

  .desktop_header {
    display: block;
  }

  .desktop_navbar_container {
    display: block;
  }

  .section {
    padding: 1rem 15% 5rem 15%;
  }

  .flex_container>div {
    margin: 1rem;
    min-width: 200px;
  }

  .logo {
    height: 180px;
    opacity: 1;
  }

  .header_main {
    font-family: IBM Plex Serif;
    font-size: 200%;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--clr_active);
    line-height: .85;
  }

  .header_main_sub {
    font-family: IBM Plex Serif;
    font-size: 300%;
    font-weight: 900;
    margin-top: 0;
    padding-top: 0;
    color: var(--clr_active);
    line-height: .85;
  }
}

body {
  font-family: 'IBM Plex Serif', Georgia, 'Times New Roman', Times, serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--clr_font_dark);
  height: 100%;
  margin: 0;
  padding: 0;
}

.flex_container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex_container>div {
  flex-grow: 2;
}

.padding_5 {
  padding-top:5%
}

.flex_15 {
  flex-basis: 15%;
}
.flex_30 {
  flex-basis: 30%;
}

.flex_45 {
  flex-basis: 45%;
}

.flex_center {
  display: flex;
  text-align: center;
  justify-content: center;
}

.desktop_navbar_container {
  background-color: var(--clr_background_bright);
  box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.75);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.desktop_navbar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-color: var(--clr_background_bright);
  padding: .5rem 1rem .5rem 1rem;
}

.desktop_navbar>div {
  display: flex;
  flex-direction: row;
  justify-content: start;
  flex-wrap: wrap;
}

.mobile_navbar_container {
  position: fixed;
  width: 100%;
  top: -210px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.75);
  z-index: 1000;
}

.mobile_navbar_container:hover {
  top: 0;
  transition-duration: 1s;
}

.mobile_navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 1rem 0 1rem;
  background-color: var(--clr_background_bright);
}

.mobile_navbar>div {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.mobile_navbar_trigger {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  background-color: var(--clr_background_bright);
  padding: .5rem 1rem 0 1rem;
  font-weight: 300;
  border-top: lightgray solid 1px;
}

.mobile_menu_trigger {
  font-size: 200%;
  font-weight: 300;
}

.desktop_navbar_link {
  font-weight: 300;
  color: var(--clr_font_dark);
  padding: .5rem;
  text-decoration: none;
}

.desktop_navbar_link:hover,
.desktop_navbar_link:focus {
  color: var(--clr_hover);
}

.desktop_navbar_link:active {
  background-color: var(--clr_active);
}

.mobile_navbar_link {
  font-weight: 300;
  color: var(--clr_font_dark);
  padding: .2rem;
  text-decoration: none;
}

.mobile_navbar_link:hover,
.mobile_navbar_link:focus {
  color: var(--clr_hover);
}

.mobile_navbar_link:active {
  background-color: var(--clr_active);
}

h1,
h2,
h3 {
  text-align: center;
  font-family: 'IBM Plex Mono', Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
}

h2 {
  font-size: 3em;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--clr_font_bright);
  height: 100vh;
  padding: 1rem;
}

.parallax_desktop {
  background-image: url('images/123987456_large.jpg');
  height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax_mobile {
  background-image: url('images/123987456_small.jpg');
  height: 100vh;
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer {
  text-align: center;
  padding: 1rem;
  bottom: 0;
  margin-top: auto;
  background-color: var(--clr_background_bright);
  border-top: 3px solid var(--clr_font_dark);
}

.footer>div {
  padding: .5rem;
}

.footer_link {
  color: var(--clr_accent);
  padding: 0 1% 1% 1%;
}

.footer_link:hover,
.footer_link:focus {
  color: var(--clr_hover);
}

a.link {
  color: var(--clr_accent);
}

a.link:hover,
a.link:focus {
  color: var(--clr_hover);
}

a.cta {
  color: black;
  padding: 1.5rem 3rem;
  font-weight: 700;
  text-align: center;
  border: var(--clr_font_dark) solid 2px;
  cursor: pointer;
}

a.cta:hover {
  color: var(--clr_hover)
}

ul.no_symbol_checklist {
  list-style: none;
  text-align: left;
}

ul.checklist {
  list-style: none;
  text-align: left;
}

li {
  padding-top: 1rem;
}

ul.checklist li:before {
  color: var(--clr_accent);
  content: "\2714\A0";
}

.faq_question {
  display: block;
  padding: .4rem 1rem;
  margin: 1% 0;
  text-align: left;
  cursor: pointer;
  border-bottom: lightgray solid 2px;
}

.faq_answer {
  text-align: left;
  padding-left: 1rem;
  padding-bottom: 1rem;
}

.faq_question:hover {
  color: var(--clr_hover);
}

input+.faq_question+.faq_answer {
  display: none;
}

input:checked+.faq_question+.faq_answer {
  display: block;
}

input[type="checkbox"] {
  display: none;
}

.logo_small_container_container {
  display: flex;
  flex-direction: row;
}

.logo_small_container {
  padding-left: .5rem;
  line-height: 0;
}

.logo_small_name {
  font-size: 98%;
}

.logo_small_title {
  font-weight: 400;
}

.logo_small {
  height: 50px;
}

.symbol_container {
  color: var(--clr_accent);
  font-size: 250%;
  text-align: center;
}

.text_accent {
  color: var(--clr_accent);
}

/* Style Section */
.style-section {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.15em;
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}

.style-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMidYMid slice' viewBox='10 10 80 80'%3E%3Cdefs%3E%3Cstyle%3E@keyframes rotate%7B0%25%7Btransform:rotate(0deg)%7D100%25%7Btransform:rotate(360deg)%7D%7D.out-top%7Banimation:rotate 90s linear infinite;transform-origin:13px 25px%7D.out-bottom%7Banimation:rotate 112s linear infinite;transform-origin:84px 93px%7D%3C/style%3E%3C/defs%3E%3Cpath fill='%2360d0f7' class='out-top' d='M37-5C25.1-14.7,5.7-19.1-9.2-10-28.5,1.8-32.7,31.1-19.8,49c15.5,21.5,52.6,22,67.2,2.3C59.4,35,53.7,8.5,37-5Z'/%3E%3Cpath fill='%2360d0f7' class='out-bottom' d='M105.9,48.6c-12.4-8.2-29.3-4.8-39.4.8-23.4,12.8-37.7,51.9-19.1,74.1s63.9,15.3,76-5.6c7.6-13.3,1.8-31.1-2.3-43.8C117.6,63.3,114.7,54.3,105.9,48.6Z'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: lighten;
}

.style-section > * {
  position: relative;
  z-index: 0;
}

.style-section h2 {
  font-family: 'Permanent Marker', cursive;
  font-size: 4em;
}

/* Service Icons */
.service-icon {
  margin-bottom: 1rem;
  text-align: center;
}

.service-icon svg {
  transition: transform 0.3s ease;
}

.service-icon svg:hover {
  transform: scale(1.1);
}

/* Compatible Section */
.compatible-section {
  font-size: 1.1em;
  position: relative;
  background-color: #ffffff;
  text-transform: uppercase;
}

.compatible-section h2 {
  font-size: 4em;
}

