:root {
  --clr-primary-10: hsl(211, 93%, 18%);
  --clr-primary-20: hsl(211, 93%, 28%);
  --clr-primary-40: hsl(211, 93%, 48%);
  --clr-primary-60: hsl(211, 93%, 68%);
  --clr-primary-70: hsl(211, 93%, 78%);
  --clr-primary-80: hsl(211, 93%, 88%);
  --clr-primary-100: hsl(211, 93%, 100%);
  --clr-lt-gray:     hsl(0,0%,84%);
  /* Light Gray       */
  --clr-son-silver:  #7a7a7a;
  /* Sonic Silver     */
  --ff-primary: 'Roboto', sans-serif;
  --ff-accent: 'Playfair Display', serif;
  --variable-width: 90%;
}

.container {
  margin: 0 auto;
  width: 90%;
  max-width: 1128px;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reverse-row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 1128px) {
  .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .reverse-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  min-height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  margin: 0;
  font-family: var(--ff-primary);
  font-weight: 400;
  height: 100%;
}

h1,
h2,
h3 {
  font-family: var(--ff-primary);
}

.main__text {
  /*For dark backgrounds*/
  color: #fff;
  text-align: center;
}

.main__text-dark {
  /*For light backgrounds*/
  color: var(--clr-ind-blue);
  text-align: center;
}

.main__title {
  text-shadow: 2px 2px 2px black;
  font-size: 1.75rem;
}

.main__title-dark {
  color: var(--clr-ind-blue);
  text-shadow: 2px 2px 2px var(--clr-son-silver);
  font-size: 1.75rem;
}

.main__text p {
  margin: 2em 0;
  font-size: 1rem;
}

.quick-nav {
  color: #fff;
}

.product-desc__list__item {
  font-size: 1.125rem;
}

.form__title {
  color: #fff;
  text-shadow: 2px 2px 4px black;
  margin-bottom: 1em;
  font-size: 1.75rem;
  text-align: center;
}

@media (min-width: 1128px) {
  .main__text {
    width: 55%;
    color: #fff;
    text-align: center;
  }
  .main__text-dark {
    width: 55%;
    color: var(--clr-ind-blue);
  }
  .main__title {
    text-shadow: 2px 2px 2px black;
    font-size: 36px;
  }
  .main__title-dark {
    font-size: 36px;
    text-shadow: none;
  }
  .main__text p {
    margin: 2em 0;
    font-size: 21px;
  }
  .main__text-dark p {
    margin: 2em 0;
    font-size: 21px;
  }
  .form__title {
    font-size: 36px;
  }
}

.btn {
  margin: 1em 2em;
  display: inline-block;
  background-color: #0874EB;
  padding: 0.5em 1.2em;
  border-radius: 250px;
  color: #fff;
  font-family: var(--ff-primary);
  font-size: 21px;
  text-decoration: none;
  -webkit-box-shadow: 5px 5px 10px black;
          box-shadow: 5px 5px 10px black;
  -webkit-transition: -webkit-transform 200ms ease-in;
  transition: -webkit-transform 200ms ease-in;
  transition: transform 200ms ease-in;
  transition: transform 200ms ease-in, -webkit-transform 200ms ease-in;
}

.btn:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.btn-row a {
  margin: 0 auto;
  margin-top: 0;
  text-align: center;
}

.form__submit {
  margin: 0 auto;
  margin-top: 2em;
  padding: 0;
  background-color: #0874EB;
  color: #fff;
  font-size: 1.125em;
  border: none;
  border-radius: 200px;
  -webkit-box-shadow: 5px 5px 10px black;
          box-shadow: 5px 5px 10px black;
  -webkit-transition: -webkit-transform 250ms ease-in-out 100ms;
  transition: -webkit-transform 250ms ease-in-out 100ms;
  transition: transform 250ms ease-in-out 100ms;
  transition: transform 250ms ease-in-out 100ms, -webkit-transform 250ms ease-in-out 100ms;
}

.form__submit:hover {
  cursor: pointer;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  text-shadow: 1px 1px 2px black;
}

.footer {
  padding: 3em;
  background-color: var(--clr-lt-gray);
}

.footer p {
  text-align: center;
}

.footer p + p {
  margin-top: 2em;
}

.main_form {
  margin-top: 6em;
  margin-bottom: 6em;
}

.main_form_bg {
  background-color: var(--clr-primary-20);
  padding: 3em;
  border-radius: 30px;
}

.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main_form .form__item {
  padding: 0.7em;
}

.main_form .form__item {
  margin-bottom: 1em;
}

.form__name,
.form__email,
.form__company,
.form__subject,
.form__message {
  width: 100%;
}

