body {
  font-family: 'HelveticaNeueThin', 'HelveticaNeue-Thin', 'Helvetica Neue Thin',
    'HelveticaNeue', 'Helvetica Neue', 'HelveticaThin', 'Helvetica-Thin',
    'Helvetica Thin', 'Helvetica', 'Arial', sans-serif;
  font-weight: 100;
  font-stretch: normal;
  color: rgb(95, 95, 95);
  /* fix safari font issue with scrolling */
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-stroke: 1px transparent;
  letter-spacing: 0px;
}

body input {
  letter-spacing: 0px;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: white;
  transition: background-color 100000s ease-in-out 0s;
}

h1,
h2,
h3,
h4 {
  color: rgb(26, 26, 26);
}

hr {
  border-color: rgb(26, 26, 26);
}

a {
  color: #ff5a00;
}

a:hover {
  color: gray;
  text-decoration: none;
}

em {
  color: #ff5a00;
  font-style: normal;
}

.body-container {
  position: relative;
  max-width: 100vw;
  overflow-x: hidden;
  clear: both;
  z-index: 5;
  background-color: #fff;
}

.body-container.with-transition {
  transition: transform 800ms cubic-bezier(0.35, 0.36, 0.16, 1.01);
}

header {
  padding: 14px 63px;
  position: fixed;
  width: 100vw;
  background-color: transparent;
  z-index: 500;
  top: 0;
  transition: border-color 200ms ease-out, background-color 200ms ease-out,
    transform 200ms ease-in-out;
  border-bottom: solid 1px transparent;
  min-height: 71px;
  transform: translateY(0);
  background-color: #fff;
  border-color: rgb(235, 235, 235);
  background-color: rgba(255, 255, 255, 1);
  display: block;
}

header.with-top-transition {
  transition: border-color 200ms ease-out, background-color 200ms ease-out,
    top 800ms cubic-bezier(0.35, 0.36, 0.16, 1.01);
}

header.offset {
  top: 228px !important;
}

header.shift-down {
  top: 228px;
}

.btn {
  min-width: 170px;
  padding: 8px 17px;
  border: solid 1px #2e2e2e;
  border-radius: 30px;
  font-size: 18px;
  letter-spacing: 0.2px;
  font-weight: normal;
  font-family: 'HelveticaNeue', 'Helvetica Neue', 'Helvetica';
  color: #2e2e2e;
  background-color: #fff;
}

.btn:hover {
  color: #fff;
  background-color: #2e2e2e;
}

.btn.primary {
  color: #ff5a00;
  border-color: #ff5a00;
}

.btn.secondary {
  color: #a6a6a6;
  border-color: #a6a6a6;
}

.btn.tertiary {
  color: #fff;
  border-color: #fff;
  background-color: transparent;
}

.btn.primary:hover,
.btn.primary:hover:active,
.btn.primary:hover:focus,
.btn.primary.strong {
  background-color: #ff5a00;
  color: #fff;
}

.btn.secondary:hover,
.btn.secondary:hover:active,
.btn.secondary:hover:focus,
.btn.secondary.strong {
  background-color: #000000;
  color: #fff;
}

.btn.tertiary:hover,
.btn.tertiary:hover:active,
.btn.tertiary:hover:focus,
.btn.tertiary.strong {
  background-color: #fff;
  color: #1a1a1a;
}

.btn.primary:active,
.btn.primary:focus {
  color: #ff5a00;
}

.btn.secondary:active,
.btn.secondary:focus {
  color: #a6a6a6;
}

.btn.tertiary:active,
.btn.tertiary:focus {
  color: #fff;
}

.btn:disabled {
  color: #bfbfbf;
  border-color: #bfbfbf;
}

.btn:disabled:active,
.btn:disabled:hover {
  color: #bfbfbf;
  background-color: transparent;
}

.subscribe-email {
  background-color: transparent;
  border: none;
  border-bottom: solid 1px rgb(166, 166, 166);
  border-radius: 0;
  box-shadow: none;
  width: 90%;
  outline: none;
  padding-bottom: 3px;
  border-color: #bfbfbf;
  transform: translateY(-3px);
}

