@font-face {
  font-family: "ITC Avant Garde Gothic Std Book";
  src: url("/fonts/ITCAvantGardeStd-Bk.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ITC Avant Garde Gothic Std Bold";
  src: url("/fonts/ITCAvantGardeStd-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ITC Avant Garde Gothic Std Demi";
  src: url("/fonts/ITCAvantGardeStd-Demi.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ITC Avant Garde Gothic Std Medium";
  src: url("/fonts/ITCAvantGardeStd-Md.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Pro Bold";
  src: url("/fonts/GothamPro-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

:root {
  --black: #1b2034;
  --blue: #1096b0;
  --brightnavy: #1171E4;
  --darkblue: #232943;
  --error: #d90000;
  --green: #27ae60;
  --lightblue: #328efc;
  --orange: #ff861a;
  --red: #eb5757;
  --seaweed: #13859b;
  --spanishorange: #eb7206;
  --techpop-blue: #2683FE;
}

body {
  font-family: "ITC Avant Garde Gothic Std Book", sans-serif;
  font-size: 16px;
  margin: 0;
  background: #eee;
}

h1 {
  font-family: "ITC Avant Garde Gothic Std Bold";
  line-height: 130%;
  font-size: 50px;
}

h2 {
  font-family: "ITC Avant Garde Gothic Std Demi";
  font-size: 40px;
}

h3 {
  font-family: "ITC Avant Garde Gothic Std Bold";
  font-size: 30px;
}

h4 {
  font-family: "ITC Avant Garde Gothic Std Demi";
  font-size: 20px;
}

p {
  font-family: "ITC Avant Garde Gothic Std Book";
  font-size: 16px;
}

span {
  font-family: "ITC Avant Garde Gothic Std Book";
  font-size: 12px;
}

a {
  font-family: "ITC Avant Garde Gothic Std Book";
}

a,
a:hover,
a:visited,
a:link,
a:active {
  text-decoration: none !important;
  color: var(--techpop-blue);
}

textarea,
input,
select {
  font-family: "ITC Avant Garde Gothic Std Book", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: normal;
  border-radius: 0.5rem;
  padding: 0.5rem 0.9rem 0.5rem 0.9rem;
  border: 0;
  width: 100%;
  outline: none;
  color: white;
  background: inherit;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: white;
}
::-ms-input-placeholder { /* Microsoft Edge */
  color: white;
}

input {
  border-radius: 20px;
  text-decoration: none;
  outline: none;
  border: 0;
  box-sizing: border-box;
  background: transparent;
  color: white;
}

input[type="text"] {
  background: transparent;
}

button {
  background: transparent;
  border: 1.5px solid var(--blue);
  color: white;
  text-align: left;
  padding: 0px 30px;
  font-size: 16px;
  line-height: 16px;
  height: 40px;
  border-radius: 20px;
  font-family: "ITC Avant Garde Gothic Std Medium";
  outline: none;
  cursor: pointer;
  box-sizing: border-box;
}
button.filled {
  border: 1.5px solid transparent;
  background: var(--blue);
}
button.loginbtn,
button.filled.signup {
  height: 35px;
}
button.filled:hover {
  background: var(--seaweed);
}

.loader {
  position: fixed;
  z-index: 100;
  top: 48%;
  right: 50%;
  -webkit-animation: spin 1.2s linear infinite;
  -moz-animation: spin 1.2s linear infinite;
  animation: spin 1.2s linear infinite;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.hide {
  display: none !important;
}

.layout {
  padding-top: 10vh;
  max-width: 1920px;
  margin: auto;
  background-position: center center;
  background-image: url('/img/banner-top.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  text-align: center;
  padding-bottom: 20px;
}

/* login/register/support-request/confirm-email */
.sm-header-links {
  display: flex;
  flex-direction: column;
}
.sm-link {
  background: transparent;
  border: 1.5px solid var(--blue);
  color: white !important;
  outline: none;
  cursor: pointer;
  border-radius: 20px;
  font-size: 14px;
  height: 35px;
  margin-bottom: 7px;
  text-align: center;
  padding:10px;
  width: 80px;
  font-family: "ITC Avant Garde Gothic Std Medium";
}

.logo {
  margin-top: 1rem;
  margin-left: 1rem;
  cursor: pointer;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo-text {
  color: black;
  margin-left: 1rem;
}

.error {
  color: var(--red);
  font-family: "ITC Avant Garde Gothic Std Book";
}

.login-btn,
.register-btn,
.close-btn {
  border: 0;
  color: white;
  background: var(--techpop-blue);
  height: 42px;
  border-radius: 21px;
  padding: 0 1em 0 1em;
  font-family: "ITC Avant Garde Gothic Std Book";
  display: inline;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  width: 100%;
}

.login-btn:hover,
.login-btn:active,
.register-btn:hover,
.register-btn:active {
  background: var(--techpop-blue);
  color: white;
}

.support-request,
.login,
.register,
.forgot-password,
.confirm-email {
  padding: 30px 30px 45px 30px;
  width: 480px;
  height: 600px;
  margin-left: auto;
  margin-right: auto;
  background: var(--darkblue);
  border-radius: 7px;
  max-width: 100%;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.25);
}

.support-request .relative {
  position: relative;
  margin-top: 10px;
}
.support-request .error {
  position: absolute;
  top: -15px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.login p,
.register p {
  margin: 5px auto;
  color: white;
}

.register label {
  font-family: "ITC Avant Garde Gothic Std Book";
}

.login p > a {
  text-decoration: underline!important;
}

p.login-get-started {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  align-items: center;
  text-align: center;
  color: white;
  margin: 40px auto 5px auto;
}

.login input,
.register input {
  background: #0e142a;
}

.login div#icon,
.forgot-password div#icon {
  cursor: pointer;
}

.relative {
  position: relative;
}

.login-error {
  color: var(--red);
  font-family: "ITC Avant Garde Gothic Std Book";
  position: relative;
  top: -5px;
  font-size: 14px;
  line-height: 17px;
}

.forgot-psw-relative {
  position: relative;
}

.forgot-psw-relative a {
  position: absolute;
  right: 10px;
  top: 8px;
  color: var(--techpop-blue);
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
}

.logo {
  width: 190px;
  height: 78px;
  margin: 0;
}

.login h1,
.forgot-password h1,
.support-request h1,
.register h1,
.confirm-email h1 {
  font-family: "ITC Avant Garde Gothic Std Book";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
  margin-bottom: 44px;
  color: white;
  margin-top: 40px;
}
.confirm-email h1 {
  margin-top: 80px;
}

.support-request h1 {
  margin-bottom: 24px;
  text-transform: none;
  margin-top: 30px;
}
.support-request p {
  margin-top: 0;
  line-height: 150%;
}

.login input,
.register input {
  margin-bottom: 20px;
}

.forgot-password button {
  margin-top: 20px;
}
.forgot-password input {
  background: #0e142a;
}

.support-request {
  background: var(--darkblue);
  height: 660px;
}
.support-request p {
  color: white;
}
.support-request fieldset {
  border: none;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
.support-request label,
.support-request input,
.support-request textarea {
  display: block;
  background: #0e142a;
}

.support-request.reset-password label {
  background: transparent;
  color: #fff;
}
.support-request.reset-password input {
  color: #fff;
}
.support-request.reset-password .error {
  position: relative;
}
.support-request .comment {
  height: 100px;
}

.support-request.support-request-confirmation {
  height: 473px;
}
.support-request-confirmation {
  align-items: center;
}
.support-request-confirmation h1 {
  margin-top: 4rem;
}
.support-request-confirmation p,
.forgot-password-confirmation p,
.confirm-email p {
  color: white;
}
/* end login/register/support-request/confirm-email */

/* landing page */
.home {
  background: #eee;
  color: white;
  text-align: center;
  padding: 0;
}
.content {
  max-width: 1920px;
  margin: 0 auto;
  text-align: left;
  overflow-x: hidden;
}

svg.cutout {
  width: 100%;
  position: absolute;
}
.cuttext {
  fill: none;
  stroke-width: 0.8;
  stroke: var(--blue);
  opacity: 0.6;
  z-index: 2;
}
.subheader-cut,
.main-cut,
.contact-cut {
  position: absolute;
  left: 0px;
  top: 0px;
}
.main-top {
  font-family: "ITC Avant Garde Gothic Std Medium";
}

.header {
  height: 800px;
  background-image: url(/img/banner-top.jpg);
  background-position: center center;
  background-size: cover;
  position: relative;
  width: 100%;
}
.banner {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  padding: 0 90px;
  background-color: transparent;
}
.bannerbottom {
  width: 100%;
  position: relative;
  z-index: 0;
  object-fit: cover;
}
.bannerbottom {
  height: 457px;
}
.contact .banner {
  height: 457px;
  background: linear-gradient(90.15deg, #131623 23.98%, rgba(14, 16, 26, 0) 99.87%);
}
.banner-in {
  padding: 0 30px;
  max-width: 1280px;
  margin: 10px auto;
  display: flex;
  justify-content: space-between;
}
.banner-in > div#icon {
  margin-top: 6px;
}
.header-buttons {
  float: right;
  margin-top: 15px;
  display: flex;
}
.header-buttons button:first-child {
  margin-right: 20px;
}

.mainlogo span {
  display: inline-block;
  color: white;
  text-transform: none;
  font-family: "ITC Avant Garde Gothic Std Demi";
  font-size: 40px;
}
.mainlogo > h2 {
  color: var(--blue);
  text-transform: none;
}
.subheader-text h1 {
  position: relative;
  z-index: 3;
}
.subheader-cut {
  width: 890px;
}
.subtext {
  margin-bottom: 40px;
}
.subtext h3 {
  font-family: "Gotham Pro Bold";
}

.subheader {
  left: 0;
  padding-top: 128px;
  z-index: 1;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}
.subheader-text {
  text-align: center;
  margin: auto;
  margin-top: 65px;
  position: relative;
  max-width: 100%;
}

.subpanels {
  display: flex;
  text-align: center;
  justify-content: space-between;
  position: relative;
  max-width: 1280px;
  margin: auto;
}
.subpanels-left,
.subpanels-middle,
.subpanels-right {
  position: relative;
  padding-top: 50px;
  width: 310px;
  min-height: 250px;
  height: auto;
}
.subpanels-left {
  margin-left: 40px;
}
.subpanels-right {
  margin-right: 40px;
}
.subpanels-title {
  font-family: "ITC Avant Garde Gothic Std Medium";
  font-weight: bold;
  color: var(--blue);
  margin-bottom: 10px;
}
.subpanels-text {
  line-height: 150%;
  text-transform: none;
}
.subpanels-middle .subpanels-text {
  padding: 0 10px;
}
.subpanels-right .subpanels-text {
  padding: 0 15px;
}

.whitelink,
.whitelink:hover,
.whitelink:visited,
.whitelink:link,
.whitelink:active {
  color: white;
}

.main {
  background: var(--darkblue);
  margin: 0 auto;
  padding: 90px;
  text-align: center;
}
.main-top {
  width: 100%;
  max-width: 768px;
  margin: 0 auto 90px auto;
  line-height: 150%;
}
.main-middle {
  width: 500px;
  margin: auto;
  text-transform: uppercase;
  position: relative;
  line-height: 150%;
}
.main-middle h2 {
  position: relative;
  z-index: 3;
}
.main-cut {
  width: 350px;
  max-width: 100%;
}
.main-bottom {
  margin: 70px auto 0 auto;
}
.panels {
  display: flex;
  text-align: left;
  justify-content: center;
  position: relative;
}
.panels-title {
  font-family: "ITC Avant Garde Gothic Std Medium";
}
.panelimg {
  position: absolute;
  background: var(--darkblue);
  left: 30px;
  top: -18px;
  z-index: 4;
  min-width: 50px;
  padding: 0 8px;
}
.panels img {
  width: 34px;
}
.panels-left,
.panels-middle,
.panels-right {
  position: relative;
  border: 2px solid var(--blue);
  border-radius: 7px;
  padding: 30px;
  padding-top: 50px;
  width: 282px;
  min-height: 390px;
  height: auto;
  margin-right: 30px;
}
.panels-right {
  margin-right: 0px;
}
.panels-bar {
  width: 90px;
  height: 1px;
  background: white;
  margin: 20px 0;
}
.panels-title {
  font-weight: bold;
}
.panels-text {
  text-align: left;
  line-height: 150%;
}

.infogr {
  background: var(--darkblue);
  margin: 0 auto;
  padding: 0 40px;
  text-align: left;
}
.infogr-top {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  line-height: 150%;
  display: flex;
}
.infogr-top-left {
  padding-right: 40px;
}
.infogr-top-left h3 {
  margin-bottom: 20px;
}
.infogr-top-left-text {
  margin: 20px 0 10px;
}
.infogr-top-img {
  width: 100%;
  height: 160px;
  padding-left: 35px;
}
.infogr-top-img img {
  max-width: 215px;
}
.infogr-top-right {
  border-left: 3px dotted #1096B0;
}
.infogr-top-right-row {
  display: flex;
  margin-bottom: 20px;
  padding-left: 40px;
}
.infogr-top-right-col {
  margin-left: 20px;
}
.infogr-heading {
  font-family: "ITC Avant Garde Gothic Std Medium";
  margin-bottom: 10px;
}
.infogr-top-right-text {
  max-width: 600px;
}
.infogr-middle {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: auto;
  position: relative;
}
.infogr-middle img {
  margin: auto;
  width: 100%;
  max-width: 900px;
  object-fit: contain;
}
.infogr-middle-left,
.infogr-middle-right {
  position: absolute;
  bottom: 80px;
  max-width: 230px;
  font-size: 14px;
  text-align: center;
}
.infogr-middle-left {
  left: 5%;
}
.infogr-middle-right {
  right: 12%;
}
.infogr-middle-block-left,
.infogr-middle-block-right {
  position: relative;
}
.infogr-bottom {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 0 70px 0;
  border-top: 3px dotted #1096B0;
  line-height: 150%;
  display: flex;
}
.infogr-bottom-left h3 {
  margin: 20px 0 40px 0;
}
.infogr-bottom-left-row  {
  margin-bottom: 40px;
  padding-right: 60px;
}
.infogr-bottom-right-row {
  margin-bottom: 20px;
  padding-left: 40px;
}

.contact {
  width: 100%;
  height: 457px;
  position: relative;
  background: var(--black);
}
.contact-in {
  max-width: 1220px;
  margin: auto;
  position: relative;
}
.contact-in .contact-field,
.contact-in .contact-field-area {
  border: 2px solid var(--blue);
}
.contact-in .contact-field-area {
  padding: 8px 20px;
}
.contact-top {
  display: flex;
  margin-top: 95px;
  line-height: 150%;
}
.contact-top-title {
  width: 50%;
  text-transform: uppercase;
}
.contact-top-title h2 {
  position: relative;
  z-index: 3
}
.contact-top-text {
  width: 50%;
  padding-left: 15px;
  line-height: 150%;
}
.contact-top-full {
  display: none;
}
.contact-bot {
  display: flex;
  margin: 30px auto 0;
}
.contact-l {
  width: 50%;
  padding-right: 15px;
}
.contact-cut {
  width: 310px;
}
.contact-text {
  min-height: 72px;
  margin-bottom: 16px;
}
.contact-r {
  width: 50%;
  padding-left: 15px;
}
.submit button {
  float: right;
}
.contact-field,
.contact-field-area {
  height: 46px;
  border-radius: 25px;
  padding: 0px 20px;
  margin-bottom: 30px;
}
.contact-field {
  position: relative;
}
.contact-field label {
  display: inline-block;
  width: 70px;
}
.contact-field input {
  color: white;
  border: 0;
  height: 100%;
  padding: 0 5px;
}
.contact-field-area {
  height: 122px;
  padding: 0;
}
.contact-field-area textarea {
  color: white;
  border: 0;
  width: 100%;
  resize: none;
  overflow: hidden;
  padding: 2px 4px;
}

.footer {
  background: var(--black);
  display: flex;
  flex-direction: column;
  padding: 35px;
  padding-bottom: 5px;
}
.footer .address {
  text-align: left;
  margin-top: 30px;
}
.legal {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.legal a {
  color: white;
}


.warning {
  position: absolute;
  left: 15px;
  top: 50px;
  color: var(--red);
  font-size: 13px;
}

.showmsg {
  float: right;
  width: 343px;
  height: 80px;
  margin-right: 60px;
  padding: 16px;
  background-color: var(--black);
  text-transform: none;
  opacity: 0;
  transition: opacity 0.2s ease-in;
}
/* end landing page */

/* legal pages */
.legal-header {
  height: 300px;
}
.legal-banin {
  cursor: pointer;
}
.legal-sub {
  position: absolute;
  padding-top: 0px;
  top: -128px;
}
.legal-subtext {
  width: 760px;
  margin: 35px auto 30px auto;
}
.legal-cut {
  width: 520px;
}
.legal-date {
  float: right;
  margin: -3px 8px 0 0;
}
.legal-main {
  max-width: 1280px;
  margin: auto;
  width: 100%;
  padding: 0 25px;
  text-align: left;
  line-height: 150%;
}
.legal-main h3 {
  margin-bottom: 40px;
}
.legal-main h4 {
  margin-top: 40px;
}
.legal-b {
  font-weight: bold;
}
.legal-i {
  margin-top: 35px;
  font-style: italic;
}
/* end legal pages */

/* signup page */
.signup-content {
  width: 100%;
  height: 100%;
  min-width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0 0 30px;
  background-image: none;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.signup-logo {
  margin: 20px 0 60px;
  cursor: pointer;
}
.signup-logo img {
  height: 80px;
}
.signup-panels {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 30px;
}
.signup-panel {
  width: auto;
  max-width: 100vw;
  padding: 30px 20px;
  background: var(--darkblue);
  box-shadow: 0 10px 50px rgba(0,0,0,.25);
  letter-spacing: 0.3px;
}
.signup-panel-header {
  font-family: "ITC Avant Garde Gothic Std Medium";
  font-size: 24px;
}
.signup-panel-price {
  height: 42px;
  margin: 24px 0 26px;
  color: var(--lightblue);
  line-height: 150%;
}
.signup-panel-price span {
  font-family: "ITC Avant Garde Gothic Std Demi";
  font-size: 30px;
}
.signup-panel-price img {
  height: 56px;
  margin-top: -10px;
}
.signup-panel-price span:nth-child(2) {
  position: relative;
  top: 14px;
  margin: 0 5px;
  font-size: 56px;
}
.signup-panel-sub {
  margin-bottom: 12px;
}
.signup-panel-sub span {
  font-family: "ITC Avant Garde Gothic Std Medium";
  font-size: 18px;
}
.signup-panel-feats {
  line-height: 24px;
  text-align: left;
  max-width: 350px;
}
.feats-wrapper {
  display: flex;
}
p.feature {
  display: inline-block;
  width: 300px;
  margin: 0px 0px 0px 10px;
}
.signup-panel-feats-svg {
  vertical-align: -5.1px;
  display: inline-block;
  position: relative;
  top: 0px;
}
.signup-panel-feats span {
  margin-left: 12px;
  font-size: 16px;
  letter-spacing: 1px;
}
.signup-panel-button {
  margin-top: 20px;
}
.signup-panel-button button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1.5px solid var(--lightblue);
  background: var(--lightblue);
}
.signup-panel-button button:hover {
  border: 1.5px solid var(--brightnavy);
  background: var(--brightnavy);
}
.signup-panel-button button.orange {
  border: 1.5px solid var(--orange);
  background: var(--orange);
}
.signup-panel-button button.orange:hover {
  border: 1.5px solid var(--spanishorange);
  background: var(--spanishorange);
}
.signup-panel-footnote {
  padding: 3px 0 0 35px;
  font-size: smaller;
}

.signup-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100vw;
  left: 0px;
  top: 0px;
  min-height: 100vh;
}
.signup-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0px;
  top: 0px;
  background: #00022C;
  opacity: 0.7;
  z-index: 8;
}
.popup-buy,
.popup-contact,
.popup-msg {
  position: relative;
  z-index: 9;
  width: 386px;
  background: var(--darkblue);
}
.popup-contact {
  max-width: 100vw;
  height: fit-content;
}
.popup-close {
  height: 30px;
  padding: 10px 10px 0 0;
}
.popup-close div {
  float: right;
}
.popup-close-svg {
  cursor: pointer;
}
.popup-header {
  font-family: "ITC Avant Garde Gothic Std Medium";
  font-size: 20px;
  margin: 0 20px 25px;
}
.popup-header div:last-child {
  margin-top: 10px;
  font-size: 16px;
  padding: 0 8px;
}
.popup-form {
  padding: 30px 20px;
  position: relative;
}
.popup-field input,
.popup-field-area textarea {
  background: var(--black);
  border-color: var(--black);
  padding: 0 15px;
}
.popup-field {
  height: 42px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-field input {
  background: var(--black);
}
.popup-field-area textarea {
  min-height: 120px;
  border-radius: 25px;
  padding: 15px;
}
.popup-stripe {
  padding-top: 11px;
  position: relative;
  display: block;
  padding-left: 15px;
  background: var(--black);
  padding-right: 20px;
}
.StripeElement--webkit-autofill {
  background-color: var(--black) !important;
  -webkit-animation: none!important;
}
input:-webkit-autofill,
input:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s!important;
}
.popup-stripe.popup-field-warn {
  border: 1px solid var(--red);
}
#card-element {
  position: relative;
}
.popup-stripe-star {
  position: absolute;
  left: 140px;
  top: 12px;
  font-size: 16px;
}
.popup-pass-text {
  text-align: left;
  margin: -5px 0 25px;
  line-height: 150%;
}
.popup-buttons {
  display: flex;
  justify-content: space-between;
}
.popup-buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 158px;
  border: 1.5px solid var(--lightblue);
}
.popup-buttons button:hover {
  border: 1.5px solid var(--brightnavy);
}
.popup-buttons button.blue {
  background: var(--lightblue);
}
.popup-buttons button.blue:hover {
  border: 1.5px solid var(--brightnavy);
  background: var(--brightnavy);
}
.popup-warn-all-contact,
.popup-warn-all-buy {
  top: -7px;
  width: 100%;
  left: 0;
}
.popup-warn {
  top: 42px;
}
.contact-field .popup-field-warn,
.contact-field-area .popup-field-warn {
  border: 1px solid var(--red);
}

.popup-field.warn-tall {
  margin-bottom: 44px;
}

.popup-msg {
  width: 594px;
  height: 147px;
  background: var(--darkblue);
  padding: 30px;
}
.popup-msg-header {
  margin: 0 auto;
  font-size: 20px;
}
.popup-msg-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto;
  width: 48px;
  height: 48px;
  background: var(--black);
  border: 1px;
  border-radius: 50px;
}
.popup-msg-icon img {
  width: 28px;
}
.popup-msg-button {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.popup-msg-button button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  border: 1.5px solid var(--lightblue);
  background: var(--lightblue);
}
.popup-accepted {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.popup-accepted-label {
  margin: 3px;
  cursor: pointer;
  position: relative;
  left: 50px;
  user-select: none;
  text-align: left;
}
.popup-accepted-cb {
  display: none;
}
.popup-accepted-cb:checked + div#check {
  display: block;
}
.popup-accepted-label div#check {
  width: 30px;
  height: 30px;
  background-color: var(--black);
  border: 1px solid var(--black);
  border-radius: 2px;
  position: absolute;
  left: -50px;
  top: -2px;
}
/* end signup page */

/* discounts page */
.discounts-plans-page {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.discounts-plan {
  width: 594px;
  height: 93px;
  background: #232943;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.25);

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.discounts-plan-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.discounts-plan-label {
  font-family: 'ITC Avant Garde Gothic Std', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
}

.discounts-plan-value {
  font-family: 'ITC Avant Garde Gothic Std', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #328EFC;
}
.discounts-plan button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1.5px solid var(--orange);
  background: transparent;
}
.discounts-plan button:hover {
  border: 1.5px solid var(--orange);
  background: var(--spanishorange);
}
.discounts-plan button.orange {
  border: 1.5px solid var(--orange);
  background: var(--orange);
}
.discounts-plan button.orange:hover {
  border: 1.5px solid var(--spanishorange);
  background: var(--spanishorange);
}

.carousel-prev-button {
  width: 18px;
  height: 32px;
  background-position: center center;
  background-image: url('/img/arrow-prev.svg');
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 30px;
  cursor: pointer;
}
.carousel-next-button {
  width: 18px;
  height: 32px;
  background-position: center center;
  background-image: url('/img/arrow-next.svg');
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 30px;
  cursor: pointer;
}
.carousel-container {
  width: 1200px;
  overflow: hidden;
  display: flex;
}

.carousel-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 30px;
  position: relative;
  left: 0;
  transition-property: left;
  transition-duration: .5s;
}

.carousel-indicator {
  box-sizing: border-box;

  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 30px 7px 0 22px;

  background: transparent;
  border: 1px solid #328EFC;
}

.carousel-indicator.selected {
  background: #FF861A;
  border: none;
}
/* end discounts page */

/* support page */
.supp-header {
  height: 300px;
}
.supp-banin {
  cursor: pointer;
}
.supp-sub {
  position: absolute;
  padding-top: 0px;
  top: -128px;
}
.supp-subtext {
  width: 760px;
}
.supp-cut {
  width: 520px;
}
.supp-main {
  max-width: 1280px;
  margin: auto;
  width: 100%;
  padding: 20px 150px;
  text-align: left;
  height: 650px;
}
.supp-main-in {
  width: fit-content;
  margin: auto;
}
.supp-main-sub {
  margin: 50px 0 30px;
}
.supp-field {
  float: none;
  width: 570px;
  margin-bottom: 40px;
}
.supp-field input,
.supp-field textarea {
  font-size: 16px;
}
.supp-submit {
  width: fit-content;
}
.supp-showmsg {
  margin-left: 50px;
  margin-right: 0px;
}
/* end support page */


/* signin */
.install .content {
  max-width: 1920px;
  margin: 0 auto;
  text-align: left;
}
.signin-main {
  padding: 169px 0 171px 0;
  background: #f8f9fd;
  display: flex;
  justify-content: center;
  color: black;
  line-height: normal;
}
.signin-content {
  height: 100vh;
}
.signin-left,
.signin-right {
  width: 50%;
}
.signin-left-in {
  margin: 0 30px 0 auto;
  width: 570px;
}
.signin-logo img {
  width: 282px;
}
.signin-title {
  font-family: "ITC Avant Garde Gothic Std Demi";
  font-size: 25px;
  font-weight: normal;
  line-height: 52.2px;
  margin-top: 50px;
}
.signin-text {
  margin-top: 14px;
}
.signin-text div {
  margin-bottom: 14px;
}
.signin-left-in p {
  margin-top: 20px;
  line-height: 24px;
  max-width: 545px;
}
.signin-left-input {
  width: 490px;
  background: white;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 11px 15px;
  box-shadow: 0px 3px 15px rgba(0,0,0,.07);
}
.signin-left-in ul {
  padding-inline-start: 20px;
  line-height: 32px;
  margin-bottom: 40px;
}
.signin-right {
  padding: 20px 0;
}
.signin-label {
  display: flex;
  margin: 3px;
  cursor: pointer;
  position: relative;
  user-select: none;
}
.signin-cb {
  display: none;
}
.signin-cb:checked + div {
  background-color: #328efc;
}
.signin-cb:checked + div:after {
  display: block;
}
.signin-label div {
  min-width: 20px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 2px;
  margin-right: 20px;
}
.signin-label p {
  margin: 0;
}
.signin-label div:after {
  display: none;
  position: relative;
  content: '';
  left: 6px;
  top: 0px;
  width: 7px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(36deg);
}
.content.install-content {
  overflow-x: initial;
}
.new-register {
  display: flex;
  padding-top: 60px;
  max-width: 1020px;
  margin: 0 auto;
}
.new-register button:disabled {
  background: #ff861a69;
}
.new-register button {
  height: 44px;
  padding: 0 25px;
  background: var(--orange);
  color: white;
  text-align: left;
  border: 1px;
  border-radius: 25px;
  font-family: "ITC Avant Garde Gothic Std Medium";
  font-size: 16px;
  outline: none;
  cursor: pointer;
}
.new-register input[type="checkbox"] {
  height: 15px;
  box-shadow: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  margin: 3px 0 0 0;
}
.new-register .signin-cb {
  visibility: hidden;
}
.new-register input.error {
  border: 1px solid red;
  margin-bottom: 0;
}
.errormsg {
  font-size: 10px;
  margin-left: 15px;
  margin-top: 5px;
  color: red;
  line-height: 100%;
}
.new-register input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #222222;
  opacity: 1; /* Firefox */
  font-family: "ITC Avant Garde Gothic Std Book";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
}

.new-register input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #222222;
  font-family: "ITC Avant Garde Gothic Std Book";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
}

.new-register input::-ms-input-placeholder { /* Microsoft Edge */
  color: #222222;
  font-family: "ITC Avant Garde Gothic Std Book";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
}
/* end signin */

/* post-install */
.home.install {
  background: #f8f9fd;
  color: #222;
  padding: 0;
}
.home.install {
  padding-top: 40px;
}
.install-logo {
  display: flex;
  align-items: center;
  margin-left: 15%;
}
.install-logo img {
  height: 124px;
}
.install-main {
  display: flex;
}
.install-left,
.install-right {
  width: 50%;
  position: relative;
}
.new-register label a {
  color: var(--orange);
}
.new-register .left,
.new-register .right {
  width: 50%;
  position: relative;
}
.new-register .right {
  text-align: center;
  margin-top: 160px;
}
.new-register .right img {
  width: 100%;
  max-width: 500px;
}
.new-register h1 {
  font-family: "ITC Avant Garde Gothic Std Demi";
  font-size: 1.5vw;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0em;
  text-align: left;
  line-height: 150%;
  margin-bottom: 15px;
}
.new-register h3 {
  font-family: "ITC Avant Garde Gothic Std Book";
  font-size: 1vw;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0em;
  line-height: 150%;
  text-align: left;
  margin-bottom: 5px;
}
.new-register ul {
  line-height: 25px;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 30px;
}
.new-register input {
  color: #000;
  margin-top: 15px;
  background: #FFFFFF;
  box-shadow: 0px 3px 15px rgb(0 0 0 / 7%);
  border-radius: 20px;
  outline: none;
  border: 0;
  display: block;
  padding-top: 13px;
  padding-bottom: 10px;
  width: 80%;
  margin-bottom: 20px;
  padding-left: 15px;
}
.new-register .install-logo {
  align-items: center;
  justify-content: flex-start;
  margin-left: 0;
  margin-bottom: 70px;
}
.new-register .install-logo-text {
  font-family: "ITC Avant Garde Gothic Std Medium";
  font-size: 30px;
  margin-left: 20px;
}
.new-register .info-wrapper {
  margin-left: 10px;
}
.left button {
  margin-top: 20px;
}
.install-left {
  z-index: 4;
  display: flex;
  justify-content: flex-end;
}
.install-left.michaelbhagwandin,
.install-left.compass,
.install-left.juliehopkins {
  align-items: end;
}
.install-left img {
  height: calc(100vh - 164px);
  width: auto;
  position: relative;
}
.install-left.compass img,
.install-left.michaelbhagwandin img {
  position: relative;
  right: -420px;
}

.install-left.juliehopkins img {
  height: auto;
  width: 55vw;
  position: relative;
  right: 20px;
  max-width: 576px;
}

@media screen and (max-width: 1770px) {
  .install-left.compass img,
  .install-left.michaelbhagwandin img {
    height: 80%;
    position: relative;
    bottom: 18%;
    right: -300px;
  }
}
@media screen and (max-width: 1400px) {
  .install-left.compass img,
  .install-left.michaelbhagwandin img {
    right: -350px;
  }
}
@media screen and (max-width: 1200px) {
  .install-left.juliehopkins img {
    right: -20px;
  }
}
@media screen and (max-width: 1000px) {
  .install-left.juliehopkins img {
    right: -40px;
  }
}
@media screen and (max-width: 900px) {
  .install-left.compass img,
  .install-left.michaelbhagwandin img {
    display: none;
  }
  .install-left.compass,
  .install-left.michaelbhagwandin {
    width: 20%;
  }
  .install-rigth.compass,
  .install-rigth.michaelbhagwandin {
    width: 80%;
  }
}
@media screen and (max-width: 770px) {
  .install-left.juliehopkins img {
    display: none;
  }
  .install-left.juliehopkins {
    width: 20%;
  }
  .install-rigth.juliehopkins {
    width: 80%;
  }
}

.install-right {
  padding: 80px 0 0 34px;
}
.install-title {
  font-family: "ITC Avant Garde Gothic Std Demi";
  max-width: 650px;
  font-size: 1.5vw;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 34px;
}
.no-wrap {
  white-space: nowrap;
}
.install-arrow {
  position: absolute;
  right: calc(24px * 4.3);
  top: 20px;
  width: 356px;
  height: 378px;
  max-width: 400px;
  z-index: 1;
}
.install-arrow:nth-child(2) {
  display: none;
}
.install-text {
  font-family: "ITC Avant Garde Gothic Std Book";
  font-size: 25px;
}
.install-text div {
  margin-bottom: 20px;
}
.install-text span {
  font-family: "ITC Avant Garde Gothic Std Medium";
}
.install-text img {
  margin-top: 10px;
  margin-bottom: 20px;
  max-height: 330px;
  box-shadow: 0px 20px 20px 0px rgba(0,0,0,.04);
}
.install-text .step3 {
  margin-bottom: 10px;
}

.ios-install-banner {
  width: 100%;
  position: fixed;
  background: #333;
  padding: 10px 0;
  color: #fff;
  margin: 0 auto;
  bottom: 0;
  text-align: center;
  z-index: 9999;
}
.install-text button {
  position: relative;
  z-index: 9;
  height: 44px;
  margin-top: 10px;
  padding: 0 25px;
  background: var(--orange);
  color: white;
  text-align: left;
  border: 1px;
  border-radius: 25px;
  font-family: "ITC Avant Garde Gothic Std Medium";
  font-size: 16px;
  outline: none;
  cursor: pointer;
}
.install-text button.juliehopkins,
.install-text button.compass,
.install-text button.michaelbhagwandin {
  background: #d31723;
}
.flex {
  display: flex;
  align-items: center;
}
.flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-tooltip {
  background: #FFFFFF;
  box-shadow: 1px 5px 10px rgb(0 0 0 / 25%);
  border-radius: 8px;
  position: absolute;
  left: calc(80% + 40px);
  top: 16px;
  padding: 10px;
  width: 240px;
  max-width: 300px;
  text-align: left;
  display: none;
  z-index: 1000;
}

.info-tooltip:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: transparent #FFFFFF transparent transparent;
  top: 10px;
  right: 99%;
}
.info-tooltip p {
  font-size: 12px;
  margin: 5px 0;
}
.info:hover + .info-tooltip {
  display: block;
}
.info {
  color: var(--techpop-blue);
  cursor: pointer;
  width: 24px;
  height: 24px;
  margin-left: 4px;
}

@media screen and (min-width: 1921px) {
  .install-logo {
    margin-left: 9%;
  }
}

@media screen and (max-width: 1900px) {
  .install-text span, .install-text  {
    line-height: 150%;
    font-size: 1.3vw;
  }
}

@media screen and (min-width: 1900px) {
  .install-title {
    font-size: 30px;
  }
  .install-text span, .install-text  {
    font-size: 25px;
  }
  .new-register h1 {
    font-size: 25px;
  }
  .new-register h3 {
    font-size: 16px;
  }
  .install-right {
    left: -40px;
  }
}
@media screen and (max-width: 1900px) {
  .install .install, .home.install {
    padding-top: 20px;
  }
  .install-logo {
    width: 20%;
  }
  /* .install-logo img {
    height: 80px;
  } */
  .install-arrow {
    /* height: 265px; */
    right: calc(24px * 4.3);
  }
  .install-title {
    max-width: 80%;
  }
  .install-text img {
    max-width: 480px;
  }
}
@media screen and (max-width: 1700px) {
  .install-arrow {
    height: 368px;
    width: 300px;
  }
  .install-title {
    max-width: 80%;
  }
  .install-arrow:nth-child(2) {
    display: none;
  }
  .install-arrow:nth-child(1) {
    display: block;
  }
}

@media screen and (max-width: 1600px) {
  .install-arrow {
    height: 360px;
    width: 300px;
  }
  .install-arrow:nth-child(1) {
    display: block;
  }
  .install-arrow:nth-child(2) {
    display: none;
  }
  .install-right {
    left: -40px;
  }
  .install-left img {
    right: 0;
  }
}

@media screen and (max-width: 1300px) {
  .install-text span, .install-text  {
    font-size: 1.6vw;
  }
  .install-arrow {
    width: 160px;
    height: 330px;
  }
  .install-arrow:nth-child(2) {
    display: block;
  }
  .install-arrow:nth-child(1) {
    display: none;
  }
  .install-title {
    max-width: 80%;
  }
  .new-register {
    padding: 60px 50px;
  }
  .new-register h1 {
    font-size: 20px;
  }
  .new-register h3 {
    font-size: 14px;
  }
  .install-left img {
    bottom: 0;
    right: -70px;
  }
  .install-logo.cw img {
    height: 60px;
  }
}

@media screen and (max-width: 1050px) {
  .install-arrow {
    width: 130px;
    height: 320px;
  }
  .install-arrow:nth-child(2) {
    display: block;
  }
  .install-arrow:nth-child(1) {
    display: none;
  }
  .install-title {
    max-width: 80%;
  }
  .install-left {
    width: 47%;
  }
  .install-text span, .install-text {
    font-size: 16px;
  }
  .install-left img {
    bottom: 0;
    right: -170px;
  }
}
@media screen and (max-width: 950px) {
  .install-text span, .install-text {
    font-size: 1.7vw;
  }
  .install-arrow {
    width: 130px;
    height: 310px;
  }
  .install-left {
    width: 42%;
  }
  .new-register h1 {
    font-size: 17px;
  }
  .new-register h3 {
    font-size: 14px;
  }
  .new-register p,
  .new-register label,
  .new-register ul {
    font-size: 14px;
  }
  .install-logo.cw {
    margin-left: 10%;
  }
}
@media screen and (max-width: 769px) {
  .install-text span, .install-text {
    font-size: 1.3vw;
  }
  .install-right {
    width: 100%;
    text-align: center;
  }
  .install-title {
    width: 55%;
    max-width: 100%;
    font-size: 20px;
    margin: 0 auto;
  }
  .install-left {
    position: absolute;
    width: 80%;
    left: -20%;
    z-index: 2;
    margin-top: 10%;
  }
  .install-left img {
    display: none;
  }
  .install-text {
    font-size: 16px;
    width: 55%;
    float: right;
    text-align: left;
    margin-top: 35px;
  }
  .install-right .install-text {
    width: 80%;
  }
  .install-text span {
    font-size: 16px;
  }
  .install-text img {
    width: 90%;
  }
  .install-text div:first-child {
    width: 64%;
  }
  .install-arrow:nth-child(2) {
    display: none;
  }
  .install-arrow:nth-child(1) {
    display: none;
  }
}

@media screen and (max-height: 940px) {
  .install-right {
    padding-top: 0px;
  }
}

@media screen and (max-height: 940px) {
  .install-logo img {
    height: 100px;
  }
}

@media screen and (max-height: 840px) and (min-height: 750px) {
  .install-right {
    position: absolute;
    left: 50%;
    top: 10%;
  }
}

@media screen and (max-height: 750px) {
  /* .install {
    display: flex;
    flex-direction: row;
  }
  .install-logo {
    width: auto;
    margin: 0;
  } */
  .install-left {
    width: 0%;
  }
  .install-left img {
    display: none;
  }
  .install-right {
    position: absolute;
    left: 40%;
    top: 5%;
  }

  .install-logo.cw img {
    height: 60px;
  }
}

@media screen and (max-height: 710px) {
  html,
  body,
  .home.install,
  .content.install-content,
  .install
  {
    height: 100%;
  }

  .home.install {
    padding-top: 0px;
  }

  .install-right {
    margin: auto;
  }

  .install-title {
    font-size: 1.1vw;
    margin-bottom: 14px;
  }

  .install-text div {
    margin-bottom: 6px;
    font-size: 1.1vw;
  }

  .install-text span {
    font-size: 1.1vw;
  }

  .install-text img {
    max-width: 280px;
    max-height: 230px;
    margin-bottom: 10px;
  }
  .install-text .step3 {
    margin-bottom: 6px;
  }
}
/* end post-install */

@media only screen and (orientation: landscape)  {
  .signup-content.mobile {
    height: 100vw;
  }
}
@media (min-width: 1920px) {
  .contact-field input, .contact-field-area textarea {
    font-size: 16px;
  }
}
@media (min-width: 1000px) {
  .mainlogo h2 {
    margin-top: 32px;
  }
  .subheader {
    top: 192px;
  }
  .subtext {
    margin-bottom: 45px;
  }
  .subtext h3 {
    font-size: 25px;
  }
  .subheader-text h1 {
    line-height: 75px;
  }
  .subheader-text {
    margin-top: 65px;
  }
  .supp-sub,
  .legal-sub {
    top: 80px;
  }
  .legal-subtext {
    margin: 35px auto 20px auto;
  }
}
@media screen and (max-width: 1500px) {
  .banner {
    padding: 0 30px;
  }
  .subheader {
    top: 128px;
  }
  .main {
    padding: 90px 30px;
  }
  .supp-sub,
  .legal-sub {
    top: 80px;
  }
}

@media screen and (max-width: 1300px) {
  .contact-l {
    margin-left: auto;
    width: 50%;
  }
  .contact-r {
    margin-right: auto;
    width: 50%;
  }
  .main-top {
    font-size: 14px;
    line-height: 21px;
  }
}

@media screen and (max-width: 1080px) {
  .infogr-middle-block-left,
  .infogr-middle-block-right {
    display: flex;
    height: 405px;
  }
  .infogr-middle-block-right {
    justify-content: flex-end;
  }
  .infogr-middle-block-left img,
  .infogr-middle-block-right img {
    width: unset;
    margin: unset;
  }
  .infogr-middle-left {
    left: 45px;
  }
  .infogr-middle-right {
    right: 108px;
  }
}

@media screen and (max-width: 1000px) {
  .banner-in > img {
    position: absolute;
    left: 20px;
  }
  .header-buttons {
    position: absolute;
    right: 20px;
  }
  .header {
    height: 700px;
  }
  .subheader-text {
    margin-top: unset;
  }
  .subheader-text h1 {
    font-size: 40px;
  }
  .subheader-text h2 {
    font-size: 32px;
  }
  .subtext h3 {
    font-size: 25px;
  }
  .subpanels-left {
    margin-left: 0px;
  }
  .subpanels-right {
    margin-right: 0px;
  }
  .main-middle {
    width: 530px;
    line-height: 150%;
  }
  .supp-header,
  .legal-header {
    height: 240px;
  }
  .supp-sub,
  .legal-sub {
    top: 62px;
  }
  .legal-subtext {
    width: 610px;
    margin-top: 35px;
    margin-bottom: 20px;
  }
  .supp-main {
    padding: 20px 100px;
    height: 600px;
  }
  .supp-main h2 {
    font-size: 35px;
  }
  .supp-field {
    width: 100%;
    max-width: 570px;
  }
}

@media screen and (max-width: 870px) {
  .supp-field {
    width: 100%;
    max-width: 570px;
  }
}

@media (min-width: 480px) and (max-width: 768px) {
  .header-buttons button {
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 768px) {
  .header {
    height: auto;
  }
  .banner-in > img {
    width: 110px;
    height: 46px;
    position: absolute;
    left: 20px;
  }
  .header-buttons {
    position: absolute;
    right: 20px;
  }
  .subheader {
    top: 200px;
  }
  .mainlogo {
    margin-bottom: 0px;
  }
  .mainlogo h2, .mainlogo span {
    font-size: 30px;
  }
  .mainlogo svg {
    height: 45px;
  }
  .subheader-text {
    width: auto;
    margin: 20px auto;
  }
  .subheader-text h1 {
    font-size: 30px;
    line-height: 45px;
  }
  .subpanels {
    flex-direction: column;
    justify-content: center;
  }
  .subpanels-left,
  .subpanels-middle,
  .subpanels-right {
    padding-top: 30px;
    min-height: unset;
    margin: auto;
  }
  .subheader button {
    max-width: 440px;
    margin: 40px auto;
    width: 90%;
    height: 40px;
    font-size: 16px;
    text-align: center;
  }
  .subtext h3 {
    font-size: 18px;
  }
  .main {
    padding: 45px 30px;
  }
  .main-top {
    font-family: 'ITC Avant Garde Gothic Std Medium';
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 40px;
  }
  .main-middle {
    width: 250px;
  }
  .subheader-text h2,
  .main-middle h2 {
    font-size: 30px;
  }
  .main-bottom {
    margin-top: 50px;
  }
  .panels {
    flex-direction: column;
    gap: 60px;
    align-items: center;
  }
  .panels-left,
  .panels-middle,
  .panels-right {
    margin-right: 0;
  }
  .infogr {
    padding: 0 90px;
  }
  .infogr-top {
    flex-direction: column;
    gap: 60px;
    padding-top: 60px;
  }
  .infogr-top-left {
    padding-right: unset;
  }
  .infogr-top-right {
    border-top: 3px dotted #1096B0;
    border-left: 0;
    padding-top: 60px;
  }
  .infogr-top-right-row {
    margin-bottom: 40px;
    padding-left: 0;
  }
  .infogr-middle img {
    max-width: 100%;
  }
  .infogr-middle-left {
    left: 4%;
    bottom: 90px;
  }
  .infogr-bottom {
    flex-direction: column;
    padding: 30px 0 50px 0;
  }
  .infogr-bottom-right-row {
    margin-bottom: 40px;
    padding-left: 0;
  }
  .contact,
  .contact .banner,
  .bannerbottom {
    height: 593px;
  }
  .contact-top {
    flex-direction: column;
    margin-top: 75px;
  }
  .contact-top-title {
    margin: 0;
    width: auto;
    line-height: 150%;
  }
  .contact-top-title h2 {
    font-size: 30px;
  }
  .contact-top-text {
    width: auto;
    margin: 30px 0;
    padding: 0;
    font-size: 14px;
  }
  .contact-top-one,
  .contact-top-two {
    display: none;
  }
  .contact-top-full {
    display: block;
  }
  .contact-bot {
    flex-direction: column;
    margin: 0 auto;
  }
  .contact-l {
    width: 100%;
    padding: 0;
  }
  .contact-r {
    width: 100%;
    padding: 0;
  }
  .contact-r button {
    display: block;
    height: 40px;
    font-size: 16px;
    padding: 5px 30px;
  }
  .contact-field,
  .contact-field-area {
    float: none;
    width: 100%;
  }
  .contact-field input,
  .contact-field-area textarea {
    font-size: 14px;
  }
  .submit button {
    position: relative;
  }
  .showmsg {
    position: relative;
    z-index: 3;
    top: -15px;
    float: none;
  }
  .supp-showmsg {
    float: right;
  }
  .supp-header,
  .legal-header {
    height: 200px;
  }
  .supp-sub,
  .legal-sub {
    top: 62px;
  }
  .legal-subtext {
    width: 380px;
  }
  .supp-main {
    padding: 20px 50px;
  }
  .supp-main h2 {
    font-size: 28px;
  }
  .signup-logo {
    margin-bottom: 30px;
  }
  .signup-panels {
    flex-direction: column;
  }
  .popup-stripe {
    padding-top: 11px;
  }
}

@media screen and (max-width: 680px) {
  .supp-showmsg {
    max-width: max-content;
    height: fit-content;
    top: -10px;
    margin-left: 30px;
  }
  .infogr {
    padding: 0 60px;
  }
  .infogr-middle-left {
    bottom: 10px;
  }
}

@media screen and (max-width: 580px) {
  .showmsg {
    max-width: 55%;
    height: fit-content;
    top: -25px;
    margin-right: 15px;
  }
  .supp-showmsg {
    float: none;
    max-width: max-content;
    top: 10px;
    margin: 0px;
  }
  .infogr-middle-left {
    bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  .banner {
    padding: 0 20px;
  }
  .banner-in > img {
    width: 82px;
    height: 34px;
    margin-top: 10px;
    position: absolute;
    top: 10px;
    left: 20px;
  }
  .header-buttons {
    position: absolute;
    top: 5px;
    right: 20px;
  }
  .header-buttons button:first-child {
    margin-right: 10px;
  }
  .header-buttons button {
    height: 30px!important;
    width: 30px!important;
    padding: 6px 6px 3px 7.5px;
  }
  .header-buttons button img {
    margin-left: 3px;
  }
  .subheader {
    top: 130px;
    padding-top: 130px;
  }
  .subheader h3 {
    margin-top: 15px;
  }
  .mainlogo {
    margin-bottom: 15px;
  }
  .mainlogo h2, .mainlogo h2 span {
    font-size: 25px;
  }
  .mainlogo svg {
    height: 40px;
  }
  .subheader-text {
    width: 300px;
    margin: 10px auto;
  }
  .subheader-text h1 {
    font-size: 20px;
    line-height: 26px;
  }
  .subheader button {
    font-size: 14px;
  }
  .subtext {
    margin-top: -30px;
  }
  .subtext h3 {
    font-family: 'ITC Avant Garde Gothic Std Demi';
    font-size: 16px;
  }
  .main-top {
    line-height: 21px;
    margin-bottom: 40px;
  }
  .subheader-text h2,
  .main-middle h2 {
    font-size: 24px;
  }
  .main-bottom {
    margin-top: 50px;
  }
  .panels-left, .panels-middle, .panels-right {
    max-height: 323px;
    min-height: 323px;
  }
  .panels-left,
  .panels-middle,
  .panels-right {
    width: 280px;
  }
  .panels-title {
    font-size: 19px;
  }
  .panels-text, .contact-text {
    font-size: 14px;
    line-height: 21px;
  }
  .bannerbottom {
    height: 600px;
  }
  .infogr {
    padding: 0 40px;
  }
  .infogr-top-img {
    padding-left: unset;
  }
  .infogr-middle-left {
    bottom: 60px;
    max-width: 100%;
  }
  .infogr-middle-right {
    right: 12%;
    bottom: 60px;
  }
  .contact {
    height: 600px;
  }
  .contact-l {
    top: 140px;
  }
  .contact-r {
    top: 293px;
  }
  .contact-field-area {
    height: 112px;
  }
  .supp-header,
  .legal-header {
    height: 145px;
  }
  .supp-sub,
  .legal-sub {
    top: 54px;
    padding-top: 0px;
  }
  .supp-cut,
  .legal-cut {
    width: 210px;
  }
  .legal-date {
    float: none;
    margin-top: 0px;
  }
  .legal-banin {
    margin: auto;
  }
  .legal-banin > img {
    top: 0px;
  }
  .legal-main {
    padding: 0;
  }
  .supp-main {
    padding: 20px 10px;
  }
  .supp-main-in {
    width: auto;
  }
  .supp-main h2 {
    font-size: 18px;
  }
  .supp-field {
    margin-bottom: 30px;
  }
  .supp-field input,
  .supp-field textarea {
    font-size: 14px;
  }
}

@media screen and (max-width: 400px) {
  .subpanels-left,
  .subpanels-middle,
  .subpanels-right {
    width: auto;
  }
}

@media screen and (max-width: 360px) {
  .showmsg {
    max-width: 50%;
  }
  .supp-showmsg {
    max-width: max-content;
  }
  .popup-field {
    height: 40px;
    margin-bottom: 15px;
  }
  .popup-field input {
    font-size: 14px;
  }
  .popup-field-area textarea {
    font-size: 14px;
  }
  .popup-pass-text {
    font-size: 12px;
    line-height: 130%;
    margin-bottom: 10px;
  }
  .popup-accepted {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .popup-accepted-label div {
    width: 28px;
    height: 28px;
  }
  .popup-buttons button {
    width: 130px;
  }
}
@media screen and (max-width: 320px) {
  .popup-stripe-star {
    left: 110px;
  }
}
@media screen and (max-width: 300px) {
  .supp-cut,
  .legal-cut {
    display: none;
  }
  .main {
    padding: 20px 10px;
  }
  .supp-main {
    height: 630px;
  }
  .supp-showmsg {
    max-width: 60%;
  }
  .popup-accepted-label {
    left: 40px;
    font-size: 12px;
  }
  .popup-accepted-label div {
    left: -40px;
  }
  .popup-buttons button {
    width: 110px;
  }
}

@media screen and (max-height: 900px) {
  .popup-form {
    padding: 15px 20px;
  }
  .popup-field {
    height: 40px;
    margin-bottom: 25px;
  }
  .popup-field input {
    font-size: 14px;
  }
  .popup-field-area textarea {
    font-size: 14px;
  }
  .popup-pass-text {
    font-size: 12px;
    line-height: 130%;
    margin-bottom: 10px;
  }
  .popup-accepted {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .popup-accepted-label div {
    width: 28px;
    height: 28px;
  }
}

.a-la-carte-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--lightblue);
  background: var(--lightblue);
  color: white !important;
  text-align: left;
  padding: 0px 30px;
  font-size: 16px;
  line-height: 16px;
  height: 40px;
  border-radius: 20px;
  font-family: "ITC Avant Garde Gothic Std Medium";
  outline: none;
  cursor: pointer;
  box-sizing: border-box;
  width: 330px;
  margin-top: 32px;
}

.a-la-carte {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 12px;
  margin-top: 32px;
  font-size: 20px;
}

.a-la-carte .description {
  text-align: left;
  grid-column: 1;
}

.a-la-carte .price {
  text-align: right;
  grid-column: 2;
}