@media (min-width: 680px) {
  .form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .form__name,
  .form__email,
  .form__company,
  .form__subject {
    width: 49%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .form__message {
    width: 100%;
  }
}

header {
  position: relative;
  width: 100%;
  text-align: left;
  padding: 2em 0;
}

header, nav {
  background-color: var(--clr-lt-gray);
}

.logo-link {
  margin-left: 5vw;
}

.logo-img {
  width: 271px;
  margin: 0;
}

.visible {
  display: none;
}

.nav-toggle-label {
  position: absolute;
  top: 0;
  right: 5vw;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  cursor: pointer;
  background-color: var(--clr-primary-40);
  height: 2px;
  width: 2em;
  border-radius: 2px;
  position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
}

.nav-toggle-label span::before {
  bottom: 7px;
}

.nav-toggle-label span::after {
  top: 7px;
}

nav {
  text-align: left;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: -webkit-transform 400ms ease-in-out;
  transition: -webkit-transform 400ms ease-in-out;
  transition: transform 400ms ease-in-out;
  transition: transform 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  left: 0;
}

nav li {
  margin-bottom: 1em;
  margin-left: 5vw;
}

nav a {
  color: black;
  font-size: 21px;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  -webkit-transition: opacity 100ms ease-in-out;
  transition: opacity 100ms ease-in-out;
}

nav a:hover {
  color: var(--clr-son-silver);
}

.visible:checked ~ nav {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.visible:checked ~ nav a {
  opacity: 1;
  -webkit-transition: opacity 250ms ease-in-out 300ms;
  transition: opacity 250ms ease-in-out 300ms;
}

@media (min-width: 70rem) {
  .nav-toggle-label {
    display: none;
  }
  header {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 371px minmax(600px, 3fr) 1fr;
        grid-template-columns: 1fr 371px minmax(600px, 3fr) 1fr;
    padding: 4em;
  }
  .logo-link {
    margin: 0;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
  }
  .logo-img {
    max-width: 100%;
    width: 100%;
    display: block;
  }
  nav {
    all: unset;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3 / 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  nav li {
    margin-left: 3em;
    margin-bottom: 0;
  }
  nav a {
    opacity: 1;
    position: relative;
  }
  nav a::before {
    content: '';
    display: block;
    height: 3px;
    background: var(--clr-primary-40);
    position: absolute;
    top: -0.75em;
    left: 0;
    right: 0;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: -webkit-transform ease-in-out 250ms;
    transition: -webkit-transform ease-in-out 250ms;
    transition: transform ease-in-out 250ms;
    transition: transform ease-in-out 250ms, -webkit-transform ease-in-out 250ms;
  }
  nav a:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  nav a::after {
    content: '';
    display: block;
    height: 3px;
    background: var(--clr-primary-40);
    position: absolute;
    bottom: -0.75em;
    left: 0;
    right: 0;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: -webkit-transform ease-in-out 250ms;
    transition: -webkit-transform ease-in-out 250ms;
    transition: transform ease-in-out 250ms;
    transition: transform ease-in-out 250ms, -webkit-transform ease-in-out 250ms;
  }
  nav a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

.dpl-info__title {
  padding-top: 8rem;
}

.dpl-info__title-light {
  color: white;
  text-shadow: 2px 2px 5px black;
}

.dpl-info {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.apps .app_list {
  list-style: none;
}

.apps .app_img {
  width: 100%;
  min-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.2em;
}

.apps .app_list__item {
  padding: 0.6em;
  font-size: 1rem;
}

.dpl-info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dpl-info-col {
  width: 100%;
}

.apps .app_vid {
  width: 90vw;
  height: calc(90vw/1.7777);
  max-width: 510px;
  max-height: 300px;
}

.dpl-info-add {
  text-align: center;
  text-decoration: none;
  color: white;
}

.dpl-map {
  width: 100%;
  height: calc(var(--variable-width)/1.333);
  max-width: 600px;
  max-height: 400px;
  margin-top: 2em;
}

@media (min-width: 1128px) {
  .apps .app_list__item {
    font-size: 1.2125rem;
  }
  .apps .col {
    width: 45%;
  }
  .apps .app_img {
    margin-top: 0;
  }
  .dpl-info-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .dpl-info-col {
    width: 45%;
  }
  .apps .app_vid {
    width: 510px;
    height: 300px;
    margin: 0;
    padding: 0;
  }
}

.align-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.align-top .col {
  text-align: left;
}

.align-top .col p {
  margin: 2em 0;
  font-size: 1.125rem;
}

.align-top .col + .col {
  margin-top: 4em;
}

.align-top img {
  width: 100%;
  max-width: 100%;
  border-radius: 30px;
  -webkit-box-shadow: 5px 5px 10px black;
          box-shadow: 5px 5px 10px black;
}

.vid {
  width: 90vw;
  height: calc(90vw / 1.777);
  -webkit-box-shadow: 5px 5px 10px black;
          box-shadow: 5px 5px 10px black;
}

@media (min-width: 740px) {
  .vid {
    width: 701px;
    height: 396px;
  }
}

@media (min-width: 760px) {
  .align-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .align-top .col p {
    font-size: 1.3125rem;
  }
  .align-top .col + .col {
    margin-left: 4em;
    margin-top: 0;
  }
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main__showcase {
  background-color: var(--clr-primary-20);
  padding: 1.5em;
  border-radius: 35px;
  -webkit-box-shadow: 5px 5px 10px black;
          box-shadow: 5px 5px 10px black;
}

.main__img img {
  width: 100%;
  max-width: 100%;
  border-radius: 35px;
  -webkit-box-shadow: 5px 5px 10px black;
          box-shadow: 5px 5px 10px black;
}

.more-products {
  margin-bottom: 12rem;
}

.more-products__title {
  font-family: var(--ff-primary);
  font-weight: 800;
  font-size: 2.125em;
  text-align: center;
  margin-top: 2rem;
}

.more-products .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1128px) {
  .main {
    min-height: 80vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main__showcase {
    background-color: var(--clr-primary-20);
    padding: 2em;
    border-radius: 35px;
    -webkit-box-shadow: 5px 5px 10px black;
            box-shadow: 5px 5px 10px black;
  }
  .more-products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .more-products .col + .col {
    margin-left: 1em;
  }
  .more-products__subtitle {
    font-family: var(--ff-primary);
    font-weight: 600;
    font-size: 2em;
    margin-bottom: 0.25em;
  }
}

.product__intro__title {
  font-size: 2.125rem;
}

.product__intro__text {
  font-size: 1.5rem;
  margin-top: 1em;
  line-height: 1.4;
}

.product__features {
  background-color: #a3a3a3;
  padding-bottom: 3em;
}

.product__features__text ul {
  list-style: none;
}

.product__features h2 {
  font-size: 2.125rem;
  margin-bottom: 0.5em;
}

.product__features li {
  font-size: 1.5rem;
}

.product__features .row_feat {
  padding: 5em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.bg--color--light {
  background-color: var(--clr-son-silver);
}

.bg--color-dark {
  background-color: var(--clr-primary-20);
}

.product-desc {
  padding: 5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.product-desc__list {
  list-style: none;
}

.col__text {
  text-align: center;
  width: 60%;
}

.col__title {
  margin: 0.75em;
}

#specs {
  scroll-behavior: smooth;
}

/* Internal page links */
.quick-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.subheading {
  font-size: 1.4rem;
  margin-bottom: 0.5em;
}

.quick-links a {
  color: white;
  text-decoration: none;
  font-size: 1.3125rem;
  margin-bottom: 0.3em;
  -webkit-transition: -webkit-transform 250ms ease-in-out 100ms;
  transition: -webkit-transform 250ms ease-in-out 100ms;
  transition: transform 250ms ease-in-out 100ms;
  transition: transform 250ms ease-in-out 100ms, -webkit-transform 250ms ease-in-out 100ms;
}

.quick-links a:hover {
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
  text-shadow: 2px 2px 5px black;
}

.link {
  margin-top: 2em;
  text-align: center;
}

.link a {
  margin: 0;
  padding: 0;
  display: inline-block;
  text-decoration: none;
  font-size: 1.3125rem;
  color: var(--clr-primary-20);
  -webkit-transition: -webkit-transform 250ms ease-in-out 100ms;
  transition: -webkit-transform 250ms ease-in-out 100ms;
  transition: transform 250ms ease-in-out 100ms;
  transition: transform 250ms ease-in-out 100ms, -webkit-transform 250ms ease-in-out 100ms;
}

.link a:hover {
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
}

/* End links */
/* Typography */
.thermal__title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1em;
}

.thermal__subtitle {
  font-family: var(--ff-primary);
  font-weight: 700;
  font-size: 1.5rem;
  padding: 1em 0;
  text-align: center;
}

.thermal__text {
  font-family: var(--ff-primary);
  font-weight: 500;
}

/* Typography end */
/* Thermal features section */
.thermal__features {
  padding: 6em 0;
}

.features-row {
  margin-bottom: 4em;
}

.thermal-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.thermal-col + .thermal-col {
  margin-top: 2em;
}

/* features end */
/* Thermal specs section */
.thermal__info {
  padding: 6em 0;
  background-color: #a3a3a3;
}

.thermal__specs {
  padding: 3em 0;
}

.spec-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.specs-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid black;
}

.m-specs-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid black;
  width: 100%;
}

.table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.col-header {
  background-color: var(--clr-primary-40);
  font-weight: 600;
  color: white;
  letter-spacing: 1.6px;
  text-shadow: 2px 2px 2px black;
}

.col-header, .blue-1, .blue-2 {
  padding: 0.2em;
}

.blue-1 {
  background-color: var(--clr-primary-60);
}

.blue-2 {
  background-color: var(--clr-primary-70);
}

.item-col-30 {
  width: 30%;
}

.item-col-70 {
  width: 65%;
}

.thermal__list {
  margin-bottom: 2em;
  padding: 0 2em;
}

.thermal__list__item {
  padding: 0.2em;
}

.thermal__list__item + .thermal__list__item {
  margin-top: 0.5em;
}

/* specs end */
/* MiniTouch */
.m-table {
  margin: 0 auto;
  margin-bottom: 2em;
  border: 1px solid black;
  max-width: 980px;
}

.m-table .table .col {
  width: 50%;
  padding: 0.5em;
}

.m-table .col:nth-child(1) {
  border-right: 1px solid black;
}

@media (min-width: 768px) {
  .thermal__title {
    font-size: 3rem;
  }
  .spec-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .table-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .thermal__specs {
    padding: 3em;
  }
}
/*# sourceMappingURL=main.css.map */