.roll-in-ele {
  transform: translateY(-72px);
  opacity: 0;
  transition: 200ms ease-in-out;
}

.roll-in-ele.show {
  opacity: 1;
  transform: translateY(0);
}

.fair-logo {
  height: 34px;
  top: -3px;
}

header section {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
}

header .fair-logo {
  position: absolute;
  top: -3px;
  left: 0;
  height: 32px;
}

.nav-trigger,
.nav-close {
  display: none;
  cursor: pointer;
}

.header-nav {
  margin-top: 8px;
  font-size: 17px;
  transition: 500ms;
}

.header-nav li {
  display: inline-block;
  margin-left: 35px;
}

.header-nav li:first-child {
  margin-left: 0;
}

.header-nav a {
  color: rgb(46, 46, 46);
  cursor: pointer;
  font-family: 'HelveticaNeue', 'Helvetica Neue', 'Helvetica';
}

.header-nav a:hover,
.header-nav a:active {
  color: inherit;
  text-decoration: none;
}

.header-nav .main-pill-button {
  color: #fff;
}
.header-nav .main-pill-button:hover {
  color: #ff5a00;
}
.main-pill-button {
  background: #ff5a00;
  border: 1px solid #ff5a00;
  color: #fff;
  padding: 5px;
  border-radius: 50px;
  font-weight: 200;
  font-size: 12px;
  width: 120px;
  display: block;
  text-align: center;
  transition: 0.2s;
  margin: 0 auto;
}

.main-pill-button:hover {
  border: 1px solid #ff5a00;
  transition: 0.2s;
  color: #ff5a00;
  background: none;
}
.main-pill-button:focus {
  outline: none;
  text-decoration: none;
}
.pill-button-big {
  font-size: 18px;
  width: 170px;
  padding: 8px;
}

.show-nav .main-pill-button.mobile {
  display: none;
}

.header-nav .main-pill-button.mobile {
  display: none;
}

.header-nav .main-pill-button.desktop {
  position: relative;
  top: -3px;
}

.header-nav .nav-app-link {
  display: none;
}

header .iOS-button {
  position: absolute;
  right: 0;
  top: -5px;
  font-size: 16px;
  min-width: 170px;
}

header.scroll-hide {
  transform: translateY(-71px);
}

.nav-list {
  position: absolute;
  right: 0;
  top: 0;
  transition: right 400ms ease-in-out;
}

.nav-list .app-link {
  color: #ff5a00;
}

.top-subscribe-section {
  background-color: rgb(244, 244, 245);
  font-size: 21px;
  height: 228px;
  margin-top: -228px;
}
.top-subscribe-section > * {
  opacity: 0;
  transition: opacity 500ms 300ms ease-out;
}
.top-subscribe-section.show {
  margin-top: 0;
  transition: margin-top 800ms cubic-bezier(0.35, 0.36, 0.16, 1.01);
}

.top-subscribe-section.show > * {
  opacity: 1;
}

.top-subscribe-section section {
  padding: 139px 42px 0 42px;
  position: relative;
  max-width: 1366px;
  margin: 0 auto;
}

.top-subscribe-section .col {
  width: 40%;
  float: left;
}

.top-subscribe-section .btn-col {
  width: 20%;
}

#top-submit-btn {
  background-color: transparent;
  width: 150px;
  text-align: center;
  margin-top: -9px;
  color: #ff5a00;
  border-color: #ff5a00;
}

#top-submit-btn:hover,
#top-submit-btn:active {
  outline: none;
  background-color: #ff5a00;
  color: #f3f3f4;
}

#close-btn {
  position: absolute;
  top: 30px;
  right: 42px;
  cursor: pointer;
}

.subscribe-email,
.success-message {
  font-size: 24px;
}

.success-message {
  display: none;
}

.success-message em {
  color: #ff5a00;
  font-style: normal;
}

