@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&subset=latin-ext");
@import url("https://use.typekit.net/clc6hgp.css");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  display: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

/* Font face declarations */
@font-face {
  font-family: "Regular";
  src: url("../assets/fonts/SegoeUI.eot");
  src: url("../assets/fonts/SegoeUI.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/SegoeUI.woff2") format("woff2"), url("../assets/fonts/SegoeUI.woff") format("woff"), url("../assets/fonts/SegoeUI.ttf") format("truetype"), url("../assets/fonts/SegoeUI.svg#SegoeUI") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Bold";
  src: url("../assets/fonts/SegoeUI-Bold.eot");
  src: url("../assets/fonts/SegoeUI-Bold.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/SegoeUI-Bold.woff2") format("woff2"), url("../assets/fonts/SegoeUI-Bold.woff") format("woff"), url("../assets/fonts/SegoeUI-Bold.ttf") format("truetype"), url("../assets/fonts/SegoeUI-Bold.svg#SegoeUI-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
}
html {
  font-size: 62.5%;
  line-height: 62.5%;
}

body {
  font-family: "Regular";
  color: #999999;
  line-height: normal;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

strong, b {
  font-family: "Bold";
  font-weight: normal;
}

a {
  color: #009bfc;
  text-decoration: none;
  transition: 0.4s ease;
}
a:hover {
  color: #999999;
}

p {
  font-size: 2rem;
  line-height: 2.6rem;
  margin: 0;
}
p.desc {
  margin: 0 0 40px;
}

h2 {
  font-family: "Bold";
  font-size: 5.2rem;
  font-weight: normal;
  line-height: 5.2rem;
  margin: 0;
}
h2.title {
  color: #009bfc;
  margin: 130px 0 45px;
}

.btn {
  border: 0;
  background-color: #000000;
  height: 50px;
  font-family: "Regular", sans-serif;
  font-size: 1.6rem;
  color: #ffffff;
  line-height: 2.4rem;
  text-decoration: none;
  padding: 0 10px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  border-radius: 3px;
}
.btn--primary {
  background-color: #0099ff;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: rgb(0, 122.4, 204);
}
.btn--submit {
  background-color: #0099ff;
  height: 80px;
  font-size: 1.6rem;
  line-height: 1.6rem;
  color: #ffffff;
  margin: 0 auto 55px;
  padding: 0 50px;
  display: block;
}
.btn--submit img {
  width: 24px;
  vertical-align: middle;
  margin: 0 15px 1px 0;
  display: inline-block;
}
.btn--submit:hover {
  background-color: rgb(0, 122.4, 204);
}

.form {
  width: 100%;
  float: left;
}
.form__title-section {
  width: 100%;
  margin: 0 0 45px;
  position: relative;
  float: left;
}
.form__title-section:after {
  content: "";
  background-color: #7ecbff;
  width: 100%;
  height: 1px;
  position: absolute;
  z-index: -1;
  top: calc(50% + 1px);
  left: 0;
}
.form__title-section span {
  background-color: #ffffff;
  font-size: 1.6rem;
  padding: 0 40px 0 0;
  float: left;
}
.form__title-section span strong {
  color: #000000;
}
.form__group {
  width: 100%;
  margin: 0 0 50px;
  float: left;
}
.form__half {
  display: flex;
  flex-direction: row;
  width: calc(50% - 40px);
  margin: 0 0 15px;
  float: left;
}
.form__half:nth-child(2n+2) {
  float: right;
}
.form__half label {
  width: 154px;
  font-size: 1.6rem;
  line-height: 5rem;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  float: left;
}
.form__half label.active {
  color: #009bfc;
}
.form__half .form-input {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form__half .form-input .text-danger {
  color: #e22a2a;
}
.form__half input[type=text],
.form__half input[type=email],
.form__half input[type=tel] {
  float: right;
}
.form input[type=text],
.form input[type=email],
.form input[type=tel] {
  border: 1px solid #989898;
  background-color: #ffffff;
  width: 100%;
  height: 50px;
  font-family: "Regular", sans-serif;
  font-size: 1.6rem;
  color: #009bfc;
  margin: 0;
  padding: 0 18px 1px;
  border-radius: 3px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  appearance: none;
  float: left;
}
.form input[type=text]:focus,
.form input[type=email]:focus,
.form input[type=tel]:focus {
  border-color: #009cff;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
}
.form input[type=text]:focus + label,
.form input[type=email]:focus + label,
.form input[type=tel]:focus + label {
  color: #009bfc;
}
.form input[type=text].error,
.form input[type=email].error,
.form input[type=tel].error {
  border-color: #e22a2a;
}
.form::-webkit-input-placeholder {
  color: #999999 !important;
  opacity: 1;
}
.form:-moz-placeholder {
  color: #999999 !important;
  opacity: 1;
}
.form::-moz-placeholder {
  color: #999999 !important;
  opacity: 1;
}
.form:-ms-input-placeholder {
  color: #999999 !important;
  opacity: 1;
}

.brand-selector {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.brand-selector .brand-selector__item {
  width: calc(20% - 12px);
  margin: 0.5rem;
}
.brand-selector .brand-selector__item .brand-selector__option {
  width: 100%;
  float: left;
}
.brand-selector .brand-selector__item .brand-selector__option input {
  display: none;
}
.brand-selector .brand-selector__item .brand-selector__option input:checked + label {
  border-color: #0099ff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
}
.brand-selector .brand-selector__item .brand-selector__option label {
  border: 1px solid #989898;
  background-color: #fff;
  width: 100%;
  height: 130px;
  cursor: pointer;
  border-radius: 3px;
  transition: 0.4s ease;
  position: relative;
  float: left;
}
.brand-selector .brand-selector__item .brand-selector__option label img {
  max-width: 60%;
  max-height: 60%;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.brand-selector .brand-selector__item .brand-selector__contact {
  background-color: #009bfc;
  width: 100%;
  height: 130px;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #fff;
  border-radius: 3px;
  transition: 0.4s ease;
  position: relative;
}
.brand-selector .brand-selector__item .brand-selector__contact span {
  width: 100%;
  text-align: center;
  padding: 0 30px;
  transform: translateY(-50%);
  position: relative;
  z-index: 50;
  top: 50%;
  float: left;
}
.brand-selector .brand-selector__item .brand-selector__contact a.click {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.brand-selector .brand-selector__item .brand-selector__contact:hover {
  background-color: rgb(0, 123.630952381, 201);
}

.payment-logos {
  width: 100%;
  margin: 0 0 60px;
  float: left;
}
.payment-logos__list {
  text-align: center;
}
.payment-logos__list-item {
  width: auto;
  display: inline-block;
  float: none;
}
.payment-logos__list-item + li {
  margin: 0 0 0 25px;
}
.payment-logos__list-item img {
  height: auto;
  max-width: 100%;
}

.info-card {
  background-color: #dbdbdb;
  width: calc(50% - 20px);
  padding: 35px 50px;
  float: left;
  margin-bottom: 125px;
}
.info-card--clock {
  background-color: #f1f1f1;
  padding: 35px 50px 55px;
  float: right;
}
.info-card__icon {
  width: 60px;
  float: left;
}
.info-card__icon img {
  width: 100%;
  margin: 0;
  display: block;
}
.info-card__content {
  width: calc(100% - 60px);
  padding: 2px 0 0 33px;
  float: left;
}
.info-card__content p {
  font-size: 2rem;
}
.info-card__content .hours-list {
  margin: 15px 0 0;
}
.info-card__content .hours-list__item {
  font-size: 1.6rem;
  line-height: 1.6rem;
}
.info-card__content .hours-list__item + li {
  margin: 6px 0 0;
}
.info-card__content .hours-list__item .days {
  width: calc(100% - 140px);
  float: left;
}
.info-card__content .hours-list__item .time {
  width: 140px;
  float: right;
}

.wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  float: left;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.background-image {
  background-image: url("../assets/bg.jpg");
  background-size: cover;
  width: 1200px;
  height: 889px;
  transform: translateX(-50%);
  position: absolute;
  z-index: -1;
  top: -210px;
  left: calc(50% + 320px);
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media (max-width: 1024px) {
  .background-image {
    width: 900px;
    height: 667px;
    top: -140px;
    left: calc(50% + 300px);
    opacity: 0.5;
  }
}
@media (max-width: 768px) {
  .background-image {
    display: none;
  }
}

.footer {
  width: 100%;
  padding: 1.5rem 0;
  margin-top: 2rem;
  background-color: #ffffff;
  border-top: 1px solid #989898;
}
.footer__links {
  justify-content: center;
  margin-bottom: 1rem;
}
.footer__links a {
  color: #0099ff;
  text-decoration: underline;
  font-size: 1.5rem;
  transition: color 0.3s ease;
  padding-right: 1.5rem;
}
.footer__links a:hover {
  color: rgb(0, 107.1, 178.5);
}
.footer__legal {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #999999;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer {
    padding: 1rem 0;
  }
  .footer__links {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

.grid {
  display: grid;
  gap: 1rem;
}
.grid--2cols {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .grid--2cols {
    grid-template-columns: 1fr;
  }
}
.grid--3cols {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .grid--3cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .grid--3cols {
    grid-template-columns: 1fr;
  }
}
.grid--4cols {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .grid--4cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .grid--4cols {
    grid-template-columns: 1fr;
  }
}

.flex-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -0.5rem;
}
.flex-grid__item {
  flex: 1 0 calc(25% - 1rem);
  margin: 0.5rem;
}
@media (max-width: 1024px) {
  .flex-grid__item {
    flex: 1 0 calc(50% - 1rem);
  }
}
@media (max-width: 576px) {
  .flex-grid__item {
    flex: 1 0 100%;
  }
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
@media (max-width: 1024px) {
  .brand-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
@media (max-width: 576px) {
  .brand-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

.grid-item--span-2 {
  grid-column: span 2;
}
.grid-item--span-3 {
  grid-column: span 3;
}
.grid-item--full-width {
  grid-column: 1/-1;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.visible-xs {
  display: none !important;
}
@media (max-width: 400px) {
  .visible-xs {
    display: block !important;
  }
}

@media (max-width: 400px) {
  .hidden-xs {
    display: none !important;
  }
}

.payment-portal .title {
  margin: 130px 0 45px;
}
@media (max-width: 1024px) {
  .payment-portal .title {
    margin: 100px 0 45px;
  }
}
@media (max-width: 768px) {
  .payment-portal .title {
    margin: 80px 0 40px;
  }
}
@media (max-width: 576px) {
  .payment-portal .title {
    margin: 50px 0 40px;
  }
}
@media (max-width: 400px) {
  .payment-portal .title {
    margin: 40px 0 30px;
  }
}
.payment-portal .desc {
  margin: 0 0 40px;
}
@media (max-width: 400px) {
  .payment-portal .desc {
    margin: 0 0 26px;
  }
}

@media (max-width: 1200px) {
  p {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  h2 {
    font-size: 4.4rem;
    line-height: 4.4rem;
  }
  h2.title {
    margin: 100px 0 45px;
  }
  .background-image {
    width: 900px;
    height: 667px;
    top: -140px;
    left: calc(50% + 300px);
  }
}

/*# sourceMappingURL=main.css.map */