.body-container {
  position: relative;
  max-width: 100vw;
  overflow-x: hidden;
  clear: both;
  z-index: 5;
  background-color: #fff;
}

.body-container.with-transition {
  transition: transform 800ms cubic-bezier(0.35, 0.36, 0.16, 1.01);
}

footer {
  /* font-family: "HelveticaNeue", "Helvetica Neue", "HelveticaThin", "Helvetica-Thin", "Helvetica Thin", "Arial", sans-serif; */
  padding: 80px 12.4%;
  background-color: rgb(26, 26, 26);
  color: rgb(95, 95, 95);
  font-size: 18px;
  position: relative;
  z-index: 300;
}

footer section {
  max-width: 1366px;
}

footer h4 {
  font-size: 24px;
}

footer a,
footer a:hover,
footer a:visited,
footer a:focus,
.contact-us-header,
footer input[type='email'] {
  color: rgb(166, 166, 166);
}

footer a:hover {
  text-decoration: none;
}

footer .input-container {
  position: relative;
  height: 32px;
  margin-top: 53px;
}

footer h1,
footer h2,
footer h3,
footer h4 {
  color: rgb(95, 95, 95);
}

.content-container {
  max-width: 1366px;
  min-height: calc(100vh - 560px);
  margin: 0 auto;
  padding-left: 120px;
  padding-right: 120px;
  padding-bottom: 40px;
  margin-top: 62px;
}

.contact-us-header {
  margin-bottom: 50px;
}

.contact-row {
  line-height: 1.7;
}

.input-col,
.footer-newsletter {
  font-size: 24px;
}

footer input[type='email'] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.footer-newsletter {
  margin: 50px 0 75px;
  min-height: 102px;
}

.footer-rights {
  font-size: 15px;
}

footer .footer-rights a {
  color: rgb(95, 95, 95);
  text-decoration: underline;
}

#footer-submit-btn {
  position: absolute;
  background-color: transparent;
  padding: 0 0 7px 10px;
  border: none;
  outline: none;
  bottom: -3px;
  right: 0;
  background-size: 23px;
  -webkit-background-size: scroll;
  -moz-background-size: scroll;
  -o-background-size: scroll;
  background-size: scroll;
}

#submit-btn-img {
  width: 23px;
  height: 23px;
  background: transparent
    url('https://cdn-prod.prod.fair.engineering/web/images/icons/ARROW_2X.png')
    no-repeat 0;
  background-size: contain;
}

#footer-submit-btn:hover #submit-btn-img,
#footer-submit-btn:active #submit-btn-img {
  background-image: url('https://cdn-prod.prod.fair.engineering/web/images/icons/ARROW_WHITE_2X.png');
}

.footer-form-col,
.contact-col {
  float: left;
}

.footer-form-col {
  margin-right: 10%;
  width: 45%;
}

.footer-rights {
  margin-top: 7px;
}

.contact-row,
.footer-rights {
  font-family: 'HelveticaNeue', 'Helvetica Neue';
}

.contact-col {
  width: 45%;
}

footer .success-message {
  color: rgb(166, 166, 166);
}

.social-icons {
  margin-top: 7px;
  display: inline-block;
  margin-right: 30px;
}

.social-icons a {
  display: inline-block;
  margin-right: 20px;
}

.social-icons a:last-child {
  margin-right: 0;
}

.social-icons img {
  width: 40px;
}

.evox-logo {
  vertical-align: bottom;
}

.modal-backdrop {
  background-color: #f2f2f2;
}
.modal-backdrop.in {
  opacity: 0.9;
}

.modal-dialog {
  max-width: 1025px;
  width: 100%;
  margin-top: 85px;
}

.modal-content {
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 40px 60px;
  height: calc(100vh - 170px);
}

.modal-header,
.modal-footer {
  border: none;
}

.modal-header .close {
  opacity: 1;
}

.invert {
  filter: invert(1);
}

#page404 {
  padding-top: 100px;
  background: #fff;
  padding-bottom: 420px;
  line-height: normal;
  max-width: 100%;
  color: #1a1a1a;
  font-weight: 300;
}
.page404-title {
  font-size: 47px;
  white-space: pre;
}
.page404-subtitle {
  font-size: 24px;
}
.page404-subtitle {
  margin: 20px auto 36px auto;
}
.page404-car-img {
  left: 45%;
  height: 250px;
  margin-top: 100px;
  width: 55%;
  max-height: 100%;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.page404-stripes-img {
  width: 100%;
  height: 22%;
  left: 0;
  bottom: 19%;
  max-height: 100%;
  position: absolute;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.peace-of-mind-section {
  margin: 0;
  text-align: center;
}

.peace-of-mind-title {
  margin-bottom: 33px;
}

.peace-of-mind-section p {
  max-width: 812px;
  margin: 0 auto;
  font-size: 21px;
}

.peace-of-mind-section > .peace-of-mind-icons-row.show {
  display: flex !important;
}

.peace-of-mind-icons-row {
  margin: 66px auto 50px;
  max-width: 1060px;
  text-align: center;
  display: flex;
}

.peace-of-mind-icons-row > div {
  width: calc(100% / 6);
  flex-grow: 1;
  cursor: pointer;
}

.peace-of-mind-icons-row img {
  width: 60px;
  transform: translateX(8px);
}

.peace-of-mind-icons-row label {
  display: block;
  margin-top: 20px;
  font-family: 'HelveticaNeue', 'Helvetica Neue';
  font-size: 13px;
  font-weight: normal;
  color: rgb(26, 26, 26);
}

.peace-of-mind-icons-row .wear-and-tear-icon {
  margin-top: 7px;
}

#peace-of-mind-modal .modal-dialog {
  width: 600px;
  max-width: 100%;
}

#peace-of-mind-modal .modal-content {
  min-height: 450px;
  height: auto;
  padding: 15px;
  border-radius: 15px;
}

.peace-of-mind-modal-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.peace-of-mind-modal-header {
  align-self: flex-start;
  width: 100%;
}

.peace-of-mind-modal-body {
  align-self: center;
  padding: 0 40px;
}

.peace-of-mind-modal-body p {
  font-size: 21px;
  line-height: 1.38;
}

.peace-of-mind-modal-icons {
  margin: 0 auto;
  width: 66px;
}

.peace-of-mind-modal-title {
  font-size: 33px;
  color: rgb(46, 46, 46);
  margin: 60px auto 33px;
}

.carousel-indicators {
  position: static;
  margin-top: 20px;
  margin-left: 0;
  width: 100%;
}
.carousel-indicators li {
  background-color: #e5e5e5;
  width: 12px;
  height: 12px;
}
.carousel-indicators li.active {
  background-color: #ff5a00;
  margin: 1px;
}

#uber-floater {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 90px;
  background-color: #1a1a1a;
  color: #fff;
  z-index: 1000;
  padding: 20px 40px;
  display: none;
}
.uber-floater-content {
  max-width: 1366px;
  margin: 0 auto;
}
.uber-floater-close {
  cursor: pointer;
  float: right;
}

.uber-floater-close img {
  height: 15px;
}
.fair-uber-logo {
  width: 152px;
}

.uber-floater-description {
  display: inline-block;
  width: calc(100% - 200px);
  margin-right: 10px;
}

.uber-floater-body {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.fair-uber-learn-btn-container {
  display: inline-block;
  width: 200px;
  text-align: center;
}

.fair-uber-learn-btn {
  font-size: 14px;
  padding: 6px 17px;
}

.fair-uber-learn-btn:focus {
  outline: none;
}

.uber-modal-content.modal-content {
  max-width: 100%;
  width: 1080px;
  min-height: 688px;
  height: auto;
  padding: 40px 0;
}

.uber-modal-body {
  text-align: center;
  font-size: 18px;
  padding-left: 0;
  padding-right: 0;
}

.uber-modal-car {
  width: 299px;
  margin: -120px auto 0;
}

.uber-modal-heading {
  margin: 26px auto 20px;
  font-size: 46px;
}

.uber-modal-text {
  margin: 0 11.3% 25px;
}

.uber-modal-btn {
  margin: 20px 10px 0;
}

.uber-modal-footer {
  display: none;
}

.uber-modal-background {
  max-width: 100%;
}

.uber-modal-btn .btn-icon {
  width: 20px;
  margin-top: -3px;
  margin-right: 5px;
}

.uber-modal-btn .apple-btn-icon {
  margin-top: -5px;
}

.body-with-uber-floater footer {
  padding-bottom: 100px;
}

@media (max-width: 1030px) {
  .header-nav li {
    margin-left: 20px;
  }
}

@media (max-width: 920px) {
  .header-nav .main-pill-button.mobile {
    display: block;
    float: right;
    margin-right: 15px;
    margin-top: -5px;
    font-family: 'HelveticaNeue', 'Helvetica Neue', 'Helvetica';
  }

  .header-nav .main-pill-button.desktop {
    display: none;
  }

  .header-nav li {
    margin-left: 20px;
  }

  header {
    padding: 20px 33px 20px 25px;
    border-color: rgb(235, 235, 235);
    background-color: rgba(255, 255, 255, 1);
    top: 0 !important;
    margin-top: 0 !important;
    min-height: auto;
  }

  header.offset {
    top: 0 !important;
  }

  header.show-nav {
    border-color: rgb(235, 235, 235);
    background-color: rgba(255, 255, 255, 1);
  }

  header .iOS-button {
    display: none !important;
  }

  header .fair-logo {
    top: -10px;
    left: 40px;
    height: 29px;
  }

  header.scroll-hide {
    transform: translateY(0);
  }

  .content-container {
    padding-left: 70px;
    padding-right: 70px;
  }

  .roll-in-ele {
    opacity: 1;
    transform: none;
  }

  .subscribe-email,
  .success-message {
    font-size: 21px;
  }

  .btn {
    padding-left: 14px;
    padding-right: 14px;
    min-width: 170px;
    font-size: 18px;
  }

  .header-nav {
    margin-top: 5px;
  }

  .header-nav a {
    font-family: 'HelveticaNeueThin', 'HelveticaNeue-Thin';
  }

  .header-nav .nav-app-link {
    display: block;
    margin-top: 250px;
    margin-bottom: 120px;
  }

  .nav-close {
    width: 23px;
    float: right;
  }

  .nav-close.active {
    display: block;
  }

  .nav-list {
    position: static;
    display: none;
    float: none;
    clear: both;
    padding-top: 55px;
  }

  .nav-list.show {
    display: block;
  }

  .nav-list li {
    display: block;
    text-align: center;
    margin: 30px auto;
    font-size: 35px;
  }

  .nav-trigger {
    display: block;
    float: right;
    border-top: solid 2px rgb(166, 166, 166);
    border-bottom: solid 2px rgb(166, 166, 166);
    width: 20px;
    height: 16px;
  }

  .nav-trigger:before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgb(166, 166, 166);
    margin-top: 5px;
  }

  .subscribe-email {
    transform: none;
  }

  .top-subscribe-section {
    height: 320px;
    margin-top: -320px;
  }

  .top-subscribe-section section {
    padding: 134px 70px 0;
  }

  .top-subscribe-section .text-col {
    width: 100%;
    margin-bottom: 50px;
    font-family: 'HelveticaNeue', 'Helvetica Neue';
  }

  .top-subscribe-section .input-col {
    width: 70%;
    font-size: 17px;
  }

  .top-subscribe-section .btn-col {
    width: 30%;
  }

  #top-submit-btn {
    margin-top: 0;
  }

  #close-btn {
    right: 35px;
    top: 75px;
    width: 19px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 42px;
  }

  #footer-submit-btn {
    border-radius: none;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    bottom: 0;
  }

  #submit-btn-img {
    height: 18px;
    width: 18px;
  }

  .footer-newsletter {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  footer {
    font-size: 13px;
    padding: 50px 10%;
  }

  footer h4 {
    font-size: 17px;
  }

  .contact-us-header {
    margin-bottom: 39px;
  }

  .footer-rights {
    font-size: 11px;
  }

  .modal-dialog {
    margin-top: 110px;
  }

  .modal-content {
    height: calc(100vh - 220px);
    max-width: 100%;
    position: relative;
    margin-left: 16.1%;
    margin-right: 16.1%;
    padding: 40px 45px;
  }

  .social-icons {
    margin-top: 0;
    margin-bottom: 30px;
  }

  .evox-logo {
    clear: both;
  }

  .privacy-policy-link {
    clear: left;
    display: inline-block;
    margin-top: 7px;
  }

  .peace-of-mind-section p {
    max-width: 500px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .peace-of-mind-icons-row {
    margin: 62px 40px 0;
    flex-wrap: wrap;
  }

  .peace-of-mind-icons-row > div {
    width: calc(100% / 3);
  }

  .peace-of-mind-modal-trigger {
    margin-bottom: 30px;
  }

  .peace-of-mind-icons-row label {
    margin-top: 12px;
  }

  #peace-of-mind-modal .modal-dialog {
    margin-left: auto;
    margin-right: auto;
  }

  #peace-of-mind-modal .modal-content {
    margin-left: auto;
    margin-right: auto;
  }

  .peace-of-mind-modal-body .icon-col,
  .peace-of-mind-modal-body .content-col {
    float: none;
    width: 100%;
  }

  .peace-of-mind-modal-body .content-col {
    text-align: center;
    padding-right: 0;
    font-size: 18px;
  }
  .peace-of-mind-modal-body .content-col h4 {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .peace-of-mind-modal-body .icon-col {
    margin-bottom: 100px;
  }

  .peace-of-mind-modal-body .icon-col img {
    margin-top: 0;
  }

  .carousel-indicators {
    margin-left: 0;
  }

  .body-with-uber-floater footer {
    padding-bottom: 140px;
  }

  .fair-uber-learn-btn {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .fair-uber-logo {
    width: 97px;
  }

  #uber-floater {
    display: relative;
    padding: 20px 10px 20px 20px;
  }

  .uber-floater-description {
    padding: 0;
    font-size: 12px;
    width: calc(100% - 130px);
  }

  .fair-uber-logo {
    margin: 0;
  }
  .fair-uber-learn-btn-container {
    width: 130px;
  }
  .fair-uber-learn-btn {
    font-size: 13px;
    padding: 4px 0;
    margin: 0;
    text-align: center;
    width: 112px;
    min-width: 0;
    display: inline-block;
  }

  .uber-modal-content.modal-content {
    margin-left: 0;
    margin-right: 0;
  }
  .page404-car-img {
    width: 400px;
    right: 0;
    margin-top: 70px;
  }

  #page404 h2 {
    font-size: 30px;
  }
  #page404 h4 {
    font-size: 15px;
  }
  #page404 {
    margin-top: 60px;
    padding-bottom: 350px;
  }
  .page404-title {
    font-size: 30px;
  }
  .page404-subtitle {
    font-size: 15px;
  }
  .page404-stripes-img {
    height: 120px;
    bottom: 100px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 17px 40px;
  }

  header.show {
    transition: transform 200ms ease-in-out;
  }

  header .fair-logo {
    left: 0;
    height: 20px;
    top: -1px;
    transform: none;
    transition: opacity 200ms ease-in-out;
  }

  header.show .fair-logo {
    display: block;
    opacity: 1;
    transition: opacity 600ms ease-in-out;
  }

  .content-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .nav-list {
    display: none;
    float: none;
    clear: both;
    padding-top: 55px;
  }

  .header-nav {
    margin-top: 0;
    font-size: 15px;
  }

  .header-nav .nav-app-link {
    margin-top: 60px;
  }

  #close-btn {
    top: 50px;
    width: 16px;
    right: 40px;
  }

  .top-subscribe-section {
    height: 346px;
    margin-top: -346px;
  }

  .top-subscribe-section .col {
    clear: both;
    float: none;
    width: 100%;
  }

  .top-subscribe-section .text-col {
    margin-bottom: 45px;
  }

  .subscribe-email {
    width: 100%;
  }

  .top-subscribe-section section {
    padding: 90px 40px 0;
  }

  #top-submit-btn {
    margin-top: 45px;
  }

  footer {
    position: relative;
    z-index: 200;
    font-size: 15px;
  }

  .footer-form-col,
  .contact-col {
    float: none;
    clear: both;
    width: 100%;
  }

  .footer-newsletter {
    margin: 50px 0 0;
    min-height: 180px;
  }

  .footer-rights {
    margin-top: 70px;
    font-size: 13px;
  }

  .success-message em {
    display: block;
  }

  .mobile-block {
    display: block;
  }

  .footer-end {
    display: flex;
    flex-direction: column-reverse;
  }

  .social-icons {
    margin-top: 50px;
  }

  .footer-rights {
    margin-top: 50px;
  }

  .modal-dialog {
    margin: 30px;
  }

  .modal-content {
    padding: 30px;
    width: calc(100vw - 60px);
    min-height: calc(100vh - 60px);
    height: auto;
    margin: 0;
  }

  .modal-header {
    padding: 0 0 30px;
  }

  .modal-body {
    padding: 0;
  }

  .peace-of-mind-title {
    margin-bottom: 21px;
  }

  .peace-of-mind-section {
    margin-top: 10px;
  }

  .peace-of-mind-section p {
    font-size: 15px;
  }

  .peace-of-mind-section h2 {
    font-size: 30px;
  }

  .peace-of-mind-icons-row {
    display: block;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }

  .peace-of-mind-section > .peace-of-mind-icons-row {
    display: block !important;
  }

  .peace-of-mind-icons-row > div {
    width: 50%;
    margin-top: 36px;
    margin-bottom: 0;
    float: left;
  }

  .peace-of-mind-icons-row .wear-and-tear-icon {
    margin-top: 43px;
  }

  .peace-of-mind-icons-row img {
    max-width: 57px;
    transform: translateX(7px);
  }

  .peace-of-mind-icons-row p {
    font-size: 15px;
  }

  .peace-of-mind-modal-body {
    margin-bottom: 75px;
    padding-left: 17px;
    padding-right: 17px;
  }

  .peace-of-mind-modal-body .icon-col {
    margin-bottom: 0;
  }

  .peace-of-mind-modal-body .icon-col img {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .peace-of-mind-modal-body .content-col {
    font-size: 13px;
    margin-bottom: 16vh;
  }
  .peace-of-mind-modal-body .content-col h4 {
    font-size: 21px;
  }

  .peace-of-mind-modal-body p {
    font-size: 15px;
  }

  .peace-of-mind-modal-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
  }

  #peace-of-mind-modal .modal-dialog {
    max-width: 340px;
  }

  .peace-of-mind-modal-title {
    font-size: 30px;
    margin-top: 21px;
  }

  .peace-of-mind-modal-icons {
    transform: translateX(10px);
  }

  .uber-modal-dialog {
    margin: 0;
  }

  .uber-modal-content.modal-content {
    padding-bottom: 0;
  }

  .uber-modal-car {
    width: 207px;
    margin-top: -80px;
  }

  .uber-modal-heading {
    font-size: 30px;
    max-width: 180px;
  }

  .uber-modal-text {
    margin-left: 15.5%;
    margin-right: 15.5%;
  }

  .uber-modal-button-container {
    margin-top: 35px;
  }

  .uber-modal-footer {
    display: block;
    text-align: center;
    margin-top: 52px;
    border-top: 1px solid #a6a6a6;
    padding: 13px 0;
  }
  #page404 {
    padding: 30px 20px 300px;
  }
  .page404-car-img {
    margin-top: 40px;
  }
  .page404-title {
    font-size: 28px;
  }
  .page404-subtitle {
    font-size: 15px;
  }
  .page404-car-img {
    left: 20%;
  }
  .pill-button-big {
    font-size: 18px;
    width: 170px;
    padding: 8px;
  }
}
